:root {
    --bg: #050505;
    --bg-2: #0c0c0c;
    --card: #111;
    --ink: #f4f1e8;
    --muted: #b7ae9c;
    --line: #2a2418;
    --gold: #e0b13a;
    --gold-2: #f5d56a;
    --gold-deep: #b8860b;
    --header: 64px;
    --quote: "Cormorant Garamond", "Times New Roman", serif;
    --sans: "Montserrat", "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html {
    -webkit-text-size-adjust: 100%;
    overflow-x: clip;
}
html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    max-width: 100%;
}
body.tropo-nav-open { overflow: hidden; }
img, video, iframe, embed, object { max-width: 100%; }
img { height: auto; display: block; }
a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--gold); }
button, input, select, textarea { font-family: inherit; max-width: 100%; }
.tropo-wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.tropo-main { min-height: 40vh; background: var(--bg); }
.screen-reader-text, .skip-link { position: absolute; left: -9999px; }

body.tropo-theme {
    --e-global-color-primary: #e0b13a;
    --e-global-color-secondary: #f4f1e8;
    --e-global-color-text: #f4f1e8;
    --e-global-color-accent: #e0b13a;
}

.tropo-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(5,5,5,.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}
.tropo-header__inner {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    min-height: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.tropo-logo { display: flex; align-items: center; flex: 0 0 auto; line-height: 1; color: var(--gold); }
.tropo-logo:hover { color: var(--gold-2); opacity: 1; }
.tropo-logo img {
    display: block !important;
    height: 36px !important;
    width: auto !important;
    max-height: 36px !important;
    max-width: 160px !important;
    object-fit: contain;
}
.tropo-logo__mark {
    font-family: var(--display);
    font-style: italic;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: .04em;
    background: linear-gradient(180deg, var(--gold-2), var(--gold-deep));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.tropo-logo__sub {
    margin-top: 2px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
}
.tropo-nav { display: flex; gap: 4px; flex: 1; justify-content: center; }
.tropo-nav ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.tropo-nav li { margin: 0; list-style: none; }
.tropo-nav a {
    color: var(--ink);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 8px 10px;
}
.tropo-nav a:hover,
.tropo-nav .current-menu-item a { color: var(--gold); }
.tropo-header__actions { margin-left: auto; flex: 0 0 auto; }
.tropo-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex: 0 0 auto;
}
.tropo-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gold);
    transition: transform .2s ease, opacity .2s ease;
}
body.tropo-nav-open .tropo-nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
body.tropo-nav-open .tropo-nav-toggle span:nth-child(2) { opacity: 0; }
body.tropo-nav-open .tropo-nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.tropo-cart-btn, .tropo-btn,
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button,
.woocommerce #respond input#submit, .single_add_to_cart_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 22px;
    border: 0;
    border-radius: 0;
    background: linear-gradient(180deg, var(--gold-2), var(--gold-deep));
    color: #111 !important;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
}
.tropo-cart-btn:hover, .tropo-btn:hover,
.woocommerce a.button:hover, .woocommerce button.button:hover {
    background: var(--gold-2);
    color: #111 !important;
    opacity: 1;
}
.tropo-cart-btn__count {
    background: #111;
    color: var(--gold);
    min-width: 18px;
    height: 18px;
    border-radius: 99px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}
