/* getgo.my storefront — reproduces the look of the Supro-themed site in our
   own CSS. Tokens were measured on the live site (2026-08-22): white page,
   #222 headings/buttons, #777 body, #bbb prices and inactive tabs, #eaeaea
   rules, 1170px container, 4-column 270px product cards, no border radii,
   12px/700/uppercase/0.75px letter-spaced text buttons. Body font: the theme
   uses the commercial "Cerebri Sans"; DM Sans is the closest open face. */

:root {
  --c-text: #777;
  --c-dark: #222;
  --c-light: #bbb;
  --c-mid: #999;
  --c-rule: #eaeaea;
  --c-bg: #fff;
  --c-footer: #222;
  --c-success: #2e7d32;
  --c-error: #c62828;
  --font: "DM Sans", "Cerebri Sans", Arial, Helvetica, sans-serif;
  --container: 1170px;
  --header-h: 105px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--c-mid); }
h1, h2, h3, h4 { color: var(--c-dark); font-weight: 700; line-height: 1.2; margin: 0 0 .5em; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; font-size: inherit; cursor: pointer; }
input, select { font-family: inherit; font-size: 14px; color: var(--c-dark); }
[hidden] { display: none !important; }
.muted { color: var(--c-light); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 15px; }
.container.narrow { max-width: 1000px; }
.empty-space { height: 150px; }

