:root {
    --font-main: "Barlow", Arial, sans-serif;
    --ink: #1a1a1a;
    --muted: #6f6f6f;
    --line: #e8e4df;
    --soft: #f7f4f1;
    --paper: #fff;
    --accent: #d94f73;
    --accent-ink: #fff;
    --radius: 6px;
    --container: 1440px;
    --gutter: clamp(18px, 4vw, 48px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.drawer-open { overflow: hidden; }
[hidden],
.drawer-backdrop[hidden],
.drawer-panel[hidden],
.quick-view-modal[hidden],
.product-search-panel[hidden] {
    display: none !important;
}
body.lifeyo-theme {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.announcement {
    overflow: hidden;
    background: #1a1a1a;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .02em;
    white-space: nowrap;
}
.announcement__track {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    min-width: 200%;
    padding: 9px 0;
    animation: lifeyo-marquee 35s linear infinite;
}
.announcement i {
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
}
@keyframes lifeyo-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(246, 246, 246, .98);
    border-bottom: 1px solid rgba(26, 26, 26, .08);
}
.site-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 26px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 24px var(--gutter);
}
.brand {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    letter-spacing: .01em;
    white-space: nowrap;
}
.custom-logo { max-height: 58px; width: auto; }
.brand__logo {
    width: auto;
    max-width: min(230px, 42vw);
    max-height: 64px;
}
.primary-nav ul,
.mobile-menu ul,
.site-footer ul {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.primary-nav a {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}
.primary-nav li { position: relative; }
.primary-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    min-width: 230px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .09);
}
.primary-nav li:hover > .sub-menu { display: grid; gap: 10px; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-actions__link,
.icon-button {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    color: var(--ink);
    position: relative;
}
.header-actions__link {
    border: 0;
    cursor: pointer;
}
.header-actions svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.header-actions span {
    position: absolute;
    top: 3px;
    right: 1px;
    display: grid;
    place-items: center;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: #1a1a1a;
    color: #fff;
    font-size: 11px;
}
.menu-toggle { display: none; }
.menu-toggle span:not(.screen-reader-text) {
    display: block;
    width: 22px;
    height: 2px;
    margin: 3px 0;
    background: currentColor;
}
.mobile-menu ul {
    display: grid;
    align-items: start;
    gap: 12px;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
}
.drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(0, 0, 0, .36);
    opacity: 0;
    transition: opacity .22s ease;
}
.drawer-backdrop.is-open { opacity: 1; }
.drawer-panel {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 90;
    width: min(420px, calc(100vw - 28px));
    overflow-y: auto;
    background: #fff;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .18);
    transition: transform .22s ease;
}
.drawer-panel--left {
    left: 0;
    transform: translateX(-104%);
}
.drawer-panel--right {
    right: 0;
    transform: translateX(104%);
}
.drawer-panel.is-open { transform: translateX(0); }
.drawer-panel__head,
.cart-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px;
    border-bottom: 1px solid var(--line);
}
.drawer-close {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    color: #1a1a1a;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}
.mobile-menu {
    padding: 0 22px 24px;
}
.mobile-menu .drawer-panel__head {
    margin: 0 -22px 24px;
}

.section {
    max-width: var(--container);
    margin: 0 auto;
    padding: clamp(42px, 6vw, 88px) var(--gutter);
}
.section--full {
    max-width: none;
    padding-inline: var(--gutter);
}
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}
.section-header h2,
.page-hero h1,
.shop-hero h1 {
    margin: 0;
    font-size: clamp(30px, 4vw, 56px);
    line-height: 1.05;
    font-weight: 800;
}
.section-header a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.home-hero {
    position: relative;
    min-height: clamp(460px, 72vw, 760px);
    overflow: hidden;
    background: #202020;
}
.home-hero a,
.home-hero img {
    width: 100%;
    min-height: inherit;
}
.home-hero img {
    object-fit: cover;
    filter: saturate(.98);
}
.home-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .22), rgba(0, 0, 0, .08) 48%, rgba(0, 0, 0, .28));
    pointer-events: none;
}
.home-hero__copy {
    position: absolute;
    z-index: 1;
    left: 50%;
    bottom: 44px;
    width: min(760px, calc(100% - 40px));
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
}
.home-hero__copy p {
    margin: 0 0 10px;
    font-weight: 800;
    text-transform: uppercase;
}
.home-hero__copy h1 {
    margin: 0 0 20px;
    font-size: clamp(38px, 6vw, 78px);
    line-height: .98;
    font-weight: 800;
}
.home-hero__copy span,
.button,
.single_add_to_cart_button,
.checkout-button,
.woocommerce button.button,
.woocommerce a.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 24px;
    border: 1px solid #1a1a1a;
    border-radius: var(--radius);
    background: #1a1a1a;
    color: #fff;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
}
.button--secondary { background: #fff; color: #1a1a1a; }
.button--ghost { background: transparent; color: #1a1a1a; }

.category-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(160px, 1fr);
    gap: clamp(12px, 2vw, 24px);
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
}
.category-strip::-webkit-scrollbar { display: none; }
.category-card {
    position: relative;
    min-width: 160px;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--soft);
}
.category-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform .25s ease;
}
.category-card:hover img { transform: scale(1.045); }
.category-card strong {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 54px;
    padding: 10px;
    text-align: center;
    font-size: 13px;
    line-height: 1.2;
    text-transform: uppercase;
}
.category-card span {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
}

