/* =========================================================
   GHETTO LOVE CLOTHING
   CLEAN MASTER STYLESHEET
   ========================================================= */


/* =========================================================
   01. ROOT / GLOBAL
   ========================================================= */

:root {
    --gl-black: #050505;
    --gl-white: #ffffff;
    --gl-ink: #111111;
    --gl-muted: #8f8f8f;
    --gl-line: rgba(255, 255, 255, 0.14);
    --gl-surface: #0b0b0b;
    --gl-surface-2: #111111;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;

    background: var(--gl-black);
    color: var(--gl-white);

    font-family: Arial, Helvetica, sans-serif;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font: inherit;
}


/* =========================================================
   02. ANNOUNCEMENT BAR
   ========================================================= */

.gl-announcement {
    padding: 10px 18px;

    background: #ffffff;
    color: #000000;

    text-align: center;
    text-transform: uppercase;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    line-height: 1.4;
}


/* =========================================================
   03. HEADER
   ========================================================= */

.gl-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(5, 5, 5, 0.94);

    backdrop-filter: blur(18px);

    border-bottom: 1px solid var(--gl-line);
}

.gl-nav {
    min-height: 86px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    gap: 24px;
}


/* DESKTOP NAV */

.gl-menu {
    display: flex;
    align-items: center;

    gap: 26px;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.gl-menu a {
    position: relative;
}

.gl-menu a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: #ffffff;

    transition: width 0.25s ease;
}

.gl-menu a:hover::after,
.gl-menu a.active::after {
    width: 100%;
}


/* MAIN LOGO */

.gl-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gl-logo img {
    display: block;

    width: min(235px, 27vw);
    height: auto;
}


/* HEADER ACTIONS */

.gl-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;

    gap: 18px;
}

.gl-actions a,
.gl-icon-button {
    color: #ffffff;

    opacity: 0.9;

    transition: opacity 0.2s ease;
}

.gl-actions a:hover,
.gl-icon-button:hover {
    opacity: 0.55;
}


/* SVG ICONS */

.gl-actions svg {
    display: block;

    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gl-icon-button {
    padding: 0;

    background: transparent;
    border: 0;

    cursor: pointer;
}


/* MOBILE HAMBURGER */

.gl-mobile-toggle {
    display: none;

    width: 28px;
    height: 28px;

    padding: 0;

    background: transparent;
    border: 0;

    color: #ffffff;

    cursor: pointer;
}


/* DO NOT DEPEND ON FONT AWESOME FOR HAMBURGER */

.gl-mobile-toggle i {
    display: none !important;
}

.gl-mobile-toggle::before {
    content: "☰";

    display: block;

    color: #ffffff;

    font-size: 22px;
    line-height: 28px;
}


/* =========================================================
   04. MOBILE MENU
   ========================================================= */

.mobile-panel {
    display: none !important;

    position: fixed;
    inset: 0;

    z-index: 99999;

    width: 100%;
    height: 100dvh;

    padding: 24px;

    overflow-y: auto;

    background: #050505;
}

.mobile-panel.open {
    display: block !important;
}

.mobile-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-panel-top img {
    display: block;

    width: 200px;
    max-width: 65vw;

    height: auto;
}

.mobile-close {
    padding: 4px 8px;

    background: transparent;
    border: 0;

    color: #ffffff;

    font-size: 34px;
    line-height: 1;

    cursor: pointer;
}

.mobile-links {
    display: flex;
    flex-direction: column;

    gap: 22px;

    margin-top: 70px;
}

.mobile-links a {
    display: block;

    color: #ffffff;

    text-transform: uppercase;

    font-size: clamp(28px, 8vw, 42px);
    font-weight: 900;
    line-height: 1;

    letter-spacing: -0.04em;
}


/* =========================================================
   05. HERO
   ========================================================= */

.hero {
    position: relative;

    min-height: calc(100vh - 116px);

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 48%,
            #242424 0,
            #0d0d0d 32%,
            #050505 62%
        );
}


/* LARGE FADED GL */

