/*
Theme Name: TEEMCW Atelier
Version: 4.2.2
Text Domain: teemcw
*/

:root {
    --brand-ink: #171512;
    --brand-bone: #f6f1e8;
    --brand-paper: #fffdfc;
    --brand-canvas: #ddd3c5;
    --brand-clay: #8b5f47;
    --brand-olive: #565c4f;
    --brand-on-ink: #fffdfc;
    --ink: var(--brand-ink);
    --text: #494640;
    --muted: #746e64;
    --line: #e3ddd3;
    --paper: var(--brand-paper);
    --cream: var(--brand-bone);
    --soft: #f8f5f0;
    --accent: var(--brand-clay);
    --font-display: "Newsreader", Georgia, serif;
    --font-body: "DM Sans", Arial, sans-serif;
    --radius: 10px;
    --shadow: 0 18px 45px rgba(25, 19, 15, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--text);
    background: var(--paper);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, h4 { color: var(--ink); font-family: var(--font-display); font-weight: 500; letter-spacing: -.035em; }
h1, h2, h3, p { margin-top: 0; }
.wrap { width: min(1410px, calc(100% - 60px)); margin-inline: auto; }
.milano-fluid { width: 100%; padding-inline: 30px; }
.milano-container { width: min(1200px, calc(100% - 30px)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 1500; padding: 11px 18px; background: var(--brand-paper); color: var(--brand-ink); }
.skip-link:focus { top: 16px; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
:focus-visible { outline: 2px solid var(--brand-clay); outline-offset: 4px; }

/* Announcement and navigation */
.announce {
    position: relative;
    z-index: 930;
    height: 40px;
    background: var(--brand-ink);
    color: var(--brand-on-ink);
    font-size: 12px;
}
.announce-inner { height: 100%; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.announce-left, .announce-right { display: flex; align-items: center; gap: 20px; }
.announce-right { justify-self: end; }
.announce p { margin: 0; letter-spacing: .01em; transition: opacity .2s, transform .2s; }
.announce p.fade { opacity: 0; transform: translateY(-3px); }
.announce a { text-decoration: underline; text-underline-offset: 3px; }
.announce [data-announcement-link] { margin-left: 4px; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 22px; height: 22px; border: 1px solid #555; border-radius: 50%; display: grid; place-items: center; font-size: 10px; text-decoration: none; }
.social-links svg { width: 11px; height: 11px; }
.social-links a:first-child svg { fill: currentColor; }
.social-links a:last-child svg { fill: none; stroke: currentColor; stroke-width: 1.8; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 920;
    height: 70px;
    background: rgba(255, 253, 252, .96);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    backdrop-filter: blur(16px);
}
.header-inner { height: 100%; display: grid; grid-template-columns: 210px 1fr 210px; align-items: center; }
.brand, .footer-brand {
    display: inline-flex;
    align-items: center;
    width: max-content;
}
.brand img { width: 154px; height: auto; }
.footer-brand img { width: 190px; height: auto; }
.brand { min-height: 44px; }
.footer-brand { min-height: 44px; padding-block: 3px; }
.main-nav { display: flex; justify-content: center; gap: 32px; color: var(--ink); font-size: 14px; font-weight: 600; }
.main-nav a { position: relative; padding: 23px 0; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 16px; height: 1px; background: var(--brand-ink); transition: right .32s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.header-tools { justify-self: end; display: flex; align-items: center; gap: 13px; }
.icon-btn { position: relative; width: 40px; height: 40px; display: grid; place-items: center; border: 0; background: transparent; padding: 0; color: var(--brand-ink); cursor: pointer; }
.icon-btn svg { display: block; width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.icon-btn > span, .cart-link > span { position: absolute; right: -4px; top: -4px; min-width: 16px; height: 16px; padding: 0 4px; border-radius: 12px; display: grid; place-items: center; background: #111; color: #fff; font-size: 9px; }
.menu-toggle { display: none; }
.menu-toggle span { display: block; width: 22px; height: 1.5px; margin: 5px 0; background: var(--brand-ink); }

.search-panel {
    position: fixed;
    left: 0;
    right: 0;
    top: 70px;
    z-index: 910;
    padding: 42px 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(-100% - 80px));
    transition: opacity .28s ease, transform .38s ease, visibility 0s linear .38s;
}
.search-panel.open { visibility: visible; opacity: 1; pointer-events: auto; transform: none; transition-delay: 0s; }
.search-panel .wrap { position: relative; }
.search-panel form { width: min(760px, 90%); margin: auto; }
.search-panel label { display: block; margin-bottom: 12px; color: var(--ink); font-size: 25px; font-weight: 600; }
.search-panel form div { display: flex; border-bottom: 1px solid #111; }
.search-panel input { flex: 1; min-width: 0; padding: 13px 0; border: 0; outline: 0; font-size: 17px; }
.search-panel form button, .search-close { border: 0; background: transparent; color: #111; cursor: pointer; }
.search-close { position: absolute; right: 0; top: 0; font-size: 30px; }
.menu-backdrop { position: fixed; inset: 0; z-index: 900; background: rgba(0, 0, 0, .45); opacity: 0; visibility: hidden; transition: .3s; }

/* Category editorial */
.milano-categories { padding-top: 0; margin-bottom: 78px; }
.milano-category-grid { height: 700px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.milano-category-card, .milano-banner-card, .milano-community a { position: relative; overflow: hidden; border-radius: var(--radius); color: #fff; background: #c8b7a8; isolation: isolate; }
.milano-category-card img, .milano-banner-card img, .milano-community img { width: 100%; height: 100%; object-fit: cover; transition: transform .75s cubic-bezier(.2, .75, .2, 1), filter .45s ease; }
.milano-category-card:nth-child(1) img { object-position: 53% center; }
.milano-category-card:nth-child(2) img { object-position: 50% center; }
.milano-category-card:nth-child(3) img { object-position: 53% center; }
.milano-category-card:nth-child(4) img { object-position: 52% center; }
.milano-card-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(10, 8, 7, .02) 34%, rgba(10, 8, 7, .76) 100%); transition: background .4s ease; }
.milano-category-content { position: absolute; z-index: 2; left: 30px; right: 30px; bottom: 26px; transition: transform .4s ease; }
.milano-category-content strong { display: block; color: #fff; font-size: 21px; font-weight: 600; letter-spacing: -.02em; }
.milano-category-content sup { margin-left: 4px; font-size: 11px; opacity: .8; }
.milano-category-content small { display: block; max-width: 280px; margin-top: 6px; color: rgba(255, 255, 255, .73); font-size: 13px; line-height: 1.5; }
.milano-category-link { display: inline-flex; gap: 8px; align-items: center; margin-top: 17px; color: #fff; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; opacity: 0; transform: translateY(8px); transition: opacity .35s ease, transform .35s ease; }
.milano-category-link b { font-size: 17px; font-weight: 400; transition: transform .3s ease; }
.milano-category-card:hover img, .milano-category-card:focus-visible img, .milano-banner-card:hover img, .milano-banner-card:focus-visible img, .milano-community a:hover img, .milano-community a:focus-visible img { transform: scale(1.04); }
.milano-category-card:hover .milano-category-content, .milano-category-card:focus-visible .milano-category-content { transform: translateY(-4px); }
.milano-category-card:hover .milano-category-link, .milano-category-card:focus-visible .milano-category-link { opacity: 1; transform: none; }
.milano-category-card:hover .milano-category-link b { transform: translateX(3px); }

/* Section headings */
.milano-heading { display: flex; flex-direction: column; gap: 10px; max-width: 680px; margin: 0 auto 30px; text-align: center; }
.milano-heading > span, .milano-feature-card > span { color: var(--accent); font-size: 10px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.milano-heading h2 { margin: 0; font-size: 34px; line-height: 1.21; }
.milano-heading p { margin: 0; color: var(--text); }

/* WooCommerce product grids and homepage carousels */
.woocommerce ul.products, .woocommerce-page ul.products { display: grid !important; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 36px 20px; margin: 0 !important; }
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none !important; }
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product { float: none !important; width: auto !important; margin: 0 !important; position: relative; }
.woocommerce ul.products li.product > a:first-of-type { display: block; overflow: hidden; }
.woocommerce ul.products li.product a img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    box-sizing: border-box;
    margin: 0 0 17px !important;
    padding: 7%;
    border-radius: var(--radius);
    background: #f5f3ef;
    transition: transform .45s ease, filter .4s ease, background .4s ease;
}
.woocommerce ul.products li.product h2 { margin: 0 0 6px !important; padding: 0 !important; color: var(--ink); font-family: var(--font-body); font-size: 15px !important; line-height: 1.45; font-weight: 600; letter-spacing: -.02em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.woocommerce ul.products li.product .price { color: #222 !important; font-size: 14px !important; font-weight: 600 !important; }
.woocommerce ul.products li.product .star-rating { margin-top: 7px; }
.woocommerce ul.products li.product .button { position: absolute; z-index: 4; left: 12px; right: 12px; top: calc(100% - 117px); margin: 0 !important; padding: 13px !important; border-radius: 28px !important; background: #111 !important; color: #fff !important; text-align: center; opacity: 0; transform: translateY(10px); transition: opacity .3s ease, transform .3s ease, background .25s ease; }
.woocommerce ul.products li.product:hover .button, .woocommerce ul.products li.product:focus-within .button { opacity: 1; transform: none; }
.woocommerce ul.products li.product:hover a img, .woocommerce ul.products li.product:focus-within a img { background: #f1eee9; filter: brightness(.985); transform: scale(1.012); }
.product-wish { position: absolute; z-index: 5; right: 13px; top: 13px; width: 36px; height: 36px; display: grid; place-items: center; padding: 0; border: 0; border-radius: 50%; background: #fff; box-shadow: 0 5px 20px rgba(0, 0, 0, .08); color: #111; font-size: 20px; cursor: pointer; opacity: 0; transform: translateY(-5px); transition: opacity .3s, transform .3s, color .25s; }
.product-wish.saved { color: #9b3d3b; }
.woocommerce ul.products li.product:hover .product-wish, .woocommerce ul.products li.product:focus-within .product-wish, .product-wish.saved { opacity: 1; transform: none; }
.milano-products { padding-block: 15px; margin-bottom: 61px; }
.milano-products.popular-products { margin-bottom: 75px; }
.slider-shell { position: relative; }
.milano-products .product-slider .woocommerce ul.products.products { display: flex !important; flex-wrap: nowrap !important; gap: 20px !important; overflow-x: auto !important; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; }
.milano-products .product-slider .woocommerce ul.products.products::-webkit-scrollbar { display: none; }
.milano-products .product-slider .woocommerce ul.products.products li.product { flex: 0 0 calc((100% - 60px) / 4) !important; min-width: 0; scroll-snap-align: start; }
.milano-products .woocommerce ul.products li.product h2, .milano-products .woocommerce ul.products li.product .price { display: block; text-align: center; }
.milano-products .woocommerce ul.products li.product .star-rating { margin: 7px auto; }
.slide-arrow { position: absolute; z-index: 6; top: 41%; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: #fff; box-shadow: 0 5px 24px rgba(0, 0, 0, .08); color: #111; font-size: 28px; line-height: 1; cursor: pointer; transition: background .25s, color .25s, opacity .25s, transform .25s; }
.slide-arrow:hover, .slide-arrow:focus-visible { background: #111; color: #fff; transform: scale(1.04); }
.slide-arrow:disabled { opacity: .32; cursor: default; transform: none; }
.slide-arrow.prev { left: -21px; }
.slide-arrow.next { right: -21px; }

/* Campaign banners */
.milano-banners { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; padding-block: 15px; margin-bottom: 65px; }
.milano-banner-card { aspect-ratio: 1.19557; }
.milano-banner-card .milano-card-overlay { background: linear-gradient(90deg, rgba(8, 7, 6, .55) 0%, rgba(8, 7, 6, .10) 72%), linear-gradient(0deg, rgba(8, 7, 6, .45), transparent 60%); }
.milano-banner-card > span:last-child { position: absolute; z-index: 2; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 45px; }
.milano-banner-card small { color: rgba(255, 255, 255, .82); font-size: 11px; font-weight: 600; letter-spacing: .12em; }
.milano-banner-card strong { max-width: 400px; margin: 8px 0 25px; color: #fff; font-family: var(--font-display); font-size: clamp(32px, 2.7vw, 42px); font-weight: 500; line-height: 1.08; letter-spacing: -.035em; }
.btn-white, .btn-dark { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 11px 34px; border-radius: 30px; font-style: normal; font-weight: 600; transition: color .28s ease, background .28s ease, box-shadow .28s ease, transform .28s ease; }
.btn-white { background: #fff; color: #111; }
.btn-white:hover, .btn-white:focus-visible { background: #111; color: #fff; box-shadow: 0 12px 25px rgba(0, 0, 0, .22); transform: translateY(-3px); }
.btn-dark { background: var(--brand-ink); color: var(--brand-on-ink); }
.btn-dark:hover, .btn-dark:focus-visible { background: var(--brand-clay); color: var(--brand-on-ink); box-shadow: 0 12px 25px rgba(54, 35, 25, .2); transform: translateY(-3px); }

/* Editorial hero and trust sections */
.milano-feature { position: relative; min-height: 650px; display: flex; align-items: center; margin-bottom: 78px; padding: 80px; background-position: center 45%; background-size: cover; }
.milano-feature::before, .milano-discover::before { content: ""; position: absolute; inset: 0; background: rgba(12, 9, 7, .18); }
.milano-feature-card { position: relative; z-index: 1; width: min(430px, 35%); padding: 48px; border: 1px solid rgba(255, 255, 255, .48); border-radius: var(--radius); background: rgba(255, 255, 255, .73); box-shadow: var(--shadow); backdrop-filter: blur(9px); }
.milano-feature-card h2 { margin: 10px 0 17px; font-size: 40px; line-height: 1.12; font-weight: 500; }
.milano-feature-card p { margin-bottom: 28px; color: #3e3935; font-size: 16px; }
.milano-quotes { margin-bottom: 68px; }
.quote-slider { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 42px; text-align: center; }
.quote-slider article { padding: 24px; }
.quote-slider span { color: var(--accent); font-size: 10px; font-weight: 700; letter-spacing: .13em; }
.quote-slider blockquote { margin: 22px 0 0; color: #292623; font-family: var(--font-display); font-size: 22px; line-height: 1.42; }
.milano-confidence { padding: 64px 15px 80px; background: var(--cream); }
.confidence-card { display: grid; grid-template-columns: 1fr 1fr; height: 470px; min-height: 0; overflow: hidden; border-radius: var(--radius); background: #fff; box-shadow: 0 12px 35px rgba(43, 32, 24, .05); }
.confidence-image { min-height: 0; overflow: hidden; }
.confidence-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.confidence-copy { display: flex; flex-direction: column; justify-content: center; padding: 55px; }
.confidence-copy > span { color: var(--accent); font-size: 10px; font-weight: 700; letter-spacing: .15em; }
.confidence-copy h3 { margin: 17px 0; font-size: 31px; line-height: 1.2; }
.confidence-copy p { max-width: 500px; color: #66615d; }
.button-link { align-self: flex-start; display: inline-flex; gap: 10px; align-items: center; padding-bottom: 4px; border-bottom: 1px solid #111; color: #111; font-weight: 600; }
.button-link b { font-size: 18px; font-weight: 400; transition: transform .25s; }
.button-link:hover b, .button-link:focus-visible b { transform: translateX(4px); }
.milano-discover { position: relative; min-height: 600px; display: flex; flex-direction: column; align-items: center; justify-content: center; margin-bottom: 78px; padding: 30px; background-position: center 44%; background-size: cover; color: #fff; text-align: center; }
.milano-discover::before { background: linear-gradient(90deg, rgba(12, 8, 6, .32), rgba(12, 8, 6, .16), rgba(12, 8, 6, .32)); }
.milano-discover > * { position: relative; z-index: 1; }
.milano-discover > span { font-size: 11px; font-weight: 700; letter-spacing: .16em; }
.milano-discover h2 { margin: 10px 0 29px; color: #fff; font-size: clamp(44px, 5vw, 68px); line-height: 1; text-transform: none; }

/* Community, services and marquee */
.community-heading { margin-top: 0; }
.milano-community { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 15px; padding-block: 15px; margin-bottom: 61px; }
.milano-community a { aspect-ratio: 3 / 4; }
.milano-community a::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, .66)); transition: background .35s; }
.milano-community span { position: absolute; z-index: 2; left: 20px; right: 48px; bottom: 20px; color: #fff; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: transform .3s; }
.milano-community b { position: absolute; z-index: 2; right: 16px; bottom: 15px; width: 31px; height: 31px; display: grid; place-items: center; border-radius: 50%; background: #fff; color: #111; font-size: 16px; font-weight: 400; transition: transform .3s, background .3s, color .3s; }
.milano-community a:hover span { transform: translateY(-2px); }
.milano-community a:hover b, .milano-community a:focus-visible b { transform: rotate(-22deg); background: #111; color: #fff; }
.milano-services { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 15px; padding-block: 15px; margin-bottom: 75px; }
.milano-services article { padding: 29px; border: 1px solid transparent; border-radius: var(--radius); background: var(--cream); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.milano-services article:hover { border-color: #e2dcd5; box-shadow: 0 14px 30px rgba(47, 35, 26, .08); transform: translateY(-4px); }
.service-icon { height: 45px; color: #5e4434; font-size: 32px; line-height: 1; }
.milano-services h3 { margin: 14px 0 7px; font-size: 16px; letter-spacing: -.01em; }
.milano-services p { margin: 0; color: #65605c; font-size: 14px; }
.milano-marquee { overflow: hidden; padding: 18px 0; background: #000; color: #fff; }
.marquee-track { display: flex; width: max-content; align-items: center; gap: 30px; animation: milano-marquee 32s linear infinite; }
.milano-marquee span { font-size: 38px; font-weight: 600; letter-spacing: -.03em; white-space: nowrap; }
.milano-marquee i { font-size: 25px; }
@keyframes milano-marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } }

/* Footer */
.site-footer { padding: 75px 0 25px; background: var(--brand-ink) url('assets/brand/teemcw-pattern.svg') center top / 320px 320px repeat; color: var(--brand-on-ink); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.35fr; gap: 70px; padding-bottom: 50px; }
.footer-brand { margin-bottom: 20px; color: var(--brand-on-ink); }
.footer-grid p { max-width: 330px; color: #aaa298; }
.footer-grid .footer-tagline { margin-bottom: 5px; color: var(--brand-on-ink); font-family: var(--font-display); font-size: 25px; line-height: 1.15; }
.footer-grid h3 { margin-bottom: 21px; color: var(--brand-on-ink); font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: 0; }
.footer-grid > div > a:not(.footer-brand) { display: block; margin: 9px 0; color: #999; }
.footer-grid a { transition: color .2s; }
.footer-grid a:hover, .footer-grid a:focus-visible { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding-top: 24px; border-top: 1px solid #333; color: #888; font-size: 12px; }
.footer-bottom nav { display: flex; gap: 24px; }
.footer-payments { display: flex; align-items: center; gap: 7px; }
.footer-payments__label { margin-right: 2px; color: #aaa298; font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.payment-mark { display: inline-flex; height: 30px; align-items: center; justify-content: center; overflow: hidden; border: 1px solid rgba(23, 21, 18, .12); border-radius: 5px; background: #fff; box-shadow: 0 2px 8px rgba(0, 0, 0, .12); }
.payment-mark--paypal { width: 76px; }
.payment-mark--visa { width: 62px; }
.payment-mark svg { display: block; width: 100%; height: 100%; }
.payment-mark text { font-family: Arial, Helvetica, sans-serif; font-size: 17px; font-style: italic; font-weight: 800; letter-spacing: -1px; }
.payment-mark--visa text { font-size: 21px; font-weight: 900; letter-spacing: -1.6px; }

/* Wishlist */
.wishlist-drawer { position: fixed; z-index: 1200; top: 0; right: 0; bottom: 0; width: min(430px, 92vw); padding: 50px 36px; background: #fff; box-shadow: -20px 0 60px rgba(0, 0, 0, .12); transform: translateX(105%); transition: transform .4s ease; }
.wishlist-drawer.open { transform: none; }
.wishlist-close { position: absolute; right: 25px; top: 20px; border: 0; background: transparent; font-size: 30px; cursor: pointer; }
.drawer-backdrop { position: fixed; inset: 0; z-index: 1100; background: rgba(0, 0, 0, .45); opacity: 0; visibility: hidden; transition: .3s; }
.drawer-backdrop.open { opacity: 1; visibility: visible; }
.wishlist-items { max-height: 60vh; margin: 28px 0; overflow: auto; color: var(--muted); }
.wish-row { display: grid; grid-template-columns: 64px 1fr; gap: 14px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line); color: #111; font-size: 13px; }
.wish-row img { width: 64px; height: 64px; padding: 5px; object-fit: contain; border-radius: 6px; background: var(--cream); }

/* WooCommerce, product and policy pages */
.content-shell { min-height: 45vh; padding: 42px 0 90px; }
.content-shell .woocommerce-products-header__title, .content-shell > .wrap > .woocommerce > h1 { margin-bottom: 32px; font-size: clamp(36px, 4vw, 52px); }
.woocommerce .woocommerce-breadcrumb { margin: 0 0 30px !important; color: #807b77; font-size: 13px; }
.woocommerce .woocommerce-ordering select { padding: 10px 34px 10px 13px; border: 1px solid var(--line); border-radius: 4px; background: #fff; }
.woocommerce nav.woocommerce-pagination { margin-top: 50px; }
.woocommerce nav.woocommerce-pagination ul { border: 0; }
.woocommerce nav.woocommerce-pagination ul li { margin: 0 3px; border: 0; }
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span { min-width: 40px; min-height: 40px; display: grid; place-items: center; border-radius: 50%; }
.woocommerce nav.woocommerce-pagination ul li span.current { background: #111; color: #fff; }
.woocommerce div.product { padding: 22px 0 70px; }
.woocommerce div.product .product_title { font-size: clamp(32px, 3vw, 42px); line-height: 1.15; }
.woocommerce div.product div.images img { border-radius: var(--radius); background: #f6f4f1; }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: #222; font-size: 22px; }
.woocommerce button.button.alt, .woocommerce a.button.alt, .woocommerce .checkout-button, .woocommerce button.button { border-radius: 30px !important; background: #111 !important; color: #fff !important; }
.woocommerce button.button.alt, .woocommerce a.button.alt { padding: 15px 28px !important; }
.woocommerce-message, .woocommerce-info { border-top-color: #111; }
.woocommerce-message::before, .woocommerce-info::before { color: #111; }
.source-note { margin: 22px 0; padding: 17px; border: 1px solid var(--line); background: #fafafa; font-size: 13px; }
.source-note a { text-decoration: underline; text-underline-offset: 3px; }
.woocommerce-cart-form, .cart-collaterals, .woocommerce-checkout { margin-bottom: 80px; }
.policy-content { max-width: 900px; margin: 0 auto; }
.policy-content h1 { margin-bottom: 28px; font-size: clamp(36px, 5vw, 52px); }
.policy-content h2 { margin-top: 36px; font-size: 27px; }
.policy-content h3 { margin-top: 25px; font-size: 20px; }
.policy-content a { text-decoration: underline; text-underline-offset: 3px; }

/* Tablet */
@media (max-width: 1100px) {
    .header-inner { grid-template-columns: 175px 1fr 175px; }
    .main-nav { gap: 20px; }
    .main-nav a:nth-child(6) { display: none; }
    .milano-category-grid { height: 600px; }
    .milano-category-content { left: 22px; right: 22px; }
    .milano-category-content small { font-size: 12px; }
    .milano-products .product-slider .woocommerce ul.products.products li.product { flex-basis: calc((100% - 40px) / 3) !important; }
    .woocommerce ul.products, .woocommerce-page ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .milano-feature { min-height: 520px; padding: 50px 30px; }
    .milano-feature-card { width: 46%; }
    .milano-community { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .milano-community a:last-child { display: none; }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: 1 / -1; }
}

/* Mobile navigation and layouts */
@media (max-width: 900px) {
    .wrap { width: min(100% - 30px, 1410px); }
    .milano-fluid { padding-inline: 15px; }
    .announce-inner { grid-template-columns: 1fr; }
    .announce-left, .announce-right { display: none; }
    .announce p { text-align: center; }
    .header-inner { grid-template-columns: 50px 1fr 120px; }
    .header-inner { position: relative; }
    .brand { position: absolute; left: 50%; justify-self: auto; transform: translateX(-50%); }
    .brand img { width: 132px; }
    .header-tools { position: relative; z-index: 2; grid-column: 3; justify-self: end; }
    .menu-toggle { display: block; }
    .main-nav { position: fixed; z-index: 925; left: 0; top: 70px; bottom: auto; width: min(360px, 85vw); height: calc(100vh - 70px); display: flex; flex-direction: column; justify-content: flex-start; align-items: stretch; gap: 0; padding: 28px; overflow-y: auto; background: #fff; box-shadow: 15px 0 40px rgba(0, 0, 0, .12); transform: translateX(-105%); transition: transform .4s ease; }
    .main-nav a, .main-nav a:nth-child(6) { display: block; padding: 14px 10px; border-bottom: 1px solid var(--line); font-size: 16px; }
    .main-nav a::after { display: none; }
    .menu-open .main-nav { transform: none; }
    .menu-open .menu-backdrop { opacity: 1; visibility: visible; }
    .account-link, .wishlist-toggle { display: none; }
    .milano-category-grid { height: auto; display: flex; gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
    .milano-category-grid::-webkit-scrollbar { display: none; }
    .milano-category-card { flex: 0 0 58vw; height: 76vw; min-height: 470px; max-height: 620px; scroll-snap-align: start; }
    .milano-categories { margin-bottom: 52px; }
    .milano-category-link { opacity: 1; transform: none; }
    .milano-banners { gap: 16px; }
    .milano-banner-card > span:last-child { padding: 30px; }
    .milano-feature-card { width: min(430px, 58%); padding: 36px; }
    .quote-slider { gap: 16px; }
    .quote-slider article { padding-inline: 8px; }
    .confidence-card { height: 430px; }
    .confidence-copy { padding: 38px; }
    .milano-community { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .milano-community a:nth-child(4) { display: none; }
    .milano-services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 45px; }
    .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 767px) {
    .milano-category-card { flex-basis: 82vw; height: 118vw; min-height: 490px; }
    .milano-category-content { left: 24px; right: 24px; bottom: 23px; }
    .milano-heading { padding-inline: 15px; margin-bottom: 25px; }
    .milano-heading h2 { font-size: 30px; }
    .milano-products { margin-bottom: 35px; }
    .milano-products .product-slider .woocommerce ul.products.products li.product { flex-basis: calc((100% - 14px) / 2) !important; }
    .woocommerce ul.products, .woocommerce-page ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 14px; }
    .woocommerce ul.products li.product .button { position: static; margin-top: 10px !important; padding: 11px !important; opacity: 1; transform: none; font-size: 11px; }
    .product-wish { opacity: 1; transform: none; }
    .slide-arrow { display: none; }
    .milano-banners { grid-template-columns: 1fr; margin-bottom: 45px; }
    .milano-banner-card { min-height: 450px; aspect-ratio: auto; }
    .milano-feature { min-height: 540px; margin-bottom: 52px; padding: 25px 15px; align-items: flex-end; background-position: 62% center; }
    .milano-feature-card { width: 100%; padding: 31px; text-align: left; }
    .milano-feature-card h2 { font-size: 33px; }
    .milano-quotes { margin-bottom: 45px; }
    .quote-slider { grid-template-columns: 1fr; }
    .quote-slider article { padding: 19px 20px 28px; border-bottom: 1px solid var(--line); }
    .milano-confidence { padding: 52px 15px 60px; }
    .confidence-card { grid-template-columns: 1fr; height: auto; }
    .confidence-image { height: 360px; }
    .confidence-copy { padding: 34px 30px 39px; }
    .confidence-copy h3 { font-size: 27px; }
    .milano-discover { min-height: 500px; margin-bottom: 52px; background-position: 46% center; }
    .milano-discover h2 { font-size: 35px; }
    .milano-community { display: flex; gap: 12px; overflow-x: auto; margin-bottom: 45px; scroll-snap-type: x mandatory; scrollbar-width: none; }
    .milano-community a, .milano-community a:nth-child(4), .milano-community a:last-child { display: block; flex: 0 0 72vw; scroll-snap-align: start; }
    .milano-services { grid-template-columns: 1fr; margin-bottom: 45px; }
    .milano-services article { padding: 27px; }
    .milano-marquee span { font-size: 29px; }
    .site-footer { padding-top: 60px; }
    .footer-bottom { display: block; }
    .footer-payments { margin-top: 18px; }
    .footer-bottom nav { margin-top: 16px; flex-wrap: wrap; }
    .woocommerce div.product .product_title { font-size: 30px; }
}

@media (max-width: 520px) {
    .header-tools { gap: 7px; }
    .brand img { width: 126px; }
    .milano-category-card { min-height: 450px; }
    .milano-banner-card { min-height: 400px; }
    .milano-banner-card > span:last-child { padding: 26px; }
    .milano-banner-card strong { font-size: 29px; }
    .btn-white, .btn-dark { min-height: 47px; padding-inline: 27px; }
    .confidence-image { height: 300px; }
    .footer-grid { grid-template-columns: 1fr; gap: 35px; }
    .footer-grid > div { grid-column: auto !important; }
}

@media (max-width: 360px) {
    .brand img { width: 110px; }
    .header-tools { gap: 0; }
}

@media (hover: none) {
    .product-wish { opacity: 1; transform: none; }
}

/* Inner-page system */
.wishlist-toggle > .wish-count,
.cart-link > .teemcw-cart-count { position: absolute; right: -4px; top: -4px; min-width: 16px; height: 16px; padding: 0 4px; border-radius: 12px; display: grid; place-items: center; background: #111; color: #fff; font-size: 9px; }
.menu-toggle > span { position: static; right: auto; top: auto; min-width: 0; height: 1.5px; padding: 0; border-radius: 0; display: block; background: #111; color: inherit; font-size: 0; }
.inner-hero { position: relative; overflow: hidden; padding: 76px 0 80px; border-bottom: 1px solid #e7e1db; background: linear-gradient(135deg, #f5f2ed 0%, #eee8e1 100%); }
.inner-hero::after { content: ""; position: absolute; width: 360px; height: 360px; right: 5%; top: -210px; border: 1px solid rgba(111, 78, 57, .14); border-radius: 50%; box-shadow: 0 0 0 55px rgba(255,255,255,.18), 0 0 0 110px rgba(255,255,255,.12); }
.inner-hero__content { position: relative; z-index: 1; max-width: 1410px; }
.inner-hero__content > span,
.section-label > span,
.about-hero__copy > span,
.about-location__card span,
.contact-note__card span,
.faq-intro > span,
.faq-cta__card span,
.payments-support span,
.commerce-page__header > span { color: var(--accent); font-size: 10px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.inner-hero h1 { max-width: 850px; margin: 9px 0 14px; font-size: clamp(42px, 5vw, 60px); line-height: 1.06; }
.inner-hero p { max-width: 670px; margin: 0; color: #655f5a; font-size: 17px; }
.inner-content-section { padding: 72px 0 100px; }
.policy-layout { display: grid; grid-template-columns: 245px minmax(0, 760px); justify-content: center; gap: 78px; align-items: start; }
.policy-sidebar { position: sticky; top: 105px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft); }
.policy-sidebar > span { display: block; margin-bottom: 15px; color: var(--ink); font-size: 13px; font-weight: 700; }
.policy-sidebar nav { display: grid; }
.policy-sidebar nav a { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-bottom: 1px solid #e4e0da; color: #706a65; font-size: 13px; transition: color .2s, padding-left .2s; }
.policy-sidebar nav a:last-child { border: 0; }
.policy-sidebar nav a:hover,
.policy-sidebar nav a.is-current { padding-left: 4px; color: #111; }
.policy-sidebar nav a.is-current { font-weight: 700; }
.policy-sidebar nav b { font-size: 16px; font-weight: 400; }
.policy-help { margin-top: 22px; padding-top: 20px; border-top: 1px solid #dcd6cf; }
.policy-help strong { display: block; color: #111; font-size: 13px; }
.policy-help a { color: var(--accent); font-size: 12px; text-decoration: underline; text-underline-offset: 3px; }
.policy-content { max-width: none; margin: 0; color: #514c48; font-size: 16px; line-height: 1.78; }
.policy-content > p:first-child { padding: 22px 24px; border-left: 3px solid var(--accent); background: #faf8f5; color: #2c2926; }
.policy-content h2 { margin: 42px 0 13px; padding-top: 34px; border-top: 1px solid var(--line); font-size: 27px; line-height: 1.2; }
.policy-content h2:first-of-type { margin-top: 34px; }
.policy-content h3 { margin-top: 27px; font-size: 20px; }
.policy-content p,
.policy-content ol,
.policy-content ul { margin-bottom: 18px; }
.policy-content ol,
.policy-content ul { padding-left: 24px; }
.policy-content li { margin: 8px 0; }

/* About */
.about-hero { padding: 55px 0 90px; background: #fff; }
.about-hero__grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 70px; align-items: center; }
.about-hero__copy { padding-left: 5%; }
.about-hero__copy h1 { max-width: 600px; margin: 14px 0 22px; font-size: clamp(46px, 5vw, 68px); line-height: 1.04; font-weight: 500; }
.about-hero__copy p { max-width: 480px; margin-bottom: 31px; color: #69635e; font-size: 17px; }
.about-hero__image { height: 600px; overflow: hidden; border-radius: var(--radius); }
.about-hero__image img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; }
.about-story { padding: 90px 0; background: var(--cream); }
.about-story__grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; align-items: start; }
.section-label { position: sticky; top: 110px; }
.section-label h2 { max-width: 370px; margin: 12px 0 0; font-size: 39px; line-height: 1.14; }
.about-story__content { max-width: 720px; font-size: 16px; line-height: 1.78; }
.about-story__content > p:first-child { font-size: 21px; line-height: 1.55; color: #222; }
.about-story__content h2 { margin: 37px 0 10px; padding-top: 31px; border-top: 1px solid #dcd6cf; font-size: 25px; }
.about-story__content a { text-decoration: underline; text-underline-offset: 3px; }
.about-principles { padding: 85px 0; }
.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.principle-grid article { min-height: 265px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .3s, box-shadow .3s, background .3s; }
.principle-grid article:hover { background: #faf8f5; box-shadow: 0 16px 35px rgba(45,33,25,.07); transform: translateY(-4px); }
.principle-grid article > span { color: #a09186; font-size: 11px; }
.principle-grid h3 { margin: 54px 0 10px; font-size: 23px; }
.principle-grid p { margin: 0; color: #69635e; }
.about-location { padding: 0 0 90px; }
.about-location__card { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; padding: 54px 60px; border-radius: var(--radius); background: #171513; color: #fff; }
.about-location__card h2 { max-width: 560px; margin: 10px 0 0; color: #fff; font-size: 33px; }
.about-location__links { display: grid; gap: 14px; }
.about-location__links a { display: flex; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid #3b3734; color: #d3cfcc; }
.about-location__links b { font-weight: 400; }

/* Contact, FAQ and payments */
.contact-section { padding: 75px 0; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.contact-card { min-height: 360px; display: flex; flex-direction: column; padding: 35px; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .3s, box-shadow .3s, border-color .3s; }
.contact-card:hover { border-color: #cfc5bc; box-shadow: 0 17px 38px rgba(45,33,25,.08); transform: translateY(-5px); }
.contact-card__icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 50px; border-radius: 50%; background: var(--cream); color: #5e4434; font-size: 20px; font-weight: 600; }
.contact-card small { color: var(--accent); font-size: 10px; font-weight: 700; letter-spacing: .15em; }
.contact-card h2 { margin: 10px 0 13px; font-size: 23px; line-height: 1.25; }
.contact-card p { color: #6a645f; }
.contact-card > b { margin-top: auto; color: #111; font-size: 13px; }
.contact-note { padding: 0 0 90px; }
.contact-note__card { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; padding: 48px 55px; border-radius: var(--radius); background: var(--cream); }
.contact-note__card h2 { margin: 10px 0 0; font-size: 28px; }
.contact-note__card p { margin: 0; color: #665f5a; }
.faq-section { padding: 80px 0 90px; }
.faq-layout { display: grid; grid-template-columns: 340px minmax(0, 760px); justify-content: center; gap: 85px; align-items: start; }
.faq-intro { position: sticky; top: 105px; }
.faq-intro h2 { margin: 11px 0 15px; font-size: 34px; line-height: 1.18; }
.faq-intro p { color: #6a645f; }
.faq-intro a,
.faq-item a { text-decoration: underline; text-underline-offset: 3px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { position: relative; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 25px 0; color: #171513; font-size: 18px; font-weight: 600; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { width: 30px; height: 30px; flex: 0 0 30px; display: grid; place-items: center; border-radius: 50%; background: var(--cream); font-size: 20px; font-weight: 400; transition: transform .25s, background .25s, color .25s; }
.faq-item[open] summary span { background: #111; color: #fff; transform: rotate(45deg); }
.faq-item > div { padding: 0 55px 22px 0; color: #66605b; font-size: 16px; line-height: 1.75; }
.faq-cta { padding: 0 0 90px; }
.faq-cta__card { display: flex; justify-content: space-between; align-items: center; padding: 45px 52px; border-radius: var(--radius); background: #171513; color: #fff; }
.faq-cta__card h2 { margin: 8px 0 0; color: #fff; font-size: 31px; }
.payments-section { padding: 80px 0 95px; }
.payments-layout { max-width: 1200px; }
.payments-policy-layout { grid-template-columns: 245px minmax(0, 900px); }
.payments-primary { max-width: 760px; margin: 0 auto 55px; padding: 34px 38px; border: 1px solid var(--line); border-radius: var(--radius); background: #faf9f7; font-size: 16px; line-height: 1.75; }
.payments-primary p:last-child { margin-bottom: 0; }
.payments-primary a { text-decoration: underline; text-underline-offset: 3px; }
.payments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.payments-grid article { min-height: 250px; padding: 33px; border: 1px solid var(--line); border-radius: var(--radius); }
.payments-grid article > span { color: #9c8f85; font-size: 11px; }
.payments-grid h2 { margin: 55px 0 10px; font-size: 22px; }
.payments-grid p { color: #6b6560; }
.payments-support { display: flex; justify-content: space-between; align-items: center; gap: 30px; margin-top: 18px; padding: 38px 42px; border-radius: var(--radius); background: var(--cream); }
.payments-support h2 { margin: 8px 0 0; font-size: 27px; }

/* Shop and category archives */
.shop-hero { position: relative; min-height: 315px; display: flex; align-items: flex-end; padding: 64px 0; background-position: center 48%; background-size: cover; color: #fff; isolation: isolate; }
.shop-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(17,13,10,.72), rgba(17,13,10,.38) 50%, rgba(17,13,10,.18)); }
.shop-hero__content { position: relative; }
.shop-hero .woocommerce-breadcrumb { margin: 0 0 28px !important; color: rgba(255,255,255,.72); font-size: 12px; }
.shop-hero .woocommerce-breadcrumb a { color: #fff; }
.shop-hero .woocommerce-breadcrumb span { margin: 0 8px; }
.shop-hero__content > span { font-size: 10px; font-weight: 700; letter-spacing: .17em; }
.shop-hero h1 { margin: 7px 0 7px; color: #fff; font-size: clamp(42px, 5vw, 60px); line-height: 1.05; }
.shop-hero p { max-width: 680px; margin: 0; color: rgba(255,255,255,.82); font-size: 16px; }
.shop-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 43px; padding-top: 62px; padding-bottom: 100px; }
.shop-sidebar { align-self: start; }
.shop-sidebar details { border-bottom: 1px solid var(--line); }
.shop-sidebar summary { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; color: #111; font-size: 15px; font-weight: 700; cursor: pointer; list-style: none; }
.shop-sidebar summary::-webkit-details-marker { display: none; }
.shop-sidebar details[open] summary span { transform: rotate(45deg); }
.shop-sidebar summary span { font-size: 20px; font-weight: 400; transition: transform .25s; }
.shop-filter-list { display: grid; padding: 0 0 20px; }
.shop-filter-list a { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; color: #6d6762; font-size: 14px; transition: color .2s, padding-left .2s; }
.shop-filter-list a:hover,
.shop-filter-list a.is-active { padding-left: 4px; color: #111; }
.shop-filter-list a.is-active { font-weight: 700; }
.shop-filter-list b { min-width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: var(--cream); font-size: 10px; font-weight: 500; }
.shop-filter-clear { display: inline-flex; align-items: center; gap: 7px; margin: 0 0 20px; color: var(--accent); font-size: 12px; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.shop-sidebar__help { margin-top: 28px; padding: 25px; border-radius: var(--radius); background: var(--cream); }
.shop-sidebar__help > span { color: var(--accent); font-size: 9px; font-weight: 700; letter-spacing: .13em; }
.shop-sidebar__help p { margin: 11px 0 15px; color: #5f5954; font-size: 13px; }
.shop-sidebar__help a { color: #111; font-size: 13px; font-weight: 700; }
.shop-toolbar { min-height: 53px; display: flex; justify-content: space-between; align-items: center; gap: 25px; margin-bottom: 28px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.shop-toolbar .woocommerce-result-count,
.shop-toolbar .woocommerce-ordering { float: none !important; margin: 0 !important; }
.shop-toolbar .woocommerce-result-count { color: #6f6964; font-size: 13px; }
.shop-toolbar__actions { display: flex; align-items: center; gap: 12px; }
.shop-toolbar .woocommerce-ordering select { min-width: 190px; padding: 11px 38px 11px 13px; border-color: var(--line); border-radius: 30px; }
.shop-filter-toggle { display: none; min-height: 43px; padding: 9px 18px; border: 1px solid var(--line); border-radius: 24px; background: #fff; color: #111; font-weight: 600; cursor: pointer; }
.shop-filter-close { display: none; }
body.woocommerce .shop-catalog ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px 18px; }
.shop-catalog .woocommerce-pagination { grid-column: 1 / -1; }
.shop-catalog .woocommerce ul.products li.product h2,
body.woocommerce .shop-catalog ul.products li.product h2 { white-space: normal; display: -webkit-box; min-height: 43px; overflow: hidden; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.shop-catalog nav.woocommerce-pagination ul { display: flex !important; justify-content: center; flex-wrap: wrap; gap: 7px; }
.shop-catalog nav.woocommerce-pagination ul li { margin: 0; }
.shop-filter-backdrop { position: fixed; inset: 0; z-index: 1030; background: rgba(0,0,0,.45); opacity: 0; visibility: hidden; transition: .3s; }

/* Single product */
body.single-product .commerce-shell { padding: 52px 0 55px; }
body.single-product .woocommerce div.product { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(400px, .96fr); gap: 68px; align-items: start; padding: 0; }
body.single-product .woocommerce div.product::before,
body.single-product .woocommerce div.product::after { display: none; }
body.single-product .woocommerce div.product div.images,
body.single-product .woocommerce div.product div.summary { float: none !important; width: auto !important; margin: 0 !important; }
body.single-product .woocommerce-product-gallery { opacity: 1 !important; overflow: hidden !important; border-radius: var(--radius); background: #f5f3ef; }
body.single-product .woocommerce-product-gallery__wrapper,
body.single-product .woocommerce-product-gallery__image { width: 100%; }
body.single-product .woocommerce-product-gallery__image > a { width: 100%; aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; overflow: hidden; }
body.single-product .woocommerce-product-gallery__image img.wp-post-image { width: 100% !important; height: 100% !important; margin: 0 !important; padding: 7%; object-fit: contain; border-radius: 0; background: transparent; }
body.single-product .woocommerce-product-gallery .woocommerce-product-gallery__trigger { z-index: 5; top: 18px; right: 18px; width: 42px; height: 42px; border-radius: 50%; background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,.08); }
body.single-product .summary.entry-summary { position: static; padding: 20px 0 10px; }
body.single-product .summary .product_title { margin-bottom: 21px; font-size: clamp(36px, 3.5vw, 50px); line-height: 1.08; font-weight: 500; }
body.single-product .summary p.price { margin-bottom: 24px; color: #111; font-size: 22px; font-weight: 600; }
body.single-product .woocommerce-product-details__short-description { margin-bottom: 20px; color: #66605b; font-size: 15px; }
body.single-product form.cart { display: flex; align-items: stretch; gap: 10px; margin-bottom: 24px !important; }
body.single-product form.cart::before,
body.single-product form.cart::after { display: none !important; }
body.single-product .quantity .qty { width: 66px !important; height: 49px; box-sizing: border-box; border: 1px solid var(--line); border-radius: 25px; text-align: center; }
body.single-product .single_add_to_cart_button { min-height: 49px; padding-inline: 31px !important; }
.product-assurances { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 0 0 17px; }
.product-assurances > div { display: flex; gap: 11px; align-items: flex-start; padding: 14px; border-radius: 8px; background: var(--cream); }
.product-assurances > div > span { color: #6a4d3c; font-size: 21px; line-height: 1; }
.product-assurances p { margin: 0; line-height: 1.3; }
.product-assurances strong,
.product-assurances small { display: block; }
.product-assurances strong { color: #211f1d; font-size: 12px; }
.product-assurances small { margin-top: 4px; color: #77706b; font-size: 10px; }
body.single-product .source-note { margin: 0 0 18px; padding: 15px 17px; border-color: #dfd9d3; border-radius: 8px; background: #fbfaf8; line-height: 1.55; }
body.single-product .product_meta { padding-top: 17px; border-top: 1px solid var(--line); color: #77716c; font-size: 12px; }
body.single-product .product_meta > span { display: block; margin: 5px 0; }
body.single-product .woocommerce-tabs,
body.single-product .related.products,
body.single-product .upsells.products { grid-column: 1 / -1; }
body.single-product .woocommerce-tabs { margin-top: 35px; padding-top: 35px; border-top: 1px solid var(--line); }
body.single-product .woocommerce-tabs ul.tabs { display: flex !important; gap: 30px; margin: 0 0 36px !important; padding: 0 !important; overflow: visible !important; border-bottom: 1px solid var(--line); }
body.single-product .woocommerce-tabs ul.tabs::before { display: none !important; }
body.single-product .woocommerce-tabs ul.tabs li { margin: 0 !important; padding: 0 !important; border: 0 !important; border-radius: 0 !important; background: transparent !important; }
body.single-product .woocommerce-tabs ul.tabs li::before,
body.single-product .woocommerce-tabs ul.tabs li::after { display: none !important; }
body.single-product .woocommerce-tabs ul.tabs li a { position: relative; padding: 0 0 14px !important; color: #807a75 !important; font-weight: 600 !important; }
body.single-product .woocommerce-tabs ul.tabs li.active a { color: #111 !important; }
body.single-product .woocommerce-tabs ul.tabs li.active a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: #111; }
body.single-product .woocommerce-Tabs-panel { max-width: 900px; margin: 0 auto 55px !important; color: #5e5853; font-size: 16px; line-height: 1.75; }
body.single-product .woocommerce-Tabs-panel > h2:first-child { display: none; }
body.single-product .woocommerce-Tabs-panel h3 { margin-top: 29px; font-size: 21px; }
body.single-product .woocommerce-Tabs-panel ul { padding-left: 22px; }
body.single-product .related.products { padding-top: 45px; border-top: 1px solid var(--line); }
body.single-product .related.products > h2 { margin-bottom: 30px; text-align: center; font-size: 34px; }

/* Cart, checkout and account */
.commerce-page { padding: 62px 0 100px; background: #fff; }
.commerce-page__inner { max-width: 1200px; }
.commerce-page__header { margin-bottom: 36px; padding-bottom: 27px; border-bottom: 1px solid var(--line); }
.commerce-page__header h1 { margin: 8px 0 0; font-size: clamp(40px, 5vw, 56px); line-height: 1.06; }
.commerce-page__content > p:empty { display: none; }
.woocommerce-error,
.woocommerce-info,
.woocommerce-message { margin-bottom: 28px !important; border-top: 0 !important; border-radius: var(--radius); background: #f4f2ee; color: #36322f; }
.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before { color: #6b4e3d !important; }
.woocommerce-cart .commerce-page__content > .woocommerce { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(330px, .75fr); gap: 32px; align-items: start; }
.woocommerce-cart .woocommerce-notices-wrapper { grid-column: 1 / -1; }
.woocommerce-cart .woocommerce-cart-form { grid-column: 1; width: 100% !important; margin: 0 !important; padding: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.woocommerce-cart .shop_table { margin: 0 !important; border: 0 !important; border-radius: 0 !important; }
.woocommerce-cart .shop_table th { padding: 17px 14px !important; background: #f8f7f5; color: #716b66; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.woocommerce-cart .shop_table td { padding: 18px 14px !important; border-top-color: var(--line) !important; }
.woocommerce-cart td.product-thumbnail { width: 96px; }
.woocommerce-cart td.product-thumbnail img { width: 72px !important; height: 72px !important; box-sizing: border-box; padding: 6px; border-radius: 8px; background: var(--soft); object-fit: contain; }
.woocommerce-cart td.product-name a { color: #111; font-weight: 600; }
.woocommerce-cart td.product-remove a.remove { color: #8f7a6d !important; font-size: 22px; }
.woocommerce-cart td.product-remove a.remove:hover { background: #111 !important; color: #fff !important; }
.woocommerce-cart .quantity .qty { width: 62px; min-height: 42px; border: 1px solid var(--line); border-radius: 22px; }
.woocommerce-cart .actions { padding: 17px !important; background: #fff; }
.woocommerce-cart .actions .coupon { display: flex; gap: 9px; }
.woocommerce-cart .coupon #coupon_code { width: 180px !important; min-height: 44px; padding: 9px 13px !important; border: 1px solid var(--line); border-radius: 24px; }
.woocommerce-cart .actions button.button { min-height: 44px; padding: 10px 20px !important; }
.woocommerce-cart .cart-collaterals { grid-column: 2; width: 100% !important; margin: 0 !important; }
.woocommerce-cart .cart-collaterals::before,
.woocommerce-cart .cart-collaterals::after { display: none; }
.woocommerce-cart .cart-collaterals .cart_totals { float: none !important; width: 100% !important; padding: 28px; border-radius: var(--radius); background: var(--cream); }
.woocommerce-cart .cart_totals h2 { margin-bottom: 20px; font-size: 25px; }
.woocommerce-cart .cart_totals table { border-collapse: collapse; }
.woocommerce-cart .cart_totals th,
.woocommerce-cart .cart_totals td { padding: 13px 0 !important; border-top: 1px solid #ded8d1 !important; }
.woocommerce-cart .wc-proceed-to-checkout { padding: 21px 0 0 !important; }
.woocommerce-cart .checkout-button { width: 100%; margin: 0 !important; padding: 16px 22px !important; font-size: 15px !important; }
.woocommerce-cart .cart-empty,
.woocommerce-cart .return-to-shop { grid-column: 1 / -1; text-align: center; }

.woocommerce-checkout .woocommerce-form-coupon-toggle,
.woocommerce-checkout form.checkout_coupon { max-width: 720px; margin-inline: auto; }
.woocommerce-checkout form.checkout_coupon { align-items: center; gap: 10px; margin-bottom: 35px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.woocommerce-checkout form.checkout_coupon .form-row { float: none !important; width: auto !important; margin: 0 !important; }
.woocommerce-checkout form.checkout_coupon .form-row-first { flex: 1; }
.woocommerce-checkout form.checkout_coupon input { min-height: 45px; border: 1px solid var(--line); border-radius: 24px; }
.woocommerce-checkout form.checkout { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr); gap: 0 52px; align-items: start; }
.woocommerce-checkout #customer_details { grid-column: 1; grid-row: 1; width: 100%; }
.woocommerce-checkout #customer_details::before,
.woocommerce-checkout #customer_details::after { display: none; }
.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 { float: none !important; width: 100% !important; }
.woocommerce-checkout #customer_details .col-2 { margin-top: 30px; }
.woocommerce-checkout #order_review_heading { grid-column: 2; grid-row: 1; margin: 0 0 17px; font-size: 27px; }
.woocommerce-checkout #order_review { grid-column: 2; grid-row: 1; align-self: start; margin-top: 62px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: #faf9f7; }
.woocommerce-checkout h3 { font-size: 27px; }
.woocommerce-checkout .form-row { margin-bottom: 15px !important; }
.woocommerce-checkout .form-row label { margin-bottom: 6px; color: #4e4945; font-size: 12px; font-weight: 600; }
.woocommerce-checkout .input-text,
.woocommerce-checkout select,
.woocommerce-checkout .select2-container .select2-selection--single { min-height: 47px; border: 1px solid var(--line) !important; border-radius: 7px !important; background: #fff; }
.woocommerce-checkout .input-text { padding: 10px 12px; }
.woocommerce-checkout textarea.input-text { min-height: 120px; }
.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__rendered { line-height: 45px; }
.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__arrow { height: 45px; }
.woocommerce-checkout .woocommerce-checkout-review-order-table { margin: 0 0 20px !important; border: 0 !important; }
.woocommerce-checkout .woocommerce-checkout-review-order-table th,
.woocommerce-checkout .woocommerce-checkout-review-order-table td { padding: 13px 7px !important; border-top-color: var(--line) !important; }
.woocommerce-checkout #payment { margin-top: 0; border-radius: 8px; background: #eee9e3 !important; }
.woocommerce-checkout #payment ul.payment_methods { border-bottom-color: #d9d1ca !important; }
.woocommerce-checkout #payment div.form-row { padding: 18px !important; }
.woocommerce-checkout #place_order { width: 100%; min-height: 50px; }
.woocommerce-checkout .woocommerce-privacy-policy-text { color: #716a65; font-size: 12px; }

.woocommerce-account:not(.logged-in) .commerce-page__content > .woocommerce { max-width: 600px; margin: 0 auto; }
.woocommerce-account:not(.logged-in) form.woocommerce-form-login,
.woocommerce-account:not(.logged-in) form.woocommerce-form-register,
.woocommerce-account:not(.logged-in) form.lost_reset_password { margin: 25px auto !important; padding: 30px !important; border: 1px solid var(--line) !important; border-radius: var(--radius) !important; box-shadow: 0 14px 34px rgba(0,0,0,.05); }
.woocommerce-account form .input-text { min-height: 47px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 7px; }
.woocommerce-account .password-input { position: relative; display: block; }
.woocommerce-account .password-input .input-text { padding-right: 52px; }
.woocommerce-account .show-password-input { top: 50% !important; right: 2px !important; width: 44px; height: 44px; display: grid !important; place-items: center; line-height: 44px; }
.woocommerce-account form button.button { min-height: 44px; padding: 11px 24px !important; }
.woocommerce-account label.woocommerce-form-login__rememberme { min-height: 44px; display: inline-flex; align-items: center; gap: 8px; padding-right: 8px; }
.woocommerce-account label.woocommerce-form-login__rememberme input[type="checkbox"] { width: 18px; height: 18px; margin: 0; }
.woocommerce-account .lost_password a { min-height: 44px; display: inline-flex; align-items: center; }
.woocommerce-account .woocommerce-MyAccount-navigation { width: 240px !important; padding: 22px; border-radius: var(--radius); background: var(--cream); }
.woocommerce-account .woocommerce-MyAccount-navigation ul { margin: 0; padding: 0; list-style: none; }
.woocommerce-account .woocommerce-MyAccount-navigation li a { display: block; padding: 10px 0; border-bottom: 1px solid #ddd6cf; }
.woocommerce-account .woocommerce-MyAccount-content { width: calc(100% - 285px) !important; }

/* Branded 404 and generic content fallbacks */
.not-found-section { padding: 70px 0 90px; background: var(--soft); }
.not-found-grid { min-height: 600px; display: grid; grid-template-columns: .92fr 1.08fr; gap: 64px; align-items: stretch; }
.not-found-copy { display: flex; flex-direction: column; justify-content: center; padding: 45px 0; }
.not-found-copy > span,
.generic-index__header > span,
.generic-index__empty > span { color: var(--accent); font-size: 10px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.not-found-copy h1 { max-width: 620px; margin: 13px 0 20px; font-size: clamp(50px, 5vw, 70px); line-height: 1.02; }
.not-found-copy > p { max-width: 560px; color: #68615b; font-size: 17px; }
.not-found-search { max-width: 560px; margin: 25px 0 22px; }
.not-found-search div { min-height: 52px; display: flex; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: #fff; }
.not-found-search input { min-width: 0; flex: 1; padding: 0 20px; border: 0; outline: 0; background: transparent; }
.not-found-search button { min-width: 105px; border: 0; background: var(--ink); color: var(--brand-on-ink); font-weight: 700; cursor: pointer; }
.not-found-actions { display: flex; align-items: center; gap: 25px; }
.not-found-actions > a:not(.btn-dark) { font-weight: 700; }
.not-found-visual { position: relative; min-height: 560px; overflow: hidden; border-radius: var(--radius); background-position: center; background-size: cover; isolation: isolate; }
.not-found-visual::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(15,12,10,.05), rgba(15,12,10,.72)); }
.not-found-visual > div { position: absolute; left: 42px; right: 42px; bottom: 36px; display: flex; justify-content: space-between; align-items: end; color: #fff; }
.not-found-visual span { font-family: var(--font-display); font-size: 92px; line-height: .8; letter-spacing: -.06em; }
.not-found-visual strong { padding-bottom: 4px; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.generic-index { min-height: 58vh; padding: 70px 0 95px; }
.generic-index__header { margin-bottom: 35px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.generic-index__header h1,
.generic-index__empty h1 { margin: 9px 0 0; font-size: clamp(40px, 5vw, 58px); }
.generic-index__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.generic-index__entry { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); }
.generic-index__entry h2 { font-size: 27px; }
.generic-index__entry > a { font-weight: 700; }
.generic-index__empty { max-width: 720px; min-height: 360px; display: flex; flex-direction: column; justify-content: center; }
.generic-index__empty p { color: var(--muted); font-size: 17px; }
.generic-index__empty .btn-dark { align-self: flex-start; margin-top: 10px; }

@media (max-width: 1024px) {
    .about-hero__grid { gap: 38px; }
    .about-hero__image { height: 520px; }
    .about-story__grid { gap: 55px; }
    .policy-layout { grid-template-columns: 220px minmax(0, 700px); gap: 45px; }
    .faq-layout { grid-template-columns: 290px minmax(0, 650px); gap: 50px; }
    body.single-product .woocommerce div.product { gap: 40px; }
}

@media (max-width: 900px) {
    .inner-hero { padding: 60px 0 64px; }
    .policy-layout { grid-template-columns: 1fr; gap: 35px; }
    .policy-sidebar { position: static; padding: 22px; }
    .policy-sidebar nav { grid-template-columns: 1fr 1fr; gap: 0 25px; }
    .policy-help { display: flex; justify-content: space-between; align-items: center; }
    .about-hero__grid { grid-template-columns: 1fr; }
    .about-hero__copy { padding: 10px 0 0; }
    .about-hero__image { height: 65vw; min-height: 470px; }
    .about-story__grid { grid-template-columns: 1fr; gap: 32px; }
    .section-label { position: static; }
    .principle-grid { grid-template-columns: 1fr 1fr; }
    .principle-grid article:last-child { grid-column: 1 / -1; }
    .about-location__card { grid-template-columns: 1fr; gap: 35px; }
    .contact-grid { grid-template-columns: 1fr 1fr; }
    .contact-card:last-child { grid-column: 1 / -1; min-height: 280px; }
    .contact-note__card { grid-template-columns: 1fr; gap: 22px; }
    .faq-layout { grid-template-columns: 1fr; gap: 35px; }
    .faq-intro { position: static; max-width: 600px; }
    .payments-grid { grid-template-columns: 1fr 1fr; }
    .payments-grid article:last-child { grid-column: 1 / -1; }
    .shop-layout { grid-template-columns: 1fr; gap: 0; padding-top: 45px; }
    .shop-filter-toggle { display: inline-flex; align-items: center; }
    .shop-sidebar { position: fixed; z-index: 1040; left: 0; top: 0; bottom: auto; width: min(360px, 88vw); height: 100vh; height: 100dvh; padding: 24px 28px 35px; overflow-y: auto; overscroll-behavior: contain; background: #fff; box-shadow: 16px 0 45px rgba(0,0,0,.14); transform: translateX(-105%); transition: transform .35s ease; }
    .shop-filter-close { display: flex; align-items: center; justify-content: space-between; width: 100%; margin: 0 0 20px; padding: 0 0 15px; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: #4d4844; font: inherit; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
    .shop-filter-close span { color: #111; font-size: 27px; font-weight: 400; line-height: 1; }
    .shop-filters-open .shop-sidebar { transform: none; }
    .shop-filters-open .shop-filter-backdrop { opacity: 1; visibility: visible; }
    body.shop-filters-open { overflow: hidden; }
    body.woocommerce .shop-catalog ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    body.single-product .woocommerce div.product { grid-template-columns: 1fr; }
    body.single-product .summary.entry-summary { position: static; padding-top: 0; }
    body.single-product .woocommerce-product-gallery { max-width: 680px; margin-inline: auto !important; }
    .woocommerce-cart .commerce-page__content > .woocommerce { grid-template-columns: 1fr; }
    .woocommerce-cart .woocommerce-cart-form,
    .woocommerce-cart .cart-collaterals { grid-column: 1; }
    .woocommerce-cart .cart-collaterals { margin-top: 12px !important; }
    .woocommerce-checkout form.checkout { display: block; }
    .woocommerce-checkout #customer_details,
    .woocommerce-checkout #order_review_heading,
    .woocommerce-checkout #order_review { width: 100%; }
    .woocommerce-checkout #order_review_heading { margin-top: 42px; }
    .woocommerce-checkout #order_review { margin-top: 0; }
    .woocommerce-account .woocommerce-MyAccount-navigation,
    .woocommerce-account .woocommerce-MyAccount-content { float: none !important; width: 100% !important; }
    .woocommerce-account .woocommerce-MyAccount-navigation { margin-bottom: 30px; }
}

@media (max-width: 768px) {
    .woocommerce-cart table.shop_table_responsive td.product-thumbnail { display: block !important; text-align: left !important; }
    .woocommerce-cart table.shop_table_responsive td.product-thumbnail::before { display: none !important; }
    .woocommerce-cart table.shop_table_responsive td.product-thumbnail img { width: 80px !important; height: 80px !important; object-fit: contain; }
}

@media (max-width: 767px) {
    .inner-hero { padding: 48px 0 52px; }
    .inner-hero::after { width: 250px; height: 250px; right: -80px; top: -150px; }
    .inner-hero h1 { font-size: 39px; }
    .inner-hero p { font-size: 15px; }
    .inner-content-section { padding: 45px 0 65px; }
    .policy-layout { gap: 24px; }
    .policy-sidebar { padding: 18px; overflow: hidden; }
    .policy-sidebar > span { margin-bottom: 11px; }
    .policy-sidebar nav { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; scroll-snap-type: x proximity; scrollbar-width: none; }
    .policy-sidebar nav::-webkit-scrollbar { display: none; }
    .policy-sidebar nav a,
    .policy-sidebar nav a:last-child { flex: 0 0 auto; padding: 10px 13px; border: 1px solid var(--line); border-radius: 22px; background: #fff; scroll-snap-align: start; white-space: nowrap; }
    .policy-sidebar nav a:hover,
    .policy-sidebar nav a.is-current { padding-left: 13px; }
    .policy-sidebar nav a.is-current { border-color: var(--ink); background: var(--ink); color: var(--brand-on-ink); }
    .policy-sidebar nav b { display: none; }
    .policy-help { margin-top: 14px; padding-top: 14px; }
    .policy-content { font-size: 15px; line-height: 1.72; }
    .policy-content h2 { margin-top: 34px; padding-top: 27px; font-size: 24px; }
    .about-hero { padding: 40px 0 48px; }
    .about-hero__copy h1 { font-size: 43px; }
    .about-hero__image { min-height: 310px; height: 82vw; max-height: 440px; }
    .about-story { padding: 50px 0; }
    .section-label h2 { font-size: 32px; }
    .about-story__content > p:first-child { font-size: 19px; }
    .about-story__content h2 { margin-top: 28px; padding-top: 24px; }
    .principle-grid { grid-template-columns: 1fr; }
    .principle-grid article:last-child { grid-column: auto; }
    .about-principles { padding: 46px 0; }
    .principle-grid article { min-height: 0; padding: 28px; }
    .principle-grid h3 { margin: 28px 0 8px; }
    .about-location { padding-bottom: 60px; }
    .about-location__card { padding: 35px 28px; }
    .about-location__card h2 { font-size: 27px; }
    .contact-section { padding: 48px 0; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-card,
    .contact-card:last-child { grid-column: auto; min-height: 310px; }
    .contact-card__icon { margin-bottom: 35px; }
    .contact-note { padding-bottom: 60px; }
    .contact-note__card { padding: 32px 28px; }
    .faq-section { padding: 52px 0 60px; }
    .faq-intro h2 { font-size: 29px; }
    .faq-item summary { padding: 21px 0; font-size: 16px; }
    .faq-item > div { padding-right: 38px; font-size: 15px; }
    .faq-cta { padding-bottom: 60px; }
    .faq-cta__card { display: grid; gap: 25px; padding: 32px 28px; }
    .payments-section { padding: 52px 0 65px; }
    .payments-primary { padding: 27px 25px; }
    .payments-grid { grid-template-columns: 1fr; }
    .payments-grid article:last-child { grid-column: auto; }
    .payments-support { display: grid; padding: 30px 27px; }
    .shop-hero { min-height: 280px; padding: 45px 0; }
    .shop-hero h1 { font-size: 41px; }
    .shop-layout { padding-top: 34px; padding-bottom: 70px; }
    .shop-toolbar { align-items: flex-start; }
    .shop-toolbar__actions { width: 100%; justify-content: flex-end; }
    .shop-toolbar .woocommerce-ordering { flex: 1; }
    .shop-toolbar .woocommerce-ordering select { width: 100%; min-width: 0; }
    body.woocommerce .shop-catalog ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 13px; }
    body.woocommerce .shop-catalog ul.products li.product h2 { min-height: 42px; font-size: 14px !important; }
    body.woocommerce .shop-catalog ul.products li.product .button { display: block; width: 100%; box-sizing: border-box; }
    .shop-catalog nav.woocommerce-pagination ul li a,
    .shop-catalog nav.woocommerce-pagination ul li span { min-width: 36px; min-height: 36px; }
    body.single-product .commerce-shell { padding: 30px 0 45px; }
    body.single-product .woocommerce div.product { gap: 34px; }
    body.single-product .summary .product_title { font-size: 35px; }
    .product-assurances { grid-template-columns: 1fr; }
    body.single-product .woocommerce-tabs { margin-top: 15px; padding-top: 25px; }
    body.single-product .woocommerce-tabs ul.tabs { gap: 20px; }
    body.single-product .woocommerce-Tabs-panel { font-size: 15px; }
    body.single-product .related.products { padding-top: 34px; }
    body.single-product .related.products ul.products li.product h2 { display: -webkit-box; min-height: 42px; overflow: hidden; white-space: normal; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
    body.single-product .related.products ul.products li.product .button { display: block; width: 100%; box-sizing: border-box; }
    .commerce-page { padding: 42px 0 68px; }
    .commerce-page__header { margin-bottom: 27px; }
    .commerce-page__header h1 { font-size: 39px; }
    .woocommerce-cart table.shop_table_responsive tr.cart_item { position: relative; display: block; margin-bottom: 18px; padding: 14px; border: 1px solid var(--line); border-radius: var(--radius); }
    .woocommerce-cart table.shop_table_responsive tr.cart_item td { padding: 10px 5px !important; border: 0 !important; }
    .woocommerce-cart table.shop_table_responsive td.product-thumbnail { display: block !important; text-align: left !important; }
    .woocommerce-cart td.product-thumbnail::before { display: none !important; }
    .woocommerce-cart td.product-thumbnail img { width: 80px !important; height: 80px !important; }
    .woocommerce-cart table.shop_table_responsive td.product-remove { position: absolute !important; right: 10px; top: 8px; width: auto; }
    .woocommerce-cart .actions .coupon { width: 100%; float: none !important; margin-bottom: 10px; }
    .woocommerce-cart .coupon #coupon_code { flex: 1; width: auto !important; }
    .woocommerce-cart .actions > button.button { width: 100%; }
    .woocommerce-checkout .woocommerce-info { margin-bottom: 25px !important; padding: 18px 18px 18px 50px !important; }
    .woocommerce-checkout form.checkout_coupon { flex-wrap: wrap; }
    .woocommerce-checkout form.checkout_coupon .form-row { width: 100% !important; }
    .woocommerce-checkout #order_review { padding: 20px 16px; }
    .site-footer { padding-top: 50px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
    .footer-grid > div:first-child,
    .footer-grid > div:last-child { grid-column: 1 / -1 !important; }
    .not-found-section { padding: 42px 0 60px; }
    .not-found-grid { min-height: 0; grid-template-columns: 1fr; gap: 35px; }
    .not-found-copy { padding: 10px 0 0; }
    .not-found-copy h1 { font-size: 45px; }
    .not-found-copy > p { font-size: 15px; }
    .not-found-visual { min-height: 340px; }
    .not-found-visual > div { left: 28px; right: 28px; bottom: 27px; }
    .not-found-visual span { font-size: 70px; }
    .not-found-actions { flex-wrap: wrap; }
    .generic-index { padding: 48px 0 65px; }
    .generic-index__list { grid-template-columns: 1fr; }
}

/* Brand-system safeguards */
.milano-category-content strong,
.milano-services h3,
.product-assurances strong,
.shop-sidebar summary,
.woocommerce table.shop_table th { font-family: var(--font-body); letter-spacing: normal; }
.brand:focus-visible,
.footer-brand:focus-visible,
.icon-btn:focus-visible { border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
    .marquee-track { animation: none !important; }
}

@media (max-width: 520px) {
    .policy-help { display: block; }
    .shop-toolbar { display: grid; }
    .shop-toolbar__actions { justify-content: stretch; }
    .shop-filter-toggle { flex: 0 0 auto; }
    .about-location__links a { gap: 20px; }
    .woocommerce-cart .actions .coupon { display: grid; grid-template-columns: 1fr auto; }
    .woocommerce-cart .coupon #coupon_code { grid-column: 1; grid-row: 1; width: 100% !important; }
    .woocommerce-cart .coupon button[name="apply_coupon"] { grid-column: 2; grid-row: 1; width: auto !important; min-width: 140px; white-space: nowrap; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > div { grid-column: auto !important; }
    .footer-grid > div:first-child,
    .footer-grid > div:last-child { grid-column: 1 / -1 !important; }
}
