﻿:root {
    --black: #050505;
    --white: #ffffff;
    --soft: #f6f5f1;
    --line: #e8e8e8;
    --muted: #666;
    --ease: cubic-bezier(.22, 1, .36, 1);
    --bg: #0a0a0a;
    --surface: #111111;
    --surface-2: #141414;
    --text: #ffffff;
    --text-2: rgba(255, 255, 255, .45);
    --text-3: rgba(255, 255, 255, .25);
    --gutter: 20px;
    /* Matches wearterry.co header hairline */
    --terry-accent: #ff5f1f;
    /* Hero stack: bg Ã¢â€ â€™ header Ã¢â€ â€™ announcement */
    --z-hero-bg: 1;
    --z-header: 100;
    --z-announcement: 200;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Obey-inspired Terry mega navigation */
@media (min-width: 901px) {
    .terry-header {
        overflow: visible !important;
    }

    .terry-header-shell {
        overflow: visible !important;
    }

    .desktop-nav {
        position: static !important;
    }

    .desktop-nav .nav-item {
        height: 100%;
        display: flex;
        align-items: center;
    }

    .desktop-nav .has-mega .mega-menu {
        display: block !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100vw !important;
        max-width: none !important;
        padding: 32px 36px !important;
        background: #fff !important;
        color: #000 !important;
        border-top: 1px solid rgba(0, 0, 0, .08) !important;
        border-bottom: 1px solid rgba(0, 0, 0, .12) !important;
        border-left: 0 !important;
        border-right: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(-8px) !important;
        pointer-events: none !important;
        transition: opacity .16s ease, transform .16s ease, visibility .16s ease !important;
        z-index: 200 !important;
    }

    .desktop-nav .has-mega:hover .mega-menu,
    .desktop-nav .has-mega:focus-within .mega-menu,
    .desktop-nav .has-mega.is-mega-open .mega-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        pointer-events: auto !important;
    }

    .mega-menu__inner {
        width: min(1500px, 100%) !important;
        margin: 0 auto !important;
        display: grid !important;
        grid-template-columns: 320px 1fr !important;
        gap: 48px !important;
        align-items: stretch !important;
    }

    .mega-menu__links {
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        gap: 0 !important;
    }

    .mega-menu__links a {
        display: inline-flex !important;
        width: fit-content !important;
        min-height: 0 !important;
        padding: 0 0 14px !important;
        color: #000 !important;
        font-size: clamp(22px, 1.7vw, 34px) !important;
        line-height: 1.25 !important;
        font-weight: 900 !important;
        letter-spacing: -.03em !important;
        text-transform: uppercase !important;
        text-decoration: none !important;
        text-shadow: none !important;
        transition: transform .16s ease, text-decoration-color .16s ease !important;
    }

    .mega-menu__links a:hover,
    .mega-menu__links a:focus-visible {
        transform: translateX(6px) !important;
        text-decoration: underline !important;
        text-underline-offset: 5px !important;
    }

    .mega-menu__campaign {
        position: relative !important;
        display: block !important;
        min-height: 0 !important;
        aspect-ratio: 16 / 6.5 !important;
        overflow: hidden !important;
        border-radius: 4px !important;
        background: #111 !important;
        color: #fff !important;
        text-decoration: none !important;
    }

    .mega-menu__campaign img {
        width: 100% !important;
        height: 100% !important;
        display: block !important;
        object-fit: cover !important;
        object-position: center !important;
        transform: scale(1.01);
        transition: transform .35s ease !important;
    }

    .mega-menu__campaign:hover img,
    .mega-menu__campaign:focus-visible img {
        transform: scale(1.04);
    }

    .mega-menu__campaign::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, .62) 100%);
        pointer-events: none;
    }

    .mega-menu__overlay {
        position: absolute !important;
        right: 28px !important;
        bottom: 22px !important;
        z-index: 2 !important;
        display: grid !important;
        justify-items: end !important;
        gap: 6px !important;
        color: #fff !important;
        text-align: right !important;
    }

    .mega-menu__overlay strong {
        font-size: clamp(34px, 4vw, 64px) !important;
        line-height: .86 !important;
        font-weight: 900 !important;
        letter-spacing: -.055em !important;
        text-transform: uppercase !important;
    }

    .mega-menu__overlay small {
        font-size: 15px !important;
        line-height: 1 !important;
        font-weight: 900 !important;
        letter-spacing: -.02em !important;
        text-decoration: underline !important;
        text-underline-offset: 4px !important;
        text-transform: uppercase !important;
    }
}

@media (max-width: 900px) {
    .desktop-nav .mega-menu {
        display: none !important;
    }

    .mobile-drawer {
        background: #fff !important;
        color: #000 !important;
        overflow-x: hidden !important;
    }

    .mobile-nav {
        padding: 18px 24px 42px !important;
    }

    .mobile-nav > a,
    .mobile-accordion {
        min-height: 52px !important;
        width: 100% !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        border: 0 !important;
        border-bottom: 1px solid rgba(0, 0, 0, .1) !important;
        background: transparent !important;
        color: #000 !important;
        font-size: clamp(28px, 9vw, 42px) !important;
        line-height: 1 !important;
        font-weight: 900 !important;
        letter-spacing: -.055em !important;
        text-align: left !important;
        text-transform: uppercase !important;
        text-decoration: none !important;
    }

    .mobile-accordion span {
        font-size: .85em !important;
        line-height: 1 !important;
        transition: transform .18s ease !important;
    }

    .mobile-accordion.is-open span {
        transform: rotate(45deg) !important;
    }

    .mobile-panel {
        display: grid !important;
        grid-template-rows: 0fr !important;
        padding: 0 !important;
        overflow: hidden !important;
        transition: grid-template-rows .22s ease !important;
    }

    .mobile-panel.is-open {
        grid-template-rows: 1fr !important;
    }

    .mobile-panel::before {
        content: "";
        min-height: 0;
    }

    .mobile-panel a {
        display: block !important;
        padding: 12px 0 12px 16px !important;
        color: #000 !important;
        font-size: 15px !important;
        line-height: 1.1 !important;
        font-weight: 900 !important;
        letter-spacing: .02em !important;
        text-transform: uppercase !important;
        text-decoration: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, .06) !important;
    }
}

/* TRUE FINAL PLACEMENT: compact mega menu aligned with header shell */
@media (min-width: 901px) {
    .desktop-nav .has-mega .mega-menu {
        top: 100% !important;
        left: 50% !important;
        width: min(1120px, calc(100vw - 72px)) !important;
        padding: 20px 24px 24px !important;
        border: 1px solid rgba(0, 0, 0, .1) !important;
        border-top-color: rgba(0, 0, 0, .07) !important;
        border-radius: 0 0 6px 6px !important;
        box-shadow: none !important;
        transform: translateX(-50%) translateY(-8px) !important;
    }

    .desktop-nav .has-mega:hover .mega-menu,
    .desktop-nav .has-mega:focus-within .mega-menu,
    .desktop-nav .has-mega.is-mega-open .mega-menu {
        transform: translateX(-50%) translateY(0) !important;
    }

    .mega-menu__inner {
        width: 100% !important;
        max-width: none !important;
        grid-template-columns: 260px minmax(0, 1fr) !important;
        gap: 30px !important;
    }

    .mega-menu__links a {
        padding-bottom: 10px !important;
        font-size: clamp(20px, 1.35vw, 28px) !important;
        line-height: 1.16 !important;
        letter-spacing: -.035em !important;
    }

    .mega-menu__campaign {
        aspect-ratio: 16 / 5.5 !important;
        max-height: 410px !important;
        border-radius: 4px !important;
    }

    .mega-menu__campaign img {
        object-position: center 45% !important;
    }

    .mega-menu__overlay {
        right: 22px !important;
        bottom: 18px !important;
        gap: 4px !important;
    }

    .mega-menu__overlay strong {
        font-size: clamp(30px, 3.2vw, 52px) !important;
        letter-spacing: -.05em !important;
    }

    .mega-menu__overlay small {
        font-size: 13px !important;
    }
}

@media (min-width: 901px) and (max-width: 1180px) {
    .desktop-nav .has-mega .mega-menu {
        width: calc(100vw - 40px) !important;
        padding: 18px !important;
    }

    .mega-menu__inner {
        grid-template-columns: 220px minmax(0, 1fr) !important;
        gap: 22px !important;
    }

    .mega-menu__links a {
        font-size: 20px !important;
    }
}

/* FINAL PLACEMENT: compact mega menu aligned with header shell */
@media (min-width: 901px) {
    .desktop-nav .has-mega .mega-menu {
        top: 100% !important;
        left: 50% !important;
        width: min(1120px, calc(100vw - 72px)) !important;
        padding: 20px 24px 24px !important;
        border: 1px solid rgba(0, 0, 0, .1) !important;
        border-top-color: rgba(0, 0, 0, .07) !important;
        border-radius: 0 0 6px 6px !important;
        box-shadow: none !important;
        transform: translateX(-50%) translateY(-8px) !important;
    }

    .desktop-nav .has-mega:hover .mega-menu,
    .desktop-nav .has-mega:focus-within .mega-menu,
    .desktop-nav .has-mega.is-mega-open .mega-menu {
        transform: translateX(-50%) translateY(0) !important;
    }

    .mega-menu__inner {
        width: 100% !important;
        max-width: none !important;
        grid-template-columns: 260px minmax(0, 1fr) !important;
        gap: 30px !important;
    }

    .mega-menu__links a {
        padding-bottom: 10px !important;
        font-size: clamp(20px, 1.35vw, 28px) !important;
        line-height: 1.16 !important;
        letter-spacing: -.035em !important;
    }

    .mega-menu__campaign {
        aspect-ratio: 16 / 5.5 !important;
        max-height: 410px !important;
        border-radius: 4px !important;
    }

    .mega-menu__campaign img {
        object-position: center 45% !important;
    }

    .mega-menu__overlay {
        right: 22px !important;
        bottom: 18px !important;
        gap: 4px !important;
    }

    .mega-menu__overlay strong {
        font-size: clamp(30px, 3.2vw, 52px) !important;
        letter-spacing: -.05em !important;
    }

    .mega-menu__overlay small {
        font-size: 13px !important;
    }
}

@media (min-width: 901px) and (max-width: 1180px) {
    .desktop-nav .has-mega .mega-menu {
        width: calc(100vw - 40px) !important;
        padding: 18px !important;
    }

    .mega-menu__inner {
        grid-template-columns: 220px minmax(0, 1fr) !important;
        gap: 22px !important;
    }

    .mega-menu__links a {
        font-size: 20px !important;
    }
}

body.terry-site,
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.drawer-open {
    overflow: hidden;
}

body.terry-bag-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    display: block;
}

button,
input {
    font: inherit;
}

/* Remove Storefront residue */
.site-main,
.content-area,
.site-content,
.hentry,
.entry-content,
.col-full {
    margin: 0 !important;
    padding: 0 !important;
    max-width: none !important;
    width: 100% !important;
}

.widget-area,
.storefront-breadcrumb,
.entry-title,
.page-title,
.trust-strip {
    display: none !important;
}

/* Lightweight reveal */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@keyframes terryMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Floating desktop header */
.terry-header {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    background: transparent;
    border: 0;
    pointer-events: none;
    transition: transform .32s cubic-bezier(.22, 1, .36, 1);
}

.terry-header.is-scrolled .terry-header-inner,
.terry-header.is-scrolled .terry-header-shell {
    box-shadow: 0 14px 42px rgba(0, 0, 0, .18);
    background: rgba(255, 255, 255, .98);
}

.terry-header.is-hidden {
    transform: translateY(-130%) !important;
    pointer-events: none !important;
}

.terry-header-inner,
.terry-header-shell {
    width: min(1180px, calc(100vw - 64px));
    height: 76px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    background: rgba(255, 255, 255, .97);
    border-radius: 6px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, .14);
    pointer-events: auto;
    transition:
        background .28s cubic-bezier(.22, 1, .36, 1),
        box-shadow .28s cubic-bezier(.22, 1, .36, 1),
        border-radius .28s cubic-bezier(.22, 1, .36, 1),
        transform .38s cubic-bezier(.22, 1, .36, 1);
}

.terry-logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: 178px;
    height: 58px;
    transition:
        transform .38s cubic-bezier(.22, 1, .36, 1),
        opacity .22s ease;
}

.terry-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}

.terry-logo__light {
    display: none !important;
}

body.is-home-hero:not(.header-compact) .terry-header .terry-logo__dark {
    display: none !important;
}

body.is-home-hero:not(.header-compact) .terry-header .terry-logo__light {
    display: block !important;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    height: 100%;
    transition:
        transform .38s cubic-bezier(.22, 1, .36, 1),
        color .22s ease,
        fill .22s ease,
        opacity .22s ease;
}

.desktop-nav > a,
.nav-item > a {
    height: 100%;
    display: flex;
    align-items: center;
    color: #000 !important;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: -.04em;
    text-transform: uppercase;
    position: relative;
    white-space: nowrap;
    transition:
        transform .38s cubic-bezier(.22, 1, .36, 1),
        color .22s ease,
        fill .22s ease,
        opacity .22s ease;
}

.desktop-nav > a::after,
.nav-item > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 22px;
    width: 100%;
    height: 2px;
    background: #000;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .22s var(--ease);
}

.desktop-nav > a:hover::after,
.nav-item:hover > a::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-item {
    height: 100%;
    display: flex;
    align-items: center;
}

.has-mega:hover .mega-menu {
    display: grid;
}

.mega-menu {
    display: none;
    position: absolute;
    top: 76px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1020px, calc(100vw - 48px));
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0 0 6px 6px;
    padding: 24px 24px 24px;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 24px;
    z-index: 70;
    box-shadow: 0 24px 48px rgba(0, 0, 0, .14);
    animation: megaFade .18s ease both;
    overflow: hidden;
}

@keyframes megaFade {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.mega-links a {
    display: block;
    color: #000 !important;
    font-size: clamp(22px, 1.8vw, 34px);
    line-height: 1.22;
    font-weight: 900;
    letter-spacing: -.07em;
    text-transform: uppercase;
}

.mega-links a:hover {
    text-decoration: underline;
    text-underline-offset: 6px;
}

.mega-feature {
    min-height: 300px;
    background: #111;
    position: relative;
    overflow: hidden;
}

.mega-feature::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #111;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    transition: transform .45s var(--ease), filter .45s var(--ease);
}

/* Image only paints once the user opens the menu (or JS marks it loaded). */
.has-mega:hover .mega-feature::before,
.has-mega:focus-within .mega-feature::before,
.mega-feature[data-bg-loaded="1"]::before {
    background-image:
        linear-gradient(90deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .55)),
        url('../img/banner_2.svg'),
        url('../img/Banner_2.webp');
}

.mega-feature:hover::before {
    transform: scale(1.07);
    filter: contrast(1.05);
}

.mega-feature span {
    position: absolute;
    right: 20px;
    bottom: 42px;
    z-index: 2;
    color: #fff;
    font-size: clamp(32px, 3.5vw, 52px);
    line-height: .88;
    font-weight: 900;
    letter-spacing: -.08em;
    text-transform: uppercase;
}

.mega-feature small {
    position: absolute;
    right: 20px;
    bottom: 18px;
    z-index: 2;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Premium compact desktop mega menu */
@media (min-width: 901px) {
    .mega-menu {
        width: min(760px, calc(100vw - 72px));
        grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
        gap: 14px;
        padding: 14px;
        border: 1px solid rgba(0, 0, 0, .12);
        border-radius: 0;
        box-shadow: 0 18px 42px rgba(0, 0, 0, .12);
    }

    .mega-links {
        border: 1px solid rgba(0, 0, 0, .08);
        padding: 12px 14px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .mega-links a {
        padding: 6px 0;
        border-bottom: 1px solid rgba(0, 0, 0, .07);
        font-size: clamp(15px, 1.25vw, 22px);
        line-height: 1;
        letter-spacing: -.045em;
    }

    .mega-links a:last-child {
        border-bottom: 0;
    }

    .mega-links a:hover {
        text-decoration: none;
        opacity: .58;
    }

    .mega-feature {
        min-height: 210px;
        border: 1px solid rgba(0, 0, 0, .08);
    }

    /* Mega-menu images are heavy (250-330 KB) and hidden until hover.
       Only download them once the user actually opens the menu. */
    .mega-feature::before {
        background-color: #111;
        background-size: cover;
        background-position: center 38%;
    }

    .has-mega:hover .mega-feature--men::before,
    .has-mega:focus-within .mega-feature--men::before,
    .mega-feature--men[data-bg-loaded="1"]::before {
        background-image:
            linear-gradient(90deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .58)),
            url('../img/terry-mega-men.jpg');
        background-position: center 38%;
    }

    .has-mega:hover .mega-feature--women::before,
    .has-mega:focus-within .mega-feature--women::before,
    .mega-feature--women[data-bg-loaded="1"]::before {
        background-image:
            linear-gradient(90deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .58)),
            url('../img/terry-mega-women.jpg');
        background-position: center 46%;
    }

    .mega-feature span {
        right: 16px;
        bottom: 34px;
        font-size: clamp(24px, 2.7vw, 38px);
        letter-spacing: -.065em;
    }

    .mega-feature small {
        right: 16px;
        bottom: 15px;
        font-size: 10px;
        letter-spacing: .12em;
        text-transform: uppercase;
        text-decoration-thickness: 1px;
    }
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 18px;
    transition: transform .38s cubic-bezier(.22, 1, .36, 1);
}

.header-icons a,
.icon-link {
    width: 27px;
    height: 27px;
    color: #000 !important;
    display: grid;
    place-items: center;
}

.header-icons svg,
.icon-link svg {
    width: 27px;
    height: 27px;
    fill: currentColor;
    stroke: none;
    transition: transform .18s ease;
}

.header-icons a:hover svg,
.icon-link:hover svg {
    transform: translateY(-1px);
}

/* Homepage desktop: transparent editorial top state Ã¢â€ â€™ compact white bar after scroll */
@media (min-width: 901px) {

    /* Base desktop header position */
.terry-header {
    position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        z-index: var(--z-header);
        background: transparent;
        border: 0;
        pointer-events: none;
    }

    body.is-home-hero.header-compact .terry-header,
    body:not(.is-home-hero) .terry-header {
        position: fixed;
        top: 12px;
    }

    .terry-header-inner,
    .terry-header-shell {
        pointer-events: auto;
        transition:
            background .28s cubic-bezier(.22, 1, .36, 1),
            box-shadow .28s cubic-bezier(.22, 1, .36, 1),
            border-radius .28s cubic-bezier(.22, 1, .36, 1),
            transform .38s cubic-bezier(.22, 1, .36, 1);
    }

    .terry-logo,
    .desktop-nav,
    .header-icons,
    .desktop-nav > a,
    .nav-item > a,
    .header-icons svg,
    .icon-link svg {
        transition:
            transform .38s cubic-bezier(.22, 1, .36, 1),
            color .22s ease,
            fill .22s ease,
            opacity .22s ease;
    }

    /* HOMEPAGE TOP STATE Ã¢â‚¬â€ no white menu box */
    body.is-home-hero:not(.header-compact) .terry-header-inner,
    body.is-home-hero:not(.header-compact) .terry-header-shell {
        width: min(100%, calc(100vw - 72px));
        height: 92px;
        margin: 0 auto;
        padding: 0;
        display: grid;
        grid-template-columns: minmax(270px, 360px) 1fr auto;
        align-items: center;
        gap: 34px;
        background: transparent !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }

    body.is-home-hero:not(.header-compact) .terry-logo {
        width: 250px;
        height: 102px;
        transform: translate3d(0, 0, 0) scale(1);
        transform-origin: left center;
        filter: drop-shadow(0 8px 30px rgba(0, 0, 0, .32));
    }

    body.is-home-hero:not(.header-compact) .desktop-nav {
        justify-content: flex-start;
        gap: 20px;
        transform: translate3d(0, 0, 0);
    }

    body.is-home-hero:not(.header-compact) .desktop-nav > a,
    body.is-home-hero:not(.header-compact) .nav-item > a {
        color: #fff !important;
        font-size: 16px;
        font-weight: 900;
        text-shadow: 0 4px 20px rgba(0, 0, 0, .35);
    }

    body.is-home-hero:not(.header-compact) .desktop-nav > a::after,
    body.is-home-hero:not(.header-compact) .nav-item > a::after {
        background: #fff;
    }

    body.is-home-hero:not(.header-compact) .header-icons {
        gap: 18px;
    }

    body.is-home-hero:not(.header-compact) .header-icons a,
    body.is-home-hero:not(.header-compact) .icon-link {
        color: #fff !important;
    }

    body.is-home-hero:not(.header-compact) .header-icons svg,
    body.is-home-hero:not(.header-compact) .icon-link svg {
        fill: #fff !important;
        filter: drop-shadow(0 4px 16px rgba(0, 0, 0, .35));
    }

    /* HOMEPAGE SCROLLED STATE Ã¢â‚¬â€ compact white floating bar */
    body.is-home-hero.header-compact .terry-header-inner,
    body.is-home-hero.header-compact .terry-header-shell,
    body:not(.is-home-hero) .terry-header-inner,
    body:not(.is-home-hero) .terry-header-shell {
        width: min(1120px, calc(100vw - 40px));
        height: 76px;
        margin: 0 auto;
        padding: 0 24px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 28px;
        background: rgba(255, 255, 255, .97) !important;
        border-radius: 6px !important;
        box-shadow: 0 12px 36px rgba(0, 0, 0, .14) !important;
    }

    body.is-home-hero.header-compact .terry-logo,
    body:not(.is-home-hero) .terry-logo {
        width: 142px;
        height: 58px;
        transform: none;
        filter: none;
    }

    body.is-home-hero.header-compact .desktop-nav,
    body:not(.is-home-hero) .desktop-nav {
        justify-content: center;
        gap: 25px;
        transform: none;
    }

    body.is-home-hero.header-compact .desktop-nav > a,
    body.is-home-hero.header-compact .nav-item > a,
    body:not(.is-home-hero) .desktop-nav > a,
    body:not(.is-home-hero) .nav-item > a {
        color: #000 !important;
        font-size: 17px;
        font-weight: 900;
        text-shadow: none;
    }

    body.is-home-hero.header-compact .desktop-nav > a::after,
    body.is-home-hero.header-compact .nav-item > a::after,
    body:not(.is-home-hero) .desktop-nav > a::after,
    body:not(.is-home-hero) .nav-item > a::after {
        background: #000;
    }

    body.is-home-hero.header-compact .header-icons a,
    body.is-home-hero.header-compact .icon-link,
    body:not(.is-home-hero) .header-icons a,
    body:not(.is-home-hero) .icon-link {
        color: #000 !important;
    }

    body.is-home-hero.header-compact .header-icons svg,
    body.is-home-hero.header-compact .icon-link svg,
    body:not(.is-home-hero) .header-icons svg,
    body:not(.is-home-hero) .icon-link svg {
        fill: #000 !important;
        filter: none;
    }

    /* Mega menu position in compact mode */
    body.is-home-hero.header-compact .mega-menu,
    body:not(.is-home-hero) .mega-menu {
        top: 76px;
    }

    /* Mega menu position in transparent homepage top state */
    body.is-home-hero:not(.header-compact) .mega-menu {
        top: 92px;
        background: #fff;
        color: #000;
    }
}

@media (min-width: 901px) and (max-width: 1180px) {
    body.is-home-hero:not(.header-compact) .terry-header-inner,
    body.is-home-hero:not(.header-compact) .terry-header-shell {
        width: calc(100vw - 36px);
        grid-template-columns: minmax(190px, 240px) 1fr auto;
        gap: 16px;
    }

    body.is-home-hero:not(.header-compact) .terry-logo {
        width: 194px;
        height: 80px;
    }

    body.is-home-hero:not(.header-compact) .desktop-nav {
        gap: 16px;
    }

    body.is-home-hero:not(.header-compact) .desktop-nav > a,
    body.is-home-hero:not(.header-compact) .nav-item > a {
        font-size: 13px;
    }

    .mega-menu {
        width: calc(100vw - 36px);
        grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
        gap: 16px;
        padding: 18px;
    }

    .mega-links a {
        font-size: clamp(19px, 1.6vw, 26px);
    }

    .mega-feature {
        min-height: 240px;
    }
}

.mobile-menu-toggle {
    display: none;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
}

/* Mobile drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: min(88vw, 430px);
    height: 100vh;
    background: #fff;
    z-index: 2000;
    transform: translateX(-105%);
    transition: transform .32s var(--ease);
    padding: 22px;
    overflow-y: auto;
}

.drawer-open .mobile-drawer {
    transform: translateX(0);
}

.drawer-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1999;
    background: rgba(0, 0, 0, .45);
}

.drawer-open .drawer-backdrop {
    display: block;
}

.mobile-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}

.mobile-menu-close {
    border: 0;
    background: transparent;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
}

.mobile-nav {
    padding-top: 18px;
}

.mobile-nav > a,
.mobile-accordion {
    width: 100%;
    display: block;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    padding: 16px 0;
    text-align: left;
    color: #000;
    font-size: 29px;
    font-weight: 900;
    letter-spacing: -.06em;
    text-transform: uppercase;
    cursor: pointer;
}

.mobile-panel {
    display: none;
    padding: 6px 0 14px 18px;
}

.mobile-panel.is-open {
    display: block;
}

.mobile-panel a {
    display: block;
    padding: 10px 0;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: -.03em;
    text-transform: uppercase;
}

/* Hero */
.home-hero {
    position: relative;
    min-height: 100vh;
    margin-top: 0;
    background: #000;
    overflow: visible;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: var(--z-hero-bg);
    pointer-events: none;
    background-image:
        linear-gradient(90deg, rgba(0, 0, 0, .68) 0%, rgba(0, 0, 0, .24) 44%, rgba(0, 0, 0, .05) 100%),
        url('../img/Banner_3.webp');
    background-size: cover;
    background-position: center top;
    transform: scale(1.015);
    animation: heroZoom 1.2s var(--ease) both;
}

@keyframes heroZoom {
    from {
        transform: scale(1.06);
        filter: brightness(.88);
    }

    to {
        transform: scale(1.015);
        filter: brightness(1);
    }
}

/* Filled by mobile hero slider (Ã¢â€°Â¤900px); hidden on desktop */
.hero-mobile-slider,
.hero-mobile-dots,
.hero-scrim {
    display: none;
}

@keyframes heroMobileKenBurns {
    0%,
    100% {
        transform: scale(1) translate3d(0, 0, 0);
    }

    50% {
        transform: scale(1.12) translate3d(0, 0.35%, 0);
    }
}

@keyframes heroMobileKenBurnsAlt {
    0%,
    100% {
        transform: scale(1.14) translate3d(0, 0, 0);
    }

    50% {
        transform: scale(1) translate3d(0, 0, 0);
    }
}

.hero-content {
    position: relative;
    z-index: 20;
    min-height: calc(100vh - 34px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 190px 38px 72px;
    color: #fff;
    pointer-events: auto;
}

.home-hero .hero-content:has(.btn-light:only-child) {
    padding-bottom: clamp(56px, 7vw, 92px);
}

.hero-content p {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.hero-content h1 {
    margin: 0 0 26px;
    max-width: 820px;
    font-size: clamp(62px, 9.8vw, 152px);
    line-height: .82;
    font-weight: 900;
    letter-spacing: -.09em;
    text-transform: uppercase;
}

.btn-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 154px;
    background: #fff;
    color: #000 !important;
    padding: 15px 25px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: -.02em;
    text-transform: uppercase;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.btn-light:hover {
    background: #000;
    color: #fff !important;
    outline: 1px solid #fff;
    transform: translateY(-1px);
}

/* Sections */
.section-pad {
    padding: 46px 38px;
}

/* Speed: skip full rendering for below-the-fold sections until needed */
.featured-drop,
.category-tiles,
.editorial-banner,
.brand-story {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.section-head p,
.brand-story .story-copy p,
.editorial-banner p {
    margin: 0 0 5px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(40px, 5vw, 76px);
    line-height: .88;
    font-weight: 900;
    letter-spacing: -.075em;
    text-transform: uppercase;
}

.section-head > a {
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

/* Product grid */
.product-grid-home {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.home-product-card a {
    display: block;
    text-align: center;
}

.home-product-image {
    position: relative;
    background: #f4f4f1;
    aspect-ratio: 3 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.home-product-image img {
    width: 88%;
    height: 88%;
    object-fit: contain;
    transition: transform .36s var(--ease);
}

.home-product-card:hover img {
    transform: scale(1.055);
}

.home-product-image span {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: #000;
    color: #fff;
    border-radius: 999px;
    padding: 9px 11px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .03em;
}

/* Hover-swap: overlay the secondary (gallery) image on top of the primary one
   so they occupy the exact same slot instead of sitting side-by-side. */
.terry-product-main-image {
    transition: opacity .35s var(--ease), transform .36s var(--ease);
}

.terry-product-hover-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 88%;
    height: 88%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s var(--ease);
}

.home-product-card:hover .terry-product-main-image,
.terry-product-tile:hover .terry-product-main-image {
    opacity: 0;
}

.home-product-card:hover .terry-product-hover-image,
.terry-product-tile:hover .terry-product-hover-image {
    opacity: 1;
}

.home-product-card h3 {
    margin: 14px 0 4px;
    font-size: 15px;
    font-weight: 900;
}

.product-subline {
    margin: 0 0 6px;
    color: #777;
    font-size: 12px;
}

.home-product-price {
    font-size: 14px;
    font-weight: 900;
}

.home-product-price del {
    color: #777;
    margin-left: 6px;
    font-weight: 500;
}

/* Category tiles */
.category-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.category-tile {
    min-height: 235px;
    color: #fff !important;
    display: flex;
    align-items: flex-end;
    padding: 28px;
    position: relative;
    overflow: hidden;
    background: #111;
}

.category-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(0deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .15)),
        url('../img/Banner_3.webp');
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    transition: transform .45s var(--ease), filter .45s var(--ease);
}

.category-tile:hover::before {
    transform: scale(1.08);
    filter: contrast(1.08);
}

.category-tile div {
    position: relative;
    z-index: 2;
}

.tile-pullovers::before {
    background-position: center 45%;
}

.tile-bottoms::before {
    background-position: center 65%;
}

.category-tile h3 {
    margin: 0 0 4px;
    font-size: 32px;
    line-height: .92;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -.06em;
}

.category-tile p {
    margin: 0 0 12px;
    font-size: 13px;
}

.category-tile span {
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

/* Homepage brand motion bands */
.brand-pillars-strip,
.terry-type-band {
    width: 100%;
    overflow: hidden;
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: #000;
}

.brand-pillars-track,
.terry-type-band__track {
    display: flex;
    align-items: center;
    gap: 18px;
    width: max-content;
    min-width: max-content;
    padding: 10px 0;
    animation: terryMarquee 28s linear infinite;
}

.brand-pillars-track span,
.terry-type-band__track span {
    flex: 0 0 auto;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.brand-pillars-track .sep,
.terry-type-band__track .ttb-dot {
    color: var(--terry-accent);
}

.terry-type-band {
    margin-top: 8px;
    background: #000;
    color: #fff;
    border-color: #000;
}

.terry-type-band__track {
    padding: 13px 0;
    animation-duration: 24s;
}

/* Homepage lookbook carousel */
.terry-lookbook {
    content-visibility: auto;
    contain-intrinsic-size: 1px 720px;
    padding: 54px 0 58px;
    background: #fff;
    overflow: hidden;
}

.terry-lookbook__head {
    width: min(1440px, 100%);
    margin: 0 auto 18px;
    padding: 0 38px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.terry-lookbook__kicker {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.terry-lookbook__title {
    margin: 0;
    font-size: clamp(42px, 6vw, 86px);
    line-height: .86;
    font-weight: 900;
    letter-spacing: -.075em;
    text-transform: uppercase;
}

.terry-lookbook__see-all {
    flex: 0 0 auto;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    border-bottom: 2px solid currentColor;
    padding-bottom: 3px;
}

.terry-lookbook__nav {
    display: none;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.terry-lookbook__arrow {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(5, 5, 5, .16);
    background: #fff;
    color: #050505;
    cursor: pointer;
    transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), opacity .2s ease;
}

.terry-lookbook__arrow span {
    display: block;
    font-size: 25px;
    line-height: 1;
    transform: translateY(-1px);
}

.terry-lookbook__arrow:hover:not(:disabled) {
    background: #050505;
    color: #fff;
    border-color: #050505;
}

.terry-lookbook__arrow:disabled {
    opacity: .32;
    cursor: default;
}

.terry-lookbook__scroll-wrapper {
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    cursor: grab;
}

.terry-lookbook__scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.terry-lookbook__scroll-wrapper.is-dragging {
    cursor: grabbing;
}

.terry-lookbook__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 34vw);
    gap: 14px;
    width: max-content;
    padding: 0 38px;
}

.terry-lookbook__slide {
    scroll-snap-align: start;
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #eee;
}

.terry-lookbook__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .5s var(--ease);
}

.terry-lookbook__slide:hover img {
    transform: scale(1.045);
}

.terry-lookbook__slide span {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    padding: 10px 12px;
    background: rgba(255, 255, 255, .92);
    color: #050505;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.terry-featured-categories {
    background: #fff;
}

.terry-featured-categories__viewport {
    scroll-behavior: smooth;
}

.terry-featured-categories__viewport.is-dragging {
    scroll-behavior: auto;
}

.terry-featured-categories__track {
    grid-auto-columns: minmax(360px, 34vw);
}

.terry-featured-categories__slide {
    aspect-ratio: 4 / 5;
    background: #080808;
}

.terry-featured-categories__slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, .64) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, .16), rgba(0, 0, 0, 0));
    pointer-events: none;
    transition: transform .32s cubic-bezier(.22, 1, .36, 1);
}

.terry-featured-categories__slide span {
    z-index: 2;
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 0;
    background: transparent;
    color: #fff;
    font-size: clamp(28px, 3vw, 46px);
    line-height: .96;
    font-weight: 900;
    letter-spacing: 0;
    text-shadow: 0 4px 18px rgba(0, 0, 0, .42);
    overflow-wrap: anywhere;
}

.terry-featured-categories__slide:hover span {
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 8px;
}

@media (min-width: 901px) {
    .terry-featured-categories .terry-lookbook__see-all {
        display: none;
    }

    .terry-featured-categories .terry-lookbook__nav {
        display: inline-flex;
    }
}

@media (max-width: 900px) {
    .terry-featured-categories .terry-lookbook__see-all {
        display: none;
    }
}