.hero::after {
    content: "GL";

    position: absolute;
    right: -2vw;
    bottom: -13vw;

    pointer-events: none;

    color: rgba(255, 255, 255, 0.025);

    font-family: Georgia, serif;
    font-size: 45vw;
    font-style: italic;
    font-weight: 700;

    line-height: 0.8;
}


/* HERO COPY */

.hero-copy {
    position: relative;
    z-index: 3;

    max-width: 670px;

    padding: 90px 0;
}

.eyebrow {
    display: flex;
    align-items: center;

    gap: 12px;

    color: #bbbbbb;

    text-transform: uppercase;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.26em;
}

.eyebrow::before {
    content: "";

    width: 36px;
    height: 1px;

    background: #ffffff;
}

.hero h1 {
    margin: 28px 0 32px;

    text-transform: uppercase;

    font-size: clamp(58px, 8vw, 132px);
    font-weight: 900;

    line-height: 0.84;

    letter-spacing: -0.07em;
}

.hero h1 .outline {
    color: transparent;

    -webkit-text-stroke: 1px #ffffff;
}

.hero p {
    max-width: 530px;

    color: #bdbdbd;

    font-size: 16px;
    line-height: 1.8;
}


/* HERO PRODUCT */

.hero-product {
    position: absolute;

    right: 4vw;
    bottom: -3%;

    z-index: 2;

    width: min(45vw, 720px);
    height: 92%;

    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-product img {
    display: block;

    max-width: 100%;
    max-height: 100%;

    object-fit: contain;

    filter:
        drop-shadow(
            0 35px 45px rgba(0, 0, 0, 0.55)
        );
}


/* HERO STAMP */

.hero-stamp {
    position: absolute;

    right: 4vw;
    top: 8%;

    z-index: 4;

    width: 110px;
    height: 110px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(255, 255, 255, 0.25);

    border-radius: 50%;

    text-align: center;
    text-transform: uppercase;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.2em;

    transform: rotate(8deg);
}


/* =========================================================
   06. BUTTONS
   ========================================================= */

.gl-btns {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 38px;
}

.gl-btn {
    min-height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 28px;

    border: 1px solid #ffffff;

    background: #ffffff;
    color: #000000;

    text-transform: uppercase;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 0.15em;

    transition: 0.25s ease;
}

.gl-btn:hover {
    background: transparent;
    color: #ffffff;
}

.gl-btn.alt {
    background: transparent;
    color: #ffffff;
}

.gl-btn.alt:hover {
    background: #ffffff;
    color: #000000;
}


/* =========================================================
   07. MARQUEE
   ========================================================= */

.gl-marquee {
    overflow: hidden;

    background: #080808;

    border-top: 1px solid var(--gl-line);
    border-bottom: 1px solid var(--gl-line);
}

.gl-marquee-track {
    min-width: max-content;

    display: flex;

    gap: 34px;

    padding: 17px 0;

    white-space: nowrap;

    text-transform: uppercase;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 0.15em;

    animation: marquee 24s linear infinite;
}

.gl-marquee-track span::after {
    content: "✦";

    margin-left: 34px;

    color: #777777;
}

@keyframes marquee {

    to {
        transform: translateX(-50%);
    }

}


/* =========================================================
   08. GENERAL SECTIONS
   ========================================================= */

.section {
    padding: 110px 0;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 24px;

    margin-bottom: 46px;
}

.section-kicker {
    color: #888888;

    text-transform: uppercase;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.22em;
}

.section-title {
    margin: 10px 0 0;

    text-transform: uppercase;

    font-size: clamp(36px, 5vw, 72px);
    font-weight: 900;

    line-height: 0.95;

    letter-spacing: -0.045em;
}

.section-link {
    padding-bottom: 7px;

    border-bottom: 1px solid #ffffff;

    text-transform: uppercase;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 0.17em;
}


/* =========================================================
   09. FIND YOUR FIT
   ========================================================= */

.category-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 1px;

    background: #222222;
}

.category-card {
    position: relative;

    min-height: 430px;

    display: flex;
    align-items: flex-end;

    padding: 28px;

    overflow: hidden;

    background: #0e0e0e;
}

.category-card > * {
    position: relative;

    z-index: 2;
}