.featured-product,
.single-product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: clamp(28px, 5vw, 76px);
    align-items: start;
}
.featured-product__media img,
.single-gallery__main img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius);
    background: var(--soft);
}
.featured-product__info,
.single-summary {
    position: sticky;
    top: 118px;
    display: grid;
    gap: 18px;
}
.featured-product h2,
.single-summary h1 {
    margin: 0;
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1.05;
    font-weight: 800;
}
.price-lg {
    font-size: 20px;
    font-weight: 700;
}
.price-lg del,
.product-card__price del { color: var(--muted); }
.price-lg ins,
.product-card__price ins { text-decoration: none; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(18px, 2.5vw, 32px);
}
.product-card { min-width: 0; }
.product-card__media {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--soft);
}
.product-card__media img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform .22s ease;
}
.product-card:hover img { transform: scale(1.04); }
.product-card__badge,
.single-summary__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(0,0,0,.1);
    font-size: 12px;
    font-weight: 800;
}
.single-summary__badge {
    position: static;
    justify-self: start;
}
.product-card__body {
    display: grid;
    gap: 6px;
    padding-top: 12px;
}
.product-card h3 {
    margin: 0;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 800;
}
.product-card__price {
    color: var(--muted);
    font-weight: 600;
}
.product-card__colors,
.single-summary__colors {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
}
.product-card__colors span,
.single-summary__colors span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}
.product-card__colors i,
.single-summary__colors i,
.variation-choice i {
    display: block;
    width: 16px;
    height: 16px;
    border: 1px solid rgba(26, 26, 26, .22);
    border-radius: 50%;
    background: var(--swatch);
}
.product-card__colors em,
.single-summary__colors em {
    font-style: normal;
}
.quick-add {
    opacity: 0;
    justify-self: start;
    margin-top: 4px;
    padding: 9px 14px;
    border-radius: var(--radius);
    background: #1a1a1a;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    transition: opacity .18s ease;
    border: 0;
    cursor: pointer;
}
.product-card:hover .quick-add { opacity: 1; }

.editorial-band {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    margin-bottom: 48px;
    background: var(--soft);
}
.editorial-band h2 {
    margin: 0 0 8px;
    font-size: clamp(26px, 3vw, 44px);
    line-height: 1.08;
}
.editorial-band p { margin: 0; max-width: 680px; color: var(--muted); }