/* Editorial banner */
.editorial-banner {
    min-height: 430px;
    margin: 0 38px 24px;
    position: relative;
    overflow: hidden;
    background: #000;
    color: #fff;
    display: flex;
    align-items: flex-end;
    padding: 38px;
}

.editorial-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .68), rgba(0, 0, 0, .12)),
        var(--card-bg, url('../img/terry-editorial-lookbook.webp'));
    background-size: cover;
    background-position: center 58%;
}

.editorial-banner div {
    position: relative;
    z-index: 2;
}

.editorial-banner h2 {
    max-width: 560px;
    margin: 0 0 14px;
    font-size: clamp(42px, 6vw, 92px);
    line-height: .88;
    font-weight: 900;
    letter-spacing: -.075em;
    text-transform: uppercase;
}

.editorial-banner a {
    color: #fff !important;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.home-about-banner {
    min-height: clamp(440px, 48vw, 640px);
}

.home-about-banner::before {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .34) 42%, rgba(0, 0, 0, .08) 100%),
        var(--card-bg, url('../img/Look Book/12.webp'));
    background-size: cover;
    background-position: center 46%;
}

.home-about-banner .home-editorial-copy p {
    margin: 0 0 18px;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.home-about-banner .home-editorial-copy span {
    display: block;
    max-width: 560px;
    margin: 0 0 22px;
    font-size: clamp(17px, 1.55vw, 24px);
    line-height: 1.38;
}

.home-about-banner .home-editorial-copy a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding-bottom: 2px;
}

/* About page */
.terry-about-page {
    background: #fff;
    color: #080808;
}

.terry-about-hero {
    position: relative;
    min-height: min(760px, 86vh);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #050505;
}

.terry-about-hero__picture,
.terry-about-hero__picture img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.terry-about-hero__picture img {
    object-fit: cover;
    object-position: center 44%;
}

.terry-about-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, .28) 52%, rgba(0, 0, 0, .08) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .12) 0%, rgba(0, 0, 0, .08) 48%, rgba(0, 0, 0, .74) 100%);
}

.terry-about-hero__copy {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100vw - 76px));
    margin: 0 auto;
    padding: clamp(140px, 16vw, 220px) 0 clamp(58px, 8vw, 96px);
    color: #fff;
}

.terry-about-hero__copy p {
    margin: 0 0 18px;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.terry-about-hero__copy h1 {
    max-width: 900px;
    margin: 0 0 24px;
    font-size: clamp(48px, 7.2vw, 118px);
    line-height: .88;
    font-weight: 900;
    letter-spacing: -.075em;
    text-transform: uppercase;
}

.terry-about-hero__copy a,
.terry-about-section--closing a {
    color: inherit !important;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.terry-about-story {
    width: min(1180px, calc(100vw - 76px));
    margin: 0 auto;
    padding: clamp(64px, 8vw, 112px) 0 clamp(72px, 9vw, 128px);
    display: grid;
    grid-template-columns: minmax(190px, .34fr) minmax(0, .76fr);
    gap: clamp(34px, 6vw, 86px);
    align-items: start;
}

.terry-about-story__aside {
    position: sticky;
    top: 116px;
    padding-top: 8px;
    border-top: 2px solid #080808;
}

.terry-about-story__aside p:first-child {
    margin: 0 0 18px;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.terry-about-story__aside p:last-child {
    margin: 0;
    max-width: 260px;
    color: #555;
    font-size: 15px;
    line-height: 1.55;
}

.terry-about-story__body {
    max-width: 820px;
}

.terry-about-section {
    padding-bottom: clamp(42px, 6vw, 76px);
}

.terry-about-section + .terry-about-section {
    border-top: 1px solid #e6e6e6;
    padding-top: clamp(42px, 5.5vw, 68px);
}

.terry-about-kicker {
    margin: 0 0 12px !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: .16em !important;
    text-transform: uppercase;
    color: #777;
}

.terry-about-section h2 {
    max-width: 760px;
    margin: 0 0 22px;
    font-size: clamp(30px, 4vw, 58px);
    line-height: .98;
    font-weight: 900;
    letter-spacing: -.055em;
}

.terry-about-section p {
    margin: 0 0 18px;
    color: #1d1d1d;
    font-size: clamp(17px, 1.45vw, 21px);
    line-height: 1.72;
}

.terry-about-section p:last-child {
    margin-bottom: 0;
}

.terry-about-section--pull h2 {
    font-style: italic;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
}

.terry-about-image {
    margin: 0 0 clamp(42px, 6vw, 76px);
}

.terry-about-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.terry-about-section--closing {
    padding: 0 0 clamp(52px, 7vw, 92px);
    background: transparent;
    color: #050505;
}

.terry-about-section--closing p {
    color: #202020;
}

.terry-about-section--closing a {
    display: inline-flex;
    margin-top: 14px;
}

.terry-about-page--blog {
    background: #f7f7f5;
}

.terry-about-hero--blog {
    min-height: min(720px, 82vh);
}

.terry-about-page--blog .terry-about-hero__copy {
    width: min(1080px, calc(100vw - 76px));
}

.terry-about-page--blog .terry-about-hero__copy h1 {
    max-width: 920px;
}

.terry-about-story--blog {
    width: min(980px, calc(100vw - 76px));
    display: block;
    padding-top: clamp(58px, 7vw, 96px);
}

.terry-about-story--blog .terry-about-story__body {
    max-width: none;
}

.terry-about-page--blog .terry-about-section {
    max-width: 820px;
    margin: 0 auto;
}

.terry-about-page--blog .terry-about-section h2 {
    max-width: 760px;
}

.terry-about-page--blog .terry-about-section p {
    color: #202020;
}

.terry-about-page--blog .terry-about-image--wide {
    width: min(100%, 980px);
    margin: 0 auto clamp(42px, 6vw, 76px);
}

.terry-about-page--blog .terry-about-image--wide img {
    aspect-ratio: 16 / 9;
    border: 0;
    object-position: center;
}

.terry-about-page--blog .terry-about-section--closing {
    max-width: 820px;
    margin-top: 0;
    padding-top: clamp(42px, 6vw, 76px);
    border-top: 1px solid rgba(0, 0, 0, .12);
    background: transparent;
    color: #050505;
}

.terry-about-page--blog .terry-about-section--closing h2,
.terry-about-page--blog .terry-about-section--closing p {
    color: #202020;
}

/* Brand story */
.brand-story {
    display: grid;
    grid-template-columns: .9fr 1.6fr;
    gap: 42px;
    align-items: center;
    border-top: 1px solid var(--line);
}

.story-copy h2 {
    margin: 0 0 12px;
    font-size: clamp(38px, 4.5vw, 66px);
    line-height: .88;
    font-weight: 900;
    letter-spacing: -.075em;
}

.story-copy span {
    display: block;
    max-width: 400px;
    line-height: 1.52;
    margin-bottom: 18px;
    color: #333;
}

.story-copy a {
    font-size: 13px;
    font-weight: 900;
}

.story-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    border-left: 1px solid var(--line);
    padding-left: 42px;
}

.story-points h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 900;
}

.story-points p {
    margin: 0;
    color: #555;
    line-height: 1.45;
}

/* Footer */
.terry-footer {
    margin-top: auto;
    background: var(--white);
    color: var(--black);
    border-top: 1px solid var(--black);
}

.terry-footer__shell {
    width: min(1180px, calc(100vw - 64px));
    margin: 0 auto;
    padding: clamp(40px, 5vw, 64px) 24px clamp(28px, 3.5vw, 40px);
}

.terry-footer__main {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
    gap: clamp(32px, 4vw, 56px);
    padding-bottom: clamp(36px, 4.5vw, 52px);
}

.terry-footer__brand {
    max-width: 22rem;
}

.terry-footer__logo {
    display: inline-flex;
    width: clamp(132px, 13vw, 188px);
    aspect-ratio: 1 / 1;
    margin-bottom: clamp(18px, 2vw, 26px);
    transition: opacity 0.2s var(--ease);
}

.terry-footer__logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.terry-footer__logo:hover {
    opacity: 0.72;
}

.terry-footer__tagline {
    margin: 0 0 clamp(22px, 2.5vw, 30px);
    font-size: clamp(1rem, 1.15vw, 1.125rem);
    line-height: 1.45;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--black);
}

.terry-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.terry-footer__social a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1.5px solid var(--black);
    border-radius: 999px;
    color: var(--black);
    transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}

.terry-footer__social a:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

.terry-footer__social svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.terry-footer__col {
    display: flex;
    flex-direction: column;
}

.terry-footer__heading {
    margin: 0 0 20px;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--black);
}

.terry-footer__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.terry-footer__list li {
    margin-bottom: 12px;
}

.terry-footer__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    opacity: .8;
    transition: opacity .2s var(--ease);
}

.terry-footer__link:hover {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.terry-footer__contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.terry-footer__contact-list li {
    margin-bottom: 12px;
}

.terry-footer__address {
    font-size: 14px;
    color: var(--black);
    opacity: .8;
}

.terry-footer-policies {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: var(--black);
    border: 1px solid var(--black);
    margin: 0 0 28px;
}

.terry-footer-policy {
    min-height: 280px;
    padding: clamp(20px, 2.4vw, 30px);
    background: #f6f5f1;
    color: var(--black);
}

.terry-footer-policy h2 {
    margin: 0 0 14px;
    font-size: clamp(24px, 2.2vw, 36px);
    line-height: .86;
    font-weight: 900;
    letter-spacing: -.06em;
    text-transform: uppercase;
}

.terry-footer-policy p {
    margin: 0 0 14px;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 800;
}

.terry-footer-policy ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.terry-footer-policy li {
    margin: 0;
    padding: 9px 0;
    border-top: 1px solid rgba(0, 0, 0, .12);
    font-size: 11px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: .015em;
    text-transform: uppercase;
}

/* Footer Bottom Bar */
.terry-footer__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    margin-top: 24px;
}

.terry-footer__copy {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
}

.terry-footer__credit {
    margin: 0;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* Final footer layout refinement */
.terry-footer__shell {
    width: min(1440px, calc(100vw - 48px));
    padding-top: clamp(42px, 5vw, 70px);
}

.terry-footer__main {
    grid-template-columns: minmax(260px, .95fr) repeat(3, minmax(180px, .7fr));
    align-items: start;
    gap: clamp(28px, 5vw, 86px);
}

.terry-footer__brand {
    max-width: 300px;
}

.terry-footer__logo {
    width: clamp(168px, 16vw, 240px);
    aspect-ratio: 1098 / 448;
    margin-bottom: 34px;
}

.terry-footer__logo img {
    object-fit: contain;
    object-position: left center;
}

/* Mobile Footer Accordions */
.terry-footer-mobile-accordions {
    display: none;
}

/* WooCommerce notices + cart page */
.woocommerce-notices-wrapper {
    position: fixed;
    top: 118px;
    right: 24px;
    z-index: 10050;
    width: min(430px, calc(100vw - 32px));
    margin: 0;
    pointer-events: none;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    width: 100%;
    margin: 0 0 10px !important;
    padding: 14px !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    border: 1px solid var(--black) !important;
    border-radius: 0 !important;
    background: rgba(246, 245, 241, .98) !important;
    color: var(--black) !important;
    box-shadow: 0 22px 48px rgba(0, 0, 0, .18);
    font-size: 12px;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
    pointer-events: auto;
    animation: terryToastIn .24s ease both;
}

@keyframes terryToastIn {
    from {
        opacity: 0;
        transform: translate3d(14px, -8px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
    display: none !important;
}

.woocommerce-message a.button,
.woocommerce-info a.button,
.woocommerce-error a.button,
.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button {
    order: 0;
    width: 100%;
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 16px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--black) !important;
    border-radius: 0 !important;
    background: var(--black) !important;
    color: var(--white) !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.woocommerce-message a.button:hover,
.woocommerce-info a.button:hover,
.woocommerce-error a.button:hover {
    background: var(--white) !important;
    color: var(--black) !important;
}

/* Terry bag overlay */
.terry-bag {
    position: fixed;
    inset: 0;
    z-index: 2500;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 250ms ease, visibility 250ms ease;
}

.terry-bag.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.terry-bag__scrim {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .52);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.terry-bag__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(640px, 90vw);
    height: auto;
    max-height: 90vh;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
    transform: translateX(100%);
    transition: transform 250ms var(--ease);
}

.terry-bag.is-open .terry-bag__panel {
    transform: translateX(0);
}

.terry-bag__header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 28px 32px;
    border-bottom: 1px solid #ececec;
}

.terry-bag__header h2 {
    margin: 0;
    padding: 10px 6px 10px 13px;
    background: #111;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.03em;
    text-transform: uppercase;
}

.terry-bag__close {
    width: auto;
    height: auto;
    margin-left: 0;
    padding: 6px 13px 10px 4px;
    border: 0;
    background: #111;
    color: #fff;
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.03em;
    cursor: pointer;
}

.terry-bag [data-terry-bag-content] {
    min-height: 0;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
}

.terry-bag__body {
    min-height: 0;
    overflow-y: auto;
    scrollbar-width: none;
}

.terry-bag__body::-webkit-scrollbar {
    display: none;
}

.terry-bag__items {
    display: grid;
}

.terry-bag__item {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr) auto;
    gap: 24px;
    padding: 28px 32px;
    border-bottom: 1px solid #ececec;
}

.terry-bag__thumb {
    display: block;
    width: 120px;
    height: 160px;
    background: #f6f6f6;
}

.terry-bag__item-image {
    width: 120px;
    height: 160px;
    object-fit: cover;
}

.terry-bag__item-main {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
}

.terry-bag__item-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: start;
}

.terry-bag__item-title {
    margin: 0;
    font: inherit;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.terry-bag__item-meta,
.terry-bag__item-meta p,
.terry-bag__item-meta dl {
    margin: 6px 0 0;
    color: #666;
    font-size: 14px;
    line-height: 1.35;
    text-transform: uppercase;
}

.terry-bag__item-meta dt,
.terry-bag__item-meta dd {
    display: inline;
    margin: 0;
}

.terry-bag__item-meta dt {
    display: none;
}

.terry-bag__item-price {
    white-space: nowrap;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    text-align: right;
}

.terry-bag__item-price del {
    color: #999;
    opacity: 1;
    text-decoration: line-through;
}

.terry-bag__item-price ins {
    color: #ff3b1f;
    text-decoration: none;
}

.terry-bag__item-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.terry-bag__qty {
    width: 132px;
    height: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 0;
    overflow: hidden;
}

.terry-bag__qty button {
    height: 100%;
    border: 0;
    background: #fff;
    color: #111;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: background 200ms ease;
}

.terry-bag__qty button:hover {
    background: #f7f7f7;
}

.terry-bag__qty span {
    display: grid;
    place-items: center;
    font-size: 16px;
    font-weight: 900;
}

.terry-bag__remove {
    border: 0;
    border-bottom: 1px solid currentColor;
    padding: 0 0 2px;
    background: transparent;
    color: #444;
    font-size: 14px;
    cursor: pointer;
}

.terry-bag__footer {
    padding: 24px 32px;
    border-top: 1px solid #ececec;
    background: #fff;
}

.terry-bag__subtotal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.02em;
    text-transform: uppercase;
}

.terry-bag__checkout {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff !important;
    font-size: 22px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.02em;
    text-transform: uppercase;
    border-radius: 0;
    transition: background 200ms ease;
}

.terry-bag__checkout:hover {
    background: #111;
}

.terry-bag__empty {
    min-height: 240px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 18px;
    padding: 48px 32px;
    text-align: center;
}

.terry-bag__empty p {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
}

.terry-bag__empty a {
    border-bottom: 1px solid currentColor;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.terry-bag.is-loading .terry-bag__panel {
    cursor: progress;
}

.terry-bag.is-loading [data-terry-bag-content] {
    opacity: .58;
    pointer-events: none;
}

@media (max-width: 900px) {
    .terry-bag {
        padding: 0;
        height: 100vh;
        height: 100dvh;
    }

    .terry-bag__panel {
        width: 100vw;
        max-width: 100vw;
        height: 100vh;
        height: 100dvh;
        max-height: 100vh;
        max-height: 100dvh;
        border: 0;
        border-radius: 0;
        transform: translateX(100%);
    }

    .terry-bag__header {
        padding: 20px;
    }

    .terry-bag__header h2 {
        font-size: 24px;
    }

    .terry-bag__close {
        font-size: 28px;
    }

    .terry-bag__item {
        grid-template-columns: 80px minmax(0, 1fr);
        gap: 14px;
        padding: 20px;
    }

    .terry-bag__item-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
    }

    .terry-bag__item-title {
        font-size: 16px;
    }

    .terry-bag__item-meta,
    .terry-bag__item-meta p,
    .terry-bag__item-meta dl,
    .terry-bag__item-price {
        font-size: 14px;
    }

    .terry-bag__item-price {
        text-align: left;
        white-space: normal;
    }

    .terry-bag__thumb,
    .terry-bag__item-image {
        width: 80px;
        height: 110px;
    }

    .terry-bag__item-main {
        gap: 14px;
    }

    .terry-bag__item-actions {
        gap: 12px;
        flex-wrap: wrap;
    }

    .terry-bag__qty {
        width: 112px;
        height: 44px;
    }

    .terry-bag__qty button {
        font-size: 24px;
    }

    .terry-bag__qty span {
        font-size: 15px;
    }

    .terry-bag__remove {
        font-size: 14px;
    }

    .terry-bag__footer {
        padding: 16px 20px calc(16px + env(safe-area-inset-bottom));
    }

    .terry-bag__subtotal {
        margin-bottom: 12px;
        font-size: 18px;
    }

    .terry-bag__checkout {
        min-height: 56px;
        font-size: 18px;
    }
}

body.woocommerce-cart main,
body.woocommerce-cart .site-main,
body.woocommerce-cart .content-area,
body.woocommerce-cart .entry-content {
    background: var(--white);
}

body.woocommerce-cart .entry-header,
body.woocommerce-cart .page-title {
    display: none !important;
}

body.woocommerce-cart .woocommerce {
    width: min(1180px, calc(100vw - 48px));
    margin: 0 auto;
    padding: clamp(118px, 12vw, 156px) 0 clamp(60px, 7vw, 92px);
}

body.woocommerce-cart .woocommerce::before {
    content: "SHOPPING BAG";
    display: block;
    margin: 0 0 22px;
    color: var(--black);
    font-size: clamp(52px, 8vw, 112px);
    line-height: .82;
    font-weight: 900;
    letter-spacing: -.085em;
    text-transform: uppercase;
}

body.woocommerce-cart .woocommerce-cart-form {
    margin: 0;
}

body.woocommerce-cart table.shop_table {
    width: 100%;
    border: 1px solid var(--black) !important;
    border-collapse: collapse !important;
    background: var(--white);
}

body.woocommerce-cart table.shop_table th,
body.woocommerce-cart table.shop_table td {
    border: 1px solid rgba(0, 0, 0, .14) !important;
    padding: 16px !important;
    color: var(--black);
    vertical-align: middle;
}

body.woocommerce-cart table.shop_table th {
    background: var(--black);
    color: var(--white);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

body.woocommerce-cart table.shop_table td {
    font-size: 14px;
    font-weight: 800;
}

body.woocommerce-cart .product-thumbnail img {
    width: 96px !important;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    object-position: center top;
    background: #f6f5f1;
}

body.woocommerce-cart .product-name a {
    color: var(--black);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: -.02em;
    text-transform: uppercase;
}

body.woocommerce-cart .product-remove a {
    width: 32px;
    height: 32px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--black);
    border-radius: 0;
    color: var(--black) !important;
    font-size: 22px;
    line-height: 1;
    text-decoration: none !important;
}

body.woocommerce-cart .product-remove a:hover {
    background: var(--black);
    color: var(--white) !important;
}

body.woocommerce-cart .quantity .qty {
    width: 74px;
    height: 42px;
    border: 1px solid var(--black);
    border-radius: 0;
    background: var(--white);
    color: var(--black);
    font-size: 14px;
    font-weight: 900;
    text-align: center;
}

body.woocommerce-cart .coupon {
    display: flex;
    gap: 8px;
}

body.woocommerce-cart .coupon input.input-text,
body.woocommerce-cart input.input-text {
    height: 44px;
    min-width: 220px;
    border: 1px solid var(--black) !important;
    border-radius: 0 !important;
    background: var(--white) !important;
    color: var(--black);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

body.woocommerce-cart button.button,
body.woocommerce-cart a.button,
body.woocommerce-cart .checkout-button {
    min-height: 44px;
    padding: 0 18px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--black) !important;
    border-radius: 0 !important;
    background: var(--black) !important;
    color: var(--white) !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: background .18s var(--ease), color .18s var(--ease);
}

body.woocommerce-cart button.button:hover,
body.woocommerce-cart a.button:hover,
body.woocommerce-cart .checkout-button:hover {
    background: var(--white) !important;
    color: var(--black) !important;
}

body.woocommerce-cart .cart-collaterals {
    margin-top: 28px;
    display: flex;
    justify-content: flex-end;
}

body.woocommerce-cart .cart_totals {
    width: min(460px, 100%) !important;
    float: none !important;
    padding: 24px;
    border: 1px solid var(--black);
    background: #f6f5f1;
}

body.woocommerce-cart .cart_totals h2 {
    margin: 0 0 18px;
    font-size: clamp(30px, 3vw, 46px);
    line-height: .86;
    font-weight: 900;
    letter-spacing: -.06em;
    text-transform: uppercase;
}

body.woocommerce-cart .cart_totals table {
    margin-bottom: 18px;
}

body.woocommerce-cart .wc-proceed-to-checkout {
    padding: 0 !important;
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    width: 100%;
    min-height: 54px;
}

body.woocommerce-cart .woocommerce-shipping-destination,
body.woocommerce-cart .woocommerce-shipping-calculator {
    font-size: 12px;
    font-weight: 800;
}

body.woocommerce-cart .cart-empty,
body.woocommerce-cart .return-to-shop {
    width: min(720px, 100%);
}

body.woocommerce-cart .cart-empty {
    margin: 0 0 18px !important;
    padding: 26px !important;
    border: 1px solid var(--black) !important;
    background: #f6f5f1 !important;
    color: var(--black) !important;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
}

body.woocommerce-cart .return-to-shop a.button {
    min-width: 220px;
}

/* Checkout page */
body.woocommerce-checkout main,
body.woocommerce-checkout .site-main,
body.woocommerce-checkout .content-area,
body.woocommerce-checkout .entry-content {
    background: #fff;
}

body.woocommerce-checkout .entry-header,
body.woocommerce-checkout .page-title {
    display: none !important;
}

body.woocommerce-checkout .woocommerce-form-login-toggle,
body.woocommerce-checkout .woocommerce-form-coupon-toggle,
body.woocommerce-checkout form.checkout_coupon,
body.woocommerce-checkout form.login {
    display: none !important;
}

body.woocommerce-checkout .woocommerce {
    width: min(1200px, calc(100vw - 48px));
    margin: 0 auto;
    padding: 116px 0 96px;
}

body.woocommerce-checkout .woocommerce::before {
    content: "";
    display: block;
    width: 140px;
    height: 58px;
    margin: 0 0 28px;
    background: url('../img/logo 2.png') left center / contain no-repeat;
}

body.woocommerce-checkout form.checkout {
    display: grid;
    grid-template-columns: minmax(0, .6fr) minmax(360px, .4fr);
    gap: clamp(36px, 5vw, 64px);
    align-items: start;
}

body.woocommerce-checkout form.checkout > #customer_details {
    grid-column: 1;
    grid-row: 1;
}

body.woocommerce-checkout form.checkout > #order_review_heading {
    grid-column: 2;
    grid-row: 1;
}

body.woocommerce-checkout form.checkout > #order_review {
    grid-column: 1 / -1;
    grid-row: 2;
    display: contents;
}

body.woocommerce-checkout #customer_details,
body.woocommerce-checkout #order_review,
body.woocommerce-checkout #order_review_heading {
    float: none !important;
    width: 100% !important;
}

body.woocommerce-checkout #customer_details {
    display: grid;
    gap: 24px;
    min-width: 0;
}

body.woocommerce-checkout #order_review_heading {
    position: sticky;
    top: 100px;
    z-index: 2;
    margin: 0;
    padding: 28px 28px 0;
    border: 1px solid #ececec;
    border-bottom: 0;
    background: #f7f7f7;
    font-size: 20px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.02em;
    text-transform: uppercase;
}

body.woocommerce-checkout #order_review {
    position: static;
    top: auto;
    padding: 0;
    border: 0;
    background: transparent;
    min-width: 0;
}

body.woocommerce-checkout #order_review > table.shop_table {
    grid-column: 2;
    grid-row: 2;
    position: sticky;
    top: 142px;
    padding: 20px 28px 28px;
    border: 1px solid #ececec !important;
    border-top: 0 !important;
    background: #f7f7f7;
}

body.woocommerce-checkout #order_review > #payment {
    grid-column: 1;
    grid-row: 2;
}

body.woocommerce-checkout .woocommerce-billing-fields,
body.woocommerce-checkout .woocommerce-shipping-fields,
body.woocommerce-checkout .woocommerce-additional-fields {
    padding: 0;
    border: 0;
    background: #fff;
}

body.woocommerce-checkout h3 {
    margin: 0 0 18px;
    color: #000;
    font-size: 22px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.02em;
    text-transform: uppercase;
}

body.woocommerce-checkout .form-row {
    margin: 0 0 12px !important;
}

body.woocommerce-checkout label {
    display: block;
    margin: 0 0 6px;
    color: #111;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

body.woocommerce-checkout input.input-text,
body.woocommerce-checkout textarea,
body.woocommerce-checkout select,
body.woocommerce-checkout .select2-selection {
    min-height: 52px !important;
    height: 52px !important;
    border: 1px solid #d9d9d9 !important;
    border-radius: 0 !important;
    background: #fff !important;
    color: #111 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    box-shadow: none !important;
    padding: 0 14px !important;
}

body.woocommerce-checkout textarea {
    min-height: 110px !important;
    height: auto !important;
    padding: 14px !important;
}

body.woocommerce-checkout table.shop_table {
    border: 0 !important;
    border-collapse: collapse !important;
    background: transparent;
}

body.woocommerce-checkout table.shop_table th,
body.woocommerce-checkout table.shop_table td {
    border: 0 !important;
    border-bottom: 1px solid #e5e5e5 !important;
    padding: 14px 0 !important;
    color: #111;
    font-size: 14px;
    font-weight: 700;
    vertical-align: top;
}

body.woocommerce-checkout table.shop_table thead {
    display: none;
}

body.woocommerce-checkout table.shop_table .product-name {
    text-transform: uppercase;
}

body.woocommerce-checkout .terry-checkout-summary__product {
    position: relative;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
}

body.woocommerce-checkout .terry-checkout-summary__thumb {
    position: relative;
    display: block;
    width: 64px;
    height: 84px;
    background: #f6f6f6;
}

body.woocommerce-checkout .terry-checkout-summary__image {
    width: 64px;
    height: 84px;
    object-fit: cover;
}

body.woocommerce-checkout .terry-checkout-summary__qty {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #000;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

body.woocommerce-checkout .terry-checkout-summary__name {
    display: block;
    min-width: 0;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 900;
}

body.woocommerce-checkout .terry-checkout-summary__name .product-quantity {
    display: none;
}

body.woocommerce-checkout .variation {
    margin: 5px 0 0;
    color: #666;
    font-size: 12px;
    line-height: 1.35;
    text-transform: uppercase;
}

body.woocommerce-checkout .variation dt,
body.woocommerce-checkout .variation dd,
body.woocommerce-checkout .variation p {
    display: inline;
    margin: 0;
}

body.woocommerce-checkout .variation dt {
    display: none;
}

body.woocommerce-checkout table.shop_table .product-total,
body.woocommerce-checkout table.shop_table tfoot td {
    text-align: right;
}

body.woocommerce-checkout table.shop_table tfoot tr.order-total th,
body.woocommerce-checkout table.shop_table tfoot tr.order-total td {
    padding-top: 22px !important;
    border-bottom: 0 !important;
    font-size: 22px;
    font-weight: 900;
}

body.woocommerce-checkout #payment {
    margin-top: 0;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff !important;
}

body.woocommerce-checkout #payment::before {
    content: "PAYMENT";
    display: block;
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.02em;
    text-transform: uppercase;
}

body.woocommerce-checkout #payment ul.payment_methods {
    display: grid;
    gap: 10px;
    border-bottom: 0 !important;
    padding: 0 !important;
}

body.woocommerce-checkout #payment ul.payment_methods li {
    margin: 0 !important;
    padding: 16px !important;
    border: 1px solid #d9d9d9;
    background: #fff;
}

body.woocommerce-checkout #payment ul.payment_methods li > label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-size: 14px;
    letter-spacing: 0;
    text-transform: none;
}

body.woocommerce-checkout #payment div.payment_box {
    border-radius: 0 !important;
    background: #f7f7f7 !important;
    color: #111 !important;
    font-size: 13px;
    font-weight: 500;
    margin: 14px -16px -16px !important;
    padding: 16px !important;
}

body.woocommerce-checkout #place_order {
    width: 100%;
    min-height: 58px;
    margin-top: 18px;
    border: 1px solid #000 !important;
    border-radius: 0 !important;
    background: #000 !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: background 200ms ease;
}

body.woocommerce-checkout #place_order:hover {
    background: #111 !important;
    color: #fff !important;
}

body.woocommerce-checkout .woocommerce-form-coupon-toggle,
body.woocommerce-checkout form.checkout_coupon {
    max-width: 720px;
    margin: 0 0 24px !important;
}

body.woocommerce-checkout form.checkout_coupon {
    padding: 0 !important;
    border: 0 !important;
}

body.woocommerce-checkout form.checkout_coupon .form-row {
    margin: 0 !important;
}

body.woocommerce-checkout form.checkout_coupon p:not(.form-row) {
    display: none;
}

body.woocommerce-checkout form.checkout_coupon {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 120px;
    gap: 12px;
}

body.woocommerce-checkout form.checkout_coupon button {
    height: 52px;
    border: 1px solid #000 !important;
    border-radius: 0 !important;
    background: #000 !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-transform: uppercase;
}

body.woocommerce-checkout .woocommerce-form-login-toggle,
body.woocommerce-checkout .woocommerce-form-coupon-toggle,
body.woocommerce-checkout form.checkout_coupon,
body.woocommerce-checkout form.login {
    display: none !important;
}

/* Contact page v3 — minimal premium support page */
.terry-contact-page-v3 {
    background: #fff;
    color: #050505;
    overflow: clip;
}

.tc3-hero {
    position: relative;
    min-height: 60vh;
    background: #050505;
    overflow: hidden;
}

.tc3-hero__media {
    position: absolute;
    inset: 0;
}

.tc3-hero__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.tc3-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .24) 58%, rgba(0, 0, 0, .48));
}

.tc3-hero__content {
    position: relative;
    z-index: 2;
    width: min(1440px, 100%);
    min-height: 60vh;
    margin: 0 auto;
    padding: 132px 38px 46px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    color: #fff;
}

.tc3-hero__content p,
.tc3-card p,
.tc3-help__intro p,
.tc3-final p {
    margin: 0 0 10px;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.tc3-hero__content h1 {
    margin: 0;
    font-size: clamp(58px, 8vw, 132px);
    line-height: .78;
    font-weight: 900;
    letter-spacing: -.09em;
    text-transform: uppercase;
}

.tc3-hero__content span {
    display: block;
    max-width: 620px;
    margin: 18px 0 24px;
    font-size: clamp(15px, 1.45vw, 20px);
    line-height: 1.3;
    font-weight: 800;
}

.tc3-hero__content a,
.tc3-card a,
.tc3-final a {
    min-height: 46px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #050505;
    background: #050505;
    color: #fff !important;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.tc3-hero__content a,
.tc3-final a {
    border-color: #fff;
    background: #fff;
    color: #050505 !important;
}

.tc3-cards,
.tc3-help,
.tc3-final {
    width: min(1440px, 100%);
    margin: 0 auto;
}

.tc3-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: #050505;
    border-bottom: 1px solid #050505;
}

.tc3-card {
    min-height: 320px;
    padding: clamp(22px, 3vw, 38px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #f6f5f1;
}

.tc3-card h2 {
    margin: 0 0 18px;
    font-size: clamp(34px, 4.2vw, 68px);
    line-height: .86;
    font-weight: 900;
    letter-spacing: -.075em;
    text-transform: uppercase;
}

.tc3-card strong {
    display: block;
    margin-bottom: 14px;
    font-size: clamp(18px, 2vw, 30px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.04em;
}

.tc3-card span {
    display: block;
    max-width: 330px;
    margin-bottom: 22px;
    color: rgba(0, 0, 0, .62);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 800;
}

.tc3-card a {
    margin-top: auto;
}

.tc3-help {
    padding: clamp(50px, 7vw, 96px) 38px;
    display: grid;
    grid-template-columns: minmax(260px, .58fr) minmax(0, 1.42fr);
    gap: clamp(24px, 5vw, 82px);
    border-bottom: 1px solid #e2e2e2;
}

.tc3-help__intro h2,
.tc3-final h2 {
    margin: 0;
    font-size: clamp(42px, 5.8vw, 92px);
    line-height: .84;
    font-weight: 900;
    letter-spacing: -.08em;
    text-transform: uppercase;
}

.tc3-faq {
    border-top: 1px solid #050505;
}

.tc3-faq details {
    border-bottom: 1px solid #050505;
}

.tc3-faq summary {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: #050505;
    cursor: pointer;
    list-style: none;
    font-size: clamp(20px, 2.3vw, 38px);
    line-height: .95;
    font-weight: 900;
    letter-spacing: -.055em;
    text-transform: uppercase;
}

.tc3-faq summary::-webkit-details-marker {
    display: none;
}

.tc3-faq summary::after {
    content: "+";
    flex: 0 0 auto;
    font-size: 28px;
    line-height: 1;
}

.tc3-faq details[open] summary::after {
    content: "−";
}

.tc3-faq p {
    max-width: 760px;
    margin: 0;
    padding: 0 0 22px;
    color: rgba(0, 0, 0, .68);
    font-size: 15px;
    line-height: 1.45;
    font-weight: 750;
}

.tc3-final {
    display: grid;
    grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr);
    background: #050505;
    color: #fff;
}

.tc3-final figure {
    margin: 0;
    min-height: 440px;
    overflow: hidden;
}

.tc3-final img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.tc3-final > div {
    padding: clamp(34px, 5vw, 72px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.tc3-final span {
    display: block;
    max-width: 520px;
    margin: 20px 0 26px;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(15px, 1.5vw, 20px);
    line-height: 1.35;
    font-weight: 800;
}

@media (max-width: 1180px) and (min-width: 701px) {
    .tc3-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tc3-card:first-child {
        grid-column: span 2;
    }
}

/* Contact page v2 */
.terry-contact-page-v2 {
    background: #fff;
    color: #050505;
    overflow: clip;
}

.tc-hero {
    position: relative;
    min-height: min(82vh, 820px);
    background: #050505;
    overflow: hidden;
}

.tc-hero__media {
    position: absolute;
    inset: 0;
}

.tc-hero__media img,
.tc-editorial img,
.tc-final img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #f6f5f1;
}

.tc-hero__media img {
    object-position: center;
}

.tc-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .14) 58%, rgba(0, 0, 0, .58));
}