.category-card h3 {
    margin: 0;

    color: #ffffff;

    text-transform: uppercase;

    font-size: 27px;

    letter-spacing: -0.03em;
}

.category-card p {
    margin: 7px 0 0;

    color: #bbbbbb;

    font-size: 13px;
}

.category-arrow {
    position: absolute;

    right: 25px;
    bottom: 27px;

    z-index: 2;

    color: #ffffff;

    font-size: 20px;
}


/* PHOTO CATEGORY CARDS */

.category-card.category-photo {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    transition: transform 0.3s ease;
}

.category-card.category-photo::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.35) 52%,
            rgba(0, 0, 0, 0.08) 100%
        );
}

.category-card.category-photo:hover {
    transform: translateY(-4px);
}


/* =========================================================
   10. PRODUCT CARDS
   ========================================================= */

.product-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 24px;
}

.product-card {
    min-width: 0;

    background: #0b0b0b;

    border: 1px solid #181818;
}

.product-media {
    position: relative;

    width: 100%;

    aspect-ratio: 4 / 5;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #f1f1f1;
}

.product-media img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.45s ease,
        opacity 0.3s ease;
}

.product-media.logo-placeholder {
    background: #0d0d0d;
}

.product-media.logo-placeholder img {
    width: 52%;
    height: auto;

    object-fit: contain;

    opacity: 0.8;
}

.product-card:hover .product-media img {
    transform: scale(1.035);
}

.product-badge {
    position: absolute;

    left: 14px;
    top: 14px;

    z-index: 4;

    padding: 8px 10px;

    background: #000000;
    color: #ffffff;

    text-transform: uppercase;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 0.13em;
}

.product-info {
    padding: 18px 4px 3px;
}

.product-category {
    margin-bottom: 7px;

    color: #666666;

    text-transform: uppercase;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 0.17em;
}

.product-name {
    display: block;

    min-height: 40px;

    color: #ffffff;

    text-transform: uppercase;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 0.02em;
}

.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 14px;

    margin-top: 8px;
}

.product-price {
    font-weight: 900;
}

.product-shop {
    border-bottom: 1px solid #777777;

    text-transform: uppercase;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 0.13em;
}


/* =========================================================
   11. STORY
   ========================================================= */

.story {
    padding: 0;
}

.story-wrap {
    min-height: 660px;

    display: grid;

    grid-template-columns: 1.1fr 0.9fr;
}

.story-art {
    position: relative;

    min-width: 0;

    display: grid;
    place-items: center;

    overflow: hidden;

    background: #ffffff;
}

.story-art img {
    width: 70%;

    filter: invert(1);
}

.story-art::after {
    content: "814";

    position: absolute;

    right: -20px;
    bottom: -50px;

    color: rgba(0, 0, 0, 0.06);

    font-size: 250px;
    font-weight: 900;

    letter-spacing: -0.08em;
}

.story-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding:
        80px clamp(35px, 6vw, 90px);

    background: #101010;
}

.story-copy h2 {
    margin: 18px 0 30px;

    text-transform: uppercase;

    font-size: clamp(46px, 6vw, 86px);

    line-height: 0.9;

    letter-spacing: -0.055em;
}

.story-copy p {
    max-width: 620px;

    color: #aaaaaa;

    font-size: 16px;
    line-height: 1.8;
}

.story-quote {
    margin-top: 30px;

    color: #ffffff;

    font-family: Georgia, serif;
    font-size: 26px;

    font-style: italic;
}


/* =========================================================
   12. GL SIGNATURE
   ========================================================= */

.drop {
    background: #ffffff;
    color: #000000;
}

.drop .section-kicker {
    color: #555555;
}

.drop-inner {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 70px;
}

.drop-mark {
    position: relative;

    aspect-ratio: 1;

    display: grid;
    place-items: center;

    overflow: hidden;

    background: #050505;
}

.drop-mark img {
    width: 66%;
}

.drop-copy h2 {
    text-transform: uppercase;

    font-size: clamp(48px, 6vw, 88px);

    line-height: 0.9;

    letter-spacing: -0.055em;
}

.drop-copy p {
    max-width: 560px;

    color: #555555;

    line-height: 1.8;
}