.shop-hero {
    --shop-hero-inset: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    max-width: none;
    padding: 0;
    background: var(--soft);
}
.shop-hero > * {
    padding-block: clamp(42px, 6vw, 88px);
}
.shop-hero > :first-child {
    margin-left: var(--shop-hero-inset);
}
.shop-hero > :last-child {
    margin-right: var(--shop-hero-inset);
}
.shop-hero span {
    font-weight: 800;
    text-transform: uppercase;
}
.shop-hero p {
    max-width: 680px;
    margin: 12px 0 0;
    color: var(--muted);
}
.shop-hero__meta {
    display: grid;
    gap: 12px;
    min-width: 240px;
}
.woocommerce-ordering select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}
.shop-layout {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 36px;
}
.shop-filter {
    border-right: 1px solid var(--line);
    padding-right: 24px;
}
.shop-filter h2 { margin: 0 0 16px; font-size: 18px; }
.shop-filter ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-weight: 700;
    text-transform: uppercase;
}
.woocommerce-pagination {
    margin-top: 42px;
    text-align: center;
}
.page-numbers {
    display: inline-flex;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.page-numbers a,
.page-numbers span {
    display: grid;
    place-items: center;
    min-width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 50%;
}
.page-numbers .current {
    background: #1a1a1a;
    color: #fff;
}

.single-gallery__thumbs {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    overflow-x: auto;
}
.single-gallery__thumbs img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: 4px;
    cursor: pointer;
}
.single-gallery__note { color: var(--muted); font-size: 14px; }
.variant-row {
    display: flex;
    gap: 8px;
    color: var(--muted);
}
.variant-row strong { color: var(--ink); }
.single-summary__cart form.cart {
    display: grid;
    gap: 14px;
}
.lifeyo-variations,
.quick-view-form {
    display: grid;
    gap: 16px;
}
.lifeyo-variation {
    display: grid;
    gap: 10px;
}
.lifeyo-variation__label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
}
.lifeyo-variation__label strong {
    color: var(--ink);
}
.lifeyo-variation__native {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}
.lifeyo-variation__options {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}
.variation-choice {
    min-height: 42px;
    padding: 9px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink);
    font-weight: 800;
    cursor: pointer;
}
.variation-choice.is-selected {
    border-color: #1a1a1a;
    box-shadow: 0 0 0 1px #1a1a1a;
}
.lifeyo-variation__options.is-color .variation-choice {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 46px;
    padding-inline: 11px;
}
.woocommerce-variation-add-to-cart {
    display: grid;
    gap: 14px;
}
.quantity {
    display: inline-flex;
    width: 120px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
.quantity input {
    width: 100%;
    min-height: 46px;
    border: 0;
    text-align: center;
}
.single_add_to_cart_button { width: 100%; }
.single-summary__short { color: var(--muted); }
.product-accordions {
    border-top: 1px solid var(--line);
}
.product-accordions details {
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
}
.product-accordions summary {
    cursor: pointer;
    font-weight: 800;
}
.product-accordions p { color: var(--muted); }
.product-description {
    max-width: 920px;
    color: var(--muted);
}
.related.products {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter) 72px;
}
.related.products h2 {
    font-size: clamp(28px, 3vw, 44px);
}

.page-hero {
    max-width: none;
    background: var(--soft);
    text-align: center;
}
.page-hero > * {
    max-width: var(--container);
    margin-inline: auto;
}
.page-content,
.article__content {
    max-width: 860px;
    font-size: 18px;
}
.article__header {
    max-width: 860px;
    margin: 0 auto 28px;
    text-align: center;
}
.article__header span {
    font-weight: 800;
    text-transform: uppercase;
}
.article__header h1 {
    margin: 10px 0;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1;
}
.article__image {
    width: min(100%, 1080px);
    margin: 0 auto 34px;
    border-radius: var(--radius);
}
.article__content { margin-inline: auto; }
.post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}
.post-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}
.post-card img {
    width: 100%;
    aspect-ratio: 1.1;
    object-fit: cover;
}
.post-card div { padding: 18px; }
.post-card span {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}
.post-card h2 {
    margin: 6px 0;
    font-size: 22px;
}

