/* Merchandise Section */
.merch {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.merch-header {
    text-align: center;
    margin-bottom: 4rem;
}

.merch-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    position: relative;
}

.merch-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.merch-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.merch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
}

.merch-card.featured {
    border: 2px solid #ff6b35;
    position: relative;
}

.merch-card.featured::before {
    content: "ХИТ";
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff6b35;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

.merch-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.merch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.merch-image:hover img {
    transform: scale(1.05);
}

.merch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.8));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
}

.merch-badge {
    background: #ff6b35;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.merch-info {
    padding: 2rem;
}

.merch-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    text-align: center;
}

.merch-description {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.6;
}

.merch-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.merch-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.merch-price {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
}

.merch-shipping {
    font-size: 0.9rem;
    color: #cccccc;
}

.merch-actions {
    display: flex;
    gap: 1rem;
}

.merch-btn, .merch-btn-details {
    flex: 1;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 50px;
    text-align: center;
    transition: all 0.3s ease;
}

.merch-btn:hover, .merch-btn-details:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.merch-footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
}

.merch-guarantee, .merch-delivery, .merch-support {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.merch-guarantee i, .merch-delivery i, .merch-support i {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

/* Responsive Design for Merch Section */
@media (max-width: 968px) {
    .merch-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .merch-footer {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .merch {
        padding: 6rem 0;
    }
    
    .merch-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .merch-card {
        margin-bottom: 1rem;
    }
    
    .merch-actions {
        flex-direction: column;
    }
    
    .merch-footer {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .merch-title {
        font-size: 2rem;
    }
    
    .merch-price {
        font-size: 1.5rem;
    }
    
    .merch-btn, .merch-btn-details {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .merch-actions {
        flex-direction: column;
        align-items: center;
    }

    .merch-btn,
    .merch-btn-details {
        width: 100%;
        max-width: 280px;
        flex: none;
    }
}
@media (max-width: 480px) {
    .merch-price-row {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}