.drop .gl-btn {
    background: #000000;
    border-color: #000000;

    color: #ffffff;
}

.drop .gl-btn:hover {
    background: transparent;

    color: #000000;
}


/* =========================================================
   13. NEWSLETTER
   ========================================================= */

.newsletter {
    padding: 100px 0;

    text-align: center;
}

.newsletter img {
    width: min(470px, 80vw);

    margin-bottom: 25px;
}

.newsletter p {
    color: #888888;
}

.newsletter-form {
    max-width: 640px;

    display: flex;

    margin: 35px auto 0;

    border-bottom: 1px solid #555555;
}

.newsletter-form input {
    flex: 1;

    padding: 18px 5px;

    outline: 0;

    background: transparent;
    border: 0;

    color: #ffffff;
}

.newsletter-form button {
    background: transparent;
    border: 0;

    color: #ffffff;

    text-transform: uppercase;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 0.14em;
}


/* =========================================================
   14. FOOTER
   ========================================================= */

.gl-footer {
    padding: 65px 0 30px;

    border-top: 1px solid var(--gl-line);
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1fr;

    gap: 50px;
}

.footer-logo img {
    width: 250px;

    max-width: 100%;
}

.footer-copy {
    max-width: 330px;

    margin-top: 22px;

    color: #777777;

    font-size: 13px;
    line-height: 1.7;
}

.footer-col h4 {
    margin: 0 0 20px;

    color: #777777;

    text-transform: uppercase;

    font-size: 11px;

    letter-spacing: 0.18em;
}

.footer-col a {
    display: block;

    margin: 12px 0;

    font-size: 13px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;

    gap: 20px;

    margin-top: 55px;

    padding-top: 25px;

    border-top: 1px solid var(--gl-line);

    color: #666666;

    text-transform: uppercase;

    font-size: 11px;

    letter-spacing: 0.08em;
}


/* =========================================================
   15. SHOP PAGE
   ========================================================= */

.shop-hero {
    padding: 105px 0 80px;

    overflow: hidden;

    border-bottom:
        1px solid var(--gl-line);

    background:
        linear-gradient(
            115deg,
            rgba(255, 255, 255, 0.035),
            transparent 42%
        ),
        #050505;
}

.shop-hero-grid {
    display: grid;

    grid-template-columns:
        1.25fr 0.75fr;

    align-items: end;

    gap: 70px;
}

.shop-hero h1 {
    margin: 24px 0 0;

    text-transform: uppercase;

    font-size: clamp(64px, 10vw, 156px);
    font-weight: 900;

    line-height: 0.78;

    letter-spacing: -0.075em;
}

.shop-hero h1 span {
    color: transparent;

    -webkit-text-stroke:
        1px #ffffff;
}

.shop-hero-copy {
    padding-bottom: 10px;
}

.shop-hero-copy p {
    max-width: 470px;

    color: #aaaaaa;

    font-size: 15px;
    line-height: 1.8;
}

.shop-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 24px;

    margin-top: 34px;

    padding-top: 23px;

    border-top:
        1px solid var(--gl-line);

    color: #777777;

    text-transform: uppercase;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 0.14em;
}

.shop-meta strong {
    margin-right: 5px;

    color: #ffffff;

    font-size: 13px;
}


/* SHOP CONTROLS */

.shop-control-wrap {
    position: sticky;

    top: 86px;

    z-index: 50;

    background: rgba(5, 5, 5, 0.96);

    backdrop-filter: blur(16px);

    border-bottom:
        1px solid var(--gl-line);
}

.shop-controls {
    min-height: 82px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 30px;
}

.shop-filters {
    display: flex;
    align-items: center;

    gap: 7px;

    overflow-x: auto;

    padding: 12px 0;

    scrollbar-width: none;
}

.shop-filters::-webkit-scrollbar {
    display: none;
}

.shop-filter {
    flex: 0 0 auto;

    padding: 11px 16px;

    white-space: nowrap;

    background: #0a0a0a;

    border: 1px solid #2b2b2b;

    color: #8f8f8f;

    text-transform: uppercase;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 0.14em;

    transition: 0.2s ease;
}