.cart-drawer__content {
    min-height: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
}
.cart-drawer__head h2 { margin: 0; }
.cart-drawer__items {
    display: grid;
    align-content: start;
    gap: 16px;
    padding: 20px;
}
.cart-line {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 14px;
}
.cart-line img {
    width: 74px;
    height: 74px;
    object-fit: cover;
    border-radius: var(--radius);
    background: var(--soft);
}
.cart-line div {
    display: grid;
    gap: 4px;
}
.cart-line span {
    color: var(--muted);
    font-size: 14px;
}
.cart-drawer__foot {
    display: grid;
    gap: 10px;
    padding: 20px;
    border-top: 1px solid var(--line);
}
.cart-drawer__foot div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}
.cart-drawer__empty {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 18px;
    min-height: 460px;
    padding: 24px;
    text-align: center;
}
.quick-view-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(0, 0, 0, .42);
    opacity: 0;
    transition: opacity .18s ease;
}
.quick-view-modal.is-open { opacity: 1; }
.quick-view-modal__dialog {
    position: relative;
    width: min(920px, 100%);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    border-radius: var(--radius);
    background: #fff;
    transform: translateY(20px);
    transition: transform .18s ease;
}
.quick-view-modal.is-open .quick-view-modal__dialog { transform: translateY(0); }
.quick-view-close {
    position: absolute;
    z-index: 2;
    top: 14px;
    right: 14px;
}
.quick-view-product {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .9fr);
    gap: 28px;
    padding: 28px;
}
.quick-view-product__media img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius);
    background: var(--soft);
}
.quick-view-product__info h2 {
    margin: 0;
    padding-right: 40px;
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1.06;
}
.quick-view-product__info p {
    margin: 0;
    color: var(--muted);
}
.quick-view-product__actions {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 10px;
}
.quick-view-product__actions input {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-align: center;
}
.quick-view-product__link {
    justify-self: start;
    color: var(--muted);
    font-weight: 700;
}

.woocommerce-cart .page-content,
.woocommerce-checkout .page-content {
    max-width: none;
    padding-top: clamp(34px, 5vw, 70px);
}
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
    max-width: 1280px;
    margin: 0 auto;
}
.woocommerce-notices-wrapper {
    grid-column: 1 / -1;
}
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    margin: 0 0 18px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink);
    list-style: none;
}
.woocommerce-message:empty,
.woocommerce-notices-wrapper:empty {
    display: none;
}
.woocommerce-cart .woocommerce {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 420px);
    gap: clamp(24px, 4vw, 48px);
    align-items: start;
}
.woocommerce-cart-form {
    min-width: 0;
    padding: clamp(18px, 3vw, 28px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}
.woocommerce-cart-form .shop_table,
.cart_totals .shop_table,
.woocommerce-checkout-review-order-table {
    width: 100%;
    border-collapse: collapse;
}
.woocommerce-cart-form th,
.woocommerce-cart-form td,
.cart_totals th,
.cart_totals td,
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    padding: 16px 12px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: middle;
}
.woocommerce-cart-form thead th,
.woocommerce-checkout-review-order-table thead th {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}
.woocommerce-cart-form .product-thumbnail img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: var(--radius);
    background: var(--soft);
}
.woocommerce-cart-form .product-name a,
.woocommerce-checkout-review-order-table .product-name {
    font-weight: 800;
}
.woocommerce-cart-form .product-remove a {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--muted);
    font-size: 22px;
    line-height: 1;
}
.woocommerce-cart-form .quantity {
    width: 92px;
}
.woocommerce-cart-form .actions {
    padding-top: 24px;
}
.woocommerce-cart-form .coupon {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto;
    gap: 10px;
    max-width: 520px;
}
.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select,
.select2-container--default .select2-selection--single {
    min-height: 48px;
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink);
    padding: 10px 13px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 28px;
}
.cart-collaterals,
.woocommerce-checkout-review-order {
    min-width: 0;
}
.cart_totals,
.woocommerce-checkout-review-order {
    padding: clamp(22px, 3vw, 32px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
    box-shadow: 0 20px 50px rgba(26, 26, 26, .06);
}
.cart_totals {
    position: sticky;
    top: 120px;
}
.cart_totals h2 {
    margin: 0 0 16px;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.1;
}
.cart_totals .order-total th,
.cart_totals .order-total td,
.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
    font-size: 20px;
    font-weight: 800;
}
.wc-proceed-to-checkout {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}
.wc-proceed-to-checkout .checkout-button,
#place_order {
    width: 100%;
    min-height: 56px;
    font-size: 16px;
}
.woocommerce-checkout form.checkout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
    gap: clamp(24px, 4vw, 48px);
    align-items: start;
}
.woocommerce-checkout #customer_details {
    min-width: 0;
    padding: clamp(20px, 3vw, 32px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}
