/* Merch Section */
.merch-section {
    background: #000;
    padding: 10px 20px;
    position: relative;
    overflow: hidden;
}

.merch-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Decorative Text Elements */
.decorative-text-merch {
    position: absolute;
    z-index: 1;
}

.decorative-text-merch.top-left {
    top: 0;
    left: -50px;
    transform: rotate(-45deg);
}

.decorative-text-merch img {
    height: 120px;
    width: auto;
    opacity: 0.8;
}

/* Merch Heading */
.merch-heading {
    font-family: "Anton", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: white;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

/* Merch Grid */
.merch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Merch Card */
.merch-card {
    background: #131316;
    overflow: hidden;
    height: 394px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.merch-card:hover {
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

/* Merch Image */
.merch-image {
    width: 100%;
    height: 314px;
    overflow: hidden;
    background: #1a1a1d;
}

.merch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.merch-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.merch-card:hover .merch-image img {
    transform: scale(1.05);
}

/* Merch Details */
.merch-details {
    padding: 10px 24px;
    text-align: center;
}

.merch-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #9AA4B2;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.merch-price {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .merch-section {
        padding: 60px 0;
    }

    .merch-heading {
        font-size: 2rem;
        margin-bottom: 40px;
        padding: 0 20px;
    }

    /* Horizontal scroll for mobile */
    .merch-grid {
        display: flex;
        grid-template-columns: none;
        gap: 20px;
        margin-bottom: 40px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 20px;
        margin-left: 0;
        margin-right: 0;
    }

    /* Hide scrollbar but keep functionality */
    .merch-grid::-webkit-scrollbar {
        display: none;
    }

    .merch-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .merch-card {
        min-width: 280px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    .decorative-text-merch {
        display: none;
    }
}

@media (max-width: 480px) {
    .merch-section {
        padding: 40px 0;
    }

    .merch-heading {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }

    .merch-card {
        min-width: 260px;
    }

    .merch-image {
        height: 314px;
    }

    .merch-title {
        font-size: 0.9rem;
    }

    .merch-price {
        font-size: 1.1rem;
    }
}