/* ---------- header ---------- */
.site-header {
  height: var(--header-h);
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-rule);
  position: relative;
  z-index: 50;
}
.header-row {
  max-width: 1265px; margin: 0 auto; padding: 0 40px; height: 100%;
  display: flex; align-items: center; gap: 40px;
}
.header-logo .logo { display: block; }
.logo img { width: 113px; height: 36px; }
.logo-light { display: none; }
.header-nav { flex: 1; }
.header-nav .menu { display: flex; }
.header-nav .menu > li { padding: 0 20px; }
.header-nav .menu > li > a {
  display: block; padding: 10px 0; font-size: 16px; color: var(--c-dark); position: relative;
}
.header-nav .menu > li > a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 6px; height: 1px;
  background: currentColor; transform: scaleX(0); transition: transform .25s;
}
.header-nav .menu > li:hover > a::after, .header-nav .menu > li.current > a::after { transform: scaleX(1); }
/* Store dropdown (the live site's "Store" item opens the categories) */
.header-nav .menu > li { position: relative; }
.header-nav .submenu {
  position: absolute; top: 100%; left: 0; min-width: 220px; padding: 15px 0; background: #fff;
  box-shadow: 0 3px 16px rgba(0,0,0,.08); opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s, transform .25s, visibility .25s; z-index: 60;
}
.header-nav .menu > li:hover > .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.header-nav .submenu li a { display: block; padding: 8px 30px; font-size: 15px; color: var(--c-text); white-space: nowrap; }
.header-nav .submenu li a:hover { color: var(--c-dark); }
body.header-transparent .site-header:not(.minimized) .submenu a { color: var(--c-text); }
.header-extra { display: flex; align-items: center; gap: 20px; margin-left: auto; }
.icon-link { display: inline-flex; position: relative; color: var(--c-dark); }
.ico { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.cart-counter {
  position: absolute; top: -8px; right: -8px; min-width: 15px; height: 15px; padding: 0 2px;
  background: #000; color: #fff; font-size: 10px; font-weight: 600; line-height: 15px; text-align: center; border-radius: 50%;
}
.menu-toggle { display: none; }

/* transparent header over the hero (home page) */
body.header-transparent .site-header {
  position: absolute; top: 0; left: 0; right: 0; background: transparent; border-bottom: 0;
}
body.header-transparent .site-header:not(.minimized) .logo-dark { display: none; }
body.header-transparent .site-header:not(.minimized) .logo-light { display: block; }
body.header-transparent .site-header:not(.minimized) .menu > li > a,
body.header-transparent .site-header:not(.minimized) .icon-link { color: #fff; }
/* Sticky ("minimized") header — Supro's rule: once the page is scrolled past
   the header height + 20px, the header is fixed, white, 20px padding (15px on
   phones), 0 1px 1px #f0f0f0 shadow, fading down over .25s, dark logo/menu. */
.site-header.minimized {
  position: fixed !important; top: 0; left: 0; right: 0; height: auto; padding: 20px 0;
  background: #fff !important; border-bottom: 0; box-shadow: 0 1px 1px 0 #f0f0f0;
  animation: fadeInDown .25s both; z-index: 999;
}
.site-header.minimized .header-row { height: 46px; }
@keyframes fadeInDown { from { opacity: 0; transform: translate3d(0, -100%, 0); } to { opacity: 1; transform: none; } }

/* ---------- hero slider ---------- */
/* Height follows the live Revolution Slider grid: 868@1240, 768@1024,
   960@778, 720@480 — i.e. a width ratio per breakpoint, capped at 868px. */
.hero { position: relative; height: min(868px, 70vw); overflow: hidden; background: #111; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease; pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-link { position: absolute; inset: 0; }
.hero-dots { position: absolute; bottom: 26px; left: 0; right: 0; display: flex; justify-content: center; gap: 10px; z-index: 2; }
.hero-dots button { width: 10px; height: 10px; border-radius: 50%; border: 1px solid #fff; background: transparent; padding: 0; }
.hero-dots button.active { background: #fff; }

/* ---------- product grid ---------- */
.products { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.products.columns-4 > li { width: 25%; padding: 0 15px; margin-bottom: 70px; }
.product-inner { position: relative; }
.product-thumb { position: relative; margin-bottom: 15px; overflow: hidden; background: #fff; }
.product-thumb img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-thumb img { transform: scale(1.03); }
.noimage { display: block; aspect-ratio: 1 / 1; background: #f5f5f5; }
.card-action {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 0 12px; text-align: center; background: #fff;
  transform: translateY(100%); transition: transform .3s;
}
.product-card:hover .card-action { transform: translateY(0); }
.button-text {
  background: none; border: 0; padding: 0; color: var(--c-dark);
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .75px; line-height: 1;
}
.button-text:hover { color: var(--c-mid); }
.button-text.muted { color: var(--c-light); }
.product-details h3 { font-size: 16px; font-weight: 400; margin: 0 0 8px; line-height: 1.2; }
.product-details .price { font-size: 14px; color: var(--c-light); }
.product-card.outofstock .product-thumb img { opacity: .6; }

/* home tabs */
.product-header { display: flex; justify-content: space-between; margin-bottom: 60px; }
.nav-filter { margin: 0 -12px; }
.nav-filter li {
  display: inline-block; padding: 0 12px; font-size: 16px; color: var(--c-light); cursor: pointer; transition: color .2s;
}
.nav-filter li:hover, .nav-filter li.active { color: var(--c-dark); }
.tab-panel { display: none; }
.tab-panel.active { display: flex; }
.product-tabs .tab-panel.active { display: block; }

/* ---------- shop page header ---------- */
.page-header { padding: 50px 0 40px; }
.page-title { font-size: 48px; font-weight: 700; margin: 0 0 12px; }
.breadcrumb { font-size: 14px; color: var(--c-mid); }
.breadcrumb a { color: var(--c-mid); }
.breadcrumb a:hover { color: var(--c-dark); }
.breadcrumb .sep { display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: var(--c-light); margin: 0 10px; vertical-align: middle; }
.breadcrumb > span:last-child { color: var(--c-dark); }
.page-header-catalog { padding: 95px 0 50px; }
.catalog-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.catalog-head .page-title { margin: 0; }
.shop-toolbar { display: flex; align-items: center; gap: 70px; font-size: 16px; color: var(--c-mid); }
.shop-toolbar strong { color: var(--c-dark); font-weight: 700; }
.ordering { display: flex; align-items: center; gap: 14px; position: relative; }
.sort-toggle { border: 0; background: none; padding: 0; display: inline-flex; align-items: center; gap: 8px; font-size: 16px; color: var(--c-mid); cursor: pointer; }
.sort-toggle .ico { width: 14px; height: 14px; }
.sort-panel {
  position: absolute; top: 100%; right: 0; margin-top: 14px; min-width: 250px; padding: 18px 0; background: #fff;
  box-shadow: 0 3px 16px rgba(0,0,0,.08); opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s, transform .25s, visibility .25s; z-index: 60;
}
.ordering.open .sort-panel { opacity: 1; visibility: visible; transform: translateY(0); }

/* header account dropdown (signed in): hover on desktop, tap-toggle on touch */
.account-dd { position: relative; }
.account-panel {
  position: absolute; top: 100%; right: -12px; margin-top: 16px; min-width: 190px; padding: 14px 0; background: #fff;
  box-shadow: 0 3px 16px rgba(0,0,0,.08); opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s, transform .25s, visibility .25s; z-index: 60;
}
.account-dd:hover .account-panel, .account-dd:focus-within .account-panel,
.account-dd.open .account-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.account-hello { padding: 0 24px 10px; margin-bottom: 8px; font-size: 13px; color: var(--c-mid);
  border-bottom: 1px solid var(--c-rule); white-space: nowrap; }
.account-panel a, .account-panel .linklike { display: block; width: 100%; text-align: left; padding: 8px 24px;
  font-size: 15px; color: var(--c-mid); white-space: nowrap; }
.account-panel a:hover, .account-panel .linklike:hover { color: var(--c-dark); }
.sort-panel li a { display: block; padding: 10px 40px; font-size: 16px; color: var(--c-mid); white-space: nowrap; }
.sort-panel li a:hover, .sort-panel li a.active { color: var(--c-dark); }

/* ---------- product page ---------- */
.single-product-detail { padding: 40px 0 40px; }
.single-product-detail > .container > .breadcrumb { margin-bottom: 50px; }
.product-layout { display: flex; gap: 60px; }
.product-images { width: 570px; flex: 0 0 570px; }
.gallery { position: relative; }
.gallery-main { margin: 0; display: none; }
.gallery-main.active { display: block; }
.gallery-main img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; background: #fff; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 10px; }
.gallery-thumbs li { width: 130px; cursor: pointer; border: 1px solid transparent; }
.gallery-thumbs li.active { border-color: var(--c-dark); }
.product-summary { flex: 1; min-width: 0; padding-top: 0; }
.product-title { font-size: 30px; line-height: 36px; margin: 0 0 10px; }
.sku-wrapper { font-size: 14px; color: var(--c-mid); margin-bottom: 18px; }
.product-summary .price { font-size: 24px; color: var(--c-dark); margin: 0 0 25px; }
.product-summary .price del { color: var(--c-light); font-size: 18px; margin-right: 8px; }
.short-description { margin-bottom: 25px; }
.variations { border-collapse: collapse; margin-bottom: 20px; }
.variations th { text-align: left; font-weight: 700; color: var(--c-dark); font-size: 14px; padding: 0 25px 14px 0; }
.variations td { padding: 0 0 14px; }
.variations select { min-width: 260px; border: 1px solid var(--c-rule); padding: 10px 12px; background: #fff; }
.reset-variations { font-size: 12px; margin-left: 12px; color: var(--c-mid); text-decoration: underline; }
.stock { font-size: 14px; margin: 0 0 12px; color: var(--c-error); min-height: 0; }
.stock:empty { display: none; }
.add-row { display: flex; gap: 15px; align-items: center; }
.quantity { display: inline-flex; border: 1px solid var(--c-rule); height: 44px; }
.quantity button { width: 38px; border: 0; background: #fff; color: var(--c-dark); font-size: 18px; }
.quantity input { width: 50px; border: 0; text-align: center; font-weight: 700; font-size: 14px; -moz-appearance: textfield; }
.quantity input::-webkit-outer-spin-button, .quantity input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.button {
  display: inline-block; background: var(--c-dark); color: #fff; border: 1px solid var(--c-dark); padding: 0 28px;
  height: 44px; line-height: 42px; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px;
  transition: background .2s, color .2s; white-space: nowrap;
}
.button:hover { background: #000; color: #fff; }
.button:disabled { opacity: .4; cursor: not-allowed; }
.button-outline { background: #fff; color: var(--c-dark); }
.button-outline:hover { background: var(--c-dark); color: #fff; }
.button-block { display: block; text-align: center; width: 100%; padding: 0; }
.buy-now { margin-top: 15px; background: var(--c-mid); border-color: var(--c-mid); }
.buy-now:hover { background: var(--c-dark); border-color: var(--c-dark); }
.product-meta { margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--c-rule); font-size: 15px; color: var(--c-mid); }
.product-meta strong { color: var(--c-dark); text-transform: uppercase; font-size: 13px; letter-spacing: .5px; }
.product-meta a { color: var(--c-mid); }
.product-meta a:hover { color: var(--c-dark); }
.social-share { display: flex; gap: 14px; margin-top: 40px; }
.social-share .ico { width: 18px; height: 18px; stroke-width: 1.8; }
.social-share a { color: var(--c-dark); }
.social-share a:hover { color: var(--c-mid); }

.product-tabs { margin: 30px 0 80px; }
.product-tabs .tabs { display: flex; justify-content: center; gap: 0; border-top: 1px solid var(--c-rule); border-bottom: 1px solid var(--c-rule); padding: 24px 0; margin-bottom: 60px; }
.product-tabs .tabs li { padding: 0 27px; font-size: 16px; color: var(--c-light); cursor: pointer; }
.product-tabs .tabs li.active, .product-tabs .tabs li:hover { color: var(--c-dark); }
.product-tabs .tab-panel img { margin: 0 auto; }
.product-tabs .tab-panel p { margin: 0 0 1em; }
.section-title { font-size: 30px; text-align: center; margin-bottom: 45px; }
.related-products { margin-bottom: 20px; }

/* ---------- cart ---------- */
.cart-empty { text-align: center; padding: 40px 0 80px; }
.cart-empty p { margin-bottom: 24px; }
.cart-table { width: 100%; border-collapse: collapse; border-top: 1px solid var(--c-rule); }
.cart-table th { text-align: left; font-size: 14px; font-weight: 700; color: var(--c-dark); padding: 16px 12px; border-bottom: 1px solid var(--c-rule); }
.cart-table td { padding: 20px 12px; border-bottom: 1px solid var(--c-rule); vertical-align: middle; }
.cart-table .col-remove { width: 40px; padding-left: 0; }
.cart-table .col-thumb { width: 100px; }
.cart-table .col-thumb img { width: 80px; height: 80px; object-fit: cover; }
.cart-table .col-name a { color: var(--c-dark); }
.line-options { display: block; font-size: 13px; color: var(--c-mid); }
.cart-table .col-subtotal { color: var(--c-dark); }
.remove-line, .minicart-remove { background: none; border: 1px solid var(--c-rule); border-radius: 50%; width: 26px; height: 26px; line-height: 22px; color: var(--c-mid); font-size: 18px; padding: 0; }
.remove-line:hover, .minicart-remove:hover { color: var(--c-error); border-color: var(--c-error); }
.cart-actions { display: flex; justify-content: space-between; padding: 24px 0; }
.cart-totals { max-width: 480px; margin: 30px 0 80px auto; }
.cart-totals h2 { font-size: 22px; margin-bottom: 18px; }
.cart-totals table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.cart-totals th, .cart-totals td { padding: 14px 0; border-bottom: 1px solid var(--c-rule); text-align: left; }
.cart-totals td { text-align: right; color: var(--c-dark); }
.cart-totals th { font-weight: 700; color: var(--c-dark); }
.cart-totals .order-total td { font-size: 20px; font-weight: 700; }
.cart-totals td.muted { color: var(--c-light); font-size: 13px; }

/* coupon */
.coupon-form { margin: 10px 0 30px; display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.coupon-form label { font-size: 14px; font-weight: 700; color: var(--c-dark); }
.coupon-form input[type=text] { border: 1px solid var(--c-rule); padding: 10px 12px; font-size: 14px; }

/* ---------- notices / toast ---------- */
.notice { padding: 14px 20px; margin: 20px 0; border: 1px solid var(--c-rule); border-left: 3px solid var(--c-dark); color: var(--c-dark); font-size: 14px; }
.notice-error { border-left-color: var(--c-error); }
.toast {
  position: fixed; left: 50%; bottom: 30px; transform: translate(-50%, 20px); background: var(--c-dark); color: #fff;
  padding: 12px 24px; font-size: 14px; opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s; z-index: 200;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- off-canvas panels ---------- */
.offcanvas-layer { position: fixed; inset: 0; background: rgba(0,0,0,.5); opacity: 0; visibility: hidden; transition: opacity .3s; z-index: 100; }
.offcanvas-layer.open { opacity: 1; visibility: visible; }
.offcanvas {
  position: fixed; top: 0; bottom: 0; right: 0; width: 400px; max-width: 92vw; background: #fff; z-index: 110;
  transform: translateX(100%); transition: transform .35s; display: flex; flex-direction: column;
}
.offcanvas.open { transform: translateX(0); }
.offcanvas-head { display: flex; justify-content: flex-end; padding: 22px 30px 10px; }
.offcanvas-close { color: var(--c-dark); }
.offcanvas-body { flex: 1; overflow: auto; padding: 10px 30px 30px; }
.minicart-empty { color: var(--c-mid); }
.minicart-item { display: flex; gap: 15px; align-items: flex-start; padding: 15px 0; border-bottom: 1px solid var(--c-rule); }
.minicart-thumb { flex: 0 0 70px; }
.minicart-thumb img { width: 70px; height: 70px; object-fit: cover; }
.minicart-info { flex: 1; min-width: 0; font-size: 14px; }
.minicart-name { display: block; color: var(--c-dark); }
.minicart-options { display: block; color: var(--c-mid); font-size: 13px; }
.minicart-qty { display: block; color: var(--c-light); }
.minicart-total { display: flex; justify-content: space-between; padding: 20px 0; font-size: 16px; color: var(--c-dark); }
.minicart-buttons { display: flex; gap: 10px; }
.minicart-buttons .button { flex: 1; text-align: center; padding: 0; }
.panel-menu li a { display: block; padding: 12px 0; border-bottom: 1px solid var(--c-rule); font-size: 16px; }

/* ---------- search overlay ---------- */
.search-modal {
  position: fixed; inset: 0; background: rgba(255,255,255,.97); z-index: 120;
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; overflow: auto;
}
.search-modal.open { opacity: 1; visibility: visible; }
.search-close { position: absolute; top: 30px; right: 40px; color: var(--c-dark); }
.search-box { max-width: 760px; margin: 0 auto; padding: 160px 20px 60px; }
.search-form { display: flex; border-bottom: 2px solid var(--c-dark); }
.search-form input { flex: 1; border: 0; background: none; font-size: 28px; padding: 12px 0; color: var(--c-dark); outline: none; }
.search-form input::placeholder { color: var(--c-light); }
.search-form input::-webkit-search-cancel-button { display: none; }
.search-form button { border: 0; background: none; color: var(--c-dark); padding: 0 4px; }
.search-form button .ico { width: 26px; height: 26px; }
.search-results { margin-top: 20px; }
.search-results li a { display: flex; align-items: center; gap: 18px; padding: 12px 0; border-bottom: 1px solid var(--c-rule); }
.search-results img { width: 60px; height: 60px; object-fit: cover; }
.search-results .sr-name { flex: 1; color: var(--c-dark); }
.search-results .sr-price { color: var(--c-light); font-size: 14px; }
.search-results .sr-all a { display: block; text-align: center; padding: 16px 0; border: 0; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .75px; }
.search-results .sr-none { padding: 16px 0; color: var(--c-mid); }
@media (max-width: 767px) {
  .search-box { padding: 110px 20px 40px; }
  .search-form input { font-size: 22px; }
  .search-close { top: 22px; right: 22px; }
}

/* ---------- content pages ---------- */
/* Content-page header sits exactly where the catalog header does: same
   padding, left-aligned title with the breadcrumb below (user 2026-08-25). */
.page-header-default { padding: 95px 0 50px; }
.page-header-default h1 { font-size: 48px; line-height: 1.2; margin: 0 0 24px; }
.page-header-default .breadcrumb a { color: var(--c-mid); }
.entry-content { padding: 40px 0 80px; }
/* FAQ groups (the Help page): title | question | answer, like the theme's shortcode */
.faq-group { display: flex; margin: 0 -15px 0; }
.faq-group .g-title { width: 25%; padding: 0 15px; font-size: 18px; color: #000; margin: 0 0 30px; }
.faq-group .faq-items { width: 75%; padding: 0 15px; }
.faq-item { display: flex; margin: 0 -15px 65px; }
.faq-item .title { width: 41.6667%; padding: 0 15px; font-size: 16px; font-weight: 400; line-height: 1.2; color: var(--c-dark); margin: 0 0 10px; }
.faq-item .desc { width: 58.3333%; padding: 0 15px; font-size: 14px; line-height: 1.6; color: var(--c-text); }
.faq-item .desc a { color: var(--c-dark); text-decoration: none; }
.faq-item .desc a:hover { color: var(--c-mid); }
.faq-item .desc strong { color: var(--c-dark); }
.entry-content h2 { font-size: 24px; margin-top: 1.6em; }
.entry-content h3 { font-size: 18px; margin-top: 1.4em; }
.entry-content p, .entry-content ul, .entry-content ol { margin: 0 0 1.2em; }
.entry-content ul { list-style: disc; padding-left: 1.4em; }
.entry-content ol { list-style: decimal; padding-left: 1.4em; }
.entry-content a { text-decoration: underline; }
.entry-content img { margin: 1em 0; }

/* ---------- account ---------- */
.signed-dot { position: absolute; bottom: -2px; right: -4px; width: 8px; height: 8px; border-radius: 50%; background: var(--c-success); }
.auth-columns { display: flex; gap: 60px; padding-bottom: 80px; }
.auth-box { flex: 1; max-width: 480px; }
.auth-box h2 { font-size: 22px; margin-bottom: 24px; }
.auth-single { max-width: 480px; padding-bottom: 80px; }
.auth-aside { font-size: 14px; }
.account-form label, .auth-box label, .auth-single label { display: block; font-size: 14px; font-weight: 700; color: var(--c-dark); margin-bottom: 6px; }
.account-form input, .auth-box input, .auth-single input,
.account-form select { width: 100%; max-width: 480px; border: 1px solid var(--c-rule); padding: 10px 12px; font-size: 15px; background: #fff; }
.account-form input:disabled { background: #f7f7f7; color: var(--c-mid); }
.account-form p, .auth-box p, .auth-single p { margin: 0 0 18px; }
.account-form h2 { font-size: 18px; margin: 30px 0 18px; }
.form-row { display: flex; gap: 20px; }
.form-row > p { flex: 1; }
.account-layout { display: flex; gap: 60px; padding-bottom: 80px; }
.account-nav { flex: 0 0 220px; }
.account-nav li { border-bottom: 1px solid var(--c-rule); }
.account-nav a, .account-nav .linklike { display: block; width: 100%; text-align: left; padding: 12px 0; font-size: 15px; color: var(--c-mid); background: none; border: 0; }
.account-nav li.active a, .account-nav a:hover, .account-nav .linklike:hover { color: var(--c-dark); }
.account-content { flex: 1; min-width: 0; }
.account-table { width: 100%; border-collapse: collapse; }
.account-table th { text-align: left; font-size: 14px; color: var(--c-dark); padding: 12px; border-bottom: 1px solid var(--c-rule); }
.account-table td { padding: 14px 12px; border-bottom: 1px solid var(--c-rule); }
.account-table .num { text-align: right; }
.account-table td.actions { text-align: right; }

/* affiliate dashboard: flat sections, one heading style, no boxes */
.aff h2 { font-size: 18px; margin: 36px 0 14px; }
.aff h2:first-child { margin-top: 0; }
.aff p { max-width: 560px; }
.aff-linkrow { display: flex; gap: 10px; max-width: 560px; }
.aff-linkrow input { flex: 1; min-width: 0; border: 1px solid var(--c-rule); padding: 10px 12px; font-size: 15px; color: var(--c-dark); background: #f9f9f9; }
.aff-note { font-size: 14px; color: var(--c-mid); margin-top: 10px; }
/* quiet expanding section for secondary forms (bank details, email change) */
.disclose { margin: 4px 0 10px; max-width: 560px; }
.disclose summary { list-style: none; display: inline; cursor: pointer; font-size: 14px; color: var(--c-mid); text-decoration: underline; }
.disclose summary::-webkit-details-marker { display: none; }
.disclose summary:hover { color: var(--c-dark); }
.disclose form { margin-top: 18px; }
.disclose-note { font-size: 14px; color: var(--c-mid); }
/* variant that sits directly under a field inside a form */
.disclose-infield { margin: -10px 0 18px; }
.disclose-infield[open] > p:first-of-type { margin-top: 14px; }
.inline-form { display: inline; }
.linklike { background: none; border: 0; padding: 0; font: inherit; color: inherit; cursor: pointer; }
.button-text.danger { color: var(--c-error); }
.address-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.address-card { position: relative; border: 1px solid var(--c-rule); padding: 20px; font-size: 14px; line-height: 1.7; }
.address-card.default { border-color: var(--c-dark); }
.address-card strong { color: var(--c-dark); }
.address-tag { position: absolute; top: 12px; right: 12px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--c-dark); }
.address-actions { margin-top: 12px; display: flex; gap: 16px; }

/* ---------- checkout ---------- */
.checkout-layout { display: flex; gap: 60px; padding-bottom: 80px; align-items: flex-start; }
.checkout-main { flex: 1; min-width: 0; }
.checkout-main h2, .checkout-summary h2 { font-size: 22px; margin-bottom: 24px; }
.checkout-summary { flex: 0 0 400px; border: 1px solid var(--c-rule); padding: 30px; }
.summary-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.summary-table td, .summary-table th { text-align: left; padding: 10px 0; border-bottom: 1px solid var(--c-rule); font-size: 14px; vertical-align: top; }
.summary-table .num { text-align: right; white-space: nowrap; }
.summary-table tfoot th { color: var(--c-dark); }
.summary-table .order-total th, .summary-table .order-total td { font-size: 17px; font-weight: 700; color: var(--c-dark); }
.checkout-note { font-size: 13px; margin-top: 14px; }
.address-card.selectable { display: block; cursor: pointer; }
.address-card.selectable input { position: absolute; opacity: 0; }
.address-card.selectable:has(input:checked) { border-color: var(--c-dark); box-shadow: 0 0 0 1px var(--c-dark); }
.address-card.unavailable { opacity: .5; cursor: not-allowed; }
.ship-note { display: inline-block; margin-top: 8px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--c-dark); }

/* ---------- footer ---------- */
.site-footer { background: var(--c-footer); color: var(--c-text); margin-top: 20px; }
.footer-widgets { padding: 95px 0 50px; }
.footer-cols { display: flex; }
.footer-col { width: 20%; }
.widget-title { color: #fff; font-size: 14px; font-weight: 700; margin: 0 0 40px; }
.footer-menu li { line-height: 24px; padding: 5px 0; }
.footer-menu a { color: var(--c-mid); font-size: 15px; }
.footer-menu a:hover { color: #fff; }
.footer-copyright { padding: 20px 0 10px; font-size: 14px; color: var(--c-text); border-top: 1px solid rgba(255,255,255,.07); }

/* ---------- responsive ---------- */
@media (max-width: 1199px) {
  .header-row { padding: 0 20px; gap: 20px; }
  .header-nav .menu > li { padding: 0 12px; }
  .product-images { width: 48%; flex-basis: 48%; }
}
@media (max-width: 991px) {
  .header-nav { display: none; }
  .footer-widgets { padding: 50px 0 50px; }
  .footer-cols { flex-direction: column; }
  .footer-col { width: 100%; margin-bottom: 40px; }
  .footer-col:last-child { margin-bottom: 0; }
  .widget-title { margin-bottom: 20px; }
  .footer-copyright { text-align: center; }
  .menu-toggle { display: block; }
  .products.columns-4 > li { width: 33.333%; margin-bottom: 50px; }
  .hero { height: 75vw; }
  .empty-space { height: 70px; }
  .page-title { font-size: 36px; }
  .product-layout { flex-direction: column; gap: 30px; }
  .product-images { width: 100%; flex-basis: auto; }
  .footer-col { width: 33%; }
}
@media (max-width: 778px) {
  .hero { height: 123.4vw; }
  .hero-dots { display: none; }
}
@media (max-width: 767px) {
  :root { --header-h: 89px; }
  .auth-columns { flex-direction: column; gap: 40px; }
  .account-layout { flex-direction: column; gap: 30px; }
  .checkout-layout { flex-direction: column; gap: 30px; }
  .checkout-summary { flex-basis: auto; width: 100%; }
  .account-nav { flex-basis: auto; }
  .form-row { flex-direction: column; gap: 0; }
  .site-header.minimized { padding: 15px 0; }
  .site-header.minimized .header-row { height: 46px; }
  .logo img { width: 152px; height: auto; }
  .header-row { padding: 0 24px; }
  .empty-space { height: 60px; }
  .page-header-catalog { padding: 40px 0 30px; }
  .page-header-default { padding: 40px 0 30px; }
  .page-header-default h1 { font-size: 36px; }
  .faq-group, .faq-item { flex-direction: column; }
  .faq-group .g-title, .faq-group .faq-items, .faq-item .title, .faq-item .desc { width: 100%; }
  .faq-item { margin-bottom: 40px; }
  .catalog-head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .shop-toolbar { gap: 30px; font-size: 14px; }
  .products.columns-4 > li { width: 50%; margin-bottom: 40px; }
  .card-action { transform: none; position: static; padding: 8px 0 0; text-align: left; }
  .product-header { margin-bottom: 30px; }
  .nav-filter li { font-size: 15px; padding: 0 8px; }
  .cart-table thead { display: none; }
  .cart-table tr { display: grid; grid-template-columns: 40px 80px 1fr; grid-template-areas: "remove thumb name" "remove thumb price" "remove thumb qty" "remove thumb subtotal"; gap: 6px 12px; padding: 16px 0; border-bottom: 1px solid var(--c-rule); }
  .cart-table td { border: 0; padding: 0; }
  .cart-table .col-remove { grid-area: remove; }
  .cart-table .col-thumb { grid-area: thumb; }
  .cart-table .col-name { grid-area: name; }
  .cart-table .col-price { grid-area: price; }
  .cart-table .col-qty { grid-area: qty; }
  .cart-table .col-subtotal { grid-area: subtotal; }
  .cart-actions { flex-direction: column; gap: 12px; }
  .cart-totals { max-width: none; }
}
@media (max-width: 480px) {
  .hero { height: 150vw; }
  .products.columns-4 > li { width: 100%; }
  .product-title { font-size: 24px; line-height: 30px; }
  .variations select { min-width: 0; width: 100%; }
}
