﻿/* ===============================
   MERCH PAGE ONLY
   =============================== */

.merch-hero {
    position: relative;
    min-height: 340px;
    margin-top: 20px;
    border-radius: 18px;
    overflow: hidden;
    background-image: url('../images/merch/hero.jpg');
    background-size: cover;
    background-position: center;
}

.merch-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
}

.merch-hero-content {
    padding: 28px;
    max-width: 760px;
    color: #fff;
}

.merch-title {
    font-size: 44px;
    font-weight: 900;
    margin: 0 0 6px 0;
}

.merch-subtitle {
    opacity: .9;
    margin: 0 0 14px 0;
}

.merch-search {
    display: flex;
    gap: 10px;
    align-items: center;
    max-width: 560px;
}

.merch-search-input {
    border-radius: 12px;
    height: 44px;
}

.merch-search-btn {
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
}

.merch-section {
    padding: 26px 0;
}

.merch-section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 12px;
}

.merch-section-title {
    font-size: 26px;
    font-weight: 900;
    margin: 0;
}

.merch-seeall {
    color: #ff4fd8;
    text-decoration: none;
    font-weight: 700;
}

    .merch-seeall:hover {
        text-decoration: underline;
    }

.merch-muted {
    opacity: .8;
}

.merch-category-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

@media (max-width: 768px) {
    .merch-category-grid {
        grid-template-columns: 1fr;
    }

    .merch-search {
        flex-direction: column;
        align-items: stretch;
    }
}

.merch-cat-card {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border-radius: 14px;
    background: #111;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,.18);
}

    .merch-cat-card:hover {
        outline: 2px solid rgba(255,79,216,.35);
    }

.merch-cat-icon {
    font-size: 26px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    border-radius: 12px;
}

.merch-cat-name {
    font-weight: 900;
}

.merch-cat-desc {
    opacity: .8;
    font-size: 13px;
}

.merch-card {
    background: #111;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,.22);
}

.merch-img {
    height: 170px;
    background-size: cover;
    background-position: center;
}

.merch-body {
    padding: 12px;
}

.merch-name {
    font-weight: 800;
    margin-bottom: 6px;
}

.merch-price {
    opacity: .9;
    margin-bottom: 10px;
}

.merch-btn {
    border-radius: 10px;
}

.merch-promo {
    border-radius: 18px;
    background: #111;
    padding: 18px;
    margin-bottom: 14px;
    min-height: 180px;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 8px 20px rgba(0,0,0,.22);
    background-size: cover;
    background-position: center;
}

.merch-promo.big {
    min-height: 374px;
    background-image: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.75)), url('../images/merch/promo1.jpg');
}

.merch-promo.small {
    background-image: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.75)), url('../images/merch/promo2.jpg');
}

.merch-promo.small.alt {
    background-image: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.75)), url('../images/merch/promo3.jpg');
}

.promo-kicker {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    opacity: .9;
}

.promo-title {
    font-size: 26px;
    font-weight: 900;
    margin: 2px 0 6px;
}

.promo-desc {
    opacity: .9;
    margin-bottom: 10px;
}

.merch-img {
    width: 100%;
    height: 220px;
    background-size: contain; /* shows full image */
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
    border-radius: 12px 12px 0 0;
}