.tropo-btn-ghost {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 22px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 600;
}
.tropo-btn-ghost:hover { background: var(--gold); color: #111; }

.tropo-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 55% 80% at 78% 48%, rgba(224, 177, 58, .16), transparent 62%),
        var(--bg);
    padding: 56px 0 28px;
    border-bottom: 1px solid var(--line);
}
.tropo-hero__banner { display: none; }
.tropo-hero__grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 48px;
    align-items: center;
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}
.tropo-kicker {
    margin: 0 0 12px;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
}
.tropo-hero h1, .tropo-wordmark {
    margin: 0;
    font-family: var(--display);
    font-style: italic;
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: .02em;
    text-transform: uppercase;
    background: linear-gradient(180deg, #fff6c8, var(--gold), var(--gold-deep));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.tropo-hero p.tropo-lead, .tropo-hero .tropo-lead {
    max-width: 460px;
    color: var(--muted);
    font-size: 16px;
    margin: 18px 0 28px;
}
.tropo-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.tropo-hero__visual {
    position: relative;
    isolation: isolate;
    background: transparent;
    border: 0;
    min-height: 420px;
    display: grid;
    place-items: center;
    perspective: 900px;
    --tilt-x: 0deg;
    --tilt-y: 0deg;
}
.tropo-hero__visual::before,
.tropo-hero__visual::after,
.tropo-hero__glow {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
}
.tropo-hero__visual::before {
    width: 120%;
    height: 100%;
    left: -10%;
    top: 4%;
    background: radial-gradient(ellipse at 50% 42%, rgba(245, 213, 106, .55) 0%, rgba(224, 177, 58, .28) 32%, rgba(184, 134, 11, .08) 58%, transparent 74%);
    filter: blur(28px);
    animation: tropo-glow 5s ease-in-out infinite;
}
.tropo-hero__visual::after {
    width: 58%;
    height: 62%;
    left: 21%;
    top: 14%;
    background: radial-gradient(circle, rgba(255, 236, 170, .7) 0%, rgba(224, 177, 58, .22) 38%, transparent 70%);
    filter: blur(16px);
    animation: tropo-glow 4.2s ease-in-out infinite reverse;
}
.tropo-hero__glow {
    width: 78%;
    height: 28%;
    left: 11%;
    bottom: 2%;
    top: auto;
    background: radial-gradient(ellipse at center, rgba(224, 177, 58, .42) 0%, rgba(224, 177, 58, .12) 45%, transparent 72%);
    filter: blur(22px);
    animation: tropo-glow 4.8s ease-in-out infinite;
}
.tropo-hero__cup {
    position: relative;
    z-index: 1;
    width: min(100%, 460px);
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
    transform-style: preserve-3d;
    animation: tropo-float 5.5s ease-in-out infinite;
    filter: drop-shadow(0 32px 36px rgba(0, 0, 0, .55)) drop-shadow(0 0 34px rgba(224, 177, 58, .45));
    will-change: transform;
}
@keyframes tropo-float {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -14px; }
}
@keyframes tropo-glow {
    0%, 100% { opacity: .72; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
    .tropo-hero__cup, .tropo-hero__glow, .tropo-hero__visual::before, .tropo-hero__visual::after { animation: none; }
}
.tropo-spark { display: none; }

.tropo-section { padding: 64px 0; }
.tropo-section--alt { background: var(--bg-2); }
.tropo-section h2 {
    margin: 0 0 8px;
    font-family: var(--display);
    font-style: italic;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: var(--ink);
}
.tropo-section .tropo-intro { color: var(--muted); margin: 0 0 32px; }
.tropo-section__cta {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

.tropo-usp { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.tropo-card, .tropo-usp__item, .tropo-feat {
    background: transparent;
    border: 0;
    padding: 0;
}
.tropo-usp__icon, .tropo-feat__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    color: var(--gold);
}
.tropo-usp__item h3, .tropo-feat h3 { margin: 0 0 6px; font-size: 14px; font-weight: 700; color: var(--ink); }
.tropo-usp__item p, .tropo-feat p { margin: 0; color: var(--muted); font-size: 13px; }

.tropo-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tropo-cat {
    position: relative;
    display: block;
    color: inherit;
    background: var(--card);
    padding: 0;
    border: 1px solid var(--line);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.tropo-cat:hover,
ul.products li.product:hover,
.tropo-about__step:hover,
.tropo-about__fact:hover {
    color: inherit;
    opacity: 1;
    z-index: 1;
    border-color: var(--gold-2);
    box-shadow:
        0 0 0 1px var(--gold),
        0 0 28px rgba(245, 213, 106, .4),
        0 0 64px rgba(224, 177, 58, .28);
}
.tropo-cat img { width: 100%; aspect-ratio: 1; object-fit: contain; background: #fff; }
.tropo-cat__body { padding: 16px 16px 18px; }
.tropo-cat__count { display: none; }
.tropo-cat h3 {
    margin: 0 0 4px;
    font-family: var(--display);
    font-style: italic;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
}
.tropo-cat p { margin: 0; color: var(--muted); font-size: 13px; }
.tropo-feats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }

.tropo-contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 32px;
    align-items: stretch;
}
.tropo-contact-grid a { font-weight: 600; color: var(--gold); }
.tropo-hours { margin-top: 24px; }
.tropo-hours h3 {
    margin: 0 0 8px;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
}
.tropo-contact__map {
    display: flex;
    flex-direction: column;
    min-height: 360px;
    border: 1px solid var(--line);
    background: var(--card);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.tropo-contact__map:hover {
    z-index: 1;
    border-color: var(--gold-2);
    box-shadow:
        0 0 0 1px var(--gold),
        0 0 28px rgba(245, 213, 106, .4),
        0 0 64px rgba(224, 177, 58, .28);
}
.tropo-contact__map iframe {
    display: block;
    width: 100%;
    flex: 1 1 auto;
    min-height: 320px;
    height: 360px;
    border: 0;
}
.tropo-contact__map-link {
    display: block;
    padding: 12px 16px;
    border-top: 1px solid var(--line);
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-align: center;
}
.tropo-cta {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    padding: 12px 28px 8px;
    text-align: center;
    border: 0;
}
.tropo-cta p {
    margin: 0;
    font-family: var(--quote);
    font-style: italic;
    font-weight: 600;
    font-size: clamp(28px, 4.2vw, 44px);
    line-height: 1.35;
    letter-spacing: .01em;
    text-transform: none;
    color: var(--ink);
}
.tropo-cta p::before {
    content: "„";
    color: var(--gold);
    font-size: 1.15em;
    margin-right: .08em;
}
.tropo-cta p::after {
    content: "“";
    color: var(--gold);
    font-size: 1.15em;
    margin-left: .08em;
}
.tropo-cta strong { font-weight: 700; color: var(--gold); font-style: italic; }

.tropo-footer { background: #000; color: #bdbdbd; padding: 56px 0 20px; border-top: 1px solid var(--line); }
.tropo-footer__grid { width: min(1120px, calc(100% - 40px)); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.tropo-footer h3 { color: var(--gold); margin: 0 0 12px; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; }
.tropo-footer p, .tropo-footer li, .tropo-footer a { color: #bdbdbd; font-size: 14px; }
.tropo-footer a:hover { color: var(--gold); opacity: 1; }
.tropo-footer ul { margin: 0; padding: 0; list-style: none; }
.tropo-footer li { margin: 0 0 8px; }
.tropo-copy { width: min(1120px, calc(100% - 40px)); margin: 28px auto 0; padding-top: 16px; border-top: 1px solid #2a2418; color: #777; font-size: 12px; }

.tropo-page-hero { padding: 40px 0 16px; }
.tropo-page-hero h1 {
    margin: 0;
    font-family: var(--display);
    font-style: italic;
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
}
.tropo-about__hero {
    padding: 48px 0 8px;
    background:
        radial-gradient(ellipse 55% 80% at 85% 20%, rgba(224, 177, 58, .14), transparent 62%),
        var(--bg);
}
.tropo-about__hero h1 {
    background: linear-gradient(180deg, #fff6c8, var(--gold), var(--gold-deep));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.tropo-about__hero .tropo-lead {
    max-width: 640px;
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 17px;
}
.tropo-about__story {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: center;
}
.tropo-about__copy p { margin: 0 0 16px; color: var(--muted); }
.tropo-about__legal { color: var(--gold) !important; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; font-weight: 600; }
.tropo-about__visual { min-height: 420px; }
.tropo-about__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.tropo-about__step,
.tropo-about__fact {
    position: relative;
    display: block;
    padding: 22px 20px;
    background: var(--card);
    border: 1px solid var(--line);
    color: inherit;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.tropo-about__fact:hover { color: inherit; }
.tropo-about__num {
    display: block;
    font-family: var(--display);
    font-style: italic;
    font-size: 36px;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
}
.tropo-about__step h3 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
}
.tropo-about__step p { margin: 0; color: var(--muted); font-size: 14px; }
.tropo-about__facts { margin-bottom: 40px; }
.tropo-about__mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.tropo-about__mosaic .tropo-cat h3 { font-size: 18px; }
.tropo-about__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
.tropo-contact-page .tropo-about__hero h1 {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: #fff;
}
.tropo-contact-page__grid { align-items: start; }
.tropo-contact__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 20px 0 0;
}
.tropo-contact__card { text-decoration: none; }
.tropo-contact__card .tropo-usp__icon { margin-bottom: 10px; }
.tropo-contact__actions { justify-content: flex-start; margin-top: 24px; }
.tropo-contact-page .tropo-contact__map {
    min-height: 480px;
    height: 100%;
}
.tropo-contact-page .tropo-contact__map iframe {
    min-height: 440px;
    height: 480px;
}

.tropo-woo { padding: 40px 0 80px; }
.tropo-woo .page-title,
.woocommerce-products-header h1,
.woocommerce-products-header .page-title {
    font-family: var(--display) !important;
    font-style: italic;
    font-size: clamp(36px, 5vw, 52px) !important;
    font-weight: 700 !important;
    letter-spacing: .03em;
    line-height: 1.1;
    margin: 0 0 10px;
    color: var(--ink);
    text-transform: uppercase;
}
.tropo-shop-lead {
    margin: 0 0 28px;
    max-width: 540px;
    color: var(--muted);
    font-size: 16px;
}
.tropo-shop-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 28px;
}
.tropo-shop-cats a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.tropo-shop-cats a:hover,
.tropo-shop-cats a.is-active {
    border-color: var(--gold);
    color: #111;
    background: linear-gradient(180deg, var(--gold-2), var(--gold-deep));
}
.tropo-shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin: 0 0 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}
.woocommerce-result-count,
.woocommerce-ordering {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}
.woocommerce-ordering select {
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid var(--line);
    background: var(--card) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23e0b13a' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 12px center;
    padding: 8px 36px 8px 12px;
    font-size: 13px;
    color: var(--ink);
    min-height: 40px;
    border-radius: 0;
}
.woocommerce-loop-product__link { display: block; color: inherit; }
.woocommerce-loop-product__link:hover { color: inherit; }
ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}
ul.products::before, ul.products::after { display: none !important; }
ul.products li.product {
    position: relative;
    padding: 0;
    width: auto !important;
    margin: 0 !important;
    float: none !important;
    display: flex;
    flex-direction: column;
    background: var(--card);
    border: 1px solid var(--line);
    transition: border-color .2s ease, box-shadow .2s ease;
}
ul.products li.product:hover {
    z-index: 1;
    border-color: var(--gold-2);
    box-shadow:
        0 0 0 1px var(--gold),
        0 0 28px rgba(245, 213, 106, .4),
        0 0 64px rgba(224, 177, 58, .28);
}
ul.products li.product a img,
ul.products li.product img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    background: #fff;
    padding: 0;
    border: 0;
    margin: 0;
}
ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--display) !important;
    font-style: italic;
    font-size: 22px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0;
    margin: 0 !important;
    padding: 16px 16px 4px;
    color: var(--ink);
    line-height: 1.15;
}
ul.products .price {
    display: block;
    margin: 0;
    padding: 0 16px 18px;
    color: var(--muted);
    font-weight: 400;
    font-size: 13px;
}
ul.products .price .amount,
ul.products .price ins,
ul.products .price bdi {
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}
ul.products .button,
ul.products a.add_to_cart_button,
ul.products a.product_type_simple,
ul.products a.product_type_variable {
    display: none !important;
}
.woocommerce span.onsale { display: none; }

.tropo-crumbs {
    grid-column: 1 / -1;
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.tropo-crumbs a { color: var(--muted); }
.tropo-crumbs a:hover { color: var(--gold); }

.woocommerce div.product {
    display: block;
    padding: 12px 0 72px;
}
.tropo-pdp {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: start;
}
.woocommerce div.product .woocommerce-product-gallery {
    position: sticky;
    top: 80px;
    align-self: start;
    z-index: 0;
    background: #fff;
    padding: 36px;
    border: 1px solid var(--line);
}
.woocommerce div.product .woocommerce-product-gallery__wrapper { margin: 0; }
.woocommerce div.product .woocommerce-product-gallery__image img,
.woocommerce div.product .woocommerce-product-gallery__image--placeholder img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    background: #fff;
    margin: 0 auto;
}
.woocommerce div.product .flex-control-thumbs {
    display: flex;
    gap: 8px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}
.woocommerce div.product .flex-control-thumbs li { width: 72px; margin: 0; }
.woocommerce div.product .flex-control-thumbs img {
    border: 1px solid var(--line);
    background: #fff;
    opacity: 1;
}
.woocommerce div.product .flex-control-nav.flex-control-thumbs img.flex-active {
    border-color: var(--gold);
}
.woocommerce div.product .summary {
    position: relative;
    z-index: 1;
    min-width: 0;
}
.woocommerce div.product .product_title {
    font-family: var(--display);
    font-style: italic;
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 700;
    margin: 0 0 8px;
    text-transform: uppercase;
    line-height: 1.08;
}
.woocommerce div.product .product_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.woocommerce div.product .product_meta a { color: var(--muted); }
.woocommerce div.product .product_meta a:hover { color: var(--gold); }
.woocommerce div.product .sku_wrapper .sku { color: var(--ink); }
.tropo-pdp-spec {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 14px;
}
.woocommerce div.product p.price {
    margin: 0 0 20px;
    color: var(--gold);
    font-size: 26px;
    font-weight: 600;
}
.woocommerce div.product p.price del {
    color: var(--muted);
    font-size: 16px;
    margin-right: 8px;
}
.tropo-pdp-trust {
    list-style: none;
    margin: 18px 0 0;
    padding: 18px 0 0;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: .04em;
}
.tropo-pdp-trust li::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 8px;
    background: var(--gold);
    vertical-align: middle;
}
.woocommerce-tabs {
    border-top: 1px solid var(--line);
    padding-top: 32px;
    margin-top: 40px;
}
.woocommerce-Tabs-panel, .woocommerce-Tabs-panel h2 { color: var(--ink); }
.woocommerce-Tabs-panel h2 { font-size: 14px; letter-spacing: .12em; text-transform: uppercase; }
.woocommerce-Tabs-panel p { max-width: 68ch; color: var(--muted); }
.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    gap: 24px;
    list-style: none;
    border: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background: none;
    border: 0 !important;
    padding: 0 0 8px;
    margin: 0;
    border-bottom: 1px solid transparent !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    color: var(--muted);
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: 12px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    border-bottom-color: var(--gold) !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--gold); }
.related.products, .upsells.products {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}
.related.products > h2, .upsells.products > h2 {
    font-family: var(--display);
    font-style: italic;
    text-transform: uppercase;
    font-size: 28px;
    margin: 0 0 24px;
}
.stock { color: #7dba86; font-weight: 600; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }

.woocommerce-cart-form, .cart-collaterals, .woocommerce-checkout {
    background: var(--card);
    border: 1px solid var(--line);
    padding: 20px;
    color: var(--ink);
}
.woocommerce-notices-wrapper:not(:empty) { margin: 0 0 20px; }
.tropo-woo .woocommerce-notices-wrapper:not(:empty) { margin-top: 20px; }
.woocommerce-info, .woocommerce-message, .woocommerce-error,
.tropo-notice {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: baseline;
    column-gap: 16px;
    row-gap: 2px;
    margin: 0 0 16px;
    padding: 14px 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    list-style: none;
}
.woocommerce-error { border-bottom-color: #8a3a3a; }
.tropo-notice--ok::before,
.woocommerce-message::before { content: none; display: none; }
.tropo-notice__kicker {
    grid-column: 1;
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
}
.tropo-notice__copy {
    grid-column: 2;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.4;
}
.tropo-notice__copy strong {
    font-family: inherit;
    font-style: normal;
    font-weight: 600;
    font-size: inherit;
    letter-spacing: 0;
    color: inherit;
}
a.tropo-notice__btn,
.woocommerce-message a.button,
.woocommerce-info a.button {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
    margin: 0;
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent !important;
    color: var(--gold) !important;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 700;
    float: none;
    box-shadow: none;
}
a.tropo-notice__btn:hover,
.woocommerce-message a.button:hover {
    background: transparent !important;
    color: var(--gold-2) !important;
    opacity: 1;
}
@media (max-width: 720px) {
    .tropo-notice, .woocommerce-message {
        grid-template-columns: 1fr auto;
    }
    .tropo-notice__kicker { grid-column: 1; }
    .tropo-notice__copy { grid-column: 1 / -1; }
    a.tropo-notice__btn { grid-column: 2; grid-row: 1; }
}
.woocommerce table.shop_table { color: var(--ink); }

.tropo-cart__head { margin: 0 0 28px; }
.tropo-cart__head h1 {
    margin: 0;
    font-family: var(--display);
    font-style: italic;
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
}
.tropo-cart {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, .72fr);
    gap: 28px 40px;
    align-items: start;
}
.tropo-cart__head { grid-column: 1 / -1; }
.woocommerce-cart-form.tropo-cart__form,
.tropo-cart__aside.cart-collaterals {
    background: transparent;
    border: 0;
    padding: 0;
}
.tropo-cart__list { display: grid; gap: 0; }
.tropo-cart-item {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr) 110px 120px;
    gap: 16px 18px;
    align-items: start;
    position: relative;
    padding: 22px 0;
    border-top: 1px solid var(--line);
}
.tropo-cart-item__photo img {
    width: 104px;
    height: 104px;
    object-fit: contain;
    background: #fff;
}
.tropo-cart-item__name {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}
.tropo-cart-item__name a:hover { color: var(--gold); }
.tropo-cart-item .variation {
    display: grid;
    gap: 2px 10px;
    margin: 0 0 8px;
    font-size: 13px;
    color: var(--muted);
}
.tropo-cart-item .variation dt {
    display: inline;
    margin: 0;
    font-weight: 600;
    color: var(--ink);
}
.tropo-cart-item .variation dd {
    display: inline;
    margin: 0 0 0 6px;
}
.tropo-cart-item .variation dd p { margin: 0; display: inline; }
.tropo-cart-item__unit { margin: 0; color: var(--muted); font-size: 13px; }
.tropo-cart-item__label {
    display: block;
    margin: 0 0 8px;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
}
.tropo-cart-item__sum strong {
    font-family: var(--display);
    font-style: italic;
    font-size: 26px;
    color: var(--gold);
}
.tropo-cart-item__remove {
    position: absolute;
    right: 0;
    bottom: 18px;
    color: var(--muted) !important;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: none !important;
    border: 0 !important;
    min-height: auto !important;
    padding: 0 !important;
    float: none !important;
}
.tropo-cart-item__remove:hover { color: var(--gold) !important; }
.tropo-cart__form .quantity {
    display: inline-flex;
    border: 1px solid var(--line);
}
.tropo-cart__form .qty {
    width: 64px;
    min-height: 44px;
    border: 0;
    background: transparent;
    color: var(--ink);
    text-align: center;
    font-weight: 600;
}
.tropo-cart__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    align-items: end;
    padding: 22px 0 0;
    border-top: 1px solid var(--line);
}
.tropo-cart__coupon {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: end;
}
.tropo-cart__coupon label {
    width: 100%;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
}
.tropo-cart__coupon .input-text {
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid var(--line);
    background: #0a0a0a;
    color: var(--ink);
}
.tropo-cart-totals {
    background: #14110a;
    border: 1px solid var(--gold);
    padding: 24px;
    position: sticky;
    top: calc(var(--header) + 16px);
}
.tropo-cart-totals h2 {
    margin: 0 0 18px;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    font-family: var(--sans);
    font-style: normal;
    font-weight: 700;
}
.tropo-cart-totals .shop_table {
    width: 100%;
    border: 0;
    margin: 0 0 20px;
}
.tropo-cart-totals th,
.tropo-cart-totals td {
    border: 0;
    padding: 10px 0;
    color: var(--ink);
    text-align: left;
}
.tropo-cart-totals td { text-align: right; }
.tropo-cart-totals .order-total th,
.tropo-cart-totals .order-total td {
    border-top: 1px solid var(--line);
    padding-top: 16px;
}
.tropo-cart-totals .order-total td {
    font-family: var(--display);
    font-style: italic;
    font-size: 32px;
    color: var(--gold);
}
.tropo-cart__checkout,
.tropo-cart-totals .checkout-button {
    width: 100%;
}
.tropo-cart-note {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}
.tropo-cart-totals .woocommerce-shipping-methods {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
}
.tropo-cart-totals .woocommerce-shipping-destination,
.tropo-cart-totals .woocommerce-shipping-calculator {
    margin: 8px 0 0;
    font-size: 12px;
    color: var(--muted);
}
.tropo-cart-empty {
    max-width: 560px;
    padding: 24px 0 60px;
}
.tropo-cart-empty h1 {
    margin: 0 0 12px;
    font-family: var(--display);
    font-style: italic;
    font-size: clamp(36px, 5vw, 52px);
    text-transform: uppercase;
}
.tropo-cart-empty p { color: var(--muted); margin: 0 0 24px; }