.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
    width: 100%;
    float: none;
}
.woocommerce-checkout #customer_details .col-2 {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}
.woocommerce-checkout h3 {
    margin: 0 0 18px;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.1;
}
.woocommerce form .form-row {
    margin: 0 0 16px;
    padding: 0;
}
.woocommerce form .form-row label {
    display: block;
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}
.woocommerce-checkout #order_review_heading {
    display: none;
}
.woocommerce-checkout-review-order {
    position: sticky;
    top: 120px;
}
.woocommerce-checkout-review-order-table td,
.woocommerce-checkout-review-order-table th {
    padding-inline: 0;
}
.woocommerce-checkout-payment {
    margin-top: 22px;
}
.woocommerce-checkout-payment ul {
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
}
.woocommerce-checkout-payment li {
    padding: 14px 0;
    border-top: 1px solid var(--line);
}
.woocommerce-privacy-policy-text {
    color: var(--muted);
    font-size: 13px;
}
.wc-empty-cart-message,
.woocommerce .cart-empty {
    padding: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
    text-align: center;
    font-size: 22px;
    font-weight: 800;
}

.woocommerce-account .page-content,
.woocommerce-order-received .page-content {
    max-width: none;
}
.woocommerce-account .woocommerce {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: clamp(24px, 4vw, 48px);
    max-width: 1280px;
    margin: 0 auto;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.woocommerce-account .woocommerce-MyAccount-navigation a {
    display: block;
    padding: 12px 14px;
    border-radius: var(--radius);
    font-weight: 800;
}
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
    background: #fff;
    box-shadow: 0 10px 24px rgba(26, 26, 26, .06);
}
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-order {
    max-width: 1280px;
    min-width: 0;
    margin: 0 auto;
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 20px 50px rgba(26, 26, 26, .05);
}
.woocommerce-account .woocommerce > .woocommerce-form-login,
.woocommerce-account .woocommerce > .woocommerce-form-register {
    grid-column: 1 / -1;
    width: min(560px, 100%);
    margin: 0 auto;
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 20px 50px rgba(26, 26, 26, .05);
}
.woocommerce-account table,
.woocommerce-order table {
    width: 100%;
    border-collapse: collapse;
}
.woocommerce-account th,
.woocommerce-account td,
.woocommerce-order th,
.woocommerce-order td {
    padding: 14px 10px;
    border-bottom: 1px solid var(--line);
    text-align: left;
}
.woocommerce-account address,
.woocommerce-customer-details address {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
    font-style: normal;
}
.woocommerce-thankyou-order-received {
    margin: 0 0 22px;
    padding: 22px;
    border-radius: var(--radius);
    background: #eaf8ef;
    color: #174d2a;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
}
.woocommerce-thankyou-order-details {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}
.woocommerce-thankyou-order-details li {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}
.woocommerce-thankyou-order-details strong {
    display: block;
    margin-top: 6px;
    color: var(--ink);
    font-size: 16px;
    text-transform: none;
}

.product-search-panel {
    position: fixed;
    inset: 0;
    z-index: 110;
    background: rgba(0, 0, 0, .28);
    opacity: 0;
    transition: opacity .2s ease;
}
.product-search-panel.is-open { opacity: 1; }
.product-search-panel__inner {
    position: absolute;
    top: 0;
    right: 0;
    width: min(560px, calc(100vw - 24px));
    height: 100%;
    padding: 26px;
    background: #fff;
    box-shadow: -20px 0 70px rgba(0, 0, 0, .18);
    transform: translateX(104%);
    transition: transform .22s ease;
}
.product-search-panel.is-open .product-search-panel__inner {
    transform: translateX(0);
}
.product-search-form input {
    width: 100%;
    min-height: 56px;
    padding: 14px 52px 14px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: 18px;
    font-weight: 700;
}
.product-search-close {
    position: absolute;
    top: 34px;
    right: 36px;
}
.product-search-results {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}
.product-search-item {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 14px;
    align-items: center;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}
