/* ===================================
   SHOP.HTML SPECIFIC STYLES
   Portugal Premium Wine Club
   =================================== */

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: #000;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Helpers Grid */
.helpers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.helper-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.helper-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    border-color: #D4AF37;
}

.helper-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.helper-card h3 {
    color: #6B0000;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.helper-role {
    color: #D4AF37;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.helper-task {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #6B0000;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Membership Tiers */
.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tier-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
    border: 3px solid #f0f0f0;
}

.tier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.tier-card.featured {
    border-color: #D4AF37;
    transform: scale(1.05);
}

.tier-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.tier-badge.basic {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
}

.tier-badge.premium {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: #000;
}

.tier-badge.vip {
    background: linear-gradient(135deg, #000000, #434343);
    color: #D4AF37;
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #6B0000;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.tier-card h3 {
    color: #6B0000;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.tier-description {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.tier-features li {
    padding: 0.75rem 0;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.6;
}

.tier-features li:last-child {
    border-bottom: none;
}

.tier-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #D4AF37;
    margin-top: 2rem;
}

/* Pre-Registration Form */
.pre-registration-form {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255,255,255,0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.btn-large {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 3rem auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #D4AF37, #6B0000);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    border: 4px solid #D4AF37;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #6B0000;
    font-size: 1.2rem;
    flex-shrink: 0;
    z-index: 1;
}

.timeline-marker.current {
    background: #D4AF37;
    color: white;
    border-color: #6B0000;
}

.timeline-content {
    margin-left: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    flex: 1;
}

.timeline-content h3 {
    color: #6B0000;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .helpers-grid,
    .benefits-grid,
    .tiers-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .tier-card.featured {
        transform: scale(1);
    }
    
    .pre-registration-form {
        padding: 2rem 1.5rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}