.tc-hero__content {
    position: relative;
    z-index: 2;
    width: min(1440px, 100%);
    min-height: min(82vh, 820px);
    margin: 0 auto;
    padding: 148px 38px 54px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
}

.tc-hero__content p,
.tc-method p,
.tc-editorial__copy p,
.tc-links p,
.tc-final p {
    margin: 0 0 10px;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.tc-hero__content h1,
.tc-method h2,
.tc-editorial__copy h2,
.tc-links h2,
.tc-final h2 {
    margin: 0;
    font-size: clamp(52px, 8vw, 128px);
    line-height: .8;
    font-weight: 900;
    letter-spacing: -.085em;
    text-transform: uppercase;
}

.tc-hero__content span {
    display: block;
    max-width: 580px;
    margin-top: 22px;
    font-size: clamp(15px, 1.6vw, 21px);
    line-height: 1.25;
    font-weight: 800;
}

.tc-methods,
.tc-editorial,
.tc-links,
.tc-final {
    width: min(1440px, 100%);
    margin: 0 auto;
}

.tc-methods {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: #050505;
    border-bottom: 1px solid #050505;
}

.tc-method {
    min-height: 310px;
    padding: clamp(24px, 3vw, 42px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: #f6f5f1;
}

.tc-method--dark {
    background: #050505;
    color: #fff;
}

.tc-method h2 {
    font-size: clamp(36px, 4.5vw, 74px);
}

.tc-method a {
    margin: 18px 0 14px;
    color: inherit;
    font-size: clamp(22px, 2.7vw, 42px);
    line-height: .95;
    font-weight: 900;
    letter-spacing: -.055em;
    text-transform: uppercase;
}

.tc-method span {
    max-width: 320px;
    font-size: 13px;
    line-height: 1.32;
    font-weight: 800;
}

.tc-editorial {
    padding: clamp(54px, 7vw, 112px) 38px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
    gap: clamp(24px, 5vw, 82px);
    align-items: center;
    border-bottom: 1px solid #e2e2e2;
}

.tc-editorial figure,
.tc-final figure {
    margin: 0;
    overflow: hidden;
    background: #f6f5f1;
}

.tc-editorial figure {
    aspect-ratio: 4 / 5;
}

.tc-editorial__copy ul {
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid #050505;
}

.tc-editorial__copy li {
    padding: 16px 0;
    display: grid;
    grid-template-columns: minmax(120px, .35fr) minmax(0, 1fr);
    gap: 20px;
    border-bottom: 1px solid #050505;
}

.tc-editorial__copy strong,
.tc-editorial__copy span {
    font-size: 13px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.tc-editorial__copy span {
    color: rgba(0, 0, 0, .62);
}

.tc-links {
    padding: clamp(46px, 6vw, 86px) 38px;
    display: grid;
    grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr);
    gap: 28px;
    border-bottom: 1px solid #050505;
}

.tc-links h2 {
    font-size: clamp(42px, 5.4vw, 86px);
}

.tc-links nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: #050505;
    border: 1px solid #050505;
}

.tc-links a {
    min-height: 130px;
    padding: 20px;
    display: flex;
    align-items: flex-end;
    background: #fff;
    color: #050505;
    font-size: clamp(22px, 2.8vw, 46px);
    line-height: .9;
    font-weight: 900;
    letter-spacing: -.06em;
    text-transform: uppercase;
}

.tc-links a:hover {
    background: #050505;
    color: #fff;
}

.tc-final {
    padding: clamp(54px, 7vw, 110px) 38px;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 1px;
    background: #050505;
    color: #fff;
}

.tc-final figure {
    min-height: 420px;
}

.tc-final > div {
    padding: clamp(28px, 4vw, 58px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #050505;
}

.tc-final h2 {
    color: #fff;
}

.tc-final a {
    width: fit-content;
    min-height: 48px;
    margin-top: 26px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #050505 !important;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* Policy pages */
.terry-policy-page {
    background: var(--white);
    color: var(--black);
}

.terry-policy-hero {
    width: min(1180px, calc(100vw - 48px));
    margin: 0 auto;
    padding: clamp(132px, 13vw, 176px) 0 34px;
    border-bottom: 1px solid var(--black);
}

.terry-policy-hero p {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.terry-policy-hero h1 {
    margin: 0;
    font-size: clamp(58px, 9vw, 132px);
    line-height: .78;
    font-weight: 900;
    letter-spacing: -.09em;
    text-transform: uppercase;
}

.terry-policy-hero span {
    display: block;
    max-width: 620px;
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 800;
}

.terry-policy-content {
    width: min(1180px, calc(100vw - 48px));
    margin: 0 auto;
    padding: 28px 0 76px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--black);
}

.terry-policy-card {
    min-height: 280px;
    padding: clamp(22px, 3vw, 38px);
    background: #f6f5f1;
}

.terry-policy-card--wide {
    grid-column: span 2;
}

.terry-policy-card--dark {
    background: var(--black);
    color: var(--white);
}

.terry-policy-card h2 {
    margin: 0 0 18px;
    font-size: clamp(32px, 4vw, 62px);
    line-height: .86;
    font-weight: 900;
    letter-spacing: -.07em;
    text-transform: uppercase;
}

.terry-policy-card p,
.terry-policy-card li {
    margin: 0;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 850;
}

.terry-policy-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.terry-policy-card li {
    padding: 13px 0;
    border-top: 1px solid rgba(0, 0, 0, .16);
}

.terry-policy-card--dark li {
    border-top-color: rgba(255, 255, 255, .25);
}

/* ==========================================================================
   Terry Lookbook Page â€” Premium Editorial Campaign
   ========================================================================== */
.terry-editorial-lookbook {
    background: #fff;
    color: #050505;
    overflow: clip;
}

.terry-editorial-lookbook img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #f6f5f1;
}

.tlb-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    background: #050505;
    overflow: hidden;
}

.tlb-hero__picture {
    position: absolute;
    inset: 0;
}

.tlb-hero__picture img {
    object-position: center center;
}

.tlb-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .2) 54%, rgba(0, 0, 0, .54)),
        linear-gradient(180deg, rgba(0, 0, 0, .28), rgba(0, 0, 0, .72));
}

.tlb-hero__content {
    position: relative;
    z-index: 2;
    width: min(1600px, 100%);
    min-height: 100vh;
    min-height: 100svh;
    margin: 0 auto;
    padding: 150px 38px 58px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    color: #fff;
    animation: tlbFadeUp .75s ease both;
}

@keyframes tlbFadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tlb-hero__eyebrow,
.tlb-kicker,
.tlb-section-head p,
.tlb-hotspot-look__products p,
.tlb-final-cta p {
    margin: 0;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.tlb-hero h1 {
    margin: 12px 0 16px;
    font-size: clamp(76px, 13vw, 218px);
    line-height: .74;
    font-weight: 900;
    letter-spacing: -.1em;
    text-transform: uppercase;
}

.tlb-hero__statement {
    margin: 0 0 16px;
    max-width: 760px;
    font-size: clamp(28px, 4.5vw, 78px);
    line-height: .84;
    font-weight: 900;
    letter-spacing: -.07em;
    text-transform: uppercase;
}

.tlb-hero__subtext {
    margin: 0 0 28px;
    max-width: 420px;
    font-size: clamp(15px, 1.6vw, 21px);
    line-height: 1.22;
    font-weight: 800;
}

.tlb-button {
    min-height: 48px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #050505;
    background: #050505;
    color: #fff !important;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.tlb-button:hover {
    background: #fff;
    color: #050505 !important;
    transform: translateY(-1px);
}

.terry-look-error {
    margin: 12px 0 0;
    color: #b00020;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 800;
}

.tlb-button--light {
    border-color: #fff;
    background: #fff;
    color: #050505 !important;
}

.tlb-button--light:hover {
    background: #050505;
    color: #fff !important;
}

.terry-look-size-modal {
    position: fixed;
    inset: 0;
    z-index: 3200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.terry-look-size-modal.is-open {
    display: flex;
}

.terry-look-size-modal__scrim {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .44);
}

.terry-look-size-modal__panel {
    position: relative;
    width: min(440px, 100%);
    padding: 28px;
    background: #ffffff;
    color: #050505;
}

.terry-look-size-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: #050505;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.terry-look-size-modal h2 {
    margin: 0 44px 22px 0;
    font-size: 28px;
    line-height: .95;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.terry-look-size-modal__group {
    margin: 0 0 18px;
}

.terry-look-size-modal__group p {
    margin: 0 0 8px;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.terry-look-size-modal__group div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.terry-look-size-modal__group button {
    min-width: 52px;
    height: 52px;
    border: 1px solid #050505;
    background: #ffffff;
    color: #050505;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
}

.terry-look-size-modal__group button.is-selected {
    background: #050505;
    color: #ffffff;
}

.terry-look-size-modal__error {
    margin: 0 0 14px;
    color: #b00020;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 800;
}

.terry-look-size-modal__submit {
    width: 100%;
    height: 56px;
    border: 1px solid #050505;
    background: #050505;
    color: #ffffff;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
}

.terry-look-size-modal__submit:disabled {
    cursor: wait;
    opacity: .72;
}

body.terry-look-size-open {
    overflow: hidden;
}

.tlb-intro,
.tlb-look,
.tlb-details,
.tlb-magazine,
.tlb-shop-looks,
.tlb-story {
    width: min(1600px, 100%);
    margin: 0 auto;
}

.tlb-intro {
    padding: clamp(62px, 8vw, 124px) 38px;
    display: grid;
    grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
    gap: 34px;
    border-bottom: 1px solid #050505;
}

.tlb-intro p {
    margin: 0;
    font-size: clamp(54px, 7vw, 118px);
    line-height: .78;
    font-weight: 900;
    letter-spacing: -.09em;
    text-transform: uppercase;
}

.tlb-intro h2 {
    margin: 0;
    font-size: clamp(42px, 6.4vw, 116px);
    line-height: .84;
    font-weight: 900;
    letter-spacing: -.085em;
    text-transform: uppercase;
}

.tlb-intro span {
    display: block;
    max-width: 520px;
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 800;
}

.tlb-look {
    padding: clamp(54px, 7vw, 112px) 38px;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
    gap: clamp(28px, 5vw, 86px);
    align-items: center;
    border-bottom: 1px solid #e2e2e2;
}

.tlb-look--reverse {
    grid-template-columns: minmax(320px, .75fr) minmax(0, 1.25fr);
}

.tlb-look--reverse .tlb-look__image {
    grid-column: 2;
}

.tlb-look--reverse .tlb-look__copy {
    grid-column: 1;
    grid-row: 1;
}

.tlb-look__image {
    margin: 0;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #f6f5f1;
}

.tlb-look__image img {
    object-position: center top;
}

.tlb-look__copy {
    max-width: 460px;
}

.tlb-look__copy h2,
.tlb-section-head h2,
.tlb-magazine__copy h2,
.tlb-story h2,
.tlb-final-cta h2 {
    margin: 14px 0 22px;
    font-size: clamp(44px, 5.8vw, 92px);
    line-height: .84;
    font-weight: 900;
    letter-spacing: -.08em;
    text-transform: uppercase;
}

.tlb-product-list {
    margin: 0 0 26px;
    padding: 0;
    list-style: none;
    border-top: 1px solid #050505;
}

.tlb-product-list li {
    padding: 13px 0;
    border-bottom: 1px solid #050505;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.tlb-details {
    padding: clamp(60px, 7vw, 108px) 38px;
    border-bottom: 1px solid #050505;
}

.tlb-section-head {
    max-width: 980px;
    margin: 0 0 30px;
}

.tlb-masonry {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: minmax(180px, 13vw);
    gap: 12px;
}

.tlb-detail {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: #f6f5f1;
}

.tlb-detail--tall {
    grid-row: span 2;
}

.tlb-detail--wide {
    grid-column: span 2;
}

.tlb-detail figcaption {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 2;
    padding: 8px 10px;
    background: #fff;
    color: #050505;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.tlb-magazine {
    padding: clamp(58px, 8vw, 132px) 38px;
    display: grid;
    grid-template-columns: .88fr 1.08fr .58fr;
    grid-template-rows: auto auto;
    gap: clamp(16px, 2.4vw, 34px);
    align-items: end;
    border-bottom: 1px solid #e2e2e2;
}

.tlb-magazine__copy {
    grid-column: 1 / 3;
    max-width: 900px;
    align-self: start;
}

.tlb-magazine__copy span {
    display: block;
    max-width: 520px;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 800;
}

.tlb-magazine__large {
    grid-column: 2;
    margin: 0;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.tlb-magazine__small {
    grid-column: 3;
    margin: 0 0 12%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.tlb-shop-looks {
    padding: clamp(58px, 8vw, 118px) 38px;
    background: #050505;
    color: #fff;
}

.tlb-section-head--dark {
    color: #fff;
}

.tlb-hotspot-look {
    margin-top: 26px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
    gap: 1px;
    background: #fff;
    border: 1px solid #fff;
}

.tlb-hotspot-look--reverse {
    grid-template-columns: minmax(320px, .92fr) minmax(0, 1.08fr);
}

.tlb-hotspot-look--reverse figure {
    grid-column: 2;
}

.tlb-hotspot-look--reverse .tlb-hotspot-look__products {
    grid-column: 1;
    grid-row: 1;
}

.tlb-hotspot-look figure {
    margin: 0;
    min-height: 520px;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.tlb-hotspot-look__products {
    padding: clamp(24px, 4vw, 54px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f6f5f1;
    color: #050505;
}

.tlb-hotspot-look__products a {
    padding: 18px 0;
    border-bottom: 1px solid #050505;
    color: #050505;
    font-size: clamp(24px, 3.8vw, 62px);
    line-height: .88;
    font-weight: 900;
    letter-spacing: -.07em;
    text-transform: uppercase;
}

.tlb-hotspot-look__products a:first-of-type {
    border-top: 1px solid #050505;
    margin-top: 20px;
}

.tlb-story {
    padding: clamp(62px, 8vw, 128px) 38px;
    border-bottom: 1px solid #050505;
}

.tlb-story h2 {
    max-width: 1120px;
}

.tlb-timeline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: #050505;
    border: 1px solid #050505;
}

.tlb-timeline article {
    min-height: 320px;
    padding: clamp(22px, 3vw, 40px);
    background: #fff;
}

.tlb-timeline time {
    display: block;
    margin-bottom: 34px;
    font-size: clamp(46px, 5.4vw, 88px);
    line-height: .78;
    font-weight: 900;
    letter-spacing: -.08em;
    text-transform: uppercase;
}

.tlb-timeline h3 {
    margin: 0 0 14px;
    font-size: clamp(24px, 2.8vw, 46px);
    line-height: .9;
    font-weight: 900;
    letter-spacing: -.06em;
    text-transform: uppercase;
}

.tlb-timeline p,
.tlb-timeline li {
    margin: 0;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.tlb-timeline ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tlb-timeline li + li {
    margin-top: 8px;
}

.tlb-final-cta {
    min-height: 68vh;
    padding: clamp(72px, 9vw, 150px) 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: #050505;
    color: #fff;
}

.tlb-final-cta h2 {
    max-width: 1180px;
    color: #fff;
    font-size: clamp(58px, 9vw, 152px);
}

@media (max-width: 1180px) {
    .tlb-masonry {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .tlb-timeline {
        grid-template-columns: 1fr;
    }

    .tlb-timeline article {
        min-height: 220px;
    }
}

/* Responsive Footer styling */
@media (max-width: 900px) {

    .tlb-hero__picture img {
        object-position: center top;
    }

    .tlb-hero__overlay {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, .16), rgba(0, 0, 0, .86)),
            linear-gradient(90deg, rgba(0, 0, 0, .42), rgba(0, 0, 0, .2));
    }

    .tlb-hero__content {
        padding: 124px 20px 42px;
    }

    .tlb-hero h1 {
        font-size: clamp(72px, 22vw, 104px);
        letter-spacing: -.105em;
    }

    .tlb-hero__statement {
        max-width: 92vw;
        font-size: clamp(34px, 12vw, 58px);
    }

    .tlb-hero__subtext {
        max-width: 82vw;
        margin-bottom: 22px;
        font-size: 14px;
    }

    .tlb-intro,
    .tlb-look,
    .tlb-details,
    .tlb-magazine,
    .tlb-shop-looks,
    .tlb-story,
    .tlb-final-cta {
        padding-left: 14px;
        padding-right: 14px;
    }

    .tlb-intro {
        padding-top: 42px;
        padding-bottom: 48px;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tlb-intro p {
        font-size: clamp(54px, 18vw, 86px);
    }

    .tlb-intro h2 {
        font-size: clamp(40px, 13vw, 66px);
    }

    .tlb-intro span {
        margin-top: 18px;
        font-size: 13px;
    }

    .tlb-look,
    .tlb-look--reverse {
        padding-top: 42px;
        padding-bottom: 48px;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .tlb-look--reverse .tlb-look__image,
    .tlb-look--reverse .tlb-look__copy {
        grid-column: auto;
        grid-row: auto;
    }

    .tlb-look__image {
        aspect-ratio: 4 / 5.4;
    }

    .tlb-look__copy {
        max-width: none;
    }

    .tlb-look .tlb-button {
        width: 100%;
    }

    .tlb-look__copy h2,
    .tlb-section-head h2,
    .tlb-magazine__copy h2,
    .tlb-story h2 {
        font-size: clamp(38px, 13vw, 62px);
    }

    .tlb-details {
        padding-top: 44px;
        padding-bottom: 48px;
    }

    .tlb-masonry {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: minmax(170px, 54vw);
        gap: 8px;
    }

    .tlb-detail--wide,
    .tlb-detail--tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .tlb-detail figcaption {
        left: 9px;
        bottom: 9px;
        font-size: 9px;
    }

    .tlb-magazine {
        padding-top: 44px;
        padding-bottom: 48px;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .tlb-magazine__copy,
    .tlb-magazine__large,
    .tlb-magazine__small {
        grid-column: auto;
    }

    .tlb-magazine__large,
    .tlb-magazine__small {
        aspect-ratio: 4 / 5;
        margin: 0;
    }

    .tlb-magazine__copy span {
        font-size: 13px;
    }

    .tlb-shop-looks {
        padding-top: 44px;
        padding-bottom: 50px;
    }

    .tlb-hotspot-look,
    .tlb-hotspot-look--reverse {
        grid-template-columns: 1fr;
        margin-top: 16px;
    }

    .tlb-hotspot-look--reverse figure,
    .tlb-hotspot-look--reverse .tlb-hotspot-look__products {
        grid-column: auto;
        grid-row: auto;
    }

    .tlb-hotspot-look figure {
        min-height: 0;
        aspect-ratio: 4 / 5;
    }

    .tlb-hotspot-look__products {
        padding: 18px;
    }

    .tlb-hotspot-look__products a {
        padding: 14px 0;
        font-size: clamp(26px, 10vw, 44px);
    }

    .tlb-story {
        padding-top: 44px;
        padding-bottom: 48px;
    }

    .tlb-timeline article {
        min-height: 0;
        padding: 20px;
    }

    .tlb-timeline time {
        margin-bottom: 22px;
        font-size: clamp(48px, 16vw, 76px);
    }

    .tlb-timeline h3 {
        font-size: clamp(26px, 9vw, 42px);
    }

    .tlb-final-cta {
        min-height: 58vh;
        padding-top: 54px;
        padding-bottom: 54px;
    }

    .tlb-final-cta h2 {
        font-size: clamp(46px, 15vw, 78px);
    }

    .tc-hero,
    .tc-hero__content {
        min-height: 75svh;
    }

    .tc3-hero,
    .tc3-hero__content {
        min-height: 45vh;
    }

    .tc3-hero__media img {
        object-position: center top;
    }

    .tc3-hero__overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .78));
    }

    .tc3-hero__content {
        padding: 104px 14px 28px;
    }

    .tc3-hero__content h1 {
        font-size: clamp(42px, 15vw, 68px);
    }

    .tc3-hero__content span {
        max-width: 92vw;
        margin: 12px 0 18px;
        font-size: 13px;
    }

    .tc3-hero__content a,
    .tc3-card a,
    .tc3-final a {
        width: 100%;
        min-height: 48px;
    }

    .tc3-cards {
        grid-template-columns: 1fr;
    }

    .tc3-card {
        min-height: 0;
        padding: 22px 14px;
    }

    .tc3-card h2 {
        font-size: clamp(34px, 12vw, 54px);
    }

    .tc3-card strong {
        font-size: clamp(18px, 7vw, 28px);
        overflow-wrap: anywhere;
    }

    .tc3-card span {
        max-width: none;
        font-size: 13px;
    }

    .tc3-help {
        padding: 38px 14px 44px;
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .tc3-help__intro h2,
    .tc3-final h2 {
        font-size: clamp(38px, 13vw, 62px);
    }

    .tc3-faq summary {
        min-height: 58px;
        font-size: clamp(22px, 8vw, 36px);
    }

    .tc3-faq p {
        padding-bottom: 18px;
        font-size: 13px;
    }

    .tc3-final {
        grid-template-columns: 1fr;
    }

    .tc3-final figure {
        min-height: 0;
        aspect-ratio: 4 / 5;
    }

    .tc3-final > div {
        padding: 28px 14px 34px;
    }

    .tc3-final span {
        font-size: 13px;
    }

    .tc-hero__media img {
        object-position: center top;
    }

    .tc-hero__overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, .16), rgba(0, 0, 0, .86));
    }

    .tc-hero__content {
        padding: 122px 20px 42px;
    }

    .tc-hero__content h1,
    .tc-method h2,
    .tc-editorial__copy h2,
    .tc-links h2,
    .tc-final h2 {
        font-size: clamp(42px, 14vw, 70px);
    }

    .tc-hero__content span {
        max-width: 88vw;
        font-size: 14px;
    }

    .tc-methods {
        grid-template-columns: 1fr;
    }

    .tc-method {
        min-height: 220px;
        padding: 22px;
    }

    .tc-method a {
        font-size: clamp(26px, 9vw, 42px);
    }

    .tc-editorial,
    .tc-links,
    .tc-final {
        padding-left: 14px;
        padding-right: 14px;
        grid-template-columns: 1fr;
    }

    .tc-editorial {
        padding-top: 42px;
        padding-bottom: 48px;
    }

    .tc-editorial figure {
        aspect-ratio: 4 / 5;
    }

    .tc-editorial__copy li {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .tc-links {
        padding-top: 38px;
        padding-bottom: 42px;
    }

    .tc-links nav {
        grid-template-columns: 1fr;
    }

    .tc-links a {
        min-height: 96px;
        font-size: clamp(28px, 10vw, 48px);
    }

    .tc-final {
        padding-top: 42px;
        padding-bottom: 48px;
    }

    .tc-final figure {
        min-height: 0;
        aspect-ratio: 4 / 5;
    }

    .tc-final > div {
        padding: 22px;
    }

    .woocommerce-notices-wrapper {
        top: auto;
        right: 12px;
        bottom: 84px;
        width: calc(100vw - 28px);
    }

    .woocommerce-message,
    .woocommerce-info,
    .woocommerce-error {
        width: calc(100vw - 28px);
        margin: 12px auto !important;
        padding: 12px !important;
        flex-direction: column;
        align-items: flex-start;
        font-size: 11px;
    }

    .woocommerce-message a.button,
    .woocommerce-info a.button,
    .woocommerce-error a.button,
    .woocommerce-message .button,
    .woocommerce-info .button,
    .woocommerce-error .button {
        order: 0;
        width: 100%;
    }

    body.woocommerce-cart .woocommerce {
        width: calc(100vw - 28px);
        padding: 118px 0 54px;
    }

    body.woocommerce-cart .woocommerce::before {
        margin-bottom: 16px;
        font-size: clamp(46px, 15vw, 72px);
    }

    body.woocommerce-cart table.shop_table,
    body.woocommerce-cart table.shop_table tbody,
    body.woocommerce-cart table.shop_table tr,
    body.woocommerce-cart table.shop_table td {
        display: block;
        width: 100%;
    }

    body.woocommerce-cart table.shop_table thead {
        display: none;
    }

    body.woocommerce-cart table.shop_table tr.cart_item {
        position: relative;
        display: grid;
        grid-template-columns: 88px minmax(0, 1fr);
        gap: 0;
        border-bottom: 1px solid var(--black);
    }

    body.woocommerce-cart table.shop_table td {
        padding: 10px 12px !important;
        border-width: 0 !important;
        font-size: 12px;
    }

    body.woocommerce-cart .product-thumbnail {
        grid-row: span 5;
        padding: 12px 0 12px 12px !important;
    }

    body.woocommerce-cart .product-thumbnail img {
        width: 76px !important;
    }

    body.woocommerce-cart .product-remove {
        position: absolute;
        top: 8px;
        right: 8px;
        width: auto !important;
        padding: 0 !important;
        z-index: 2;
    }

    body.woocommerce-cart .product-remove a {
        width: 28px;
        height: 28px;
        background: var(--white);
    }

    body.woocommerce-cart .product-name {
        padding-right: 42px !important;
    }

    body.woocommerce-cart .product-name a {
        font-size: 12px;
        line-height: 1.15;
    }

    body.woocommerce-cart .actions {
        display: block !important;
        padding: 12px !important;
        border-top: 1px solid var(--black) !important;
    }

    body.woocommerce-cart .coupon {
        flex-direction: column;
        margin-bottom: 10px;
    }

    body.woocommerce-cart .coupon input.input-text,
    body.woocommerce-cart input.input-text,
    body.woocommerce-cart button.button,
    body.woocommerce-cart a.button {
        width: 100%;
    }

    body.woocommerce-cart .cart-collaterals {
        display: block;
        margin-top: 18px;
    }

    body.woocommerce-cart .cart_totals {
        padding: 18px;
    }

    body.woocommerce-cart .cart_totals table.shop_table tr {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    body.woocommerce-cart .cart_totals table.shop_table th,
    body.woocommerce-cart .cart_totals table.shop_table td {
        display: block;
        width: auto;
        padding: 12px !important;
    }

    body.woocommerce-checkout .woocommerce {
        width: calc(100vw - 28px);
        padding: 118px 0 54px;
    }

    body.woocommerce-checkout .woocommerce::before {
        margin-bottom: 16px;
        font-size: clamp(46px, 15vw, 72px);
    }

    body.woocommerce-checkout form.checkout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    body.woocommerce-checkout .woocommerce-billing-fields,
    body.woocommerce-checkout .woocommerce-shipping-fields,
    body.woocommerce-checkout .woocommerce-additional-fields,
    body.woocommerce-checkout #order_review {
        padding: 16px;
    }

    body.woocommerce-checkout #order_review_heading {
        padding: 18px 16px 0;
    }

    body.woocommerce-checkout table.shop_table th,
    body.woocommerce-checkout table.shop_table td {
        padding: 11px !important;
        font-size: 12px;
    }

    body.woocommerce-checkout .woocommerce {
        width: 100%;
        padding: 84px 16px 72px;
    }

    body.woocommerce-checkout .woocommerce::before {
        width: 104px;
        height: 44px;
        margin-bottom: 18px;
    }

    body.woocommerce-checkout form.checkout {
        display: grid;
        grid-template-columns: 1fr;
        gap: 22px;
    }

    body.woocommerce-checkout form.checkout > #customer_details,
    body.woocommerce-checkout form.checkout > #order_review_heading,
    body.woocommerce-checkout form.checkout > #order_review {
        grid-column: 1;
        grid-row: auto;
    }

    body.woocommerce-checkout form.checkout > #order_review_heading {
        order: -3;
        position: static;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px;
        border: 1px solid #ececec;
        background: #f7f7f7;
        font-size: 15px;
    }

    body.woocommerce-checkout form.checkout > #order_review_heading::after {
        content: "Show details";
        color: #666;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0;
        text-transform: none;
    }

    body.woocommerce-checkout form.checkout > #order_review {
        display: contents;
    }

    body.woocommerce-checkout #order_review > table.shop_table {
        order: -2;
        position: static;
        padding: 16px;
        border: 1px solid #ececec !important;
        background: #f7f7f7;
    }

    body.woocommerce-checkout form.checkout > #customer_details {
        order: 1;
    }

    body.woocommerce-checkout #order_review > #payment {
        order: 2;
    }

    body.woocommerce-checkout .woocommerce-billing-fields,
    body.woocommerce-checkout .woocommerce-shipping-fields,
    body.woocommerce-checkout .woocommerce-additional-fields,
    body.woocommerce-checkout #order_review {
        padding: 0;
    }

    body.woocommerce-checkout h3,
    body.woocommerce-checkout #payment::before {
        font-size: 22px;
    }

    body.woocommerce-checkout input.input-text,
    body.woocommerce-checkout textarea,
    body.woocommerce-checkout select,
    body.woocommerce-checkout .select2-selection {
        width: 100% !important;
        min-height: 52px !important;
        height: 52px !important;
    }

    body.woocommerce-checkout table.shop_table th,
    body.woocommerce-checkout table.shop_table td {
        padding: 12px 0 !important;
        font-size: 13px;
    }

    body.woocommerce-checkout table.shop_table tfoot tr.order-total th,
    body.woocommerce-checkout table.shop_table tfoot tr.order-total td {
        font-size: 20px;
    }

    body.woocommerce-checkout .terry-checkout-summary__product {
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 12px;
    }

    body.woocommerce-checkout .terry-checkout-summary__thumb,
    body.woocommerce-checkout .terry-checkout-summary__image {
        width: 54px;
        height: 70px;
    }

    body.woocommerce-checkout #payment ul.payment_methods li {
        padding: 14px !important;
    }

    body.woocommerce-checkout form.checkout_coupon {
        grid-template-columns: 1fr;
    }

    body.woocommerce-checkout form.checkout_coupon button,
    body.woocommerce-checkout #place_order {
        width: 100%;
    }

    .terry-policy-hero,
    .terry-policy-content {
        width: calc(100vw - 28px);
    }

    .terry-policy-hero {
        padding-top: 118px;
        padding-bottom: 24px;
    }

    .terry-policy-hero h1 {
        font-size: clamp(46px, 15vw, 74px);
    }

    .terry-policy-hero span {
        font-size: 13px;
    }

    .terry-policy-content {
        padding: 18px 0 52px;
        grid-template-columns: 1fr;
    }

    .terry-policy-card,
    .terry-policy-card--wide {
        grid-column: auto;
        min-height: 0;
        padding: 18px;
    }

    .terry-policy-card h2 {
        font-size: clamp(30px, 11vw, 48px);
    }

    .terry-policy-card p,
    .terry-policy-card li {
        font-size: 13px;
    }

    .terry-footer-policies {
        grid-template-columns: 1fr;
        margin-bottom: 18px;
    }

    .terry-footer-policy {
        min-height: 0;
        padding: 20px;
    }

    .terry-footer-policy h2 {
        font-size: 30px;
    }

    .terry-header {
        position: absolute;
        top: 46px;
        left: 0;
        right: 0;
        z-index: var(--z-header);
        pointer-events: none;
    }

    .terry-header-shell,
    .terry-header-inner {
        width: calc(100vw - 32px);
        height: 70px;
        margin: 0 auto;
        padding: 0 14px;
        display: grid;
        grid-template-columns: 44px 1fr auto;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, .86);
        border-radius: 7px;
        box-shadow: 0 12px 34px rgba(0, 0, 0, .14);
        pointer-events: auto;
        backdrop-filter: blur(12px);
    }

    .mobile-menu-toggle {
        width: 44px;
        height: 44px;
        padding: 0;
        border: 0;
        background: transparent;
        color: #000;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
    }

    .desktop-nav {
        display: none !important;
    }

    .terry-header .terry-logo {
        justify-self: center;
        width: clamp(126px, 34vw, 156px) !important;
        height: 58px !important;
        filter: none !important;
        transform: none !important;
    }

    .header-icons {
        justify-self: end;
        gap: 10px;
    }

    .header-icons .desktop-only-icon {
        display: none !important;
    }

    .header-icons a,
    .icon-link {
        width: 34px;
        height: 34px;
        color: #000 !important;
    }

    .header-icons svg,
    .icon-link svg {
        width: 24px;
        height: 24px;
        fill: #000 !important;
        filter: none !important;
    }
    .terry-footer__main {
        display: none;
    }
    
    .terry-footer-mobile-accordions {
        display: block;
        border-bottom: 1px solid var(--line);
        margin-bottom: 24px;
    }
    
    .terry-footer-mobile-accordion {
        border-bottom: 1px solid var(--line);
    }
    
    .terry-footer-mobile-accordion:last-child {
        border-bottom: 0;
    }
    
    .terry-footer-mobile-accordion summary {
        padding: 16px 0;
        font-size: 16px;
        font-weight: 900;
        letter-spacing: .04em;
        text-transform: uppercase;
        list-style: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .terry-footer-mobile-accordion summary::-webkit-details-marker {
        display: none;
    }
    
    .terry-footer-mobile-accordion summary::after {
        content: "+";
        font-size: 18px;
        font-weight: 500;
    }
    
    .terry-footer-mobile-accordion[open] summary::after {
        content: "−";
    }
    
    .terry-footer-mobile-accordion ul {
        margin: 0;
        padding: 0 0 16px;
        list-style: none;
    }
    
    .terry-footer-mobile-accordion li {
        margin-bottom: 10px;
    }
    
    .terry-footer-mobile-accordion a,
    .terry-footer-mobile-accordion span {
        font-size: 14px;
        color: var(--black);
        opacity: .8;
    }
    
    .terry-footer__bar {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        text-align: center;
        padding-top: 24px;
    }
}

/* ==========================================================================
   Single Product Page Redesign
   ========================================================================== */

/* Root Container & Spacing */
.terry-single-product-main {
    width: 100%;
    margin-top: 110px; /* Accounts for floating header */
    background: var(--white);
}