.shop-filter:hover,
.shop-filter.active {
    background: #ffffff;

    border-color: #ffffff;

    color: #000000;
}

.shop-sort {
    display: flex;
    align-items: center;

    gap: 10px;

    white-space: nowrap;
}

.shop-sort label {
    color: #666666;

    text-transform: uppercase;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 0.14em;
}

.shop-sort select {
    min-width: 175px;

    padding: 11px 35px 11px 14px;

    background: #0a0a0a;

    border: 1px solid #292929;

    color: #ffffff;

    font-size: 11px;
}


/* SEARCH */

.shop-search-panel {
    display: none;

    padding: 0 0 22px;
}

.shop-search-panel.open {
    display: block;
}

.shop-search-inner {
    display: flex;
    align-items: center;

    border-bottom: 1px solid #444444;
}

.shop-search-inner input {
    flex: 1;

    padding: 15px;

    outline: 0;

    background: transparent;

    border: 0;

    color: #ffffff;

    font-size: 16px;
}

.shop-search-inner button {
    padding: 4px 8px;

    background: transparent;

    border: 0;

    color: #ffffff;

    font-size: 25px;
}


/* SHOP PRODUCTS */

.shop-products {
    min-height: 650px;

    padding: 55px 0 110px;
}

.shop-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 38px 22px;
}

.shop-product-card {
    min-width: 0;

    background: transparent;

    border: 0;
}

.shop-product-card .product-info {
    padding-top: 16px;
}

.product-image-hover {
    position: absolute !important;

    inset: 0;

    opacity: 0;
}

.shop-product-card:hover
.product-image-hover {
    opacity: 1;
}

.product-view {
    position: absolute;

    left: 14px;
    right: 14px;
    bottom: 14px;

    z-index: 4;

    padding: 13px 14px;

    background: #ffffff;

    color: #000000;

    text-align: center;
    text-transform: uppercase;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 0.14em;

    opacity: 0;

    transform: translateY(12px);

    transition: 0.25s ease;
}

.shop-product-card:hover
.product-view {
    opacity: 1;

    transform: translateY(0);
}


/* SHOP EMPTY */

.shop-empty {
    padding: 100px 20px;

    text-align: center;
}

.shop-empty img {
    width: 90px;

    margin-bottom: 30px;
}

.shop-empty h2 {
    text-transform: uppercase;

    font-size: 44px;

    letter-spacing: -0.04em;
}

.shop-empty p {
    margin-bottom: 30px;

    color: #777777;
}


/* SHOP STATEMENT */

.shop-statement {
    padding: 100px 0;

    background: #ffffff;

    color: #000000;
}

.shop-statement-grid {
    display: grid;

    grid-template-columns:
        0.55fr 1.45fr;

    align-items: center;

    gap: 70px;
}

.shop-statement-mark {
    aspect-ratio: 1;

    display: grid;
    place-items: center;

    background: #000000;
}

.shop-statement-mark img {
    width: 68%;
}

.shop-statement .section-kicker {
    color: #555555;
}

.shop-statement h2 {
    margin: 18px 0 30px;

    text-transform: uppercase;

    font-size: clamp(52px, 7vw, 100px);
    font-weight: 900;

    line-height: 0.88;

    letter-spacing: -0.065em;
}

.shop-statement p {
    max-width: 700px;

    color: #555555;

    line-height: 1.8;
}


/* =========================================================
   16. MEDIUM DESKTOP / TABLET
   ========================================================= */

@media (max-width: 1199px) {

    .gl-menu {
        gap: 15px;
    }

    .hero-product {
        right: -4vw;
    }

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

}


/* =========================================================
   17. TABLET / MOBILE NAV
   ========================================================= */

