/* -----------------------------------------------
   Merch Page — Header
   ----------------------------------------------- */
.merch-header {
    padding-bottom: 2rem;
}

.merch-header__subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 1rem;
}

/* -----------------------------------------------
   Product Grid
   ----------------------------------------------- */
.products {
    padding-top: 0;
}

.products__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* -----------------------------------------------
   Product Card
   ----------------------------------------------- */
.product-card {
    background: #111;
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 2.5rem;
    position: relative;
}

.product-card__name {
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.product-card__description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.product-card__price {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

/* -----------------------------------------------
   Sold Out Stamp
   ----------------------------------------------- */
.product-card__sold-out {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--red);
    border: 2px solid var(--red);
    padding: 0.3rem 0.8rem;
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transform: rotate(-15deg);
    opacity: 0.8;
    pointer-events: none;
}

/* -----------------------------------------------
   Waitlist Button
   ----------------------------------------------- */
.product-card__waitlist {
    display: inline-block;
    background: transparent;
    color: var(--gold);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.9rem 2.4rem;
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.product-card__waitlist:hover {
    background-color: var(--gold);
    color: var(--black);
}

/* -----------------------------------------------
   Modal
   ----------------------------------------------- */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal--visible {
    display: flex;
}

.modal__box {
    position: relative;
    max-width: 500px;
    width: 90%;
    background: var(--black);
    border: 1px solid var(--gold);
    padding: 3rem;
    text-align: center;
}

.modal__text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--cream);
}

.modal__close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    color: var(--gold);
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.modal__close:hover {
    opacity: 0.7;
}

/* -----------------------------------------------
   Responsive — Mobile
   ----------------------------------------------- */
@media (max-width: 768px) {
    .products__grid {
        grid-template-columns: 1fr;
    }
}