.terry-product-page {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, .85fr);
    gap: 56px;
    width: min(1180px, calc(100vw - 64px));
    margin: 0 auto;
    padding: 32px 24px 64px;
    align-items: start;
}

/* 1. Product Gallery */
.terry-product-gallery {
    width: 100%;
}

.terry-product-gallery__layout {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
    align-items: start;
}

/* Thumbnails Strip */
.terry-product-gallery__thumbs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.terry-product-gallery__thumb {
    width: 80px;
    aspect-ratio: 3 / 4;
    border: 1px solid var(--line);
    background: var(--soft);
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    transition: border-color .2s var(--ease), opacity .2s var(--ease);
}

.terry-product-gallery__thumb:hover {
    border-color: var(--black);
    opacity: .85;
}

.terry-product-gallery__thumb.is-active {
    border-color: var(--black);
    outline: 1.5px solid var(--black);
    opacity: 1;
}

.terry-product-gallery__thumb-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Main Active Image Stage */
.terry-product-gallery__stage {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    background: var(--soft);
    border: 1px solid var(--line);
    overflow: hidden;
}

.terry-product-gallery__active-frame {
    margin: 0;
    width: 100%;
    height: 100%;
}

.terry-product-gallery__media-shell {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.terry-product-gallery__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s var(--ease), opacity .3s var(--ease);
}

.terry-product-gallery__stage:hover .terry-product-gallery__media {
    transform: scale(1.035);
}

/* Mobile swipe-snap track (hidden on desktop by default) */
.terry-product-gallery__mobile-track {
    display: none;
}

/* 2. Product Summary Sidebar */
.terry-product-summary {
    position: sticky;
    top: 110px; /* Aligns with compact header on scroll */
    padding-left: 12px;
}

.terry-product-summary__breadcrumbs {
    margin-bottom: 14px;
}

.terry-product-summary__breadcrumbs .woocommerce-breadcrumb {
    display: block !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
}

.terry-product-summary__breadcrumbs .woocommerce-breadcrumb a {
    color: var(--muted);
}

.terry-product-summary__breadcrumbs .woocommerce-breadcrumb a:hover {
    color: var(--black);
}

.terry-product-summary__title {
    font-family: 'Barlow Condensed', Arial, Helvetica, sans-serif;
    font-size: clamp(34px, 3.8vw, 54px);
    line-height: .9;
    font-weight: 900;
    letter-spacing: -.06em;
    text-transform: uppercase;
    margin: 0 0 10px;
    color: var(--black);
}

.terry-product-summary__price {
    font-family: 'Barlow Condensed', Arial, Helvetica, sans-serif;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: 22px;
    color: var(--black);
}

.terry-product-summary__price ins {
    text-decoration: none;
    color: var(--terry-accent);
}

.terry-product-summary__price del {
    color: var(--muted);
    font-size: 20px;
    font-weight: 500;
    margin-right: 8px;
}

.terry-product-summary__excerpt {
    font-size: 14px;
    line-height: 1.5;
    color: #444;
    margin-bottom: 28px;
}

/* Sizing Guide Link */
.terry-product-summary__size-guide-link {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 4px;
    margin-bottom: 24px;
}

.terry-product-summary__size-guide-link:hover {
    color: var(--terry-accent);
}

/* WooCommerce Add-To-Cart & Custom Variations Styling */
.terry-product-summary__cart {
    margin-bottom: 32px;
}

/* Variations Form */
.variations_form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.variations {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
}

.variations tr {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.variations td.label {
    padding: 0;
}

.variations td.label label {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--black);
}

.variations td.value {
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
}

/* Styled variation selector dropdown */
.variations select {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 1px solid var(--black);
    background: var(--white);
    color: var(--black);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -.02em;
    border-radius: 0;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.variations td.value::after {
    content: "\2193"; /* Downwards arrow */
    font-family: sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: var(--black);
    position: absolute;
    right: 18px;
    pointer-events: none;
}

.variations select:focus {
    outline: none;
}

/* Reset variations link */
.reset_variations {
    display: inline-block;
    margin-top: 8px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: underline;
}

/* Quantity and Add to Cart Flex row */
.woocommerce-variation-add-to-cart {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

/* Quantity Selector */
.quantity {
    display: inline-flex;
    border: 1px solid var(--black);
    height: 52px;
    align-items: center;
}

.quantity input.qty {
    width: 52px;
    height: 100%;
    border: 0;
    background: transparent;
    text-align: center;
    font-size: 15px;
    font-weight: 900;
    color: var(--black);
    -moz-appearance: textfield;
}

.quantity input.qty::-webkit-outer-spin-button,
.quantity input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Custom quantity button hover/focus effects */
.quantity input.qty:focus {
    outline: none;
}

/* Add to cart submit button */
.single_add_to_cart_button {
    flex: 1;
    height: 52px;
    background: var(--black);
    color: var(--white) !important;
    border: 1px solid var(--black);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s var(--ease), color .2s var(--ease);
}

.single_add_to_cart_button:hover {
    background: var(--white);
    color: var(--black) !important;
}

.single_add_to_cart_button.disabled,
.single_add_to_cart_button[disabled] {
    opacity: .5;
    cursor: not-allowed;
}

.single_add_to_cart_button.disabled:hover,
.single_add_to_cart_button[disabled]:hover {
    background: var(--black);
    color: var(--white) !important;
}

/* Metadata List */
.terry-product-meta {
    margin: 0 0 32px;
    padding: 18px 0;
    list-style: none;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.terry-product-meta li {
    font-size: 13px;
    margin-bottom: 10px;
    color: #444;
}

.terry-product-meta li:last-child {
    margin-bottom: 0;
}

.terry-product-meta strong {
    color: var(--black);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: .04em;
    font-size: 11px;
    margin-right: 6px;
}

.terry-product-summary__help {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 24px;
}

/* Accordions (Details) */
.terry-product-accordions {
    border-top: 1px solid var(--line);
}

.terry-product-accordion {
    border-bottom: 1px solid var(--line);
}

.terry-product-accordion summary {
    padding: 18px 0;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--black);
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.terry-product-accordion summary::-webkit-details-marker {
    display: none;
}

.terry-product-accordion summary::after {
    content: "+";
    font-size: 16px;
    font-weight: bold;
}

.terry-product-accordion[open] summary::after {
    content: "\2212"; /* Unicode minus sign */
}

.terry-product-accordion__content {
    padding: 0 0 20px;
    font-size: 14px;
    line-height: 1.55;
    color: #333;
}

.terry-product-accordion__content p {
    margin: 0 0 12px;
}

.terry-product-accordion__content p:last-child {
    margin-bottom: 0;
}

/* Additional Info Table style */
.terry-product-accordion__attributes table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
}

.terry-product-accordion__attributes th,
.terry-product-accordion__attributes td {
    padding: 8px 0;
    border-bottom: 1px dashed var(--line);
    text-align: left;
    font-size: 13px;
}

.terry-product-accordion__attributes th {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
    width: 120px;
}

/* 4. Related Products Grid */
.terry-related-products {
    width: min(1240px, calc(100vw - 64px));
    margin: 0 auto;
    padding: clamp(64px, 7vw, 104px) 0 clamp(72px, 8vw, 116px);
    border-top: 1px solid rgba(0, 0, 0, .1);
}

.terry-related-products__header {
    margin-bottom: clamp(24px, 3vw, 38px);
}

.terry-related-products__header h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(26px, 2.35vw, 40px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
    margin: 0;
}

.terry-related-products > .related > h2 {
    display: none !important;
}

.terry-related-products ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: clamp(16px, 2vw, 28px) !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.terry-related-products ul.products::before,
.terry-related-products ul.products::after {
    display: none !important;
}

.terry-related-products ul.products li.product {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left;
}

.terry-related-products ul.products li.product a {
    display: block;
}

.terry-related-products ul.products li.product .woocommerce-loop-product__title {
    margin: 16px 0 6px !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    line-height: 1.25 !important;
    color: var(--black) !important;
    letter-spacing: .02em !important;
    text-transform: uppercase !important;
    padding: 0 !important;
}

.terry-related-products ul.products li.product .price {
    font-size: 13px !important;
    font-weight: 900 !important;
    color: var(--black) !important;
    letter-spacing: .01em !important;
    margin-bottom: 0 !important;
}

.terry-related-products ul.products li.product img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 3 / 4 !important;
    object-fit: cover !important;
    background: #f4f4f1 !important;
    margin-bottom: 0 !important;
    transition: transform .36s var(--ease), filter .36s var(--ease);
}

.terry-related-products ul.products li.product:hover img {
    filter: contrast(1.03);
    transform: scale(1.025);
}

.terry-related-products ul.products li.product .button {
    display: none !important; /* Hide WooCommerce add to cart loop button on related products */
}

/* ==========================================================================
   Responsive Product Page styling
   ========================================================================== */
@media (max-width: 900px) {
    .terry-single-product-main {
        margin-top: 86px;
    }
    
    .terry-product-page {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 16px 20px 48px;
        width: 100%;
    }
    
    /* 1. Mobile Product Gallery Carousel */
    .terry-product-gallery__layout {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .terry-product-gallery__thumbs,
    .terry-product-gallery__active-frame {
        display: none !important;
    }
    
    .terry-product-gallery__stage {
        border: 0;
        background: transparent;
        aspect-ratio: auto;
        overflow: visible;
        width: 100%;
    }
    
    .terry-product-gallery__mobile-track {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        width: calc(100% + 40px);
        margin: 0 -20px;
        background: var(--soft);
        aspect-ratio: 3 / 4;
        border-bottom: 1px solid var(--line);
    }
    
    .terry-product-gallery__mobile-track::-webkit-scrollbar {
        display: none;
    }
    
    .terry-product-gallery__mobile-slide {
        margin: 0;
        width: 100vw;
        height: 100%;
        flex-shrink: 0;
        scroll-snap-align: start;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    
    .terry-product-gallery__mobile-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    
    /* Mobile gallery paging indicators */
    .terry-product-gallery__layout::after {
        content: ""; /* Indicator hint or we can use dots */
    }
    
    /* 2. Product Summary Mobile Layout */
    .terry-product-summary {
        position: static;
        padding-left: 0;
    }
    
    .terry-product-summary__title {
        font-size: 32px;
    }
    
    .woocommerce-variation-add-to-cart {
        flex-direction: row;
        width: 100%;
    }
    
    /* 4. Related Products Mobile Layout */
    .terry-related-products {
        padding: 44px 18px 64px;
        width: 100%;
    }
    
    .terry-related-products ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 18px 12px !important;
    }
    
    .terry-related-products__header h2 {
        font-size: 24px;
        letter-spacing: .03em;
    }
}

/* ==========================================================================
   Single Product Page â€” OBEY-style sticky buy panel
   ========================================================================== */
body.single-product .terry-single-product-main {
    margin-top: 108px;
    background: #fff;
}

body.single-product .terry-product-page {
    width: min(1560px, 100%);
    padding: 28px 28px 72px;
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(360px, .7fr);
    gap: clamp(28px, 4vw, 70px);
    align-items: start;
    overflow: visible;
}

body.single-product .terry-product-gallery__layout {
    display: block;
}

body.single-product .terry-product-gallery__stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

body.single-product .terry-product-gallery__stack-item {
    margin: 0;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f3f2ee;
    border: 1px solid rgba(0, 0, 0, .06);
}

body.single-product .terry-product-gallery__stack-item:first-child {
    grid-column: 1 / -1;
}

body.single-product .terry-product-gallery__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .45s var(--ease);
}

body.single-product .terry-product-gallery__stack-item:hover .terry-product-gallery__media {
    transform: scale(1.025);
}

body.single-product .terry-product-gallery__stage {
    display: none;
}

body.single-product .terry-product-summary {
    position: sticky !important;
    top: 112px;
    align-self: start;
    min-height: calc(100svh - 124px);
    height: max-content;
    padding: clamp(20px, 2.2vw, 34px) 0 0;
    z-index: 5;
}

body.single-product .terry-product-summary__breadcrumbs {
    margin: 0 0 14px;
}

body.single-product .terry-product-summary__breadcrumbs .woocommerce-breadcrumb {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
    color: rgba(0, 0, 0, .48);
}

body.single-product .terry-product-summary__title {
    margin: 0 0 12px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(34px, 3.3vw, 62px);
    line-height: .88;
    font-weight: 900;
    letter-spacing: -.075em;
    text-transform: uppercase;
}

body.single-product .terry-product-summary__price {
    margin: 0 0 22px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.02em;
}

body.single-product .terry-product-summary__excerpt {
    margin: 0 0 24px;
    max-width: 34rem;
    color: #333;
    font-size: 14px;
    line-height: 1.62;
}

body.single-product .terry-product-summary__cart {
    margin: 0 0 18px;
}

body.single-product .variations_form,
body.single-product form.cart {
    width: 100%;
}

body.single-product .variations {
    margin: 0 0 16px;
}

body.single-product .variations tr {
    margin-bottom: 16px;
}

body.single-product .variations td.label label,
body.single-product .terry-product-meta strong,
body.single-product .terry-product-accordion summary {
    font-size: 11px;
    letter-spacing: .11em;
}

body.single-product .variations td.label:has(label[for*="size"]) {
    display: none !important;
}

body.single-product .variations select {
    height: 50px;
    border: 1px solid #111;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

body.single-product .woocommerce-variation-add-to-cart,
body.single-product form.cart:not(.variations_form) {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 10px;
    margin-top: 14px;
}

body.single-product .quantity,
body.single-product .quantity input.qty,
body.single-product .single_add_to_cart_button {
    height: 56px;
}

body.single-product .quantity {
    width: 74px;
    border: 1px solid #111;
}

body.single-product .quantity input.qty {
    width: 100%;
    font-size: 15px;
}

body.single-product .single_add_to_cart_button {
    width: 100%;
    background: #050505;
    border: 1px solid #050505;
    color: #fff !important;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
}

body.single-product .single_add_to_cart_button:hover {
    background: #fff;
    color: #050505 !important;
}

body.single-product .terry-product-summary__size-guide-link {
    margin: 0 0 22px;
    font-size: 11px;
    letter-spacing: .1em;
}

body.single-product .terry-product-meta {
    margin: 0 0 22px;
    padding: 16px 0;
}

body.single-product .terry-product-summary__help {
    margin: 0 0 20px;
    color: rgba(0, 0, 0, .62);
    font-size: 13px;
}

body.single-product .terry-product-accordions {
    border-top: 1px solid #111;
}

body.single-product .terry-product-accordion {
    border-bottom: 1px solid #111;
}

body.single-product .terry-product-accordion summary {
    padding: 18px 0;
}

body.single-product .terry-product-accordion__content {
    color: #262626;
    font-size: 13px;
}

@media (max-width: 900px) {
    body.single-product .terry-single-product-main {
        margin-top: 92px;
    }

    body.single-product .terry-product-page {
        width: 100%;
        padding: 0 18px 48px;
        display: block;
    }

    body.single-product .terry-product-gallery {
        width: calc(100% + 36px);
        margin: 0 -18px 24px;
    }

    body.single-product .terry-product-gallery__stack {
        display: none;
    }

    body.single-product .terry-product-gallery__stage {
        display: block;
        border: 0;
        background: #f3f2ee;
        aspect-ratio: auto;
        overflow: hidden;
    }

    body.single-product .terry-product-gallery__mobile-track {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        margin: 0;
        aspect-ratio: 3 / 4;
    }

    body.single-product .terry-product-gallery__mobile-slide {
        margin: 0;
        width: 100vw;
        height: 100%;
        flex: 0 0 100%;
        scroll-snap-align: start;
        background: #f3f2ee;
    }

    body.single-product .terry-product-gallery__mobile-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center top;
    }

    body.single-product .terry-product-summary {
        position: static;
        min-height: 0;
        padding: 0;
    }

    body.single-product .terry-product-summary__breadcrumbs {
        display: none;
    }

    body.single-product .terry-product-summary__title {
        font-size: clamp(32px, 10.5vw, 52px);
    }

    body.single-product .terry-product-summary__price {
        font-size: 18px;
    }

    body.single-product .woocommerce-variation-add-to-cart,
    body.single-product form.cart:not(.variations_form) {
        grid-template-columns: 68px minmax(0, 1fr);
    }

    body.single-product .quantity,
    body.single-product .quantity input.qty,
    body.single-product .single_add_to_cart_button {
        height: 54px;
    }

    body.single-product .quantity {
        width: 68px;
    }
}


/* ==========================================================================
   Campaign Cards â€” Category archive sub-category tiles (data-bg lazy)
   ========================================================================== */
.campaign-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 340px;
    padding: 32px;
    color: #fff !important;
    overflow: hidden;
    background: #111;
    text-decoration: none;
    transition: transform .32s var(--ease);
}

.campaign-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(0deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .08)),
        var(--card-bg) center / cover no-repeat;
    transform: scale(1.02);
    transition: transform .5s var(--ease), filter .5s var(--ease);
}

.campaign-card:hover::before {
    transform: scale(1.08);
    filter: contrast(1.06) brightness(1.04);
}

.campaign-card > * {
    position: relative;
    z-index: 2;
}

.campaign-card span {
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .75;
}

.campaign-card h3 {
    margin: 0 0 6px;
    font-size: 28px;
    line-height: .96;
    font-weight: 900;
    letter-spacing: -.05em;
    text-transform: uppercase;
}

.campaign-card p {
    margin: 0 0 14px;
    font-size: 13px;
    opacity: .85;
    line-height: 1.35;
}

.campaign-card em {
    font-style: normal;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-bottom: 1.5px solid rgba(255, 255, 255, .45);
    padding-bottom: 2px;
    transition: border-color .25s ease;
}

.campaign-card:hover em {
    border-color: #fff;
}

.campaign-card-large {
    grid-column: span 1;
}

/* Data-num decorative counter */
.campaign-card::after {
    content: attr(data-num);
    position: absolute;
    top: 22px;
    right: 24px;
    z-index: 2;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .06em;
    color: rgba(255, 255, 255, .38);
}


/* ==========================================================================
   Terry Product Loop Card (content-product.php override)
   ========================================================================== */
.terry-product-tile.product {
    list-style: none;
    margin: 0;
    padding: 0;
}

.terry-product-link {
    display: block;
    text-align: center;
    text-decoration: none;
    color: var(--black);
}

.terry-product-tile .terry-product-image {
    position: relative;
    background: #f4f4f1;
    aspect-ratio: 2 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.terry-product-tile .terry-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: opacity .35s var(--ease), transform .36s var(--ease);
}

.terry-product-tile .terry-product-hover-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s var(--ease);
}

.terry-product-tile:hover .terry-product-main-image {
    opacity: 0;
}

.terry-product-tile:hover .terry-product-hover-image {
    opacity: 1;
}

.terry-product-tile:hover .terry-product-image img {
    transform: scale(1.04);
}

.terry-sale-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    background: #000;
    color: #fff;
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .03em;
}

.terry-product-info {
    padding: 14px 6px 0;
}

.terry-product-info h3 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.2;
}

.terry-product-info .product-subline {
    margin: 0 0 6px;
    color: #777;
    font-size: 12px;
}

.terry-product-info .home-product-price {
    font-size: 14px;
    font-weight: 900;
}

.terry-product-info .home-product-price del {
    color: #777;
    margin-left: 6px;
    font-weight: 500;
}

/* Hide WooCommerce default add-to-cart button in loop */
.terry-product-tile .button,
.terry-product-tile .add_to_cart_button {
    display: none !important;
}


/* ==========================================================================
   Archive Pages â€” Men / Women layouts
   ========================================================================== */

/* Hero banner on archive pages */
.terry-archive-hero {
    min-height: 55vh;
}

.terry-archive-hero .hero-content {
    min-height: 55vh;
    padding: 140px 38px 54px;
}

/* Subcategory campaign cards grid */
.terry-men-subcats,
.terry-women-subcats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-left: 38px;
    padding-right: 38px;
}

/* Product grid section */
.terry-men-archive-products,
.terry-women-archive-products {
    padding: 0 38px 64px;
}

.terry-men-archive-products__inner,
.terry-women-archive-products__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.terry-men-archive-products__head,
.terry-women-archive-products__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-top: 16px;
}

.terry-men-archive-products__kicker,
.terry-women-archive-products__kicker {
    margin: 0 0 5px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.terry-men-archive-products__title,
.terry-women-archive-products__title {
    margin: 0;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    line-height: .88;
    letter-spacing: -.06em;
    text-transform: uppercase;
}

/* WooCommerce product loop grid inside archives */
.terry-men-archive-products ul.products,
.terry-women-archive-products ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.terry-men-archive-products ul.products::before,
.terry-men-archive-products ul.products::after,
.terry-women-archive-products ul.products::before,
.terry-women-archive-products ul.products::after {
    display: none !important;
}

/* WooCommerce toolbar (result count, ordering) */
.terry-men-archive-toolbar,
.terry-women-archive-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 16px;
}

.terry-men-archive-toolbar .woocommerce-result-count,
.terry-women-archive-toolbar .woocommerce-result-count {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
}

.terry-men-archive-toolbar .woocommerce-ordering select,
.terry-women-archive-toolbar .woocommerce-ordering select {
    padding: 8px 12px;
    border: 1px solid var(--line);
    font-size: 13px;
    background: transparent;
}

/* ==========================================================================
   Men Collection Page â€” premium Terry archive
   ========================================================================== */
.terry-men-archive {
    background: #fff;
    color: #050505;
}

.terry-men-category-hero {
    position: relative;
    min-height: min(70vh, 760px);
    background: #050505;
    overflow: hidden;
}

.terry-men-category-hero__bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .28) 48%, rgba(0, 0, 0, .1)),
        url('../img/banner_2.svg'),
        url('../img/Banner_2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.01);
}

.terry-men-category-hero__content {
    position: relative;
    z-index: 2;
    min-height: min(70vh, 760px);
    width: min(1440px, 100%);
    margin: 0 auto;
    padding: 160px 38px 54px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    color: #fff;
}

.terry-men-category-hero__content p {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.terry-men-category-hero__content h1 {
    margin: 0 0 18px;
    font-size: clamp(82px, 14vw, 190px);
    line-height: .76;
    font-weight: 900;
    letter-spacing: -.095em;
    text-transform: uppercase;
}

.terry-men-category-hero__content span {
    display: block;
    max-width: 620px;
    margin-bottom: 28px;
    font-size: clamp(14px, 1.4vw, 20px);
    line-height: 1.35;
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.terry-men-category-hero__content a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    background: #fff;
    color: #050505 !important;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.terry-men-category-hero__content a:hover {
    background: #050505;
    color: #fff !important;
    outline: 1px solid #fff;
    transform: translateY(-1px);
}

.terry-women-category-hero .hero-bg {
    background-image:
        linear-gradient(90deg, rgba(0, 0, 0, .68) 0%, rgba(0, 0, 0, .24) 44%, rgba(0, 0, 0, .05) 100%),
        url('../img/banner_4.svg'),
        url('../img/Banner_4.webp');
    background-position: center;
}

.terry-women-archive {
    background: #fff;
    color: #050505;
}

.terry-women-category-hero {
    position: relative;
    min-height: min(70vh, 760px);
    background: #050505;
    overflow: hidden;
}

.terry-women-category-hero__bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .28) 48%, rgba(0, 0, 0, .1)),
        url('../img/banner_4.svg'),
        url('../img/Banner_4.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.01);
}

.terry-women-category-hero__content {
    position: relative;
    z-index: 2;
    min-height: min(70vh, 760px);
    width: min(1440px, 100%);
    margin: 0 auto;
    padding: 160px 38px 54px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    color: #fff;
}