@media (max-width: 991px) {

    /* HEADER */

    .gl-nav {
        min-height: 74px;

        grid-template-columns:
            42px 1fr 42px;

        gap: 10px;
    }

    .gl-menu {
        display: none !important;
    }

    .gl-mobile-toggle {
        display: block !important;

        grid-column: 1;
    }

    .gl-logo {
        grid-column: 2;
    }

    .gl-logo img {
        width: 180px;

        max-width: 100%;
    }

    .gl-actions {
        grid-column: 3;

        gap: 0;
    }

    .gl-actions .account-link,
    .gl-actions .search-link,
    .gl-actions .gl-icon-button {
        display: none !important;
    }


    /* HERO */

    .hero {
        min-height: auto;

        display: block;

        padding: 60px 0 0;
    }

    .hero .container {
        height: auto !important;
    }

    .hero-copy {
        max-width: 100%;

        padding: 30px 0 40px;
    }

    .hero h1 {
        max-width: 600px;

        font-size:
            clamp(64px, 12vw, 96px);
    }

    .hero-product {
        position: relative;

        right: auto;
        bottom: auto;

        width: 100%;
        height: auto;

        margin: 0 auto;

        opacity: 1;
    }

    .hero-product img {
        width: 100%;

        max-width: 650px;
        max-height: none;

        height: auto;

        object-fit: contain;
    }

    .hero-stamp {
        top: auto;

        right: 6vw;
        bottom: 27%;
    }


    /* SECTIONS */

    .section {
        padding: 80px 0;
    }


    /* CATEGORIES */

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


    /* PRODUCTS */

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


    /* STORY */

    .story-wrap {
        grid-template-columns: 1fr;
    }

    .story-art {
        min-height: 440px;
    }


    /* SIGNATURE */

    .drop-inner {
        grid-template-columns: 1fr;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    /* SHOP */

    .shop-control-wrap {
        top: 74px;
    }

    .shop-hero-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .shop-controls {
        flex-direction: column;
        align-items: flex-start;

        gap: 5px;

        padding: 15px 0;
    }

    .shop-filters {
        width: 100%;
    }

    .shop-sort {
        width: 100%;

        justify-content: space-between;

        padding-bottom: 10px;
    }

    .shop-statement-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .shop-statement-mark {
        max-width: 480px;
    }

}


/* =========================================================
   18. PHONE
   ========================================================= */

@media (max-width: 575px) {

    /* ANNOUNCEMENT */

    .gl-announcement {
        padding: 8px 10px;

        font-size: 8px;

        letter-spacing: 0.11em;

        line-height: 1.45;
    }


    /* HEADER */

    .gl-nav {
        min-height: 68px;

        grid-template-columns:
            38px 1fr 38px;
    }

    .gl-logo img {
        width: 155px;
    }

    .gl-mobile-toggle::before {
        font-size: 20px;
    }

    .gl-actions svg {
        width: 19px;
        height: 19px;
    }


    /* MOBILE MENU */

    .mobile-panel {
        padding: 20px;
    }

    .mobile-panel-top img {
        width: 175px;
    }

    .mobile-links {
        margin-top: 60px;
    }

    .mobile-links a {
        font-size: 32px;
    }


    /* HERO */

    .hero {
        padding: 35px 0 0;
    }

    .hero-copy {
        padding: 25px 0 30px;
    }

    .eyebrow {
        font-size: 9px;

        letter-spacing: 0.18em;
    }

    .hero h1 {
        margin: 18px 0 24px;

        font-size:
            clamp(58px, 18vw, 76px);

        line-height: 0.84;
    }

    .hero p {
        max-width: 100%;

        font-size: 14px;

        line-height: 1.7;
    }


    /* BUTTONS */

    .gl-btns {
        width: 100%;

        flex-direction: column;

        gap: 10px;

        margin-top: 28px;
    }

    .gl-btn {
        width: 100%;

        min-height: 52px;

        padding: 0 18px;

        font-size: 10px;
    }


    /* HERO PRODUCT */

    .hero-product {
        width: 100%;

        margin-top: 10px;
    }

    .hero-product img {
        width: 100%;

        max-width: 100%;

        height: auto;

        object-fit: contain;
    }

    .hero-stamp {
        display: none;
    }

    .hero::after {
        right: -20vw;

        bottom: -2vw;

        font-size: 82vw;
    }


    /* MARQUEE */

    .gl-marquee-track {
        gap: 22px;

        padding: 13px 0;

        font-size: 9px;
    }

    .gl-marquee-track span::after {
        margin-left: 22px;
    }


    /* GENERAL SECTIONS */

    .section {
        padding: 65px 0;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;

        gap: 15px;

        margin-bottom: 30px;
    }

    .section-kicker {
        font-size: 9px;
    }

    .section-title {
        font-size: 44px;
    }

    .section-link {
        font-size: 9px;
    }


    /* FIND YOUR FIT */

    .category-grid {
        grid-template-columns: 1fr;

        gap: 2px;
    }

    .category-card,
    .category-card.category-photo {
        min-height: 310px;

        padding: 22px;
    }

    .category-card h3,
    .category-card.category-photo h3 {
        font-size: 24px;
    }

    .category-card p,
    .category-card.category-photo p {
        font-size: 12px;
    }


    /* PRODUCTS */

    .product-grid,
    .shop-grid {
        grid-template-columns:
            1fr !important;

        gap: 34px !important;
    }

    .product-card,
    .shop-product-card {
        width: 100%;
    }

    .product-media {
        width: 100%;

        aspect-ratio: 4 / 5;
    }

    .product-media img,
    .product-image,
    .product-image-main {
        width: 100% !important;
        height: 100% !important;

        max-width: none !important;
        max-height: none !important;

        object-fit: cover !important;
    }

    .product-media.logo-placeholder img {
        width: 52% !important;
        height: auto !important;

        object-fit: contain !important;
    }

    .product-info {
        padding: 15px 0 0;
    }

    .product-category {
        margin-bottom: 6px;
    }

    .product-name {
        min-height: 0;

        font-size: 13px;

        line-height: 1.35;
    }

    .product-bottom {
        flex-direction: row;
        align-items: center;
    }

    .product-view {
        display: none !important;
    }


    /* STORY */

    .story-wrap {
        display: block;
    }

    .story-art {
        min-height: 300px;
    }

    .story-art img {
        width: 75%;
    }

    .story-art::after {
        font-size: 150px;
    }

    .story-copy {
        padding: 55px 22px;
    }

    .story-copy h2 {
        font-size: 46px;
    }

    .story-copy p {
        font-size: 14px;
    }

    .story-quote {
        font-size: 21px;
    }


    /* SIGNATURE */

    .drop {
        padding: 65px 0;
    }

    .drop-inner {
        gap: 35px;
    }

    .drop-copy h2 {
        font-size: 44px;
    }


    /* NEWSLETTER */

    .newsletter {
        padding: 65px 20px;
    }

    .newsletter img {
        width: 85%;
    }

    .newsletter-form {
        flex-direction: column;

        border-bottom: 0;
    }

    .newsletter-form input {
        width: 100%;

        border-bottom:
            1px solid #555555;
    }

    .newsletter-form button {
        padding: 18px 5px;
    }


    /* FOOTER */

    .gl-footer {
        padding: 50px 0 25px;
    }

    .footer-grid {
        grid-template-columns:
            1fr !important;

        gap: 35px;
    }

    .footer-grid .footer-brand {
        grid-column: auto;
    }

    .footer-logo img {
        width: 210px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;

        gap: 10px;
    }


    /* SHOP */

    .shop-hero {
        padding: 60px 0 45px;
    }

    .shop-hero h1 {
        font-size: 58px;
    }

    .shop-controls {
        padding: 10px 0 15px;
    }

    .shop-filters {
        flex-wrap: nowrap;
    }

    .shop-filter {
        flex: 0 0 auto;

        padding: 10px 13px;
    }

    .shop-sort {
        width: 100%;
    }

    .shop-sort select {
        min-width: 160px;
    }

    .shop-products {
        padding: 35px 0 70px;
    }

    .shop-statement {
        padding: 60px 0;
    }

    .shop-statement h2 {
        font-size: 48px;
    }

}


/* =========================================================
   19. DESKTOP SAFETY
   ========================================================= */

@media (min-width: 992px) {

    .mobile-panel,
    .mobile-panel.open {
        display: none !important;
    }

    .gl-menu {
        display: flex !important;
    }

    .gl-mobile-toggle {
        display: none !important;
    }

    .gl-logo img {
        width: min(235px, 27vw) !important;

        max-width: 235px !important;

        height: auto !important;
    }

}