.gd-merch-page {
    padding: 42px clamp(18px, 4vw, 72px) 76px;
    background: #f8f5ef;
}

.gd-merch-hero,
.gd-merch-products,
.gd-merch-categories {
    width: min(1500px, 100%);
    margin-left: auto;
    margin-right: auto;
}

.gd-merch-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, .92fr);
    min-height: 390px;
    overflow: hidden;
    border: 1px solid var(--gd-border);
    border-radius: 26px;
    background: linear-gradient(120deg, #fffdfa 0%, #f5ead6 100%);
    box-shadow: var(--gd-shadow);
}

.gd-merch-hero__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(30px, 4vw, 56px);
}

.gd-merch-hero h1 {
    max-width: 760px;
    margin: 10px 0 20px;
    font-family: Georgia, serif;
    font-size: clamp(42px, 5vw, 68px);
    line-height: .98;
}

.gd-merch-hero p {
    max-width: 670px;
    margin: 0;
    color: var(--gd-muted);
    font-size: 18px;
    line-height: 1.65;
}

.gd-merch-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    width: fit-content;
    min-width: 230px;
    margin-top: 30px;
    padding: 15px 19px;
    border-radius: 11px;
    background: #171717;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
}

.gd-merch-hero__visual {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    background:
        radial-gradient(circle at 64% 22%, rgba(231, 180, 42, .42), transparent 31%),
        linear-gradient(145deg, #29241f, #090909 68%);
}

.gd-merch-hero__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .16;
    background-image: repeating-linear-gradient(135deg, transparent 0 22px, rgba(255,255,255,.16) 23px 24px);
}

.gd-merch-hero-product {
    position: absolute;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 28px 50px rgba(0,0,0,.38);
}

.gd-merch-hero-product img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}

.gd-merch-hero-product--1 {
    z-index: 3;
    width: 46%;
    height: 72%;
    left: 9%;
    top: 14%;
    transform: rotate(-6deg);
}

.gd-merch-hero-product--2 {
    z-index: 2;
    width: 42%;
    height: 62%;
    right: 7%;
    top: 8%;
    transform: rotate(5deg);
}

.gd-merch-hero-product--3 {
    z-index: 4;
    width: 38%;
    height: 52%;
    right: 15%;
    bottom: 3%;
    transform: rotate(-2deg);
}

.gd-merch-hero__visual.is-empty {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gd-merch-hero__mark {
    position: relative;
    color: #d59a05;
    font-family: Georgia, serif;
    font-size: clamp(90px, 14vw, 190px);
    font-weight: 900;
}

.gd-merch-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.gd-merch-categories a {
    padding: 10px 17px;
    border: 1px solid var(--gd-border);
    border-radius: 999px;
    background: #fff;
    color: var(--gd-text);
    font-weight: 800;
    text-decoration: none;
}

.gd-merch-categories a.is-active,
.gd-merch-categories a:hover {
    border-color: var(--gd-gold);
    background: #fff8e8;
    color: #9b6a00;
}

.gd-merch-products {
    margin-top: 48px;
}

.gd-merch-products .gd-section-head {
    margin-bottom: 24px;
}

.gd-merch-products .gd-section-head h2 {
    margin: 4px 0 0;
    font-family: Georgia, serif;
    font-size: clamp(34px, 4vw, 52px);
}

.gd-merch-products__count {
    color: var(--gd-muted);
    font-weight: 800;
}

.gd-merch-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gd-merch-empty {
    padding: 60px 30px;
    border: 1px dashed #d8c494;
    border-radius: 18px;
    background: #fffdf8;
    text-align: center;
}

.gd-merch-empty h2 {
    margin: 0 0 10px;
}

.gd-merch-empty p {
    margin: 0;
    color: var(--gd-muted);
}

@media (max-width: 1150px) {
    .gd-merch-hero {
        grid-template-columns: 1fr 42%;
    }

    .gd-merch-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .gd-merch-hero {
        grid-template-columns: 1fr;
    }

    .gd-merch-hero__visual {
        min-height: 430px;
    }

    .gd-merch-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .gd-merch-page {
        padding: 24px 12px 54px;
    }

    .gd-merch-hero__copy {
        padding: 30px 24px;
    }

    .gd-merch-hero h1 {
        font-size: 43px;
    }

    .gd-merch-hero__visual {
        min-height: 340px;
    }

    .gd-merch-product-grid {
        grid-template-columns: 1fr;
    }
}