.terry-women-category-hero__content p {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.terry-women-category-hero__content h1 {
    margin: 0 0 18px;
    font-size: clamp(72px, 12vw, 166px);
    line-height: .76;
    font-weight: 900;
    letter-spacing: -.095em;
    text-transform: uppercase;
}

.terry-women-category-hero__content span {
    display: block;
    max-width: 650px;
    margin-bottom: 28px;
    font-size: clamp(14px, 1.4vw, 20px);
    line-height: 1.35;
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.terry-women-category-hero__content a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    background: #fff;
    color: #050505 !important;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.terry-women-category-hero__content a:hover {
    background: #050505;
    color: #fff !important;
    outline: 1px solid #fff;
    transform: translateY(-1px);
}

.terry-women-marquee {
    overflow: hidden;
    border-top: 1px solid #050505;
    border-bottom: 1px solid #050505;
    background: #050505;
    color: #fff;
}

.terry-women-marquee__track {
    display: flex;
    align-items: center;
    gap: 18px;
    width: max-content;
    min-width: max-content;
    padding: 13px 0;
    animation: terryMarquee 26s linear infinite;
}

.terry-women-marquee__track span {
    flex: 0 0 auto;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.terry-women-archive-products {
    padding: 44px 38px 70px;
}

.terry-women-archive-products__inner {
    width: min(1440px, 100%);
    margin: 0 auto;
}

.terry-women-archive-products__head {
    margin: 0 0 22px;
    padding: 0;
}

.terry-women-archive-products__kicker {
    margin: 0 0 6px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.terry-women-archive-products__title {
    margin: 0;
    font-size: clamp(46px, 6vw, 88px);
    line-height: .82;
    font-weight: 900;
    letter-spacing: -.08em;
    text-transform: uppercase;
}

.terry-women-archive-toolbar {
    margin: 0 0 26px;
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid #050505;
    border-bottom: 1px solid #e6e6e6;
}

.terry-women-archive-toolbar .woocommerce-result-count {
    margin: 0;
    color: #050505;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.terry-women-archive-toolbar .woocommerce-ordering {
    margin: 0;
}

.terry-women-archive-toolbar .woocommerce-ordering select {
    min-width: 190px;
    height: 40px;
    padding: 0 34px 0 12px;
    border: 1px solid #050505;
    background: #fff;
    color: #050505;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.terry-women-archive-products ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 22px 16px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.terry-women-archive-products ul.products::before,
.terry-women-archive-products ul.products::after {
    display: none !important;
}

.terry-women-archive-products ul.products li.product,
.terry-women-archive-products .terry-product-tile {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    text-align: left;
}

.terry-women-archive-products .terry-product-link {
    display: block;
    color: #050505;
}

.terry-women-archive-products .terry-product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 3;
    background: #f6f5f1;
    overflow: hidden;
}

.terry-women-archive-products .terry-product-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    margin: 0 !important;
    transition: opacity .3s var(--ease), transform .38s var(--ease);
}

.terry-women-archive-products .terry-product-hover-image {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.terry-women-archive-products .terry-product-tile:hover .terry-product-main-image {
    opacity: 0;
}

.terry-women-archive-products .terry-product-tile:hover .terry-product-hover-image {
    opacity: 1;
}

.terry-women-archive-products .terry-product-tile:hover .terry-product-image img {
    transform: scale(1.035);
}

.terry-women-archive-products .terry-sale-badge {
    top: 10px;
    left: 10px;
    border-radius: 0;
    padding: 7px 9px;
    font-size: 9px;
}

.terry-women-archive-products .terry-product-info {
    padding: 12px 0 0;
}

.terry-women-archive-products .terry-product-info h3 {
    margin: 0 0 5px;
    min-height: 2.35em;
    color: #050505;
    font-size: 14px;
    line-height: 1.18;
    font-weight: 900;
    letter-spacing: -.025em;
}

.terry-women-archive-products .product-subline {
    margin: 0 0 6px;
    color: rgba(0, 0, 0, .55);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.terry-women-archive-products .home-product-price,
.terry-women-archive-products .price {
    display: block !important;
    color: #050505 !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
    font-weight: 900 !important;
    overflow: visible !important;
}

.terry-women-archive-products .button,
.terry-women-archive-products .add_to_cart_button {
    display: none !important;
}

/* ==========================================================================
   Inception Drop Collection Page
   ========================================================================== */
.terry-inception-archive {
    background: #fff;
    color: #050505;
}

.terry-inception-category-hero {
    position: relative;
    min-height: min(78vh, 820px);
    background: #050505;
    overflow: hidden;
}

.terry-inception-category-hero__bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .28) 50%, rgba(0, 0, 0, .1)),
        url('../img/banner_5.svg'),
        url('../img/Banner_5.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.01);
}

.terry-inception-category-hero__content {
    position: relative;
    z-index: 2;
    min-height: min(78vh, 820px);
    width: min(1440px, 100%);
    margin: 0 auto;
    padding: 166px 38px 58px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    color: #fff;
}

.terry-inception-category-hero__content p {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.terry-inception-category-hero__content h1 {
    max-width: 980px;
    margin: 0 0 20px;
    font-size: clamp(68px, 10.5vw, 174px);
    line-height: .78;
    font-weight: 900;
    letter-spacing: -.095em;
    text-transform: uppercase;
}

.terry-inception-category-hero__content span {
    display: block;
    max-width: 710px;
    margin-bottom: 30px;
    font-size: clamp(14px, 1.4vw, 20px);
    line-height: 1.35;
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.terry-inception-category-hero__content a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    background: #fff;
    color: #050505 !important;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.terry-inception-category-hero__content a:hover {
    background: #050505;
    color: #fff !important;
    outline: 1px solid #fff;
    transform: translateY(-1px);
}

.terry-inception-marquee {
    overflow: hidden;
    border-top: 1px solid #050505;
    border-bottom: 1px solid #050505;
    background: #050505;
    color: #fff;
}

.terry-inception-marquee__track {
    display: flex;
    align-items: center;
    gap: 18px;
    width: max-content;
    min-width: max-content;
    padding: 13px 0;
    animation: terryMarquee 28s linear infinite;
}

.terry-inception-marquee__track span {
    flex: 0 0 auto;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.terry-inception-intro {
    width: min(1440px, 100%);
    margin: 0 auto;
    padding: 38px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.6fr);
    gap: 34px;
    border-bottom: 1px solid #e6e6e6;
}

.terry-inception-intro__copy p {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.terry-inception-intro__copy h2 {
    margin: 0;
    max-width: 540px;
    font-size: clamp(38px, 4.6vw, 78px);
    line-height: .86;
    font-weight: 900;
    letter-spacing: -.08em;
    text-transform: uppercase;
}

.terry-inception-intro__points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: #050505;
    border: 1px solid #050505;
}

.terry-inception-intro__points span {
    min-height: 92px;
    padding: 18px;
    display: flex;
    align-items: flex-end;
    background: #fff;
    font-size: 13px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.terry-inception-archive-products {
    padding: 44px 38px 76px;
}

.terry-inception-archive-products__inner {
    width: min(1440px, 100%);
    margin: 0 auto;
}

.terry-inception-archive-products__head {
    margin: 0 0 22px;
    padding: 0;
}

.terry-inception-archive-products__kicker {
    margin: 0 0 6px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.terry-inception-archive-products__title {
    margin: 0;
    font-size: clamp(44px, 6vw, 92px);
    line-height: .82;
    font-weight: 900;
    letter-spacing: -.08em;
    text-transform: uppercase;
}

.terry-inception-archive-toolbar {
    margin: 0 0 26px;
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid #050505;
    border-bottom: 1px solid #e6e6e6;
}

.terry-inception-archive-toolbar .woocommerce-result-count {
    margin: 0;
    color: #050505;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.terry-inception-archive-toolbar .woocommerce-ordering {
    margin: 0;
}

.terry-inception-archive-toolbar .woocommerce-ordering select {
    min-width: 190px;
    height: 40px;
    padding: 0 34px 0 12px;
    border: 1px solid #050505;
    background: #fff;
    color: #050505;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.terry-inception-archive-products ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 22px 16px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.terry-inception-archive-products ul.products::before,
.terry-inception-archive-products ul.products::after {
    display: none !important;
}

.terry-inception-archive-products ul.products li.product,
.terry-inception-archive-products .terry-product-tile {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    text-align: left;
}

.terry-inception-archive-products .terry-product-link {
    display: block;
    color: #050505;
}

.terry-inception-archive-products .terry-product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 3;
    background: #f6f5f1;
    overflow: hidden;
}

.terry-inception-archive-products .terry-product-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    margin: 0 !important;
    transition: opacity .3s var(--ease), transform .38s var(--ease);
}

.terry-inception-archive-products .terry-product-hover-image {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.terry-inception-archive-products .terry-product-tile:hover .terry-product-main-image {
    opacity: 0;
}

.terry-inception-archive-products .terry-product-tile:hover .terry-product-hover-image {
    opacity: 1;
}

.terry-inception-archive-products .terry-product-tile:hover .terry-product-image img {
    transform: scale(1.035);
}

.terry-inception-archive-products .terry-sale-badge {
    top: 10px;
    left: 10px;
    border-radius: 0;
    padding: 7px 9px;
    font-size: 9px;
}

.terry-inception-archive-products .terry-product-info {
    padding: 12px 0 0;
}

.terry-inception-archive-products .terry-product-info h3 {
    margin: 0 0 5px;
    min-height: 2.35em;
    color: #050505;
    font-size: 14px;
    line-height: 1.18;
    font-weight: 900;
    letter-spacing: -.025em;
}

.terry-inception-archive-products .product-subline {
    margin: 0 0 6px;
    color: rgba(0, 0, 0, .55);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.terry-inception-archive-products .home-product-price,
.terry-inception-archive-products .price {
    display: block !important;
    color: #050505 !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
    font-weight: 900 !important;
    overflow: visible !important;
}

.terry-inception-archive-products .button,
.terry-inception-archive-products .add_to_cart_button {
    display: none !important;
}

@media (max-width: 1180px) and (min-width: 701px) {
    .terry-inception-archive-products ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 900px) {
    .terry-inception-category-hero {
        min-height: 75svh;
    }

    .terry-inception-category-hero__bg {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, .28), rgba(0, 0, 0, .84)),
            url('../img/Banner_5-mobile.webp') center / cover no-repeat;
    }

    .terry-inception-category-hero__content {
        min-height: 75svh;
        padding: 118px 20px 48px;
    }

    .terry-inception-category-hero__content p {
        font-size: 11px;
    }

    .terry-inception-category-hero__content h1 {
        max-width: 92vw;
        margin-bottom: 16px;
        font-size: clamp(48px, 15vw, 76px);
        line-height: .84;
    }

    .terry-inception-category-hero__content span {
        max-width: 92vw;
        margin-bottom: 22px;
        font-size: 13px;
    }

    .terry-inception-category-hero__content a {
        min-height: 44px;
        padding: 0 18px;
        font-size: 11px;
    }

    .terry-inception-marquee__track {
        gap: 14px;
        padding: 11px 0;
    }

    .terry-inception-marquee__track span {
        font-size: 10px;
    }

    .terry-inception-intro {
        padding: 28px 14px;
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .terry-inception-intro__copy h2 {
        font-size: clamp(36px, 12vw, 58px);
    }

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

    .terry-inception-intro__points span {
        min-height: 84px;
        padding: 14px;
        font-size: 11px;
    }

    .terry-inception-archive-products {
        padding: 32px 14px 58px;
    }

    .terry-inception-archive-products__head {
        margin-bottom: 16px;
    }

    .terry-inception-archive-products__title {
        font-size: clamp(38px, 13vw, 62px);
    }

    .terry-inception-archive-toolbar {
        align-items: flex-start;
        margin-bottom: 18px;
    }

    .terry-inception-archive-toolbar .woocommerce-result-count {
        font-size: 10px;
        line-height: 40px;
    }

    .terry-inception-archive-toolbar .woocommerce-ordering select {
        min-width: 136px;
        max-width: 46vw;
        height: 40px;
        font-size: 10px;
    }

    .terry-inception-archive-products ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 20px 10px !important;
    }

    .terry-inception-archive-products .terry-product-hover-image {
        display: none !important;
    }

    .terry-inception-archive-products .terry-product-tile:hover .terry-product-main-image {
        opacity: 1;
    }

    .terry-inception-archive-products .terry-product-tile:hover .terry-product-image img {
        transform: none;
    }

    .terry-inception-archive-products .terry-product-info h3 {
        min-height: 2.6em;
        font-size: 12px;
    }

    .terry-inception-archive-products .product-subline {
        font-size: 9px;
    }

    .terry-inception-archive-products .home-product-price,
    .terry-inception-archive-products .price {
        font-size: 12px !important;
    }
}

.terry-men-marquee {
    overflow: hidden;
    border-top: 1px solid #050505;
    border-bottom: 1px solid #050505;
    background: #050505;
    color: #fff;
}

.terry-men-marquee__track {
    display: flex;
    align-items: center;
    gap: 18px;
    width: max-content;
    min-width: max-content;
    padding: 13px 0;
    animation: terryMarquee 26s linear infinite;
}

.terry-men-marquee__track span {
    flex: 0 0 auto;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.terry-men-archive-products {
    padding: 44px 38px 70px;
}

.terry-men-archive-products__inner {
    width: min(1440px, 100%);
    margin: 0 auto;
}

.terry-men-archive-products__head {
    margin: 0 0 22px;
    padding: 0;
}

.terry-men-archive-products__kicker {
    margin: 0 0 6px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.terry-men-archive-products__title {
    margin: 0;
    font-size: clamp(46px, 6vw, 88px);
    line-height: .82;
    font-weight: 900;
    letter-spacing: -.08em;
    text-transform: uppercase;
}

.terry-men-archive-toolbar {
    margin: 0 0 26px;
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid #050505;
    border-bottom: 1px solid #e6e6e6;
}

.terry-men-archive-toolbar .woocommerce-result-count {
    margin: 0;
    color: #050505;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.terry-men-archive-toolbar .woocommerce-ordering {
    margin: 0;
}

.terry-men-archive-toolbar .woocommerce-ordering select {
    min-width: 190px;
    height: 40px;
    padding: 0 34px 0 12px;
    border: 1px solid #050505;
    background: #fff;
    color: #050505;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.terry-men-archive-products ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 22px 16px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.terry-men-archive-products ul.products::before,
.terry-men-archive-products ul.products::after {
    display: none !important;
}

.terry-men-archive-products ul.products li.product,
.terry-men-archive-products .terry-product-tile {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    text-align: left;
}

.terry-men-archive-products .terry-product-link {
    display: block;
    color: #050505;
}

.terry-men-archive-products .terry-product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 3;
    background: #f6f5f1;
    overflow: hidden;
}

.terry-men-archive-products .terry-product-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    margin: 0 !important;
    transition: opacity .3s var(--ease), transform .38s var(--ease);
}

.terry-men-archive-products .terry-product-hover-image {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.terry-men-archive-products .terry-product-tile:hover .terry-product-main-image {
    opacity: 0;
}

.terry-men-archive-products .terry-product-tile:hover .terry-product-hover-image {
    opacity: 1;
}

.terry-men-archive-products .terry-product-tile:hover .terry-product-image img {
    transform: scale(1.035);
}

.terry-men-archive-products .terry-sale-badge {
    top: 10px;
    left: 10px;
    border-radius: 0;
    padding: 7px 9px;
    font-size: 9px;
}

.terry-men-archive-products .terry-product-info {
    padding: 12px 0 0;
}

.terry-men-archive-products .terry-product-info h3 {
    margin: 0 0 5px;
    min-height: 2.35em;
    color: #050505;
    font-size: 14px;
    line-height: 1.18;
    font-weight: 900;
    letter-spacing: -.025em;
}

.terry-men-archive-products .product-subline {
    margin: 0 0 6px;
    color: rgba(0, 0, 0, .55);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.terry-men-archive-products .home-product-price,
.terry-men-archive-products .price {
    display: block !important;
    color: #050505 !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
    font-weight: 900 !important;
    overflow: visible !important;
}

.terry-men-archive-products .button,
.terry-men-archive-products .add_to_cart_button {
    display: none !important;
}

@media (max-width: 1180px) and (min-width: 701px) {
    .terry-men-archive-products ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .terry-women-archive-products ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 900px) {
    .terry-men-category-hero {
        min-height: 75svh;
    }

    .terry-men-category-hero__bg {
        background-image:
            linear-gradient(180deg, rgba(0, 0, 0, .22), rgba(0, 0, 0, .82)),
            url('../img/Banner_2-mobile.webp');
        background-position: center;
    }

    .terry-men-category-hero__content {
        min-height: 75svh;
        padding: 118px 20px 48px;
    }

    .terry-men-category-hero__content h1 {
        font-size: clamp(76px, 25vw, 124px);
    }

    .terry-men-category-hero__content span {
        max-width: 92vw;
        font-size: 13px;
    }

    .terry-women-category-hero {
        min-height: 75svh;
    }

    .terry-women-category-hero__bg {
        background-image:
            linear-gradient(180deg, rgba(0, 0, 0, .22), rgba(0, 0, 0, .82)),
            url('../img/Banner_4-mobile.webp');
        background-position: center;
    }

    .terry-women-category-hero__content {
        min-height: 75svh;
        padding: 118px 20px 48px;
    }

    .terry-women-category-hero__content h1 {
        font-size: clamp(60px, 18vw, 94px);
    }

    .terry-women-category-hero__content span {
        max-width: 92vw;
        font-size: 13px;
    }

    .terry-women-category-hero .hero-bg {
        display: block;
        background-image:
            linear-gradient(180deg, rgba(0, 0, 0, .22), rgba(0, 0, 0, .82)),
            url('../img/Banner_4-mobile.webp');
        background-position: center;
    }

    .terry-men-marquee__track,
    .terry-women-marquee__track {
        gap: 14px;
        padding: 11px 0;
    }

    .terry-men-marquee__track span,
    .terry-women-marquee__track span {
        font-size: 10px;
    }

    .terry-men-archive-products,
    .terry-women-archive-products {
        padding: 32px 14px 58px;
    }

    .terry-men-archive-products__head,
    .terry-women-archive-products__head {
        margin-bottom: 16px;
    }

    .terry-men-archive-products__title,
    .terry-women-archive-products__title {
        font-size: clamp(42px, 15vw, 64px);
    }

    .terry-men-archive-toolbar,
    .terry-women-archive-toolbar {
        align-items: flex-start;
        margin-bottom: 18px;
    }

    .terry-men-archive-toolbar .woocommerce-result-count,
    .terry-women-archive-toolbar .woocommerce-result-count {
        font-size: 10px;
        line-height: 40px;
    }

    .terry-men-archive-toolbar .woocommerce-ordering select,
    .terry-women-archive-toolbar .woocommerce-ordering select {
        min-width: 136px;
        max-width: 46vw;
        height: 40px;
        font-size: 10px;
    }

    .terry-men-archive-products ul.products,
    .terry-women-archive-products ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 20px 10px !important;
    }

    .terry-men-archive-products .terry-product-hover-image,
    .terry-women-archive-products .terry-product-hover-image {
        display: none !important;
    }

    .terry-men-archive-products .terry-product-tile:hover .terry-product-main-image,
    .terry-women-archive-products .terry-product-tile:hover .terry-product-main-image {
        opacity: 1;
    }

    .terry-men-archive-products .terry-product-tile:hover .terry-product-image img,
    .terry-women-archive-products .terry-product-tile:hover .terry-product-image img {
        transform: none;
    }

    .terry-men-archive-products .terry-product-info h3,
    .terry-women-archive-products .terry-product-info h3 {
        min-height: 2.6em;
        font-size: 12px;
    }

    .terry-men-archive-products .product-subline,
    .terry-women-archive-products .product-subline {
        font-size: 9px;
    }

    .terry-men-archive-products .home-product-price,
    .terry-men-archive-products .price,
    .terry-women-archive-products .home-product-price,
    .terry-women-archive-products .price {
        font-size: 12px !important;
    }
}


/* ==========================================================================
   WhatsApp Floating Icon â€” repositioned on mobile
   ========================================================================== */
.joinchat,
.wa-float,
#whatsapp-chat-widget,
[class*="whatsapp"],
[id*="whatsapp"] {
    z-index: 999 !important;
}

.terry-whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1800;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #25d366;
    color: #fff !important;
    box-shadow: 0 16px 38px rgba(0, 0, 0, .24);
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s ease;
}

.terry-whatsapp-float:hover {
    transform: translateY(-2px) scale(1.04);
    background: #1fbd5d;
    box-shadow: 0 20px 44px rgba(0, 0, 0, .28);
}

.terry-whatsapp-float svg {
    width: 34px;
    height: 34px;
    fill: currentColor;
}

.terry-whatsapp-float__badge {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    display: grid;
    place-items: center;
    border: 2px solid #fff;
    border-radius: 999px;
    background: var(--terry-accent);
    color: #fff;
    font-size: 10px;
    line-height: 1;
    font-weight: 900;
}


/* ==========================================================================
   Mobile Responsive â€” Hero, Product Grids, Campaign Cards, WhatsApp
   ========================================================================== */
@media (max-width: 900px) {

    /* â”€â”€ Mobile Hero fullscreen â”€â”€ */
    .home-hero {
        height: 100svh;
        min-height: 620px;
    }

    .hero-mobile-slider {
        display: block;
        position: absolute;
        inset: 0;
        z-index: 2;
        overflow: hidden;
    }

    .hero-mobile-slider__slides,
    .hero-mobile-slide,
    .hero-mobile-slide__zoom {
        position: absolute;
        inset: 0;
    }

    .hero-mobile-slide__img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        display: block;
    }

    .hero-mobile-slide:not(.is-active) {
        opacity: 0;
    }

    .hero-mobile-slide.is-active {
        opacity: 1;
    }

    .hero-mobile-slide__zoom {
        will-change: transform;
    }

    .hero-mobile-slide.is-active .hero-mobile-slide__zoom {
        animation: heroMobileKenBurns 12s ease-in-out infinite;
    }

    .hero-mobile-slide.is-active:nth-child(even) .hero-mobile-slide__zoom {
        animation-name: heroMobileKenBurnsAlt;
    }

    .hero-mobile-dots {
        display: flex;
        position: absolute;
        bottom: 26px;
        left: 0;
        right: 0;
        z-index: 15;
        justify-content: center;
        gap: 7px;
        pointer-events: none;
    }

    .hero-mobile-dots span {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .35);
        transition: background .3s ease, transform .3s ease;
    }

    .hero-mobile-dots span.is-active {
        background: #fff;
        transform: scale(1.25);
    }

    .hero-scrim {
        display: block;
        position: absolute;
        inset: 0;
        z-index: 3;
        pointer-events: none;
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, .12) 0%,
            rgba(0, 0, 0, 0) 28%,
            rgba(0, 0, 0, .7) 68%,
            rgba(0, 0, 0, .96) 100%
        );
    }

    .hero-bg {
        display: none;
        background-image: url('../img/Banner_3_mobile.webp');
    }

    .hero-content {
        min-height: 100svh;
        padding: 120px 24px 80px;
    }

    .hero-content h1 {
        font-size: clamp(52px, 14vw, 90px);
    }

    /* â”€â”€ Mobile Product Grid â€” 2 columns â”€â”€ */
    .product-grid-home {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .terry-men-archive-products ul.products,
    .terry-women-archive-products ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    /* â”€â”€ Mobile Product Card Adjustments â”€â”€ */
    .terry-product-tile .terry-product-image {
        aspect-ratio: 2 / 3;
    }

    /* Hide hover image on mobile â€” saves bandwidth + no hover on touch */
    .terry-product-tile .terry-product-hover-image,
    .home-product-card .terry-product-hover-image {
        display: none;
    }

    .terry-product-info h3 {
        font-size: 13px;
    }

    .terry-product-info .home-product-price {
        font-size: 13px;
    }

    .home-product-card h3 {
        font-size: 13px;
    }

    /* â”€â”€ Mobile Campaign Cards â€” single column â”€â”€ */
    .terry-men-subcats,
    .terry-women-subcats,
    .category-tiles {
        grid-template-columns: 1fr;
        gap: 10px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .campaign-card {
        min-height: 220px;
        padding: 24px;
    }

    .campaign-card h3 {
        font-size: 22px;
    }

    .brand-pillars-track,
    .terry-type-band__track {
        gap: 14px;
    }

    .brand-pillars-track span,
    .terry-type-band__track span {
        font-size: 10px;
        letter-spacing: .07em;
    }

    .terry-lookbook {
        padding: 38px 0 42px;
    }

    .terry-lookbook__head {
        padding: 0 20px;
        margin-bottom: 14px;
        align-items: flex-start;
    }

    .terry-lookbook__title {
        font-size: clamp(40px, 12vw, 58px);
    }

    .terry-lookbook__see-all {
        font-size: 11px;
        margin-top: 4px;
    }

    .terry-lookbook__track {
        grid-auto-columns: minmax(74vw, 74vw);
        gap: 10px;
        padding: 0 20px;
    }

    .terry-featured-categories__track {
        grid-auto-columns: minmax(72vw, 72vw);
    }

    .terry-featured-categories__slide span {
        left: 16px;
        right: 16px;
        bottom: 16px;
        font-size: clamp(24px, 8vw, 34px);
        line-height: 1;
    }

    /* â”€â”€ Mobile Archive Pages â”€â”€ */
    .terry-archive-hero {
        min-height: 45vh;
    }

    .terry-archive-hero .hero-content {
        min-height: 45vh;
        padding: 100px 24px 36px;
    }

    .terry-archive-hero .hero-content h1 {
        font-size: clamp(42px, 12vw, 68px);
    }

    .terry-men-archive-products,
    .terry-women-archive-products {
        padding: 0 20px 48px;
    }

    .terry-men-archive-products__title,
    .terry-women-archive-products__title {
        font-size: 32px;
    }

    .terry-men-archive-toolbar,
    .terry-women-archive-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    /* â”€â”€ WhatsApp floating icon â€” smaller + repositioned on mobile â”€â”€ */
    .joinchat,
    .wa-float,
    #whatsapp-chat-widget,
    [class*="whatsapp-widget"],
    [id*="whatsapp"] {
        bottom: 16px !important;
        right: 12px !important;
        transform: scale(.82) !important;
        transform-origin: bottom right !important;
    }

    /* â”€â”€ Mobile Editorial banner â”€â”€ */
    .terry-whatsapp-float {
        right: 14px;
        bottom: 16px;
        width: 54px;
        height: 54px;
    }

    .terry-whatsapp-float svg {
        width: 30px;
        height: 30px;
    }

    .editorial-banner {
        margin: 0 20px 20px;
        min-height: 280px;
        padding: 28px;
    }

    .editorial-banner h2 {
        font-size: clamp(36px, 11vw, 56px);
    }

    .section-pad {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Final homepage hero header refinement */
@media (min-width: 901px) {
    body.is-home-hero:not(.header-compact) .terry-header {
        position: fixed;
        top: 12px;
    }

    body.is-home-hero:not(.header-compact) .terry-header-inner,
    body.is-home-hero:not(.header-compact) .terry-header-shell {
        width: min(1120px, calc(100vw - 40px)) !important;
        height: 76px !important;
        padding: 0 24px !important;
        grid-template-columns: auto 1fr auto !important;
        gap: 28px !important;
        background: rgba(255, 255, 255, .94) !important;
        border-radius: 6px !important;
        box-shadow: 0 18px 52px rgba(0, 0, 0, .18) !important;
        backdrop-filter: blur(14px);
    }

    body.is-home-hero:not(.header-compact) .terry-logo {
        width: 142px !important;
        height: 58px !important;
        filter: none !important;
        transform: none !important;
    }

    body.is-home-hero:not(.header-compact) .terry-header .terry-logo__dark {
        display: block !important;
    }

    body.is-home-hero:not(.header-compact) .terry-header .terry-logo__light {
        display: none !important;
    }

    body.is-home-hero:not(.header-compact) .desktop-nav {
        justify-content: center !important;
        gap: 25px !important;
        transform: none !important;
    }

    body.is-home-hero:not(.header-compact) .desktop-nav > a,
    body.is-home-hero:not(.header-compact) .nav-item > a,
    body.is-home-hero:not(.header-compact) .header-icons a,
    body.is-home-hero:not(.header-compact) .icon-link {
        color: #000 !important;
        text-shadow: none !important;
    }

    body.is-home-hero:not(.header-compact) .desktop-nav > a,
    body.is-home-hero:not(.header-compact) .nav-item > a {
        font-size: 17px !important;
    }

    body.is-home-hero:not(.header-compact) .desktop-nav > a::after,
    body.is-home-hero:not(.header-compact) .nav-item > a::after {
        background: #000 !important;
    }

    body.is-home-hero:not(.header-compact) .header-icons svg,
    body.is-home-hero:not(.header-compact) .icon-link svg {
        fill: #000 !important;
        filter: none !important;
    }
}

/* Final Terry branding pass: hero/header/footer */
@media (min-width: 901px) {
    body.is-home-hero:not(.header-compact) .terry-header {
        position: absolute !important;
        top: 28px !important;
    }

    body.is-home-hero:not(.header-compact) .terry-header-shell {
        width: min(1480px, calc(100vw - 56px)) !important;
        height: 72px !important;
        padding: 0 !important;
        grid-template-columns: minmax(148px, 190px) 1fr auto !important;
        gap: clamp(24px, 3vw, 48px) !important;
        background: transparent !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
    }

    body.is-home-hero:not(.header-compact) .terry-header .terry-logo {
        width: 156px !important;
        height: 64px !important;
        filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .38)) !important;
    }

    body.is-home-hero:not(.header-compact) .terry-header .terry-logo__dark {
        display: none !important;
    }

    body.is-home-hero:not(.header-compact) .terry-header .terry-logo__light {
        display: block !important;
    }

    body.is-home-hero:not(.header-compact) .desktop-nav {
        justify-content: center !important;
        gap: clamp(18px, 2vw, 30px) !important;
    }

    body.is-home-hero:not(.header-compact) .desktop-nav > a,
    body.is-home-hero:not(.header-compact) .nav-item > a {
        color: #fff !important;
        font-size: 15px !important;
        letter-spacing: -.035em;
        text-shadow: 0 3px 18px rgba(0, 0, 0, .5) !important;
    }

    body.is-home-hero:not(.header-compact) .desktop-nav > a::after,
    body.is-home-hero:not(.header-compact) .nav-item > a::after {
        background: #fff !important;
    }

    body.is-home-hero:not(.header-compact) .header-icons {
        gap: 16px !important;
    }

    body.is-home-hero:not(.header-compact) .header-icons a,
    body.is-home-hero:not(.header-compact) .icon-link {
        color: #fff !important;
    }

    body.is-home-hero:not(.header-compact) .header-icons svg,
    body.is-home-hero:not(.header-compact) .icon-link svg {
        fill: #fff !important;
        filter: drop-shadow(0 3px 16px rgba(0, 0, 0, .48)) !important;
    }

    body.is-home-hero.header-compact .terry-header,
    body:not(.is-home-hero) .terry-header {
        top: 12px !important;
    }

    body.is-home-hero.header-compact .terry-header-shell,
    body:not(.is-home-hero) .terry-header-shell {
        width: min(1120px, calc(100vw - 40px)) !important;
        height: 74px !important;
    }
}

@media (max-width: 900px) {
    body.is-home-hero:not(.header-compact) .terry-header {
        position: absolute !important;
        top: 10px !important;
        left: 0 !important;
        right: 0 !important;
        pointer-events: none;
    }

    body.is-home-hero:not(.header-compact) .terry-header::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 96px;
        z-index: -1;
        background: linear-gradient(180deg, rgba(0, 0, 0, .42), rgba(0, 0, 0, 0));
        pointer-events: none;
    }

    body.is-home-hero:not(.header-compact) .terry-header-shell {
        width: calc(100vw - 28px) !important;
        height: 64px !important;
        padding: 0 4px !important;
        grid-template-columns: 44px minmax(92px, 1fr) auto !important;
        gap: 8px !important;
        background: transparent !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        pointer-events: auto;
    }

    body.is-home-hero:not(.header-compact) .mobile-menu-toggle,
    body.is-home-hero:not(.header-compact) .icon-link {
        color: #fff !important;
    }

    body.is-home-hero:not(.header-compact) .mobile-menu-toggle span {
        background: #fff !important;
    }

    body.is-home-hero:not(.header-compact) .header-icons svg,
    body.is-home-hero:not(.header-compact) .icon-link svg {
        fill: #fff !important;
        filter: drop-shadow(0 3px 14px rgba(0, 0, 0, .45)) !important;
    }

    body.is-home-hero:not(.header-compact) .terry-header .terry-logo {
        width: clamp(92px, 27vw, 110px) !important;
        height: 48px !important;
        justify-self: center;
        filter: drop-shadow(0 4px 18px rgba(0, 0, 0, .45)) !important;
    }

    body.is-home-hero:not(.header-compact) .terry-header .terry-logo__dark {
        display: none !important;
    }

    body.is-home-hero:not(.header-compact) .terry-header .terry-logo__light {
        display: block !important;
    }

    body.is-home-hero:not(.header-compact) .header-icons .desktop-only-icon {
        display: none !important;
    }

    body.is-home-hero.header-compact .terry-header,
    body:not(.is-home-hero) .terry-header {
        top: 10px !important;
    }

    body.is-home-hero.header-compact .terry-header-shell,
    body:not(.is-home-hero) .terry-header-shell {
        width: calc(100vw - 28px) !important;
        height: 64px !important;
        padding: 0 12px !important;
        border-radius: 6px !important;
        background: rgba(255, 255, 255, .94) !important;
    }

    body.is-home-hero.header-compact .terry-header .terry-logo,
    body:not(.is-home-hero) .terry-header .terry-logo {
        width: clamp(104px, 30vw, 126px) !important;
        height: 48px !important;
        filter: none !important;
    }

    body.is-home-hero.header-compact .terry-header .terry-logo__dark,
    body:not(.is-home-hero) .terry-header .terry-logo__dark {
        display: block !important;
    }

    body.is-home-hero.header-compact .terry-header .terry-logo__light,
    body:not(.is-home-hero) .terry-header .terry-logo__light {
        display: none !important;
    }

    .home-hero {
        height: 100svh !important;
        min-height: 100svh !important;
    }

    .hero-mobile-slide__img {
        object-fit: cover !important;
        object-position: 52% center !important;
        transform: none !important;
    }

    .hero-content {
        min-height: 100svh !important;
        padding: 120px 20px 82px !important;
    }

    .home-hero .hero-content:has(.btn-light:only-child) {
        padding-bottom: 92px !important;
    }

    .home-hero .btn-light {
        min-height: 48px !important;
        min-width: 0 !important;
        width: auto !important;
        padding: 0 22px !important;
        font-size: 12px !important;
    }

    .terry-whatsapp-float {
        bottom: 18px !important;
        right: 14px !important;
    }
}

.terry-footer {
    overflow: hidden;
}

.terry-footer__main {
    grid-template-columns: minmax(240px, .95fr) repeat(3, minmax(160px, .68fr));
    align-items: start;
}

.terry-footer__logo {
    width: clamp(150px, 13vw, 210px) !important;
    height: auto !important;
    aspect-ratio: 1098 / 448 !important;
    margin-bottom: 28px !important;
}

@media (max-width: 900px) {
    .terry-footer__shell {
        width: calc(100vw - 28px) !important;
        padding: 34px 0 28px !important;
    }

    .terry-footer__brand {
        max-width: none !important;
    }

    .terry-footer__logo {
        width: clamp(130px, 42vw, 160px) !important;
        margin-bottom: 18px !important;
    }

    .terry-footer__tagline {
        font-size: 15px !important;
    }

    .terry-footer__bar {
        gap: 12px;
        align-items: flex-start;
    }

    .terry-footer__main {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 26px !important;
        padding-bottom: 26px !important;
    }

    .terry-footer-mobile-accordions {
        display: none !important;
    }

    .terry-footer__heading {
        margin-bottom: 12px !important;
        font-size: 13px !important;
    }

    .terry-footer__list li,
    .terry-footer__contact-list li {
        margin-bottom: 9px !important;
    }
}

/* Logo box fix: use clean wordmark on hero, never the square white variant */
@media (min-width: 901px) {
    body.is-home-hero:not(.header-compact) .terry-header .terry-logo__dark {
        display: block !important;
        filter: invert(1) drop-shadow(0 4px 18px rgba(0, 0, 0, .48)) !important;
    }

    body.is-home-hero:not(.header-compact) .terry-header .terry-logo__light {
        display: none !important;
    }

    body.is-home-hero:not(.header-compact) .terry-header .terry-logo {
        width: clamp(120px, 9vw, 140px) !important;
        height: 56px !important;
        padding: 0 !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        align-self: center !important;
    }

    body.is-home-hero:not(.header-compact) .terry-logo img {
        object-position: left center !important;
    }

    body.is-home-hero:not(.header-compact) .terry-header-shell {
        align-items: center !important;
    }
}

@media (max-width: 900px) {
    body.is-home-hero:not(.header-compact) .terry-header .terry-logo__dark {
        display: block !important;
        filter: invert(1) drop-shadow(0 3px 14px rgba(0, 0, 0, .5)) !important;
    }

    body.is-home-hero:not(.header-compact) .terry-header .terry-logo__light {
        display: none !important;
    }

    body.is-home-hero:not(.header-compact) .terry-header .terry-logo {
        width: clamp(90px, 26vw, 100px) !important;
        height: 44px !important;
        padding: 0 !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        align-self: center !important;
    }

    body.is-home-hero:not(.header-compact) .terry-header-shell {
        align-items: center !important;
    }
}

/* Homepage hero overlay refinement: keep campaign readable without washing out embedded text */
.home-hero .hero-bg {
    background-image:
        linear-gradient(90deg, rgba(0, 0, 0, .34) 0%, rgba(0, 0, 0, .14) 46%, rgba(0, 0, 0, .28) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .16) 0%, rgba(0, 0, 0, .08) 42%, rgba(0, 0, 0, .55) 100%),
        url('../img/Banner_3.webp') !important;
}

@media (max-width: 900px) {
    .home-hero .hero-bg {
        background-image:
            linear-gradient(180deg, rgba(0, 0, 0, .12) 0%, rgba(0, 0, 0, .08) 45%, rgba(0, 0, 0, .62) 100%),
            url('../img/Banner_3_mobile.webp') !important;
        background-position: 52% center !important;
    }
}

/* Final header logo correction: no square asset, no card on hero, clean wordmark only */
.terry-logo,
.terry-logo-link,
.terry-logo img,
.terry-header .custom-logo-link,
.terry-header .site-logo {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    outline: 0 !important;
}

.terry-logo {
    padding: 0 !important;
    overflow: visible !important;
}

.terry-logo__light {
    display: none !important;
}

.terry-logo__dark {
    display: block !important;
}

@media (min-width: 901px) {
    body.is-home-hero:not(.header-compact) .terry-header {
        position: absolute !important;
        top: 28px !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 80 !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        pointer-events: none;
    }

    body.is-home-hero:not(.header-compact) .terry-header-shell {
        height: 72px !important;
        padding: 0 clamp(28px, 3.4vw, 56px) !important;
        display: grid !important;
        grid-template-columns: minmax(178px, 226px) 1fr minmax(150px, 220px) !important;
        align-items: center !important;
        column-gap: clamp(26px, 3vw, 58px) !important;
        background: transparent !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        pointer-events: auto;
    }

    body.is-home-hero:not(.header-compact) .terry-header .terry-logo {
        width: clamp(168px, 10.5vw, 206px) !important;
        height: 56px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        margin: 0 !important;
        background: transparent !important;
    }

    body.is-home-hero:not(.header-compact) .terry-header .terry-logo__dark {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        max-height: 56px !important;
        object-fit: contain !important;
        object-position: left center !important;
        filter: brightness(0) invert(1) drop-shadow(0 4px 16px rgba(0, 0, 0, .42)) !important;
    }

    body.is-home-hero:not(.header-compact) .terry-header .terry-logo__light {
        display: none !important;
    }

    body.is-home-hero:not(.header-compact) .desktop-nav,
    body.is-home-hero:not(.header-compact) .terry-actions {
        align-items: center !important;
    }

    body.is-home-hero:not(.header-compact) .desktop-nav a {
        color: #fff !important;
        text-shadow: 0 2px 12px rgba(0, 0, 0, .42) !important;
    }

    body.is-home-hero:not(.header-compact) .terry-action {
        color: #fff !important;
        filter: drop-shadow(0 2px 10px rgba(0, 0, 0, .42)) !important;
    }

body.header-compact .terry-header .terry-logo__dark,
    body:not(.is-home-hero) .terry-header .terry-logo__dark {
        filter: none !important;
    }
}

/* Simple text policy pages — Nishat-style, no images/cards */
.terry-policy-simple {
    background: #f2f2f2;
    color: #111;
    min-height: 70vh;
    padding: clamp(132px, 12vw, 188px) 20px clamp(72px, 8vw, 120px);
}

.terry-policy-simple__inner {
    width: min(940px, 100%);
    margin: 0 auto;
}

.terry-policy-simple h1 {
    margin: 0 0 clamp(42px, 6vw, 72px);
    text-align: center;
    font-size: clamp(32px, 3vw, 46px);
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.terry-policy-simple section {
    margin: 0 0 34px;
}

.terry-policy-simple h2 {
    margin: 0 0 8px;
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: -.02em;
}

.terry-policy-simple p,
.terry-policy-simple li {
    margin: 0;
    font-size: clamp(16px, 1.5vw, 21px);
    line-height: 1.72;
    font-weight: 400;
    letter-spacing: .01em;
}

.terry-policy-simple ul,
.terry-policy-simple ol {
    margin: 8px 0 0;
    padding-left: 24px;
}

.terry-policy-simple li + li {
    margin-top: 6px;
}

.terry-policy-simple strong {
    font-weight: 800;
}

.terry-policy-simple a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.terry-policy-simple__rates {
    display: grid;
    gap: 10px;
    margin-top: 8px;
}

.terry-policy-simple__rates p {
    display: grid;
    grid-template-columns: minmax(110px, .28fr) 1fr;
    gap: 16px;
}

@media (max-width: 700px) {
    .terry-policy-simple {
        padding: 104px 18px 64px;
    }

    .terry-policy-simple h1 {
        margin-bottom: 34px;
        font-size: clamp(27px, 8vw, 36px);
        letter-spacing: .14em;
    }

    .terry-policy-simple section {
        margin-bottom: 28px;
    }

    .terry-policy-simple p,
    .terry-policy-simple li {
        font-size: 15px;
        line-height: 1.68;
    }

    .terry-policy-simple__rates p {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Simple FAQ page */
.terry-faq-page__inner {
    max-width: 940px;
}

.terry-faq-page__kicker {
    margin: 0 0 10px;
    color: #050505;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: .16em;
    text-align: center;
    text-transform: uppercase;
}

.terry-faq-page__lead {
    max-width: 620px;
    margin: -46px auto 42px;
    color: #333333;
    font-size: 17px;
    line-height: 1.55;
    text-align: center;
}

.terry-faq-list {
    border-top: 1px solid #d8d8d8;
}

.terry-faq-item {
    border-bottom: 1px solid #d8d8d8;
}

.terry-faq-item summary {
    position: relative;
    display: block;
    padding: 22px 44px 22px 0;
    color: #050505;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.15;
    font-weight: 900;
    cursor: pointer;
    list-style: none;
}

.terry-faq-item summary::-webkit-details-marker {
    display: none;
}

.terry-faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    color: #050505;
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
}

.terry-faq-item[open] summary::after {
    content: "-";
}

.terry-faq-item p {
    max-width: 720px;
    margin: 0;
    padding: 0 0 24px;
    color: #333333;
    font-size: 16px;
    line-height: 1.65;
}

@media (max-width: 700px) {
    .terry-faq-page__kicker {
        text-align: left;
    }

    .terry-faq-page__lead {
        margin: -18px 0 26px;
        font-size: 15px;
        text-align: left;
    }

    .terry-faq-item summary {
        padding: 18px 34px 18px 0;
        font-size: 18px;
    }

    .terry-faq-item summary::after {
        font-size: 24px;
    }

    .terry-faq-item p {
        padding-bottom: 20px;
        font-size: 14px;
    }
}

@media (max-width: 900px) {
    .home-about-banner {
        min-height: 560px;
        margin: 0 14px 18px;
        padding: 26px;
        align-items: flex-end;
    }

    .home-about-banner::before {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, .08) 0%, rgba(0, 0, 0, .12) 42%, rgba(0, 0, 0, .78) 100%),
            var(--card-bg, url('../img/Look Book/12.webp'));
        background-position: center top;
    }

    .home-about-banner .home-editorial-copy p {
        margin-bottom: 12px;
        font-size: 11px;
    }

    .home-about-banner .home-editorial-copy span {
        margin-bottom: 18px;
        font-size: 16px;
        line-height: 1.45;
    }

    .terry-about-hero {
        background: url('../img/Look Book/12_mobile.webp') center top / cover no-repeat;
        min-height: 720px;
    }

    .terry-about-page--blog .terry-about-hero__picture {
        display: none;
    }

    .terry-about-hero__picture img {
        object-position: center top;
    }

    .terry-about-hero__overlay {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, .08) 0%, rgba(0, 0, 0, .16) 44%, rgba(0, 0, 0, .82) 100%);
    }

    .terry-about-hero__copy {
        width: calc(100vw - 36px);
        padding: 140px 0 42px;
    }

    .terry-about-hero__copy p {
        margin-bottom: 12px;
        font-size: 11px;
    }

    .terry-about-hero__copy h1 {
        max-width: 620px;
        margin-bottom: 18px;
        font-size: clamp(38px, 13vw, 68px);
        line-height: .92;
    }

    .terry-about-story {
        width: calc(100vw - 36px);
        padding: 54px 0 72px;
        display: block;
    }

    .terry-about-story__aside {
        position: static;
        margin-bottom: 40px;
        padding-top: 14px;
    }

    .terry-about-story__aside p:last-child {
        max-width: none;
    }

    .terry-about-section {
        padding-bottom: 46px;
    }

    .terry-about-section + .terry-about-section {
        padding-top: 42px;
    }

    .terry-about-section h2 {
        margin-bottom: 18px;
        font-size: clamp(29px, 9vw, 42px);
        line-height: 1;
    }

    .terry-about-section p {
        font-size: 16px;
        line-height: 1.68;
    }

    .terry-about-image {
        margin-bottom: 46px;
    }

    .terry-about-image img {
        aspect-ratio: 4 / 5;
    }

    .terry-about-section--closing {
        margin: 0;
        padding: 42px 0 54px;
    }

    .terry-about-page--blog .terry-about-hero {
        min-height: 680px;
    }

    .terry-about-page--blog .terry-about-hero__copy {
        width: calc(100vw - 36px);
    }

    .terry-about-page--blog .terry-about-story {
        width: calc(100vw - 36px);
        padding-top: 46px;
    }

    .terry-about-page--blog .terry-about-section {
        max-width: none;
    }

    .terry-about-page--blog .terry-about-image--wide {
        width: 100%;
        margin-bottom: 46px;
    }

    .terry-about-page--blog .terry-about-image--wide img {
        aspect-ratio: 4 / 5;
    }

    .terry-about-page--blog .terry-about-section--closing {
        max-width: none;
        margin-top: 0;
    }
}