.product-search-item img {
    width: 76px;
    height: 76px;
    object-fit: cover;
    border-radius: var(--radius);
    background: var(--soft);
}
.product-search-item span {
    display: grid;
    gap: 3px;
}
.product-search-item em {
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
}
.product-search-results__empty {
    color: var(--muted);
    font-weight: 700;
}

.site-footer {
    background: #1a1a1a;
    color: #fff;
}
.site-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr 1fr;
    gap: 36px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 58px var(--gutter);
}
.site-footer h2,
.site-footer h3 { margin: 0 0 14px; }
.site-footer p { color: rgba(255,255,255,.72); }
.site-footer ul {
    display: grid;
    gap: 9px;
    align-items: start;
}
.newsletter-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}
.newsletter-form input {
    min-width: 0;
    padding: 13px 14px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: var(--radius);
    background: transparent;
    color: #fff;
}
.newsletter-form button {
    border: 1px solid #fff;
    border-radius: var(--radius);
    background: #fff;
    color: #1a1a1a;
    font-weight: 800;
}
.newsletter-form .cf-turnstile,
.newsletter-form__message {
    grid-column: 1 / -1;
}
.newsletter-form__message {
    margin: 4px 0 0;
    color: #c8f5d0;
    font-size: 13px;
    font-weight: 700;
}
.newsletter-form__message.is-error {
    color: #ffd3d3;
}
.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    max-width: var(--container);
    margin: 0 auto;
    padding: 18px var(--gutter);
    border-top: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.7);
}

@media (max-width: 1100px) {
    .primary-nav { display: none; }
    .menu-toggle { display: inline-grid; }
    .site-header__inner { grid-template-columns: auto 1fr auto; padding-block: 16px; }
    .brand { justify-self: center; }
    .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .featured-product,
    .single-product-layout,
    .shop-layout { grid-template-columns: 1fr; }
    .featured-product__info,
    .single-summary { position: static; }
    .shop-filter { border-right: 0; padding-right: 0; }
}

@media (max-width: 760px) {
    .section { padding-block: 38px; }
    .site-header__inner { gap: 10px; }
    .brand { font-size: 22px; }
    .header-actions__link:first-child { display: inline-grid; }
    .home-hero { min-height: 520px; }
    .home-hero__copy { bottom: 28px; }
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 12px; }
    .quick-add { opacity: 1; }
    .featured-product,
    .single-product-layout { gap: 22px; }
    .shop-hero,
    .editorial-band,
    .site-footer__bottom { display: grid; }
    .shop-hero {
        gap: 0;
    }
    .shop-hero > * {
        margin-inline: var(--shop-hero-inset);
    }
    .shop-hero > :last-child {
        padding-top: 0;
    }
    .site-footer__grid,
    .post-grid { grid-template-columns: 1fr; }
    .newsletter-form { grid-template-columns: 1fr; }
    .quick-view-product { grid-template-columns: 1fr; padding: 18px; }
    .quick-view-modal { padding: 10px; }
    .quick-view-product__actions { grid-template-columns: 1fr; }
    .woocommerce-cart .woocommerce,
    .woocommerce-checkout form.checkout,
    .woocommerce-account .woocommerce {
        grid-template-columns: 1fr;
    }
    .cart_totals,
    .woocommerce-checkout-review-order {
        position: static;
    }
    .woocommerce-cart-form {
        overflow-x: auto;
    }
    .woocommerce-cart-form .coupon {
        grid-template-columns: 1fr;
    }
    .woocommerce-thankyou-order-details {
        grid-template-columns: 1fr;
    }
    .product-search-panel__inner {
        width: 100%;
        padding: 18px;
    }
    .product-search-close {
        top: 26px;
        right: 28px;
    }
}