@media (max-width: 1100px) {
    .tropo-feats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
    .tropo-wrap, .tropo-header__inner, .tropo-hero__grid, .tropo-footer__grid, .tropo-copy {
        width: min(1120px, calc(100% - 32px));
    }
    .tropo-nav-toggle { display: flex; }
    .tropo-header__actions { margin-left: 0; }
    .tropo-nav {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        position: fixed;
        top: var(--header);
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 60;
        background: rgba(5, 5, 5, .98);
        padding: 12px 24px 40px;
        overflow: auto;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .2s ease, visibility .2s ease;
    }
    body.tropo-nav-open .tropo-nav {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .tropo-nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    .tropo-nav a {
        display: flex;
        align-items: center;
        min-height: 48px;
        padding: 12px 4px;
        font-size: 15px;
        border-bottom: 1px solid var(--line);
    }
    .tropo-hero { padding: 36px 0 20px; }
    .tropo-hero__grid, .tropo-contact-grid, .tropo-footer__grid, .tropo-pdp, .tropo-about__story { grid-template-columns: 1fr; }
    .tropo-hero__visual { min-height: 300px; }
    .tropo-about__visual { min-height: 280px; }
    .woocommerce div.product .woocommerce-product-gallery {
        position: static;
        padding: 20px;
    }
    .tropo-usp, .tropo-cats, .tropo-feats, ul.products, .tropo-about__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .tropo-about__mosaic { grid-template-columns: repeat(2, 1fr); }
    .tropo-pdp { gap: 28px; }
    .tropo-section { padding: 48px 0; }
    .tropo-shop-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .woocommerce-ordering, .woocommerce-ordering select { width: 100%; }
    .tropo-cart { grid-template-columns: 1fr; }
    .tropo-cart-totals { position: static; }
    .tropo-cart-item { grid-template-columns: 84px minmax(0, 1fr); }
    .tropo-cart-item__qty, .tropo-cart-item__sum { grid-column: 2; }
    .tropo-cart-item__photo img { width: 84px; height: 84px; }
    .tropo-contact-page .tropo-contact__map,
    .tropo-contact-page .tropo-contact__map iframe {
        min-height: 280px;
        height: 280px;
    }
    .woocommerce div.product .woocommerce-tabs ul.tabs {
        gap: 16px;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    .woocommerce div.product .flex-control-thumbs { flex-wrap: wrap; }
    .related.products > h2, .upsells.products > h2 { font-size: 24px; }
}
@media (max-width: 720px) {
    .tropo-pdp-trust { grid-template-columns: 1fr; }
    .tropo-cart__actions { flex-direction: column; align-items: stretch; }
    .tropo-cart__coupon, .tropo-cart__coupon .input-text { width: 100%; }
    .tropo-cart-item__remove { position: static; margin-top: 8px; }
    .tropo-page-hero h1 { font-size: 32px; }
    ul.products li.product .woocommerce-loop-product__title { font-size: 18px !important; }
    .tropo-cat h3 { font-size: 18px; }
    .woocommerce table.shop_table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .variations th.label { display: block; width: auto; white-space: normal; padding-right: 0; }
}
@media (max-width: 640px) {
    .tropo-usp, .tropo-cats, .tropo-feats, ul.products, .tropo-about__steps, .tropo-contact__cards { grid-template-columns: 1fr; }
    .tropo-hero__actions, .tropo-about__actions { flex-direction: column; align-items: stretch; }
    .tropo-hero__actions .tropo-btn,
    .tropo-hero__actions .tropo-btn-ghost,
    .tropo-about__actions .tropo-btn,
    .tropo-about__actions .tropo-btn-ghost { width: 100%; }
    .tropo-shop-cats { gap: 6px; }
    .tropo-shop-cats a { min-height: 36px; padding: 0 10px; font-size: 11px; }
}
@media (max-width: 480px) {
    .tropo-wrap, .tropo-header__inner, .tropo-hero__grid, .tropo-footer__grid, .tropo-copy {
        width: min(1120px, calc(100% - 24px));
    }
    .tropo-logo img {
        height: 28px !important;
        max-width: 120px !important;
    }
    .tropo-cart-btn { padding: 0 12px; font-size: 11px; min-height: 40px; }
    .tropo-hero { padding: 24px 0 12px; }
    .tropo-hero h1, .tropo-wordmark { font-size: clamp(30px, 11vw, 42px); }
    .tropo-hero__visual { min-height: 220px; }
    .tropo-hero p.tropo-lead, .tropo-hero .tropo-lead { font-size: 15px; margin: 14px 0 20px; }
    .tropo-section { padding: 36px 0; }
    .tropo-section h2 { font-size: 28px; }
    .tropo-cta { padding: 8px 4px; }
    .tropo-cta p { font-size: clamp(22px, 7vw, 32px); }
    .tropo-about__mosaic { grid-template-columns: 1fr; }
    .tropo-woo { padding: 24px 0 56px; }
    .woocommerce div.product .woocommerce-product-gallery { padding: 12px; }
    .woocommerce div.product p.price { font-size: 22px; }
    .tropo-cart-item { grid-template-columns: 64px minmax(0, 1fr); gap: 12px; }
    .tropo-cart-item__photo img { width: 64px; height: 64px; }
    .tropo-cart-totals { padding: 18px; }
    .tropo-cart-totals .order-total td { font-size: 26px; }
    .tropo-footer { padding: 36px 0 16px; }
    input, select, textarea { font-size: 16px; }
}

html, body.tropo-theme,
body.elementor-template-canvas,
.elementor-page {
    background: var(--bg) !important;
    color: var(--ink);
}