@media (max-width: 900px) {
    body.is-home-hero:not(.header-compact) .terry-header {
        position: absolute !important;
        top: 8px !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 80 !important;
        background: linear-gradient(180deg, rgba(0, 0, 0, .28), rgba(0, 0, 0, 0)) !important;
        border: 0 !important;
        box-shadow: none !important;
    }

    body.is-home-hero:not(.header-compact) .terry-header-shell {
        width: 100% !important;
        min-height: 64px !important;
        height: 64px !important;
        padding: 0 18px !important;
        display: grid !important;
        grid-template-columns: 48px 1fr 96px !important;
        align-items: center !important;
        background: transparent !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    body.is-home-hero:not(.header-compact) .terry-header .terry-logo {
        width: clamp(90px, 25vw, 100px) !important;
        height: 38px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        justify-self: center !important;
        margin: 0 !important;
        background: transparent !important;
    }

    body.is-home-hero:not(.header-compact) .terry-header .terry-logo__dark {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        max-height: 38px !important;
        object-fit: contain !important;
        object-position: center !important;
        filter: brightness(0) invert(1) drop-shadow(0 3px 12px rgba(0, 0, 0, .48)) !important;
    }

    body.is-home-hero:not(.header-compact) .terry-header .terry-logo__light {
        display: none !important;
    }

    body.is-home-hero:not(.header-compact) .mobile-menu-toggle,
    body.is-home-hero:not(.header-compact) .terry-action {
        color: #fff !important;
        filter: drop-shadow(0 2px 10px rgba(0, 0, 0, .42)) !important;
    }

    body.is-home-hero:not(.header-compact) .mobile-menu-toggle span {
        background: #fff !important;
    }

    body.header-compact .terry-header .terry-logo__dark,
    body:not(.is-home-hero) .terry-header .terry-logo__dark {
        filter: none !important;
    }
}

/* Absolute final wordmark pass: keep logo 2 visible and menu-weighted */
@media (min-width: 901px) {
    .terry-header .terry-logo,
    body.is-home-hero:not(.header-compact) .terry-header .terry-logo,
    body.is-home-hero.header-compact .terry-header .terry-logo,
    body:not(.is-home-hero) .terry-header .terry-logo {
        width: clamp(168px, 10.5vw, 206px) !important;
        height: 56px !important;
    }

    .terry-header .terry-logo img,
    body.is-home-hero:not(.header-compact) .terry-header .terry-logo__dark,
    body.is-home-hero.header-compact .terry-header .terry-logo__dark,
    body:not(.is-home-hero) .terry-header .terry-logo__dark {
        width: 100% !important;
        height: auto !important;
        max-height: 56px !important;
        object-fit: contain !important;
        object-position: left center !important;
    }
}

@media (max-width: 900px) {
    .terry-header .terry-logo,
    body.is-home-hero:not(.header-compact) .terry-header .terry-logo,
    body.is-home-hero.header-compact .terry-header .terry-logo,
    body:not(.is-home-hero) .terry-header .terry-logo {
        width: clamp(120px, 34vw, 148px) !important;
        height: 48px !important;
    }

    .terry-header .terry-logo img,
    body.is-home-hero:not(.header-compact) .terry-header .terry-logo__dark,
    body.is-home-hero.header-compact .terry-header .terry-logo__dark,
    body:not(.is-home-hero) .terry-header .terry-logo__dark {
        width: 100% !important;
        height: auto !important;
        max-height: 48px !important;
        object-fit: contain !important;
    }
}

/* Final mobile header polish: centered, readable Terry wordmark */
@media (max-width: 900px) {
    .terry-header .header-icons {
        display: none !important;
    }

    .terry-header {
        top: 8px !important;
    }

    .terry-header .terry-header-shell,
    body.is-home-hero:not(.header-compact) .terry-header .terry-header-shell,
    body.is-home-hero.header-compact .terry-header .terry-header-shell,
    body:not(.is-home-hero) .terry-header .terry-header-shell {
        position: relative !important;
        width: 100% !important;
        min-height: 70px !important;
        height: 70px !important;
        padding: 0 clamp(22px, 5vw, 30px) !important;
        display: grid !important;
        grid-template-columns: 56px minmax(0, 1fr) !important;
        align-items: center !important;
        column-gap: 0 !important;
        background: transparent !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    .terry-header .terry-logo,
    body.is-home-hero:not(.header-compact) .terry-header .terry-logo,
    body.is-home-hero.header-compact .terry-header .terry-logo,
    body:not(.is-home-hero) .terry-header .terry-logo {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        width: clamp(84px, 20vw, 104px) !important;
        height: 46px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        justify-self: center !important;
        margin: 0 !important;
        padding: 0 !important;
        transform: translate(-50%, -50%) !important;
        filter: drop-shadow(0 3px 14px rgba(0, 0, 0, .34)) !important;
    }

    .terry-header .terry-logo img,
    body.is-home-hero:not(.header-compact) .terry-header .terry-logo__dark,
    body.is-home-hero.header-compact .terry-header .terry-logo__dark,
    body:not(.is-home-hero) .terry-header .terry-logo__dark {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        max-height: 46px !important;
        object-fit: contain !important;
        object-position: center !important;
    }

    body.is-home-hero:not(.header-compact) .terry-header .terry-logo__dark {
        filter: brightness(0) invert(1) drop-shadow(0 3px 14px rgba(0, 0, 0, .45)) !important;
    }

    .terry-header .mobile-menu-toggle {
        justify-self: start !important;
    }

    .brand-pillars-strip,
    .terry-type-band {
        display: none !important;
    }
}

/* Homepage spacing after removing moving announcement bars */
.home-hero + .featured-drop {
    padding-top: clamp(44px, 6vw, 84px);
}

.featured-drop + .terry-lookbook {
    padding-top: clamp(42px, 5vw, 72px);
}

@media (max-width: 900px) {
    .home-hero + .featured-drop {
        padding-top: 34px;
    }

    .featured-drop + .terry-lookbook {
        padding-top: 34px;
    }
}

/* Final homepage hero composition */
.home-hero .hero-content {
    width: min(1180px, calc(100vw - 76px));
    min-height: 100vh;
    margin: 0 auto;
    padding: clamp(150px, 14vw, 220px) 0 clamp(70px, 8vw, 104px);
    justify-content: flex-end;
    align-items: flex-start;
}

.hero-season-copy {
    display: grid;
    gap: 8px;
    margin: 0 0 30px;
    color: #fff;
    text-shadow: 0 4px 24px rgba(0, 0, 0, .45);
}

.hero-season-copy span {
    display: block;
    margin: 0;
    line-height: .9;
    letter-spacing: 0;
}

.hero-season-copy span:first-child {
    max-width: 720px;
    font-size: clamp(58px, 6.4vw, 112px);
    font-weight: 900;
    letter-spacing: -.055em;
    text-transform: uppercase;
}

.hero-season-copy span:nth-child(2) {
    font-size: clamp(32px, 3.4vw, 58px);
    font-weight: 900;
    letter-spacing: .02em;
}

.home-hero .btn-light {
    min-width: 250px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0 34px;
    font-size: 17px;
}

@media (max-width: 900px) {
    .home-hero {
        min-height: 100svh;
    }

    .hero-mobile-slide__img,
    .home-hero .hero-bg {
        object-position: 50% 26% !important;
        background-position: 50% 26% !important;
    }

    .home-hero .hero-content {
        width: calc(100vw - 44px);
        min-height: 100svh;
        padding: 118px 0 122px !important;
        justify-content: flex-end;
    }

    .hero-season-copy {
        gap: 2px;
        margin-bottom: 14px;
    }

    .hero-season-copy span:first-child {
        max-width: 230px;
        font-size: clamp(24px, 7.2vw, 34px);
        line-height: .98;
    }

    .hero-season-copy span:nth-child(2) {
        font-size: clamp(14px, 4.2vw, 19px);
    }

    .home-hero .btn-light {
        min-width: 154px !important;
        height: 48px !important;
        padding: 0 20px !important;
        font-size: 12px !important;
    }
}

/* FINAL: Obey-inspired Terry mega navigation */
@media (min-width: 901px) {
    .terry-header {
        overflow: visible !important;
    }

    .terry-header-shell {
        overflow: visible !important;
    }

    .desktop-nav {
        position: static !important;
    }

    .desktop-nav .nav-item {
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
    }

    .desktop-nav .has-mega .mega-menu {
        display: block !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100vw !important;
        max-width: none !important;
        padding: 32px 36px !important;
        background: #fff !important;
        color: #000 !important;
        border-top: 1px solid rgba(0, 0, 0, .08) !important;
        border-bottom: 1px solid rgba(0, 0, 0, .12) !important;
        border-left: 0 !important;
        border-right: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(-8px) !important;
        pointer-events: none !important;
        transition: opacity .16s ease, transform .16s ease, visibility .16s ease !important;
        z-index: 300 !important;
    }

    .desktop-nav .has-mega:hover .mega-menu,
    .desktop-nav .has-mega:focus-within .mega-menu,
    .desktop-nav .has-mega.is-mega-open .mega-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        pointer-events: auto !important;
    }

    .mega-menu__inner {
        width: min(1500px, 100%) !important;
        margin: 0 auto !important;
        display: grid !important;
        grid-template-columns: 320px 1fr !important;
        gap: 48px !important;
        align-items: stretch !important;
    }

    .mega-menu__links {
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
    }

    .mega-menu__links a {
        display: inline-flex !important;
        width: fit-content !important;
        min-height: 0 !important;
        padding: 0 0 14px !important;
        color: #000 !important;
        font-size: clamp(22px, 1.7vw, 34px) !important;
        line-height: 1.25 !important;
        font-weight: 900 !important;
        letter-spacing: -.03em !important;
        text-transform: uppercase !important;
        text-decoration: none !important;
        text-shadow: none !important;
        transition: transform .16s ease !important;
    }

    .mega-menu__links a:hover,
    .mega-menu__links a:focus-visible {
        transform: translateX(6px) !important;
        text-decoration: underline !important;
        text-underline-offset: 5px !important;
    }

    .mega-menu__campaign {
        position: relative !important;
        display: block !important;
        min-height: 0 !important;
        aspect-ratio: 16 / 6.5 !important;
        overflow: hidden !important;
        border-radius: 4px !important;
        background: #111 !important;
        color: #fff !important;
        text-decoration: none !important;
    }

    .mega-menu__campaign img {
        width: 100% !important;
        height: 100% !important;
        display: block !important;
        object-fit: cover !important;
        object-position: center !important;
        transform: scale(1.01);
        transition: transform .35s ease !important;
    }

    .mega-menu__campaign:hover img,
    .mega-menu__campaign:focus-visible img {
        transform: scale(1.04);
    }

    .mega-menu__campaign::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, .62) 100%);
        pointer-events: none;
    }

    .mega-menu__overlay {
        position: absolute !important;
        right: 28px !important;
        bottom: 22px !important;
        z-index: 2 !important;
        display: grid !important;
        justify-items: end !important;
        gap: 6px !important;
        color: #fff !important;
        text-align: right !important;
    }

    .mega-menu__overlay strong {
        font-size: clamp(34px, 4vw, 64px) !important;
        line-height: .86 !important;
        font-weight: 900 !important;
        letter-spacing: -.055em !important;
        text-transform: uppercase !important;
    }

    .mega-menu__overlay small {
        font-size: 15px !important;
        line-height: 1 !important;
        font-weight: 900 !important;
        letter-spacing: -.02em !important;
        text-decoration: underline !important;
        text-underline-offset: 4px !important;
        text-transform: uppercase !important;
    }
}

@media (max-width: 900px) {
    .desktop-nav .mega-menu {
        display: none !important;
    }

    .mobile-drawer {
        background: #fff !important;
        color: #000 !important;
        overflow-x: hidden !important;
    }

    .mobile-nav {
        padding: 18px 24px 42px !important;
    }

    .mobile-nav > a,
    .mobile-accordion {
        min-height: 52px !important;
        width: 100% !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        border: 0 !important;
        border-bottom: 1px solid rgba(0, 0, 0, .1) !important;
        background: transparent !important;
        color: #000 !important;
        font-size: clamp(28px, 9vw, 42px) !important;
        line-height: 1 !important;
        font-weight: 900 !important;
        letter-spacing: -.055em !important;
        text-align: left !important;
        text-transform: uppercase !important;
        text-decoration: none !important;
    }

    .mobile-accordion span {
        font-size: .85em !important;
        line-height: 1 !important;
        transition: transform .18s ease !important;
    }

    .mobile-accordion.is-open span {
        transform: rotate(45deg) !important;
    }

    .mobile-panel {
        display: block !important;
        max-height: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        transition: max-height .22s ease !important;
    }

    .mobile-panel.is-open {
        max-height: 340px !important;
    }

    .mobile-panel a {
        display: block !important;
        padding: 12px 0 12px 16px !important;
        color: #000 !important;
        font-size: 15px !important;
        line-height: 1.1 !important;
        font-weight: 900 !important;
        letter-spacing: .02em !important;
        text-transform: uppercase !important;
        text-decoration: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, .06) !important;
    }
}



/* TRUE FINAL PLACEMENT: compact mega menu aligned with header shell */
@media (min-width: 901px) {
    .desktop-nav .has-mega .mega-menu {
        top: 100% !important;
        left: 50% !important;
        width: min(1120px, calc(100vw - 72px)) !important;
        padding: 20px 24px 24px !important;
        border: 1px solid rgba(0, 0, 0, .1) !important;
        border-top-color: rgba(0, 0, 0, .07) !important;
        border-radius: 0 0 6px 6px !important;
        box-shadow: none !important;
        transform: translateX(-50%) translateY(-8px) !important;
    }

    .desktop-nav .has-mega:hover .mega-menu,
    .desktop-nav .has-mega:focus-within .mega-menu,
    .desktop-nav .has-mega.is-mega-open .mega-menu {
        transform: translateX(-50%) translateY(0) !important;
    }

    .mega-menu__inner {
        width: 100% !important;
        max-width: none !important;
        grid-template-columns: 260px minmax(0, 1fr) !important;
        gap: 30px !important;
    }

    .mega-menu__links a {
        padding-bottom: 10px !important;
        font-size: clamp(20px, 1.35vw, 28px) !important;
        line-height: 1.16 !important;
        letter-spacing: -.035em !important;
    }

    .mega-menu__campaign {
        aspect-ratio: 16 / 5.5 !important;
        max-height: 410px !important;
        border-radius: 4px !important;
    }

    .mega-menu__campaign img {
        object-position: center 45% !important;
    }

    .mega-menu__overlay {
        right: 22px !important;
        bottom: 18px !important;
        gap: 4px !important;
    }

    .mega-menu__overlay strong {
        font-size: clamp(30px, 3.2vw, 52px) !important;
        letter-spacing: -.05em !important;
    }

    .mega-menu__overlay small {
        font-size: 13px !important;
    }
}

@media (min-width: 901px) and (max-width: 1180px) {
    .desktop-nav .has-mega .mega-menu {
        width: calc(100vw - 40px) !important;
        padding: 18px !important;
    }

    .mega-menu__inner {
        grid-template-columns: 220px minmax(0, 1fr) !important;
        gap: 22px !important;
    }

    .mega-menu__links a {
        font-size: 20px !important;
    }
}

/* TRUE FINAL: zoomed-out product grid image framing */
.terry-product-tile .terry-product-image,
.home-product-image,
.terry-men-archive-products .terry-product-image,
.terry-women-archive-products .terry-product-image,
.terry-inception-archive-products .terry-product-image {
    background: #f5f5f3 !important;
    overflow: hidden !important;
}

.terry-product-tile .terry-product-image img,
.home-product-image img,
.terry-men-archive-products .terry-product-image img,
.terry-women-archive-products .terry-product-image img,
.terry-inception-archive-products .terry-product-image img {
    width: 82% !important;
    height: 82% !important;
    max-width: 82% !important;
    max-height: 82% !important;
    object-fit: contain !important;
    object-position: center center !important;
    margin: auto !important;
    inset: 0 !important;
}

.terry-product-tile .terry-product-hover-image,
.home-product-image .terry-product-hover-image,
.terry-men-archive-products .terry-product-hover-image,
.terry-women-archive-products .terry-product-hover-image,
.terry-inception-archive-products .terry-product-hover-image {
    width: 82% !important;
    height: 82% !important;
    max-width: 82% !important;
    max-height: 82% !important;
    object-fit: contain !important;
    object-position: center center !important;
    margin: auto !important;
    inset: 0 !important;
}

.terry-product-tile:hover .terry-product-image img,
.home-product-card:hover .home-product-image img,
.terry-men-archive-products .terry-product-tile:hover .terry-product-image img,
.terry-women-archive-products .terry-product-tile:hover .terry-product-image img,
.terry-inception-archive-products .terry-product-tile:hover .terry-product-image img {
    transform: scale(1.015) !important;
}

@media (max-width: 900px) {
    .terry-product-tile .terry-product-image img,
    .home-product-image img,
    .terry-men-archive-products .terry-product-image img,
    .terry-women-archive-products .terry-product-image img,
    .terry-inception-archive-products .terry-product-image img,
    .terry-product-tile .terry-product-hover-image,
    .home-product-image .terry-product-hover-image,
    .terry-men-archive-products .terry-product-hover-image,
    .terry-women-archive-products .terry-product-hover-image,
    .terry-inception-archive-products .terry-product-hover-image {
        width: 84% !important;
        height: 84% !important;
        max-width: 84% !important;
        max-height: 84% !important;
    }
}

/* TRUE FINAL v2: white product tiles with full-tile product photographs */
.terry-product-tile .terry-product-image,
.home-product-image,
.terry-men-archive-products .terry-product-image,
.terry-women-archive-products .terry-product-image,
.terry-inception-archive-products .terry-product-image {
    background: #fff !important;
    overflow: hidden !important;
}

.terry-product-tile .terry-product-image img,
.home-product-image img,
.terry-men-archive-products .terry-product-image img,
.terry-women-archive-products .terry-product-image img,
.terry-inception-archive-products .terry-product-image img,
.terry-product-tile .terry-product-hover-image,
.home-product-image .terry-product-hover-image,
.terry-men-archive-products .terry-product-hover-image,
.terry-women-archive-products .terry-product-hover-image,
.terry-inception-archive-products .terry-product-hover-image {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    margin: 0 !important;
    inset: 0 !important;
    background: #fff !important;
}

.terry-product-tile:hover .terry-product-image img,
.home-product-card:hover .home-product-image img,
.terry-men-archive-products .terry-product-tile:hover .terry-product-image img,
.terry-women-archive-products .terry-product-tile:hover .terry-product-image img,
.terry-inception-archive-products .terry-product-tile:hover .terry-product-image img {
    transform: scale(1.01) !important;
}

/* TRUE FINAL MENU FIX: keep hero nav white, but mega submenu black/clean */
@media (min-width: 901px) {
    body.is-home-hero:not(.header-compact) .desktop-nav .mega-menu,
    body.is-home-hero:not(.header-compact) .desktop-nav .mega-menu * {
        color: #000 !important;
        text-shadow: none !important;
        filter: none !important;
    }

    body.is-home-hero:not(.header-compact) .desktop-nav .mega-menu {
        background: #fff !important;
    }

    body.is-home-hero:not(.header-compact) .desktop-nav .mega-menu__links a,
    .desktop-nav .mega-menu__links a {
        color: #000 !important;
        text-shadow: none !important;
        filter: none !important;
        opacity: 1 !important;
    }

    body.is-home-hero:not(.header-compact) .desktop-nav .mega-menu__links a::after,
    .desktop-nav .mega-menu__links a::after {
        background: #000 !important;
    }

    body.is-home-hero:not(.header-compact) .desktop-nav .mega-menu__campaign,
    body.is-home-hero:not(.header-compact) .desktop-nav .mega-menu__campaign * {
        color: #fff !important;
        text-shadow: 0 2px 14px rgba(0, 0, 0, .38) !important;
    }

    body.is-home-hero:not(.header-compact) .desktop-nav .mega-menu__campaign img,
    .desktop-nav .mega-menu__campaign img {
        filter: none !important;
        opacity: 1 !important;
    }
}

/* TRUE FINAL: simple men/women archive layout */
.terry-simple-archive {
    background: #fff;
    color: #050505;
}

.terry-simple-archive__section {
    padding: 132px 38px 70px;
}

.terry-simple-archive__inner {
    width: min(1440px, 100%);
    margin: 0 auto;
}

.terry-simple-archive__head {
    margin: 0 0 22px;
}

.terry-simple-archive__kicker {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.terry-simple-archive__title {
    margin: 0;
    font-size: clamp(42px, 5.2vw, 72px);
    line-height: .92;
    font-weight: 900;
    letter-spacing: -.06em;
    text-transform: uppercase;
}

.terry-simple-archive__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 0 0 26px;
    padding: 12px 0;
    border-top: 1px solid rgba(0, 0, 0, .08);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.terry-simple-archive__toolbar .woocommerce-result-count {
    margin: 0;
    font-size: 13px;
    color: #050505;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.terry-simple-archive__toolbar .woocommerce-ordering {
    margin: 0;
}

.terry-simple-archive__toolbar .woocommerce-ordering select {
    min-width: 190px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid rgba(0, 0, 0, .12);
    background: #fff;
    color: #050505;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.terry-simple-archive ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 30px 16px !important;
}

.terry-simple-archive ul.products::before,
.terry-simple-archive ul.products::after {
    display: none !important;
}

@media (max-width: 1100px) {
    .terry-simple-archive ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 900px) {
    .terry-simple-archive__section {
        padding: 106px 20px 52px;
    }

    .terry-simple-archive__title {
        font-size: 34px;
    }

    .terry-simple-archive__toolbar {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 18px;
    }

    .terry-simple-archive__toolbar .woocommerce-ordering select {
        min-width: 150px;
        max-width: 48vw;
    }

    .terry-simple-archive ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 20px 10px !important;
    }
}
/* TRUE FINAL HERO IMAGE COVER FIX */
.home-hero {
    min-height: 100svh !important;
    height: 100svh !important;
    overflow: hidden;
}

.home-hero .hero-bg {
    background-image:
        linear-gradient(90deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.16) 46%, rgba(0, 0, 0, 0.10) 100%),
        url('../img/Banner_3.webp') !important;
    background-size: cover !important;
    background-position: center 42% !important;
    background-repeat: no-repeat !important;
}

.home-hero .hero-mobile-slide__img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
}

@media (max-width: 900px) {
    .home-hero .hero-bg {
        background-image: url('../img/Banner_3_mobile.webp') !important;
        background-size: cover !important;
        background-position: center center !important;
    }
}

/* Terry Journal */
.terry-blog-hero,
.terry-blog-listing {
    background: #ffffff;
    color: #050505;
}

.terry-blog-hero {
    padding: 170px 24px 34px;
    border-bottom: 1px solid rgba(5, 5, 5, .08);
}

.terry-blog-hero__inner {
    width: min(1280px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 36px;
    align-items: end;
}

.terry-blog-hero__copy {
    max-width: 790px;
}

.terry-blog-hero__kicker,
.terry-blog-card__meta,
.terry-blog-card__cta {
    margin: 0;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.terry-blog-hero__kicker {
    margin-bottom: 12px;
}

.terry-blog-hero__title {
    margin: 0;
    max-width: 760px;
    font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
    font-size: clamp(56px, 9vw, 132px);
    line-height: .88;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.terry-blog-hero__lead {
    max-width: 580px;
    margin: 18px 0 0;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: clamp(15px, 1.6vw, 19px);
    line-height: 1.55;
    color: rgba(5, 5, 5, .66);
}

.terry-blog-hero__aside {
    display: grid;
    grid-template-columns: repeat(2, minmax(96px, 1fr));
    gap: 8px;
    width: min(280px, 24vw);
}

.terry-blog-hero__aside span {
    min-height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(5, 5, 5, .12);
    background: #f7f7f4;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.terry-blog-listing {
    padding: 28px 24px 86px;
}

.terry-blog-listing__inner {
    width: min(1280px, 100%);
    margin: 0 auto;
}

.terry-blog-featured {
    margin: 0 0 26px;
}

.terry-blog-featured__link {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, .85fr);
    min-height: 520px;
    border: 1px solid rgba(5, 5, 5, .1);
    background: #f7f7f4;
    color: inherit;
    overflow: hidden;
}

.terry-blog-featured__media,
.terry-blog-card__media {
    position: relative;
    overflow: hidden;
    background: #ededeb;
}

.terry-blog-featured__media {
    min-height: 520px;
}

.terry-blog-featured__image,
.terry-blog-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform .45s var(--ease), filter .45s var(--ease);
}

.terry-blog-featured__copy {
    min-height: 100%;
    padding: clamp(28px, 4vw, 54px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.terry-blog-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(5, 5, 5, .52);
}

.terry-blog-featured__title {
    margin: 18px 0 16px;
    font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
    font-size: clamp(42px, 5.2vw, 74px);
    line-height: .92;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.terry-blog-featured__excerpt,
.terry-blog-card__excerpt {
    margin: 0;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    color: rgba(5, 5, 5, .66);
}

.terry-blog-featured__excerpt {
    max-width: 460px;
    font-size: 16px;
    line-height: 1.65;
}

.terry-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px 16px;
}

.terry-blog-card {
    min-width: 0;
}

.terry-blog-card__link {
    height: 100%;
    display: flex;
    flex-direction: column;
    color: inherit;
}

.terry-blog-card__media {
    aspect-ratio: 4 / 5;
    border: 1px solid rgba(5, 5, 5, .08);
}

.terry-blog-card__placeholder {
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(5, 5, 5, .08), rgba(5, 5, 5, 0)),
        #f0f0ed;
}

.terry-blog-card__copy {
    padding: 14px 0 0;
}

.terry-blog-card__title {
    margin: 10px 0 8px;
    font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
    font-size: clamp(28px, 3vw, 38px);
    line-height: .98;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.terry-blog-card__excerpt {
    font-size: 14px;
    line-height: 1.55;
}

.terry-blog-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: 16px;
    border-bottom: 2px solid currentColor;
    color: #050505;
}

.terry-blog-card__cta::after {
    content: ">";
    font-size: 13px;
    line-height: 1;
    transform: translateY(-1px);
}

.terry-blog-card__link:hover .terry-blog-card__image,
.terry-blog-card__link:focus-visible .terry-blog-card__image,
.terry-blog-featured__link:hover .terry-blog-featured__image,
.terry-blog-featured__link:focus-visible .terry-blog-featured__image {
    filter: contrast(1.04);
    transform: scale(1.045);
}

.terry-blog-pagination {
    margin: 44px 0 0;
}

.terry-blog-pagination ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.terry-blog-pagination a,
.terry-blog-pagination span {
    min-width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(5, 5, 5, .14);
    padding: 0 13px;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.terry-blog-pagination .current,
.terry-blog-pagination a:hover,
.terry-blog-pagination a:focus-visible {
    background: #050505;
    color: #ffffff;
}

.terry-blog-empty {
    min-height: 420px;
    display: grid;
    place-content: center;
    text-align: center;
}

.terry-blog-empty h2 {
    margin: 0 0 8px;
    font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
    font-size: clamp(42px, 7vw, 82px);
    line-height: .95;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.terry-blog-empty p {
    margin: 0;
    color: rgba(5, 5, 5, .62);
}

@media (max-width: 980px) {
    .terry-blog-hero {
        padding: 138px 18px 28px;
    }

    .terry-blog-hero__inner {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .terry-blog-hero__aside {
        width: 100%;
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .terry-blog-featured__link {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .terry-blog-featured__media {
        min-height: 0;
        aspect-ratio: 4 / 5;
    }

    .terry-blog-featured__copy {
        min-height: auto;
    }

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

@media (max-width: 640px) {
    .terry-blog-hero {
        padding: 112px 18px 22px;
    }

    .terry-blog-hero__title {
        font-size: clamp(46px, 17vw, 72px);
        line-height: .9;
    }

    .terry-blog-hero__lead {
        margin-top: 14px;
        font-size: 14px;
    }

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

    .terry-blog-hero__aside span {
        min-height: 42px;
        font-size: 11px;
    }

    .terry-blog-listing {
        padding: 18px 18px 58px;
    }

    .terry-blog-featured {
        margin-bottom: 24px;
    }

    .terry-blog-featured__copy {
        padding: 22px 18px 24px;
    }

    .terry-blog-featured__title {
        font-size: clamp(36px, 12vw, 52px);
    }

    .terry-blog-featured__excerpt {
        font-size: 14px;
        line-height: 1.55;
    }

    .terry-blog-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .terry-blog-card__media {
        aspect-ratio: 1 / 1;
    }

    .terry-blog-card__title {
        font-size: 34px;
    }
}

/* Terry 404 */
.terry-error-page {
    min-height: 100svh;
    padding: 170px 22px 96px;
    display: grid;
    place-items: center;
    background: #ffffff;
    color: #050505;
}

.terry-error-page__inner {
    width: min(760px, 100%);
    text-align: center;
}

.terry-error-page__kicker {
    margin: 0 0 14px;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(5, 5, 5, .55);
}

.terry-error-page h1 {
    margin: 0;
    font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
    font-size: clamp(58px, 10vw, 132px);
    line-height: .88;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.terry-error-page p:not(.terry-error-page__kicker) {
    max-width: 520px;
    margin: 20px auto 0;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: clamp(15px, 1.8vw, 18px);
    line-height: 1.6;
    color: rgba(5, 5, 5, .62);
}

.terry-error-page__actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.terry-error-page__actions a {
    min-width: 148px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #050505;
    padding: 0 18px;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.terry-error-page__actions a:first-child,
.terry-error-page__actions a:hover,
.terry-error-page__actions a:focus-visible {
    background: #050505;
    color: #ffffff;
}

@media (max-width: 640px) {
    .terry-error-page {
        min-height: 88svh;
        padding: 118px 18px 58px;
        place-items: start center;
    }

    .terry-error-page__inner {
        padding-top: 62px;
    }

    .terry-error-page h1 {
        font-size: clamp(48px, 17vw, 72px);
    }

    .terry-error-page p:not(.terry-error-page__kicker) {
        margin-top: 16px;
        font-size: 14px;
    }

    .terry-error-page__actions {
        margin-top: 26px;
        display: grid;
        grid-template-columns: 1fr;
    }

    .terry-error-page__actions a {
        width: 100%;
    }
}

/* Terry drop archives */
.terry-drop-archive {
    background: #ffffff;
    color: #050505;
}

.terry-drop-hero {
    position: relative;
    min-height: min(78vh, 820px);
    background: #050505;
    overflow: hidden;
}

.terry-drop-hero__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .7), rgba(0, 0, 0, .26) 54%, rgba(0, 0, 0, .08)),
        url('../img/Banner_3.webp') center / cover no-repeat;
    transform: scale(1.01);
}

.terry-drop-hero--inception .terry-drop-hero__bg {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .66), rgba(0, 0, 0, .22) 54%, rgba(0, 0, 0, .08)),
        url('https://wearterry.co/wp-content/uploads/2025/11/Inception-OUT-NOW-2-scaled.webp') center / cover no-repeat;
}

.terry-drop-hero__content {
    position: relative;
    z-index: 2;
    min-height: min(78vh, 820px);
    width: min(1440px, 100%);
    margin: 0 auto;
    padding: 166px 38px 58px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    color: #ffffff;
}

.terry-drop-hero__content p,
.terry-drop-products__kicker {
    margin: 0 0 8px;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.terry-drop-hero__content h1 {
    max-width: 980px;
    margin: 0 0 18px;
    font-size: clamp(68px, 10.5vw, 174px);
    line-height: .78;
    font-weight: 900;
    letter-spacing: -.08em;
    text-transform: uppercase;
}

.terry-drop-hero__content span {
    display: block;
    max-width: 640px;
    margin-bottom: 28px;
    font-size: clamp(14px, 1.4vw, 20px);
    line-height: 1.35;
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.terry-drop-hero__content a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    background: #ffffff;
    color: #050505 !important;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.terry-drop-products {
    padding: 44px 38px 76px;
}

.terry-drop-products--no-banner {
    padding-top: 150px;
}

.terry-drop-products__inner {
    width: min(1440px, 100%);
    margin: 0 auto;
}

.terry-drop-products__head {
    margin: 0 0 22px;
}

.terry-drop-products__title {
    margin: 0;
    font-size: clamp(44px, 6vw, 92px);
    line-height: .82;
    font-weight: 900;
    letter-spacing: -.08em;
    text-transform: uppercase;
}

.terry-drop-toolbar {
    margin: 0 0 26px;
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid #050505;
    border-bottom: 1px solid #e6e6e6;
}

.terry-drop-toolbar .woocommerce-result-count {
    margin: 0;
    color: #050505;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.terry-drop-toolbar .woocommerce-ordering {
    margin: 0;
}

.terry-drop-toolbar .woocommerce-ordering select {
    min-width: 190px;
    height: 40px;
    padding: 0 34px 0 12px;
    border: 1px solid #050505;
    background: #ffffff;
    color: #050505;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.terry-drop-products ul.products ~ .woocommerce-ordering,
.terry-drop-products ul.products ~ .woocommerce-result-count,
.terry-simple-archive ul.products ~ .woocommerce-ordering,
.terry-simple-archive ul.products ~ .woocommerce-result-count,
.terry-men-archive-products ul.products ~ .woocommerce-ordering,
.terry-men-archive-products ul.products ~ .woocommerce-result-count,
.terry-women-archive-products ul.products ~ .woocommerce-ordering,
.terry-women-archive-products ul.products ~ .woocommerce-result-count {
    display: none !important;
}

.terry-drop-products ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 22px 16px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.terry-drop-products ul.products::before,
.terry-drop-products ul.products::after {
    display: none !important;
}

.terry-drop-products ul.products li.product,
.terry-drop-products .terry-product-tile {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    text-align: left;
}

.terry-drop-products .terry-product-link {
    display: block;
    color: #050505;
}

.terry-drop-products .terry-product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 3;
    background: #ffffff !important;
    overflow: hidden;
}

.terry-drop-products .terry-product-image img,
.terry-drop-products .terry-product-hover-image {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    margin: 0 !important;
    inset: 0 !important;
    background: #ffffff !important;
    transition: opacity .3s var(--ease), transform .38s var(--ease);
}

.terry-drop-products .terry-product-hover-image {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.terry-drop-products .terry-product-tile:hover .terry-product-main-image {
    opacity: 0;
}

.terry-drop-products .terry-product-tile:hover .terry-product-hover-image {
    opacity: 1;
}

.terry-drop-products .terry-product-tile:hover .terry-product-image img {
    transform: scale(1.01);
}

.terry-drop-products .terry-sale-badge {
    top: 10px;
    left: 10px;
    border-radius: 0;
    padding: 7px 9px;
    font-size: 9px;
}

.terry-drop-products .terry-product-info {
    padding: 12px 0 0;
}

.terry-drop-products .terry-product-info h3 {
    margin: 0 0 5px;
    min-height: 2.35em;
    color: #050505;
    font-size: 14px;
    line-height: 1.18;
    font-weight: 900;
    letter-spacing: -.025em;
}

.terry-drop-products .product-subline {
    margin: 0 0 6px;
    color: rgba(0, 0, 0, .55);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.terry-drop-products .home-product-price,
.terry-drop-products .price {
    display: block !important;
    color: #050505 !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
    font-weight: 900 !important;
    overflow: visible !important;
}

.terry-drop-products .button,
.terry-drop-products .add_to_cart_button {
    display: none !important;
}

@media (max-width: 1180px) and (min-width: 701px) {
    .terry-drop-products ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 900px) {
    .terry-drop-hero,
    .terry-drop-hero__content {
        min-height: 75svh;
    }

    .terry-drop-hero__bg {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, .24), rgba(0, 0, 0, .82)),
            url('../img/Banner_3_mobile.webp') center / cover no-repeat;
    }

    .terry-drop-hero--inception .terry-drop-hero__bg {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .78)),
            url('https://wearterry.co/wp-content/uploads/2025/11/Inception-OUT-NOW-2-scaled.webp') center / cover no-repeat;
    }

    .terry-drop-hero__content {
        padding: 118px 20px 48px;
    }

    .terry-drop-hero__content p {
        font-size: 11px;
    }

    .terry-drop-hero__content h1 {
        max-width: 92vw;
        margin-bottom: 16px;
        font-size: clamp(48px, 15vw, 76px);
        line-height: .84;
    }

    .terry-drop-hero__content span {
        max-width: 92vw;
        margin-bottom: 22px;
        font-size: 13px;
    }

    .terry-drop-hero__content a {
        min-height: 44px;
        padding: 0 18px;
        font-size: 11px;
    }

    .terry-drop-products {
        padding: 32px 14px 58px;
    }

    .terry-drop-products--no-banner {
        padding-top: 112px;
    }

    .terry-drop-products__head {
        margin-bottom: 16px;
    }

    .terry-drop-products__title {
        font-size: clamp(38px, 13vw, 62px);
    }

    .terry-drop-toolbar {
        align-items: flex-start;
        margin-bottom: 18px;
    }

    .terry-drop-toolbar .woocommerce-result-count {
        font-size: 10px;
        line-height: 40px;
    }

    .terry-drop-toolbar .woocommerce-ordering select {
        min-width: 136px;
        max-width: 46vw;
        height: 40px;
        font-size: 10px;
    }

    .terry-drop-products ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 20px 10px !important;
    }

    .terry-drop-products .terry-product-hover-image {
        display: none !important;
    }

    .terry-drop-products .terry-product-tile:hover .terry-product-main-image {
        opacity: 1;
    }

    .terry-drop-products .terry-product-tile:hover .terry-product-image img {
        transform: none;
    }

    .terry-drop-products .terry-product-info h3 {
        min-height: 2.6em;
        font-size: 12px;
    }

    .terry-drop-products .product-subline {
        font-size: 9px;
    }

    .terry-drop-products .home-product-price,
    .terry-drop-products .price {
        font-size: 12px !important;
    }
}

/* Terry checkout refresh */
body.woocommerce-checkout {
    background: #ffffff;
}

body.woocommerce-checkout .entry-header,
body.woocommerce-checkout .page-title,
body.woocommerce-checkout .woocommerce-form-login-toggle,
body.woocommerce-checkout .woocommerce-form-coupon-toggle,
body.woocommerce-checkout form.checkout_coupon,
body.woocommerce-checkout form.login,
body.woocommerce-checkout form.checkout > #order_review_heading {
    display: none !important;
}

body.woocommerce-checkout main,
body.woocommerce-checkout .site-main,
body.woocommerce-checkout .content-area,
body.woocommerce-checkout .entry-content,
body.woocommerce-checkout .woocommerce {
    background: #ffffff !important;
}

body.woocommerce-checkout .woocommerce {
    width: min(1200px, calc(100vw - 48px)) !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 132px 0 88px !important;
}

body.woocommerce-checkout .woocommerce::before {
    display: none !important;
}

body.woocommerce-checkout form.checkout {
    display: grid !important;
    grid-template-columns: minmax(0, 58fr) minmax(360px, 42fr) !important;
    gap: 42px !important;
    align-items: start !important;
}

body.woocommerce-checkout form.checkout > #customer_details {
    grid-column: 1 !important;
    grid-row: 1 !important;
    min-width: 0 !important;
}

body.woocommerce-checkout form.checkout > #order_review {
    grid-column: 1 / -1 !important;
    grid-row: 1 !important;
    display: contents !important;
    grid-template-columns: minmax(0, 58fr) minmax(360px, 42fr) !important;
    gap: 42px !important;
    align-items: start !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

body.woocommerce-checkout #customer_details {
    display: block !important;
    float: none !important;
    width: 100% !important;
}

body.woocommerce-checkout #order_review > table.shop_table {
    grid-column: 2 !important;
    grid-row: 1 !important;
    position: sticky !important;
    top: 110px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 28px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #f7f7f7 !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
}

body.woocommerce-checkout #order_review > #payment {
    grid-column: 1 !important;
    grid-row: 2 !important;
    width: 100% !important;
    margin: 22px 0 0 !important;
}

body.woocommerce-checkout .woocommerce-billing-fields,
body.woocommerce-checkout .woocommerce-shipping-fields,
body.woocommerce-checkout .woocommerce-additional-fields {
    margin: 0 0 22px !important;
    padding: 0 !important;
    border: 0 !important;
    background: #ffffff !important;
}

body.woocommerce-checkout h3,
body.woocommerce-checkout #payment::before {
    margin: 0 0 18px !important;
    color: #050505 !important;
    font-size: 24px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
    text-transform: uppercase !important;
}

body.woocommerce-checkout .form-row {
    width: 100% !important;
    margin: 0 0 16px !important;
    padding: 0 !important;
}

body.woocommerce-checkout .form-row-first,
body.woocommerce-checkout .form-row-last {
    width: calc(50% - 7px) !important;
}

body.woocommerce-checkout label {
    display: block !important;
    margin: 0 0 7px !important;
    color: #050505 !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
}

body.woocommerce-checkout input.input-text,
body.woocommerce-checkout textarea,
body.woocommerce-checkout select,
body.woocommerce-checkout .select2-selection {
    width: 100% !important;
    min-height: 48px !important;
    height: 48px !important;
    border: 1px solid #dddddd !important;
    border-radius: 0 !important;
    background: #ffffff !important;
    color: #050505 !important;
    padding: 0 14px !important;
    font-size: 14px !important;
    line-height: 48px !important;
    font-weight: 500 !important;
    box-shadow: none !important;
}

body.woocommerce-checkout textarea {
    min-height: 104px !important;
    height: 104px !important;
    padding: 13px 14px !important;
    line-height: 1.45 !important;
    resize: vertical;
}

body.woocommerce-checkout .select2-container {
    width: 100% !important;
}

body.woocommerce-checkout .select2-selection__rendered {
    line-height: 46px !important;
    padding-left: 0 !important;
    color: #050505 !important;
}

body.woocommerce-checkout .select2-selection__arrow {
    height: 46px !important;
}

body.woocommerce-checkout table.shop_table,
body.woocommerce-checkout table.shop_table tbody,
body.woocommerce-checkout table.shop_table tfoot {
    display: block !important;
    width: 100% !important;
}

body.woocommerce-checkout table.shop_table thead {
    display: none !important;
}

body.woocommerce-checkout table.shop_table tr {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 16px !important;
    align-items: center !important;
    width: 100% !important;
    border-bottom: 1px solid #e5e5e5 !important;
}

body.woocommerce-checkout table.shop_table th,
body.woocommerce-checkout table.shop_table td {
    display: block !important;
    width: auto !important;
    padding: 16px 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #050505 !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
    font-weight: 800 !important;
    text-align: left !important;
    vertical-align: middle !important;
}

body.woocommerce-checkout table.shop_table .product-total,
body.woocommerce-checkout table.shop_table tfoot td {
    text-align: right !important;
    white-space: nowrap !important;
}

body.woocommerce-checkout table.shop_table tbody tr:first-child td {
    padding-top: 0 !important;
}

body.woocommerce-checkout .terry-checkout-summary__product {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 72px minmax(0, 1fr) !important;
    gap: 14px !important;
    align-items: center !important;
    min-width: 0 !important;
}

body.woocommerce-checkout .terry-checkout-summary__thumb {
    position: relative !important;
    display: block !important;
    width: 72px !important;
    height: 96px !important;
    background: #ffffff !important;
    overflow: visible !important;
}

body.woocommerce-checkout .terry-checkout-summary__image {
    width: 72px !important;
    height: 96px !important;
    object-fit: contain !important;
    object-position: center !important;
    background: #ffffff !important;
}

body.woocommerce-checkout .terry-checkout-summary__qty {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    min-width: 22px !important;
    height: 22px !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 999px !important;
    background: #050505 !important;
    color: #ffffff !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
}

body.woocommerce-checkout .terry-checkout-summary__name {
    display: block !important;
    min-width: 0 !important;
    color: #050505 !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
    font-weight: 900 !important;
    letter-spacing: .02em !important;
    text-transform: uppercase !important;
}

body.woocommerce-checkout .terry-checkout-summary__name .product-quantity {
    display: none !important;
}

body.woocommerce-checkout .variation {
    margin: 6px 0 0 !important;
    color: rgba(5, 5, 5, .55) !important;
    font-size: 11px !important;
    line-height: 1.35 !important;
    font-weight: 800 !important;
    letter-spacing: .04em !important;
    text-transform: uppercase !important;
}

body.woocommerce-checkout .variation dt,
body.woocommerce-checkout .variation dd,
body.woocommerce-checkout .variation p {
    display: inline !important;
    margin: 0 !important;
}

body.woocommerce-checkout .variation dt {
    display: none !important;
}

body.woocommerce-checkout table.shop_table tfoot tr:last-child {
    border-bottom: 0 !important;
}

body.woocommerce-checkout table.shop_table tfoot tr.order-total th,
body.woocommerce-checkout table.shop_table tfoot tr.order-total td {
    padding-top: 20px !important;
    border-bottom: 0 !important;
    font-size: 22px !important;
    line-height: 1.1 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
}

body.woocommerce-checkout #payment {
    border: 0 !important;
    border-radius: 0 !important;
    background: #ffffff !important;
}

body.woocommerce-checkout #payment::before {
    content: "Payment";
    display: block !important;
}

body.woocommerce-checkout #payment ul.payment_methods {
    display: grid !important;
    gap: 10px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    list-style: none !important;
}

body.woocommerce-checkout #payment ul.payment_methods li {
    min-height: 56px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid #e5e5e5 !important;
    background: #ffffff !important;
    list-style: none !important;
}

body.woocommerce-checkout #payment ul.payment_methods li::marker,
body.woocommerce-checkout #payment ul.payment_methods li::before {
    display: none !important;
    content: none !important;
}

body.woocommerce-checkout #payment ul.payment_methods li:has(input:checked) {
    background: #f7f7f7 !important;
}

body.woocommerce-checkout #payment ul.payment_methods li > input[type="radio"] {
    margin: 0 10px 0 16px !important;
    transform: translateY(1px);
}

body.woocommerce-checkout #payment ul.payment_methods li > label {
    min-height: 56px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 0 !important;
    color: #050505 !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    vertical-align: middle !important;
}

body.woocommerce-checkout #payment ul.payment_methods li > label img {
    display: inline-block !important;
    width: auto !important;
    max-width: 150px !important;
    max-height: 28px !important;
    margin: 0 0 0 8px !important;
    object-fit: contain !important;
    vertical-align: middle !important;
}

body.woocommerce-checkout #payment div.payment_box {
    margin: 0 !important;
    padding: 0 16px 16px 42px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: rgba(5, 5, 5, .68) !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    font-weight: 500 !important;
}

body.woocommerce-checkout #payment div.payment_box::before,
body.woocommerce-checkout #payment div.payment_box::after {
    display: none !important;
}

body.woocommerce-checkout #payment .form-row.place-order {
    margin: 18px 0 0 !important;
    padding: 0 !important;
}

body.woocommerce-checkout #payment .woocommerce-terms-and-conditions-wrapper {
    margin: 0 0 14px !important;
    color: rgba(5, 5, 5, .68) !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
}

body.woocommerce-checkout #payment .woocommerce-terms-and-conditions-wrapper label {
    display: inline !important;
    margin: 0 !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

body.woocommerce-checkout #place_order {
    width: 100% !important;
    height: 56px !important;
    min-height: 56px !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #000000 !important;
    color: #ffffff !important;
    font-size: 14px !important;
    line-height: 56px !important;
    font-weight: 900 !important;
    letter-spacing: .04em !important;
    text-transform: uppercase !important;
    box-shadow: none !important;
}

body.woocommerce-checkout #place_order:hover,
body.woocommerce-checkout #place_order:focus-visible {
    background: #111111 !important;
    color: #ffffff !important;
}

@media (max-width: 900px) {
    body.woocommerce-checkout .woocommerce {
        width: 100% !important;
        padding: 92px 16px 56px !important;
    }

    body.woocommerce-checkout form.checkout,
    body.woocommerce-checkout form.checkout > #order_review {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    body.woocommerce-checkout form.checkout > #customer_details,
    body.woocommerce-checkout form.checkout > #order_review {
        grid-column: 1 !important;
        grid-row: auto !important;
    }

    body.woocommerce-checkout form.checkout > #order_review {
        display: contents !important;
    }

    body.woocommerce-checkout #order_review > table.shop_table {
        grid-column: 1 !important;
        grid-row: 1 !important;
        position: static !important;
        order: -2 !important;
        padding: 18px !important;
    }

    body.woocommerce-checkout form.checkout > #customer_details {
        order: 1 !important;
    }

    body.woocommerce-checkout #order_review > #payment {
        grid-column: 1 !important;
        grid-row: auto !important;
        order: 2 !important;
        margin: 0 !important;
    }

    body.woocommerce-checkout .form-row-first,
    body.woocommerce-checkout .form-row-last {
        width: 100% !important;
        float: none !important;
    }

    body.woocommerce-checkout h3,
    body.woocommerce-checkout #payment::before {
        font-size: 22px !important;
    }

    body.woocommerce-checkout table.shop_table tr {
        gap: 12px !important;
    }

    body.woocommerce-checkout table.shop_table th,
    body.woocommerce-checkout table.shop_table td {
        padding: 13px 0 !important;
        font-size: 13px !important;
    }

    body.woocommerce-checkout .terry-checkout-summary__product {
        grid-template-columns: 58px minmax(0, 1fr) !important;
        gap: 12px !important;
    }

    body.woocommerce-checkout .terry-checkout-summary__thumb,
    body.woocommerce-checkout .terry-checkout-summary__image {
        width: 58px !important;
        height: 78px !important;
    }

    body.woocommerce-checkout table.shop_table tfoot tr.order-total th,
    body.woocommerce-checkout table.shop_table tfoot tr.order-total td {
        font-size: 20px !important;
    }

    body.woocommerce-checkout #payment ul.payment_methods li > label {
        max-width: calc(100% - 54px) !important;
    }

    body.woocommerce-checkout #payment ul.payment_methods li > label img {
        max-width: 112px !important;
        max-height: 24px !important;
    }
}

/* Single product image framing */
body.single-product .terry-product-page {
    width: min(1440px, calc(100vw - 48px)) !important;
    margin: 0 auto !important;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 540px) !important;
    gap: clamp(34px, 4vw, 64px) !important;
}

body.single-product .terry-product-gallery__stack {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
}

body.single-product .terry-product-gallery__stack-item {
    aspect-ratio: 4 / 5 !important;
    display: grid !important;
    place-items: center !important;
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, .08) !important;
}

body.single-product .terry-product-gallery__stack-item:first-child {
    grid-column: 1 / -1 !important;
    aspect-ratio: 4 / 3 !important;
    max-height: 680px !important;
}

body.single-product .terry-product-gallery__media {
    width: 100% !important;
    height: 100% !important;
    max-width: 82% !important;
    max-height: 82% !important;
    object-fit: contain !important;
    object-position: center center !important;
    margin: auto !important;
}

body.single-product .terry-product-gallery__stack-item:first-child .terry-product-gallery__media {
    max-width: 70% !important;
    max-height: 70% !important;
}

body.single-product .terry-product-gallery__stack-item:hover .terry-product-gallery__media {
    transform: scale(1.015) !important;
}

@media (max-width: 900px) {
    body.single-product .terry-product-page {
        width: 100% !important;
        padding: 0 16px 48px !important;
        display: block !important;
    }

    body.single-product .terry-product-gallery {
        width: 100% !important;
        margin: 0 0 24px !important;
    }

    body.single-product .terry-product-gallery__stage {
        border: 1px solid rgba(0, 0, 0, .08) !important;
        background: #ffffff !important;
    }

    body.single-product .terry-product-gallery__mobile-track {
        aspect-ratio: 4 / 5 !important;
        background: #ffffff !important;
    }

    body.single-product .terry-product-gallery__mobile-slide {
        width: 100% !important;
        flex-basis: 100% !important;
        display: grid !important;
        place-items: center !important;
        background: #ffffff !important;
    }

    body.single-product .terry-product-gallery__media-shell {
        width: 100% !important;
        height: 100% !important;
        display: grid !important;
        place-items: center !important;
    }

    body.single-product .terry-product-gallery__mobile-image {
        width: 100% !important;
        height: 100% !important;
        max-width: 82% !important;
        max-height: 82% !important;
        object-fit: contain !important;
        object-position: center center !important;
        margin: auto !important;
        background: #ffffff !important;
    }
}

/* Terry size guide */
.terry-size-guide-trigger {
    display: inline-flex;
    width: fit-content;
    margin: 14px 0 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #050505;
    font: inherit;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 4px;
    cursor: pointer;
}

.terry-size-guide-trigger:hover,
.terry-size-guide-trigger:focus-visible {
    color: #000000;
}

.terry-size-guide-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, .42);
}

.terry-size-guide-modal.is-open {
    display: flex;
}

body.terry-size-guide-open {
    overflow: hidden;
}

.terry-size-guide-panel {
    position: relative;
    width: min(760px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    padding: 32px;
    background: #ffffff;
    color: #050505;
}

.terry-size-guide-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #050505;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.terry-size-guide-panel h2 {
    max-width: calc(100% - 48px);
    margin: 0 0 8px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: .95;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.terry-size-guide-panel p {
    margin: 0 0 22px;
    color: rgba(5, 5, 5, .62);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.terry-size-guide-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.terry-size-guide-table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    border: 1px solid #050505;
    background: #ffffff;
}

.terry-size-guide-table th,
.terry-size-guide-table td {
    border: 1px solid #d9d9d9;
    padding: 13px 14px;
    color: #050505;
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
}

.terry-size-guide-table thead th {
    border-color: #050505;
    background: #050505;
    color: #ffffff;
    font-weight: 900;
    text-transform: uppercase;
}

.terry-size-guide-table tbody th {
    font-weight: 900;
    text-align: left;
    text-transform: uppercase;
}

@media (max-width: 700px) {
    .terry-size-guide-modal {
        align-items: stretch;
        justify-content: stretch;
        padding: 0;
        background: rgba(0, 0, 0, .5);
    }

    .terry-size-guide-panel {
        width: 100%;
        min-height: 100vh;
        min-height: 100dvh;
        max-height: none;
        padding: max(22px, env(safe-area-inset-top)) 20px max(26px, env(safe-area-inset-bottom));
        overflow: auto;
    }

    .terry-size-guide-close {
        position: sticky;
        top: 0;
        float: right;
        margin: 0 0 8px 12px;
        background: #ffffff;
    }

    .terry-size-guide-panel h2 {
        clear: none;
        max-width: calc(100% - 52px);
        margin-top: 0;
        font-size: clamp(28px, 8vw, 34px);
        line-height: .95;
    }

    .terry-size-guide-panel p {
        margin-bottom: 18px;
        font-size: 11px;
    }

    .terry-size-guide-table-wrap {
        margin: 0 -2px;
        border: 1px solid #050505;
        overflow-x: auto;
    }

    .terry-size-guide-table {
        width: 100%;
        min-width: max-content;
        border: 0;
    }

    .terry-size-guide-table th,
    .terry-size-guide-table td {
        min-width: 78px;
        padding: 12px 10px;
        font-size: 13px;
    }

    .terry-size-guide-table th:first-child,
    .terry-size-guide-table td:first-child {
        min-width: 112px;
    }

    body.terry-size-guide-open .terry-whatsapp-float {
        display: none;
    }
}

/* Product size + neutral image frames */
body.single-product .terry-product-summary__stock {
    margin: 0 0 10px;
    color: #050505;
    font-size: 16px;
    line-height: 1.35;
}

body.single-product .woocommerce-variation-availability,
body.single-product .woocommerce-variation-availability .stock {
    display: none !important;
}

body.single-product .quantity {
    display: none !important;
}

body.single-product .woocommerce-variation-add-to-cart,
body.single-product form.cart:not(.variations_form) {
    display: block !important;
    margin-top: 0 !important;
}

body.single-product .variations {
    width: 100% !important;
    margin: 0 0 16px !important;
    border: 0 !important;
}

body.single-product .variations tbody,
body.single-product .variations tr,
body.single-product .variations th,
body.single-product .variations td {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    border: 0 !important;
}

body.single-product .variations td.label,
body.single-product .variations th.label {
    margin: 0 0 8px !important;
}

body.single-product .variations td.label:has(label[for*="size"]),
body.single-product .variations th.label:has(label[for*="size"]) {
    display: none !important;
}

body.single-product .variations td.value select.terry-size-select {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
}

body.single-product .variations td.value:has(select.terry-size-select)::after {
    display: none !important;
}

body.single-product .reset_variations {
    display: none !important;
}

body.single-product .terry-hidden-gender-row,
body.single-product tr:has(.terry-hidden-gender-select),
body.single-product .terry-hidden-gender-select {
    display: none !important;
}

.terry-product-size,
.terry-variation-size-buttons {
    margin: 0 0 16px;
}

body.single-product .terry-variation-size-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.terry-product-size__label,
.terry-variation-size-buttons__label {
    margin: 0 0 8px;
    color: #050505;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}

body.single-product .terry-variation-size-buttons__label {
    display: none !important;
}

.terry-product-size__options,
.terry-variation-size-buttons__options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
}

.terry-product-size__button,
.terry-variation-size-buttons__button {
    min-width: 48px;
    height: 48px;
    display: inline-grid;
    place-items: center;
    border: 1px solid #050505;
    border-radius: 0;
    background: #ffffff;
    color: #050505;
    padding: 0 13px;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
}

.terry-product-size__button.is-selected,
.terry-variation-size-buttons__button.is-selected {
    background: #050505;
    color: #ffffff;
}

.terry-product-size__button.is-disabled,
.terry-variation-size-buttons__button.is-disabled,
.terry-product-size__button:disabled,
.terry-variation-size-buttons__button:disabled {
    border-color: #d8d8d8;
    background: #f1f1f1;
    color: #9a9a9a;
    cursor: not-allowed;
}

.terry-product-size__message,
.terry-variation-size-buttons__message {
    margin: 8px 0 0;
    color: #b00020;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 800;
}

body.single-product .single_add_to_cart_button {
    width: 100% !important;
}

body.single-product .terry-product-gallery__stack-item,
body.single-product .terry-product-gallery__stage,
body.single-product .terry-product-gallery__mobile-track,
body.single-product .terry-product-gallery__mobile-slide,
body.single-product .terry-product-gallery__media-shell,
.terry-product-tile .terry-product-image,
.home-product-image,
.terry-drop-products .terry-product-image,
.terry-men-archive-products .terry-product-image,
.terry-women-archive-products .terry-product-image,
.terry-inception-archive-products .terry-product-image {
    background: #f4f4f2 !important;
}

body.single-product .terry-product-gallery__stack-item {
    border-color: rgba(0, 0, 0, .06) !important;
}

body.single-product .terry-product-gallery__media,
body.single-product .terry-product-gallery__mobile-image,
.terry-product-tile .terry-product-image img,
.terry-product-tile .terry-product-hover-image,
.home-product-image img,
.home-product-image .terry-product-hover-image,
.terry-drop-products .terry-product-image img,
.terry-drop-products .terry-product-hover-image,
.terry-men-archive-products .terry-product-image img,
.terry-men-archive-products .terry-product-hover-image,
.terry-women-archive-products .terry-product-image img,
.terry-women-archive-products .terry-product-hover-image,
.terry-inception-archive-products .terry-product-image img,
.terry-inception-archive-products .terry-product-hover-image {
    object-fit: contain !important;
    background: #f4f4f2 !important;
}

body.single-product .terry-product-gallery__stack-item::before,
body.single-product .terry-product-gallery__stack-item::after,
body.single-product .terry-product-gallery__stage::before,
body.single-product .terry-product-gallery__stage::after,
body.single-product .terry-product-gallery__media-shell::before,
body.single-product .terry-product-gallery__media-shell::after {
    display: none !important;
    content: none !important;
}

@media (max-width: 700px) {
    .terry-product-size__button,
    .terry-variation-size-buttons__button {
        min-width: 46px;
        height: 46px;
    }
}

/* Product card image correction */
.home-product-image,
.terry-product-tile .terry-product-image,
.terry-drop-products .terry-product-image,
.terry-men-archive-products .terry-product-image,
.terry-women-archive-products .terry-product-image,
.terry-inception-archive-products .terry-product-image {
    background: #f4f4f2 !important;
}

.home-product-image img,
.home-product-image .terry-product-hover-image,
.terry-product-tile .terry-product-image img,
.terry-product-tile .terry-product-hover-image,
.terry-drop-products .terry-product-image img,
.terry-drop-products .terry-product-hover-image,
.terry-men-archive-products .terry-product-image img,
.terry-men-archive-products .terry-product-hover-image,
.terry-women-archive-products .terry-product-image img,
.terry-women-archive-products .terry-product-hover-image,
.terry-inception-archive-products .terry-product-image img,
.terry-inception-archive-products .terry-product-hover-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    background: transparent !important;
}

/* Final product image polish: tighter frames with full-bleed product photos */
body.single-product .terry-product-page {
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 520px) !important;
    gap: clamp(30px, 4vw, 58px) !important;
    align-items: start !important;
}

body.single-product .terry-product-gallery__stack-item,
body.single-product .terry-product-gallery__stage,
body.single-product .terry-product-gallery__mobile-track,
body.single-product .terry-product-gallery__mobile-slide,
body.single-product .terry-product-gallery__media-shell {
    background: #e0dede !important;
    background: radial-gradient(circle at center, #f1eff0 0%, #e0dede 55%, #d7d5d6 100%) !important;
    overflow: hidden !important;
}

body.single-product .terry-product-gallery__stack-item:first-child {
    aspect-ratio: 5 / 4 !important;
    max-height: 560px !important;
}

body.single-product .terry-product-gallery__media,
body.single-product .terry-product-gallery__stack-item:first-child .terry-product-gallery__media,
body.single-product .terry-product-gallery__mobile-image {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    margin: 0 !important;
    background: transparent !important;
}

.home-product-image,
.terry-product-tile .terry-product-image,
.terry-drop-products .terry-product-image,
.terry-men-archive-products .terry-product-image,
.terry-women-archive-products .terry-product-image,
.terry-inception-archive-products .terry-product-image {
    background: #e0dede !important;
    background: radial-gradient(circle at center, #f1eff0 0%, #e0dede 55%, #d7d5d6 100%) !important;
    overflow: hidden !important;
}

.home-product-image img,
.home-product-image .terry-product-hover-image,
.terry-product-tile .terry-product-image img,
.terry-product-tile .terry-product-hover-image,
.terry-drop-products .terry-product-image img,
.terry-drop-products .terry-product-hover-image,
.terry-men-archive-products .terry-product-image img,
.terry-men-archive-products .terry-product-hover-image,
.terry-women-archive-products .terry-product-image img,
.terry-women-archive-products .terry-product-hover-image,
.terry-inception-archive-products .terry-product-image img,
.terry-inception-archive-products .terry-product-hover-image {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    margin: 0 !important;
    background: transparent !important;
}

@media (max-width: 900px) {
    body.single-product .terry-product-page {
        padding: 0 14px 42px !important;
    }

    body.single-product .terry-product-gallery {
        max-width: 620px !important;
        margin: 0 auto 22px !important;
    }

    body.single-product .terry-product-gallery__mobile-track,
    body.single-product .terry-product-gallery__mobile-slide {
        aspect-ratio: 4 / 5 !important;
    }

    body.single-product .terry-product-gallery__mobile-track {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch !important;
    }

    body.single-product .terry-product-gallery__mobile-track::-webkit-scrollbar {
        display: none !important;
    }

body.single-product .terry-product-gallery__mobile-slide {
        width: 100% !important;
        min-width: 100% !important;
        flex: 0 0 100% !important;
        scroll-snap-align: start !important;
    }
}

/* Product detail right column: reference-style buying panel */
body.single-product .terry-product-summary {
    width: 100% !important;
    max-width: 638px !important;
    padding-top: clamp(34px, 5.2vw, 78px) !important;
}

body.single-product .terry-product-summary__breadcrumbs {
    margin: 0 0 34px !important;
}

body.single-product .terry-product-summary__breadcrumbs .woocommerce-breadcrumb {
    color: #4f4f4f !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 17px !important;
    line-height: 1.15 !important;
    font-weight: 400 !important;
    letter-spacing: -.02em !important;
    text-transform: uppercase !important;
}

body.single-product .terry-product-summary__breadcrumbs .woocommerce-breadcrumb a {
    color: #5c5c5c !important;
    font-weight: 900 !important;
    text-decoration: underline !important;
    text-underline-offset: 2px !important;
}

body.single-product .terry-product-summary__headline {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) max-content !important;
    gap: 24px !important;
    align-items: start !important;
    margin: 0 0 44px !important;
}

body.single-product .terry-product-summary__title {
    margin: 0 !important;
    max-width: 430px !important;
    color: #050505 !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: clamp(30px, 2.1vw, 40px) !important;
    line-height: 1.02 !important;
    font-weight: 900 !important;
    letter-spacing: -.06em !important;
    text-transform: uppercase !important;
}

body.single-product .terry-product-summary__price {
    margin: 3px 0 0 !important;
    color: #050505 !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: clamp(22px, 1.65vw, 28px) !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: -.04em !important;
    white-space: nowrap !important;
    text-align: right !important;
}

body.single-product .terry-product-summary__excerpt,
body.single-product .terry-product-meta,
body.single-product .terry-product-summary__help {
    display: none !important;
}

body.single-product .terry-product-color {
    margin: 0 0 46px !important;
}

body.single-product .terry-product-color__label,
body.single-product .terry-product-size__label,
body.single-product .terry-variation-size-buttons__label {
    display: flex !important;
    align-items: baseline !important;
    gap: 12px !important;
    margin: 0 0 18px !important;
    color: #050505 !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.15 !important;
    font-weight: 400 !important;
    letter-spacing: -.03em !important;
    text-transform: uppercase !important;
}

body.single-product .terry-product-color__label strong,
body.single-product .terry-variation-size-buttons__label strong,
body.single-product .terry-product-size__label::after,
body.single-product .terry-variation-size-buttons__label::after {
    color: #050505 !important;
    font-weight: 900 !important;
}

body.single-product .terry-product-color__swatches {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}

body.single-product .terry-product-color__swatch {
    width: 42px !important;
    height: 42px !important;
    display: inline-block !important;
    border: 1px solid #d9d9d9 !important;
    background: var(--swatch-color, #9ebaff) !important;
    box-shadow: inset 0 0 0 4px #ffffff !important;
}

body.single-product .terry-product-color__swatch--active {
    border-color: #050505 !important;
}

body.single-product .terry-product-size,
body.single-product .terry-variation-size-buttons {
    margin: 0 0 48px !important;
}

body.single-product .terry-product-size__label {
    font-size: 0 !important;
}

body.single-product .terry-product-size__label::before {
    content: "Select Size" !important;
    font-size: 14px !important;
}

body.single-product .terry-product-size__label::after {
    content: attr(data-selected-size) !important;
    font-size: 14px !important;
}

body.single-product .terry-product-size__options,
body.single-product .terry-variation-size-buttons__options {
    gap: 12px !important;
}

body.single-product .terry-product-size__button,
body.single-product .terry-variation-size-buttons__button {
    min-width: 82px !important;
    height: 60px !important;
    border: 1px solid #d9d9d9 !important;
    background: #ffffff !important;
    color: #050505 !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    letter-spacing: -.03em !important;
    text-transform: uppercase !important;
}

body.single-product .terry-product-size__button.is-selected,
body.single-product .terry-variation-size-buttons__button.is-selected {
    border-color: #050505 !important;
    background: #ffffff !important;
    color: #050505 !important;
}

body.single-product .terry-product-summary__cart {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 78px !important;
    gap: 12px !important;
    align-items: end !important;
    margin: 0 0 22px !important;
}

body.single-product .terry-product-summary__cart form.cart {
    min-width: 0 !important;
}

body.single-product .woocommerce-variation-add-to-cart,
body.single-product form.cart:not(.variations_form) {
    display: block !important;
    margin: 0 !important;
}

body.single-product .single_add_to_cart_button {
    width: 100% !important;
    height: 78px !important;
    border: 1px solid #111111 !important;
    background: #111111 !important;
    color: #ffffff !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 24px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: -.04em !important;
    text-transform: uppercase !important;
}

body.single-product .terry-product-wishlist {
    width: 78px !important;
    height: 78px !important;
    display: grid !important;
    place-items: center !important;
    border: 1px solid #d9d9d9 !important;
    background: #ffffff !important;
    color: #050505 !important;
    border-radius: 0 !important;
    font-size: 36px !important;
    line-height: 1 !important;
    cursor: pointer !important;
}

body.single-product .terry-product-summary__shipping {
    margin: 0 !important;
    color: #565656 !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 18px !important;
    line-height: 1.3 !important;
    font-weight: 400 !important;
    letter-spacing: -.04em !important;
    text-transform: uppercase !important;
}

body.single-product .terry-product-summary__shipping::before {
    content: "\26DF";
    display: inline-block;
    margin-right: 8px;
    color: #666666;
    font-size: 18px;
    line-height: 1;
}

@media (max-width: 1100px) {
    body.single-product .terry-product-summary__headline {
        display: block !important;
        margin-bottom: 34px !important;
    }

    body.single-product .terry-product-summary__price {
        margin-top: 16px !important;
        text-align: left !important;
    }
}

@media (max-width: 900px) {
    body.single-product .terry-product-summary {
        max-width: none !important;
        padding-top: 0 !important;
    }

    body.single-product .terry-product-color,
    body.single-product .terry-product-size,
    body.single-product .terry-variation-size-buttons {
        margin-bottom: 28px !important;
    }

    body.single-product .terry-product-summary__cart {
        grid-template-columns: minmax(0, 1fr) 60px !important;
    }

    body.single-product .single_add_to_cart_button,
    body.single-product .terry-product-wishlist {
        height: 60px !important;
    }

    body.single-product .terry-product-wishlist {
        width: 60px !important;
        font-size: 30px !important;
    }
}

/* Final product summary polish: compact buying panel, same content and behavior. */
body.single-product .terry-product-summary {
    max-width: 680px !important;
    padding-top: 8px !important;
}

body.single-product .terry-product-summary__headline {
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: start !important;
    gap: 28px !important;
    margin-bottom: 22px !important;
}

body.single-product .terry-product-summary__title {
    max-width: 480px !important;
    margin: 0 !important;
    font-family: "Barlow Condensed", Arial, Helvetica, sans-serif !important;
    font-size: 42px !important;
    line-height: .98 !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
}

body.single-product .terry-product-summary__price {
    min-width: max-content !important;
    padding-top: 4px !important;
    text-align: right !important;
    font-family: "Barlow Condensed", Arial, Helvetica, sans-serif !important;
    font-size: 28px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
}

body.single-product .terry-product-summary__excerpt {
    display: block !important;
    max-width: 580px !important;
    margin: 0 0 28px !important;
    color: #333333 !important;
    font-family: "Inter", Arial, Helvetica, sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.55 !important;
    letter-spacing: 0 !important;
}

body.single-product .terry-product-color,
body.single-product .terry-product-wishlist,
body.single-product .terry-product-summary__shipping,
body.single-product .terry-product-meta,
body.single-product .terry-product-summary__help,
body.single-product .terry-product-accordions {
    display: none !important;
}

body.single-product .terry-product-size,
body.single-product .terry-variation-size-buttons {
    margin: 0 0 48px !important;
}

body.single-product .terry-product-size__label,
body.single-product .terry-variation-size-buttons__label {
    display: flex !important;
    align-items: baseline !important;
    gap: 10px !important;
    min-height: 16px !important;
    margin: 0 0 16px !important;
    color: #050505 !important;
    font-family: "Inter", Arial, Helvetica, sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.15 !important;
    letter-spacing: 0 !important;
    text-transform: uppercase !important;
}

body.single-product .terry-product-size__label {
    font-size: 0 !important;
}

body.single-product .terry-product-size__label::before {
    content: "Select Size" !important;
    font-size: 14px !important;
}

body.single-product .terry-product-size__label::after,
body.single-product .terry-variation-size-buttons__label::after {
    margin-left: 0 !important;
    font-size: 14px !important;
    font-weight: 800 !important;
}

body.single-product .terry-product-size__options,
body.single-product .terry-variation-size-buttons__options {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    max-width: 100% !important;
}

body.single-product .terry-product-size__button,
body.single-product .terry-variation-size-buttons__button {
    width: 76px !important;
    min-width: 76px !important;
    height: 56px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #ffffff !important;
    border-color: #d8d8d8 !important;
    font-family: "Inter", Arial, Helvetica, sans-serif !important;
    font-size: 19px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    border-radius: 2px !important;
}

body.single-product .terry-product-size__button.is-selected,
body.single-product .terry-variation-size-buttons__button.is-selected {
    background: #ffffff !important;
    color: #050505 !important;
    border-color: #050505 !important;
    box-shadow: inset 0 0 0 1px #050505 !important;
}

body.single-product .terry-product-summary__cart {
    display: block !important;
    margin-top: 0 !important;
}

body.single-product .terry-product-summary__cart form.cart {
    width: 100% !important;
    max-width: 100% !important;
}

body.single-product .single_add_to_cart_button {
    width: 100% !important;
    height: 70px !important;
    font-family: "Barlow Condensed", Arial, Helvetica, sans-serif !important;
    font-size: 27px !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
}

body.single-product .terry-size-guide-trigger {
    margin-top: 18px !important;
    font-family: "Barlow Condensed", Arial, Helvetica, sans-serif !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
}

@media (max-width: 1240px) {
    body.single-product .terry-product-summary__headline {
        display: block !important;
        margin-bottom: 20px !important;
    }

    body.single-product .terry-product-summary__price {
        margin-top: 10px !important;
        text-align: left !important;
    }
}

@media (max-width: 900px) {
    body.single-product .terry-product-summary {
        padding-top: 6px !important;
    }

    body.single-product .terry-product-summary__headline {
        display: block !important;
        margin-bottom: 18px !important;
    }

    body.single-product .terry-product-summary__title {
        max-width: 100% !important;
        font-size: 36px !important;
        line-height: 1 !important;
    }

    body.single-product .terry-product-summary__price {
        margin-top: 8px !important;
        text-align: left !important;
        font-size: 25px !important;
    }

    body.single-product .terry-product-summary__excerpt {
        max-width: 100% !important;
        margin-bottom: 24px !important;
        font-size: 15px !important;
        line-height: 1.5 !important;
    }

    body.single-product .terry-product-size,
    body.single-product .terry-variation-size-buttons {
        margin-bottom: 32px !important;
    }

    body.single-product .terry-product-size__label,
    body.single-product .terry-variation-size-buttons__label {
        margin-bottom: 12px !important;
    }

    body.single-product .terry-product-size__button,
    body.single-product .terry-variation-size-buttons__button {
        width: 66px !important;
        min-width: 66px !important;
        height: 50px !important;
        font-size: 17px !important;
    }

    body.single-product .single_add_to_cart_button {
        height: 58px !important;
        font-size: 23px !important;
    }
}

@media (max-width: 520px) {
    body.single-product .terry-product-page {
        padding-left: 12px !important;
        padding-right: 12px !important;
        padding-bottom: 38px !important;
    }

    body.single-product .terry-product-gallery {
        margin-bottom: 18px !important;
    }

    body.single-product .terry-product-summary {
        padding-top: 2px !important;
    }

    body.single-product .terry-product-summary__title {
        font-size: 31px !important;
        line-height: 1.02 !important;
    }

    body.single-product .terry-product-summary__price {
        font-size: 23px !important;
    }

    body.single-product .terry-product-summary__excerpt {
        font-size: 14px !important;
    }

    body.single-product .terry-product-size__options,
    body.single-product .terry-variation-size-buttons__options {
        gap: 10px !important;
    }

    body.single-product .terry-product-size__button,
    body.single-product .terry-variation-size-buttons__button {
        width: 60px !important;
        min-width: 60px !important;
        height: 46px !important;
        font-size: 16px !important;
    }
}

body.single-product .terry-product-summary__excerpt p,
body.single-product .terry-product-summary__excerpt ul,
body.single-product .terry-product-summary__excerpt ol {
    margin: 0 0 12px !important;
}

body.single-product .terry-product-summary__excerpt p:last-child,
body.single-product .terry-product-summary__excerpt ul:last-child,
body.single-product .terry-product-summary__excerpt ol:last-child {
    margin-bottom: 0 !important;
}

body.single-product .terry-product-summary__excerpt ul,
body.single-product .terry-product-summary__excerpt ol {
    padding-left: 20px !important;
}

body.single-product .terry-product-summary__excerpt li {
    margin: 0 0 6px !important;
}

body.single-product .terry-product-summary__excerpt a {
    color: inherit !important;
    text-decoration: underline !important;
    text-underline-offset: 3px !important;
}

/* Product page redesign: description-led buying column */
body.single-product .terry-product-page {
    width: min(1500px, calc(100vw - 72px)) !important;
    grid-template-columns: minmax(0, .98fr) minmax(390px, 560px) !important;
    gap: clamp(44px, 5vw, 86px) !important;
    padding-top: clamp(36px, 4vw, 68px) !important;
    padding-bottom: 76px !important;
}

body.single-product .terry-product-summary {
    position: sticky !important;
    top: 112px !important;
    align-self: start !important;
    max-width: 560px !important;
    padding-top: clamp(24px, 3.5vw, 48px) !important;
}

body.single-product .terry-product-summary__headline {
    margin-bottom: 18px !important;
    gap: 22px !important;
}

body.single-product .terry-product-summary__title {
    max-width: 360px !important;
    font-size: clamp(36px, 3.05vw, 50px) !important;
    line-height: .92 !important;
}

body.single-product .terry-product-summary__price {
    padding-top: 2px !important;
    font-size: clamp(26px, 2vw, 34px) !important;
}

body.single-product .terry-product-summary__excerpt {
    max-width: 520px !important;
    margin: 0 0 30px !important;
    padding-bottom: 24px !important;
    border-bottom: 1px solid rgba(0, 0, 0, .12) !important;
    color: #333333 !important;
    font-size: 16px !important;
    line-height: 1.58 !important;
}

body.single-product .terry-product-size,
body.single-product .terry-variation-size-buttons {
    margin-bottom: 36px !important;
}

body.single-product .single_add_to_cart_button {
    height: 66px !important;
}

body.single-product .terry-size-guide-trigger {
    margin-top: 16px !important;
}

body.single-product .terry-product-description {
    display: block !important;
    max-width: 560px !important;
    margin: 34px 0 0 !important;
    padding: 28px 0 0 !important;
    border-top: 1px solid rgba(0, 0, 0, .16) !important;
    color: #111111 !important;
}

body.single-product .terry-product-description h2 {
    margin: 0 0 14px !important;
    font-family: "Barlow Condensed", Arial, Helvetica, sans-serif !important;
    font-size: 24px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    text-transform: uppercase !important;
}

body.single-product .terry-product-description__content {
    color: #333333 !important;
    font-family: "Inter", Arial, Helvetica, sans-serif !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
}

body.single-product .terry-product-description__content p,
body.single-product .terry-product-description__content ul,
body.single-product .terry-product-description__content ol {
    margin: 0 0 13px !important;
}

body.single-product .terry-product-description__content p:last-child,
body.single-product .terry-product-description__content ul:last-child,
body.single-product .terry-product-description__content ol:last-child {
    margin-bottom: 0 !important;
}

body.single-product .terry-product-description__content ul,
body.single-product .terry-product-description__content ol {
    padding-left: 20px !important;
}

body.single-product .terry-product-description__content li {
    margin-bottom: 7px !important;
}

body.single-product .terry-product-description__attributes {
    margin-top: 22px !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(0, 0, 0, .1) !important;
}

body.single-product .terry-product-description__attributes h2 {
    display: none !important;
}

body.single-product .terry-product-description__attributes table,
body.single-product .terry-product-description__attributes .shop_attributes {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 0 !important;
}

body.single-product .terry-product-description__attributes th,
body.single-product .terry-product-description__attributes td {
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, .1) !important;
    color: #333333 !important;
    font-family: "Inter", Arial, Helvetica, sans-serif !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
    text-align: left !important;
}

body.single-product .terry-product-description__attributes th {
    width: 132px !important;
    color: #050505 !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
}

body.single-product .terry-related-products {
    padding-top: 54px !important;
}

body.single-product .terry-related-products__header {
    margin-bottom: 24px !important;
}

body.single-product .terry-related-products__header h2 {
    font-size: clamp(30px, 3vw, 42px) !important;
}

@media (max-width: 1100px) {
    body.single-product .terry-product-page {
        width: min(100%, calc(100vw - 36px)) !important;
        grid-template-columns: minmax(0, 1fr) minmax(340px, 500px) !important;
        gap: 34px !important;
    }

    body.single-product .terry-product-summary {
        top: 96px !important;
    }
}

@media (max-width: 900px) {
    body.single-product .terry-product-page {
        width: 100% !important;
        display: block !important;
        padding: 0 14px 48px !important;
    }

    body.single-product .terry-product-summary {
        position: static !important;
        max-width: none !important;
        padding-top: 12px !important;
    }

    body.single-product .terry-product-summary__headline {
        margin-bottom: 14px !important;
    }

    body.single-product .terry-product-summary__title {
        max-width: none !important;
        font-size: clamp(34px, 10vw, 44px) !important;
    }

    body.single-product .terry-product-summary__excerpt {
        margin-bottom: 24px !important;
        padding-bottom: 20px !important;
        font-size: 15px !important;
    }

    body.single-product .terry-product-description {
        max-width: none !important;
        margin-top: 28px !important;
        padding-top: 24px !important;
    }
}

/* Out-of-stock size state */
.terry-look-size-modal__group button,
body.single-product .terry-product-size__button,
body.single-product .terry-variation-size-buttons__button {
    position: relative !important;
    overflow: hidden !important;
}

.terry-look-size-modal__group button.is-disabled,
.terry-look-size-modal__group button:disabled,
body.single-product .terry-product-size__button.is-disabled,
body.single-product .terry-product-size__button:disabled,
body.single-product .terry-variation-size-buttons__button.is-disabled,
body.single-product .terry-variation-size-buttons__button:disabled {
    border-color: #d6d6d6 !important;
    background: #f4f4f4 !important;
    color: #8f8f8f !important;
    cursor: not-allowed !important;
    text-decoration: line-through !important;
    text-decoration-thickness: 2px !important;
}

.terry-look-size-modal__group button.is-disabled::after,
.terry-look-size-modal__group button:disabled::after,
body.single-product .terry-product-size__button.is-disabled::after,
body.single-product .terry-product-size__button:disabled::after,
body.single-product .terry-variation-size-buttons__button.is-disabled::after,
body.single-product .terry-variation-size-buttons__button:disabled::after {
    content: "" !important;
    position: absolute !important;
    left: 12px !important;
    right: 12px !important;
    top: 50% !important;
    border-top: 2px solid currentColor !important;
    opacity: .72 !important;
    transform: rotate(-18deg) !important;
    pointer-events: none !important;
}

/* Terry Journal single post template */
.terry-journal {
    width: 100%;
    min-height: 100vh;
    padding: 0 0 96px;
    background: #f7f7f5;
    color: #111111;
}

.terry-journal__article {
    width: 100%;
}

.terry-journal__hero {
    width: 100%;
    margin: 0 0 80px;
    background: #e0dede;
    overflow: hidden;
}

.terry-journal__hero-image {
    display: block;
    width: 100%;
    height: min(78vh, 820px);
    object-fit: cover;
    object-position: center center;
}

.terry-journal__header,
.terry-journal__content {
    width: min(760px, calc(100% - 40px));
    margin: 0 auto;
}

.terry-journal__header {
    margin-bottom: 80px;
}

.terry-journal__kicker {
    margin: 0 0 14px;
    color: #111111;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.terry-journal__title {
    margin: 0;
    color: #111111;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 72px;
    line-height: .92;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.terry-journal__content {
    color: #111111;
    font-size: 18px;
    line-height: 1.8;
}

.terry-journal__content > * {
    margin-top: 0;
    margin-bottom: 32px;
}

.terry-journal__content h2,
.terry-journal__content h3 {
    margin-top: 80px;
    margin-bottom: 22px;
    color: #111111;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
}

.terry-journal__content h2 {
    font-size: clamp(34px, 4vw, 52px);
}

.terry-journal__content h3 {
    font-size: clamp(26px, 3vw, 38px);
}

.terry-journal__content p,
.terry-journal__content li {
    color: #111111;
    font-size: inherit;
    line-height: inherit;
}

.terry-journal__content ul,
.terry-journal__content ol {
    padding-left: 24px;
}

.terry-journal__content img,
.terry-journal__content figure {
    max-width: 100%;
    height: auto;
    margin-top: 80px;
    margin-bottom: 80px;
}

.terry-journal__content figure img {
    display: block;
    width: 100%;
}

.terry-journal__content a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 4px;
}

@media (max-width: 700px) {
    .terry-journal {
        padding-bottom: 72px;
    }

    .terry-journal__hero {
        margin-bottom: 56px;
    }

    .terry-journal__hero-image {
        height: 62vh;
        min-height: 420px;
    }

    .terry-journal__header,
    .terry-journal__content {
        width: min(100% - 36px, 760px);
    }

    .terry-journal__header {
        margin-bottom: 56px;
    }

    .terry-journal__title {
        font-size: 42px;
        line-height: .95;
    }

    .terry-journal__content {
        font-size: 16px;
        line-height: 1.8;
    }

    .terry-journal__content h2,
    .terry-journal__content h3 {
        margin-top: 56px;
    }

    .terry-journal__content img,
    .terry-journal__content figure {
        margin-top: 56px;
        margin-bottom: 56px;
    }
}

/* Permanent homepage hero white-strip fix */
body.home,
body.is-home-hero {
    background: #15110d !important;
    margin: 0 !important;
    padding: 0 !important;
}

.home #page,
.home .site,
.home main#main.site-main,
body.is-home-hero main#main.site-main {
    background: #15110d !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.is-home-hero .home-hero,
body.is-home-hero .hero-slider,
body.is-home-hero .hero-slide,
body.is-home-hero .hero-bg,
body.is-home-hero .hero-mobile-slider,
body.is-home-hero .hero-mobile-slider__slides,
body.is-home-hero .hero-mobile-slide {
    margin: 0 !important;
    padding: 0 !important;
}

body.is-home-hero .home-hero {
    background: #15110d !important;
    overflow: hidden;
    position: relative;
    top: 0;
}

body.is-home-hero .home-hero::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    z-index: 0;
    background: #15110d;
    pointer-events: none;
}

body.is-home-hero .home-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 4;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, .45) 0%,
        rgba(0, 0, 0, .10) 40%,
        rgba(0, 0, 0, .75) 100%
    );
    pointer-events: none;
}

body.is-home-hero .hero-content {
    position: relative;
    z-index: 20;
}

body.is-home-hero .terry-header {
    position: absolute;
    top: 0 !important;
}

body.is-home-hero .home-hero + *,
body.is-home-hero .featured-drop,
body.is-home-hero .terry-lookbook,
body.is-home-hero .home-editorial,
body.is-home-hero .terry-footer {
    background: #fff;
}

@media (max-width: 900px) {
    body.is-home-hero .home-hero {
        background: #15110d !important;
    }

    .home-hero .hero-content {
        width: calc(100vw - 44px);
        min-height: 100svh;
        padding: 92px 0 96px !important;
        justify-content: flex-end;
    }
}

@media (max-width: 480px) {
    .home-hero .hero-content {
        width: calc(100vw - 32px);
        padding: 82px 0 88px !important;
    }
}

/* Terry order received page */
body.woocommerce-order-received {
    background: #f7f7f5;
}

body.woocommerce-order-received main#main.site-main {
    background: #f7f7f5;
    padding: clamp(128px, 12vw, 180px) clamp(18px, 4vw, 56px) clamp(72px, 8vw, 120px);
}

body.woocommerce-order-received .woocommerce {
    width: min(1180px, 100%);
    margin: 0 auto;
    padding: 0;
}

body.woocommerce-order-received .woocommerce::before {
    display: none;
    content: none;
}

body.woocommerce-order-received .woocommerce-order {
    color: #111;
}

body.woocommerce-order-received .woocommerce-thankyou-order-received {
    margin: 0 0 18px;
    padding: clamp(28px, 5vw, 54px);
    background: #050505;
    color: #fff;
    font-family: inherit;
    font-size: clamp(34px, 6vw, 76px);
    font-weight: 900;
    line-height: .92;
    letter-spacing: 0;
    text-transform: uppercase;
}

body.woocommerce-order-received .woocommerce-order-overview,
body.woocommerce-order-received ul.order_details {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin: 0 0 clamp(28px, 5vw, 54px);
    padding: 1px;
    list-style: none;
    background: #111;
}

body.woocommerce-order-received .woocommerce-order-overview li,
body.woocommerce-order-received ul.order_details li {
    margin: 0;
    padding: 18px;
    border: 0;
    background: #fff;
    color: #4b4b4b;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: .04em;
}

body.woocommerce-order-received .woocommerce-order-overview li strong,
body.woocommerce-order-received ul.order_details li strong {
    display: block;
    margin-top: 8px;
    color: #111;
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 900;
    line-height: 1.1;
    text-transform: none;
    letter-spacing: 0;
}

@media (min-width: 821px) {
    body.woocommerce-order-received ul.wc-bacs-bank-details,
    body.woocommerce-order-received .wc-bacs-bank-details.order_details {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: 100%;
    }

    body.woocommerce-order-received ul.wc-bacs-bank-details li,
    body.woocommerce-order-received .wc-bacs-bank-details.order_details li {
        min-width: 0;
    }

    body.woocommerce-order-received ul.wc-bacs-bank-details li strong,
    body.woocommerce-order-received .wc-bacs-bank-details.order_details li strong {
        overflow-wrap: anywhere;
        word-break: break-word;
    }
}

body.woocommerce-order-received .woocommerce-order > p:not(.woocommerce-thankyou-order-received) {
    max-width: 760px;
    margin: 0 0 28px;
    color: #222;
    font-size: clamp(16px, 1.5vw, 19px);
    line-height: 1.7;
}

body.woocommerce-order-received .woocommerce-order-details,
body.woocommerce-order-received .woocommerce-customer-details {
    margin: clamp(24px, 4vw, 42px) 0 0;
    padding: clamp(22px, 4vw, 42px);
    border: 1px solid #e4e1dc;
    background: #fff;
}

body.woocommerce-order-received .woocommerce-order-details__title,
body.woocommerce-order-received .woocommerce-column__title,
body.woocommerce-order-received .woocommerce-customer-details h2 {
    margin: 0 0 24px;
    color: #111;
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 900;
    line-height: .95;
    text-transform: uppercase;
    letter-spacing: 0;
}

body.woocommerce-order-received table.shop_table,
body.woocommerce-order-received .woocommerce-table {
    width: 100%;
    margin: 0;
    border: 0;
    border-collapse: collapse;
    background: #fff;
}

body.woocommerce-order-received table.shop_table th,
body.woocommerce-order-received table.shop_table td,
body.woocommerce-order-received .woocommerce-table th,
body.woocommerce-order-received .woocommerce-table td {
    padding: 18px 0;
    border: 0;
    border-bottom: 1px solid #ece9e5;
    color: #111;
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.5;
    vertical-align: top;
}

body.woocommerce-order-received table.shop_table th,
body.woocommerce-order-received .woocommerce-table th {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
}

body.woocommerce-order-received table.shop_table td:last-child,
body.woocommerce-order-received .woocommerce-table td:last-child,
body.woocommerce-order-received table.shop_table tfoot td,
body.woocommerce-order-received .woocommerce-table tfoot td {
    text-align: right;
    font-weight: 900;
}

body.woocommerce-order-received .woocommerce-table__product-name,
body.woocommerce-order-received .product-name {
    font-weight: 900;
    text-transform: uppercase;
}

body.woocommerce-order-received .wc-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}

body.woocommerce-order-received .wc-item-meta li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 7px 10px;
    border: 1px solid #111;
    color: #111;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

body.woocommerce-order-received .wc-item-meta p,
body.woocommerce-order-received .wc-item-meta strong {
    display: inline;
    margin: 0;
}

body.woocommerce-order-received .woocommerce-customer-details address {
    margin: 0;
    padding: 0;
    border: 0;
    color: #222;
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.8;
}

body.woocommerce-order-received .edit-link,
body.woocommerce-order-received .post-edit-link {
    display: none !important;
}

@media (max-width: 820px) {
    body.woocommerce-order-received main#main.site-main {
        padding: 112px 16px 72px;
    }

    body.woocommerce-order-received .woocommerce-order-overview,
    body.woocommerce-order-received ul.order_details {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.woocommerce-order-received .woocommerce-order-details,
    body.woocommerce-order-received .woocommerce-customer-details {
        padding: 20px;
    }
}

@media (max-width: 560px) {
    body.woocommerce-order-received main#main.site-main {
        padding: 96px 14px 58px;
    }

    body.woocommerce-order-received .woocommerce-thankyou-order-received {
        padding: 24px 18px;
        font-size: 34px;
    }

    body.woocommerce-order-received .woocommerce-order-overview,
    body.woocommerce-order-received ul.order_details {
        grid-template-columns: 1fr;
    }

    body.woocommerce-order-received table.shop_table thead,
    body.woocommerce-order-received .woocommerce-table thead {
        display: none;
    }

    body.woocommerce-order-received table.shop_table tr,
    body.woocommerce-order-received .woocommerce-table tr {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid #ece9e5;
    }

    body.woocommerce-order-received table.shop_table th,
    body.woocommerce-order-received table.shop_table td,
    body.woocommerce-order-received .woocommerce-table th,
    body.woocommerce-order-received .woocommerce-table td {
        display: block;
        width: 100%;
        padding: 6px 0;
        border: 0;
        text-align: left !important;
    }

    body.woocommerce-order-received table.shop_table tfoot tr,
    body.woocommerce-order-received .woocommerce-table tfoot tr {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 14px;
        align-items: start;
    }

    body.woocommerce-order-received table.shop_table tfoot th,
    body.woocommerce-order-received table.shop_table tfoot td,
    body.woocommerce-order-received .woocommerce-table tfoot th,
    body.woocommerce-order-received .woocommerce-table tfoot td {
        display: block;
        width: auto;
    }
}

/* Terry blog archive revamp */
.terry-blog-hero,
.terry-blog-listing {
    background: #fff;
    color: #050505;
}

.terry-blog-hero {
    padding: clamp(118px, 11vw, 158px) clamp(20px, 5vw, 72px) clamp(30px, 4.5vw, 58px);
    border-bottom: 1px solid rgba(5, 5, 5, .08);
}

.terry-blog-hero__inner {
    width: min(1440px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(220px, .42fr) minmax(0, .58fr);
    gap: clamp(24px, 5vw, 72px);
    align-items: end;
}

.terry-blog-hero__copy {
    max-width: 420px;
}

.terry-blog-hero__kicker {
    margin: 0 0 14px;
    color: #050505;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.terry-blog-hero__title {
    max-width: 820px;
    margin: 0;
    color: #050505;
    font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
    font-size: clamp(58px, 7.2vw, 112px);
    font-weight: 900;
    line-height: .88;
    letter-spacing: 0;
    text-transform: uppercase;
}

.terry-blog-hero__lead {
    margin: 0;
    color: rgba(5, 5, 5, .66);
    font-size: clamp(15px, 1.35vw, 18px);
    line-height: 1.65;
}

.terry-blog-hero__aside {
    display: none;
}

.terry-blog-listing {
    padding: clamp(26px, 4.5vw, 58px) clamp(20px, 5vw, 72px) clamp(58px, 7vw, 104px);
}

.terry-blog-listing__inner {
    width: min(1440px, 100%);
    margin: 0 auto;
}

.terry-blog-featured {
    margin: 0 0 clamp(30px, 4.5vw, 58px);
}

.terry-blog-featured__link {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, .56fr) minmax(330px, .44fr);
    background: #f7f7f5;
    color: inherit;
    overflow: hidden;
}

.terry-blog-featured__media {
    min-height: 0;
    aspect-ratio: 16 / 10;
    background: #e8e7e3;
    overflow: hidden;
}

.terry-blog-featured__image,
.terry-blog-card__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform .35s ease, opacity .35s ease;
}

.terry-blog-featured__copy {
    min-height: 100%;
    padding: clamp(24px, 4vw, 52px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.terry-blog-card__meta {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(5, 5, 5, .56);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.terry-blog-featured__title {
    max-width: 640px;
    margin: 18px 0 16px;
    color: #050505;
    font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
    font-size: clamp(42px, 4.9vw, 76px);
    font-weight: 900;
    line-height: .92;
    letter-spacing: 0;
    text-transform: uppercase;
}

.terry-blog-featured__excerpt,
.terry-blog-card__excerpt {
    margin: 0;
    color: rgba(5, 5, 5, .68);
    font-size: 15px;
    line-height: 1.65;
}

.terry-blog-featured__excerpt {
    max-width: 560px;
    font-size: clamp(15px, 1.2vw, 18px);
}

.terry-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(28px, 4vw, 44px) clamp(18px, 2.6vw, 32px);
}

.terry-blog-card {
    min-width: 0;
}

.terry-blog-card__link {
    height: 100%;
    display: flex;
    flex-direction: column;
    color: inherit;
}

.terry-blog-card__media {
    aspect-ratio: 4 / 5;
    background: #e8e7e3;
    overflow: hidden;
}

.terry-blog-card__copy {
    padding: 16px 0 0;
}

.terry-blog-card__title {
    margin: 10px 0 8px;
    color: #050505;
    font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 900;
    line-height: .96;
    letter-spacing: 0;
    text-transform: uppercase;
}

.terry-blog-card__excerpt {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.terry-blog-card__cta {
    width: fit-content;
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid currentColor;
    color: #050505;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.terry-blog-card__cta::after {
    content: ">";
    font-size: 13px;
    line-height: 1;
}

.terry-blog-card__link:hover .terry-blog-card__image,
.terry-blog-card__link:focus-visible .terry-blog-card__image,
.terry-blog-featured__link:hover .terry-blog-featured__image,
.terry-blog-featured__link:focus-visible .terry-blog-featured__image {
    opacity: .92;
    transform: scale(1.035);
}

.terry-blog-more {
    margin: 0;
    padding: 22px 0 0;
    border-top: 1px solid rgba(5, 5, 5, .12);
    color: rgba(5, 5, 5, .64);
    font-size: 14px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.terry-blog-pagination {
    margin: 42px 0 0;
}

.terry-blog-empty {
    min-height: 260px;
    display: grid;
    place-content: center;
    text-align: center;
}

@media (max-width: 1024px) {
    .terry-blog-hero {
        padding-right: 32px;
        padding-left: 32px;
    }

    .terry-blog-listing {
        padding-right: 32px;
        padding-left: 32px;
    }

    .terry-blog-featured__link {
        grid-template-columns: 1fr;
    }

    .terry-blog-featured__media {
        aspect-ratio: 16 / 10;
    }

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

@media (max-width: 768px) {
    .terry-blog-hero {
        padding: 108px 20px 30px;
    }

    .terry-blog-hero__inner {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .terry-blog-hero__copy {
        max-width: 620px;
    }

    .terry-blog-hero__title {
        font-size: clamp(48px, 14vw, 76px);
    }

    .terry-blog-listing {
        padding: 28px 20px 62px;
    }

    .terry-blog-featured__copy {
        padding: 22px 0 0;
        background: #fff;
    }

    .terry-blog-featured__link {
        background: #fff;
    }

    .terry-blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .terry-blog-hero {
        padding: 96px 20px 24px;
    }

    .terry-blog-hero__title {
        font-size: clamp(42px, 15vw, 58px);
        line-height: .9;
    }

    .terry-blog-featured__media {
        aspect-ratio: 4 / 5;
    }

    .terry-blog-featured__title {
        font-size: clamp(36px, 12vw, 48px);
    }

    .terry-blog-card__media {
        aspect-ratio: 4 / 5;
    }

    .terry-blog-card__title {
        font-size: 34px;
    }
}

/* Performance and scroll smoothness pass */
@supports not (overflow: clip) {
    .terry-editorial-lookbook {
        overflow: hidden;
    }
}

.featured-drop,
.terry-lookbook,
.home-editorial,
.tlb-look,
.tlb-intro,
.tlb-details,
.tlb-magazine,
.tlb-shop-looks,
.tlb-story,
.tlb-final-cta,
.terry-blog-listing,
.terry-footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
}

.home-hero,
.tlb-hero,
.terry-archive-hero,
.terry-blog-hero {
    contain: layout paint;
}

.terry-product-image,
.home-product-image,
.terry-lookbook__slide,
.terry-featured-categories__slide,
.tlb-look__image,
.terry-blog-featured__media,
.terry-blog-card__media {
    contain: layout paint;
}

.terry-product-main-image,
.terry-product-hover-image,
.terry-lookbook__slide img,
.hero-mobile-slide__img,
.tlb-look__image img,
.terry-blog-featured__image,
.terry-blog-card__image {
    backface-visibility: hidden;
    transform: translateZ(0);
}

@media (max-width: 900px) {
    .featured-drop,
    .terry-lookbook,
    .home-editorial,
    .tlb-look,
    .tlb-intro,
    .tlb-details,
    .tlb-magazine,
    .tlb-shop-looks,
    .tlb-story,
    .tlb-final-cta,
    .terry-blog-listing,
    .terry-footer {
        contain-intrinsic-size: 1px 760px;
    }
}
