/*
Theme Name: Import Export Trader
Theme URI: https://importexport-trader.com
Author: Import Export Trader
Author URI: https://importexport-trader.com
Description: Wholesale Electronics B2B WooCommerce Theme
Version: 2.9.11
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: importexport-trader
Tags: e-commerce, woocommerce, b2b, wholesale, electronics
WC requires at least: 7.0
WC tested up to: 8.5
*/

/* ================================================================
   CSS VARIABLES
================================================================ */
:root {
  --gold:        #d69c4a;
  --gold-hover:  #c28c42;
  --black:       #0a0a0a;
  --dark:        #111111;
  --surface:     #1a1a1a;
  --bg:          #fafafa;
  --white:       #ffffff;
  --text:        #333333;
  --text-light:  #666666;
  --border:      #eaeaea;
  --success:     #22c55e;
  --success-bg:  #f0fdf4;
  --font:        'Hanken Grotesk', sans-serif;
  --r:           0.5rem;
  --r-sm:        0.25rem;
  --r-pill:      9999px;
  --s1:          0 1px 3px rgba(0,0,0,.08);
  --s2:          0 4px 12px rgba(0,0,0,.12);
  --s3:          0 8px 24px rgba(0,0,0,.18);
}

/* ================================================================
   RESET
================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
input, select, textarea { font-family: var(--font); }

/* ================================================================
   LAYOUT
================================================================ */
.container {
  max-width: 1600px;   /* wider canvas */
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1440px) { .container { padding: 0 3rem; } }

/* ================================================================
   SITE HEADER
================================================================ */
.site-header {
  background-color: #0a0a0a;
  color: var(--white);
  border-bottom: 1px solid #1c1c1c;
  position: sticky;
  top: 0;
  z-index: 500;
}

/* Single-row flex layout — logo | search | nav | actions */
.hdr-wrap {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.5rem;
  min-height: 80px;          /* taller to give logo breathing room */
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* ── Logo — padding top & bottom ── */
.site-logo-img {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  text-decoration: none;
  padding: 10px 0;           /* breathing room above & below */
}
.site-header .site-logo-img .site-logo-image { height: 56px; width: auto; display: block; object-fit: contain; }
.mobile-menu .site-logo-img .site-logo-image  { height: 44px; width: auto; display: block; padding: 6px 0; }
.site-footer .site-logo-img .site-logo-image, .footer-brand .site-logo-img .site-logo-image { height: 110px; width: auto; max-width: 260px; display: block; object-fit: contain; }
.logo-hex-wrap, .logo-text, .logo-name, .logo-sub { display: none; }

/* ── Search bar — fills the middle space ── */
.hdr-search {
  flex: 1;
  min-width: 0;
  max-width: 640px;
}
.hdr-search form {
  display: flex;
  align-items: center;
  background-color: #1a1a1a;
  border: 1px solid #2e2e2e;
  border-radius: 6px;
  overflow: hidden;
}
.hdr-search input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 0.875rem;
  padding: 0.6rem 0.875rem;
  outline: none;
  font-family: var(--font);
}
.hdr-search input::placeholder { color: #666; }
.hdr-search input:focus { background-color: #1f1f1f; }
.hdr-search button {
  background: none;
  border: none;
  color: #666;
  padding: 0.6rem 0.875rem;
  cursor: pointer;
  transition: color 0.2s;
  font-size: 0.875rem;
}
.hdr-search button:hover { color: var(--white); }

/* ── Nav — right-aligned via margin-left:auto ── */
.hdr-nav {
  display: none;
  align-items: center;
  gap: 0.125rem;
  flex-shrink: 0;
  margin-left: auto;          /* pushes nav + actions to the right */
}
@media (min-width: 1080px) { .hdr-nav { display: flex; } }

.hdr-nav-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #e0e0e0;
  padding: 0.4rem 0.625rem;
  border-radius: 4px;
  white-space: nowrap;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.15s;
  text-decoration: none;
  user-select: none;
}
.hdr-nav-link:hover,
.hdr-nav-link.hdr-nav-active,
.hdr-nav-link.active { color: var(--white); }

/* ── Dropdown (shared by nav + account) ── */
.hdr-drop-wrap { position: relative; padding-bottom: 0.75rem; margin-bottom: -0.75rem; }

.hdr-drop-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #111;
  border: 1px solid #252525;
  border-radius: 6px;
  min-width: 13rem;
  padding: 0.375rem 0;
  box-shadow: 0 12px 32px rgba(0,0,0,.65);
  z-index: 600;
}
.hdr-drop-menu--right { left: auto; right: 0; }

.hdr-drop-wrap:hover .hdr-drop-menu,
.hdr-drop-wrap.force-open .hdr-drop-menu { display: block; }
.hdr-drop-wrap:hover .hdr-drop-trigger i.fa-chevron-down,
.hdr-drop-wrap.force-open .hdr-drop-trigger i.fa-chevron-down { transform: rotate(180deg); }

.hdr-drop-trigger i.fa-chevron-down { font-size: 0.5rem; transition: transform 0.18s; }

.hdr-drop-menu a {
  display: block;
  padding: 0.55rem 1.125rem;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #c8c8c8;
  transition: color 0.12s, background-color 0.12s;
  white-space: nowrap;
  text-decoration: none;
  border: none;
}
.hdr-drop-menu a:hover { color: var(--gold); background-color: #1a1a1a; }
.hdr-drop-menu a.view-all { color: var(--gold); font-weight: 600; border-top: 1px solid #252525; margin-top: 0.25rem; }

/* ── Actions (account + cart) ── */
.hdr-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  /* no margin-left:auto — nav already pushes everything right */
}

.hdr-account-trigger { color: #e0e0e0 !important; }

/* Cart button — icon + label + total */
.hdr-cart-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
  border: 1px solid #2e2e2e;
  border-radius: 6px;
  padding: 0.35rem 0.75rem;
  transition: border-color 0.2s, color 0.2s;
  position: relative;
}
.hdr-cart-btn:hover { border-color: #555; color: var(--white); }
.hdr-cart-icon-wrap { position: relative; display: flex; }
.hdr-cart-icon-wrap .fa-cart-shopping { font-size: 1.1rem; }
.hdr-cart-count {
  position: absolute;
  top: -7px;
  right: -9px;
  background-color: var(--gold);
  color: #000;
  font-size: 0.5625rem;
  font-weight: 800;
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.hdr-cart-text { display: flex; flex-direction: column; line-height: 1.2; }
.hdr-cart-label { font-size: 0.75rem; font-weight: 500; color: #e0e0e0; }
.hdr-cart-total { font-size: 0.75rem; font-weight: 700; color: var(--gold); }

/* Mobile toggle */
.btn-mobile-menu {
  display: flex;
  align-items: center;
  color: var(--white);
  font-size: 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}
@media (min-width: 1080px) { .btn-mobile-menu { display: none; } }

/* ── Mobile menu overlay ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background-color: #0a0a0a;
  z-index: 700;
  flex-direction: column;
  padding: 1.5rem;
  overflow-y: auto;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.mobile-menu nav a { display: block; color: var(--white); font-size: 1.125rem; font-weight: 500; padding: 0.875rem 0; border-bottom: 1px solid #1c1c1c; transition: color 0.2s; }
.mobile-menu nav a:hover { color: var(--gold); }

/* ── Hide old header classes no longer used ── */
.header-inner, .header-inner-wrap, .header-nav,
.header-search, .header-search-bar,
.header-actions, .nav-dropdown-wrap,
.btn-header-login, .btn-header-register,
.nav-lang { all: unset; display: none !important; }

/* ================================================================
   TRUST BAR (light)
================================================================ */
.trust-bar {
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.875rem 0;
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) { .trust-bar-inner { grid-template-columns: repeat(4,1fr); } }

.trust-item { display: flex; align-items: center; gap: 0.75rem; justify-content: center; }
.trust-item i { font-size: 1.125rem; color: var(--text); }
.trust-item h4 { font-size: 0.8125rem; font-weight: 700; color: var(--black); margin-bottom: 0.1rem; }
.trust-item p  { font-size: 0.6875rem; color: var(--text-light); }

/* ================================================================
   TRUST BAR (dark)
================================================================ */
.trust-bar-dark {
  background-color: var(--black);
  border-top: 1px solid #1a1a1a;
  padding: 2rem 0;
}
.trust-bar-dark-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 1024px) { .trust-bar-dark-inner { grid-template-columns: repeat(6,1fr); } }

.trust-dark-item { display: flex; align-items: center; gap: 0.75rem; }
.trust-dark-item svg { width: 2rem; height: 2rem; color: var(--gold); flex-shrink: 0; }
.trust-dark-item span { display: block; font-size: 0.625rem; text-transform: uppercase; font-weight: 700; letter-spacing: 0.08em; color: var(--white); }
.trust-dark-item .trust-sub { color: #4b5563; }

/* ================================================================
   FOOTER
================================================================ */
.site-footer {
  background-color: var(--dark);
  color: #9ca3af;
  padding-top: 4rem;
  margin-top: 0;  /* no margin — pages control their own bottom spacing */
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 768px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.footer-brand .site-logo { margin-bottom: 1.5rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.6; margin-bottom: 1.5rem; }

.footer-socials { display: flex; gap: 1rem; }
.footer-socials a { color: #9ca3af; font-size: 1.25rem; transition: color 0.2s; }
.footer-socials a:hover { color: var(--white); }

.footer-col h3 { color: var(--white); font-weight: 700; margin-bottom: 1.5rem; font-size: 0.9375rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 1rem; }
.footer-col ul li a { font-size: 0.875rem; color: #9ca3af; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }

.footer-contact-list { display: flex; flex-direction: column; gap: 1.25rem; }
.footer-contact-item { display: flex; align-items: center; gap: 1rem; font-size: 0.875rem; }
.footer-contact-item i { color: var(--gold); font-size: 1.125rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.6875rem;
  color: #6b7280;
  font-weight: 500;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom .badge { display: flex; align-items: center; gap: 0.5rem; }

/* ================================================================
   BUTTONS
================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.75rem 2rem;
  border-radius: var(--r-sm);
  border: 2px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
  font-family: var(--font);
}
.btn-primary { background-color: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-primary:hover { background-color: var(--gold-hover); border-color: var(--gold-hover); }
.btn-outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover { background-color: var(--gold); color: var(--black); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--gold); }
.btn-outline-white:hover { background-color: #111; }
.btn-dark { background-color: var(--black); color: var(--white); border-color: var(--black); }
.btn-dark:hover { background-color: #222; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }
.btn-block { display: flex; width: 100%; }

/* ================================================================
   HOME PAGE
================================================================ */

/* Hero */
.hero {
  background-color: var(--black);
  color: var(--white);
  padding: 6rem 0 7rem;
  overflow: hidden;
  position: relative;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; opacity: 0.45; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #000 30%, rgba(0,0,0,.7) 60%, transparent 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .hero-inner { grid-template-columns: 1fr 1fr; } }

.hero-eyebrow { font-size: 1.5rem; font-weight: 400; color: #d1d5db; margin-bottom: 0.5rem; }
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-desc { font-size: 1.125rem; color: #d1d5db; max-width: 28rem; line-height: 1.6; margin-bottom: 2.5rem; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 2rem;
  border-top: 1px solid #1f2937;
  padding-top: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .hero-stats { grid-template-columns: repeat(4,1fr); } }
.hero-stat i { color: var(--gold); font-size: 1.75rem; display: block; margin-bottom: 1rem; }
.hero-stat h4 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.25rem; }
.hero-stat p  { font-size: 0.75rem; color: #9ca3af; }

.hero-ctas { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .hero-ctas { flex-direction: row; } }

/* Category section */
.section-categories { padding: 5rem 0; }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2.5rem; }
.section-title { font-size: 1.75rem; font-weight: 800; color: var(--black); letter-spacing: -0.02em; }

.btn-view-all {
  font-size: 0.8125rem;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.625rem 1.25rem;
  background-color: var(--white);
  color: var(--text);
  box-shadow: var(--s1);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.btn-view-all:hover { background-color: #f9fafb; box-shadow: var(--s2); }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.25rem;
}
@media (min-width: 768px)  { .categories-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1024px) { .categories-grid { grid-template-columns: repeat(6,1fr); } }

.category-card {
  background-color: var(--white);
  border-radius: var(--r);
  padding: 1.5rem 1rem;
  box-shadow: var(--s1);
  border: 1px solid #f3f4f6;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.2s;
}
.category-card:hover { box-shadow: var(--s2); }
.category-card-img { width: 8rem; height: 8rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.category-card-img img { max-height: 100%; max-width: 100%; object-fit: contain; transition: transform 0.3s; }
.category-card:hover .category-card-img img { transform: scale(1.05); }
.category-card h3 { font-size: 0.875rem; font-weight: 700; color: var(--black); }

/* Why Choose Us */
.section-why { margin-bottom: 5rem; }
.why-inner {
  background-color: var(--dark);
  color: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) { .why-inner { flex-direction: row; } }
.why-content { padding: 3rem 4rem; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 1024px) { .why-content { width: 45%; } }
.why-content h2 { font-size: 2rem; font-weight: 800; line-height: 1.2; margin-bottom: 2rem; letter-spacing: -0.02em; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.why-list li { display: flex; align-items: center; gap: 1rem; font-size: 0.9375rem; color: #d1d5db; }
.why-list li i { color: var(--gold); }
.why-images { display: flex; min-height: 25rem; }
@media (min-width: 1024px) { .why-images { width: 55%; } }
.why-images img { width: 100%; height: 100%; object-fit: cover; }

/* New Arrivals */
.section-new-arrivals { margin-bottom: 4rem; }
.products-grid-home {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.25rem;
}
@media (min-width: 768px)  { .products-grid-home { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1024px) { .products-grid-home { grid-template-columns: repeat(6,1fr); } }

.product-card-mini {
  background-color: var(--white);
  border-radius: var(--r);
  padding: 1.25rem;
  box-shadow: var(--s1);
  border: 1px solid #f3f4f6;
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card-mini .badge-new {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--black);
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
  letter-spacing: 0.05em;
  z-index: 1;
}
.product-card-mini-img {
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: var(--r-sm);
}
.product-card-mini-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.product-card-mini:hover .product-card-mini-img img { transform: scale(1.04); }
.product-card-mini h3 { font-size: 0.8125rem; font-weight: 600; color: var(--black); flex: 1; line-height: 1.4; margin-bottom: 1rem; }
.product-card-mini-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.login-for-price { color: var(--gold); font-size: 0.8125rem; font-weight: 700; }
.login-for-price:hover { text-decoration: underline; }
.iet-sold-out-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fecaca;
  border-radius: var(--r-sm);
  background: #fef2f2;
  color: #b91c1c;
  font-size: 0.8125rem;
  font-weight: 800;
  padding: 0.4rem 0.7rem;
}
.iet-sold-out-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 1px solid #fecaca;
  border-radius: var(--r);
  background: #fef2f2;
  color: #b91c1c;
  padding: 1.25rem;
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
}
.iet-sold-out-panel i {
  color: #ef4444;
  font-size: 1.15rem;
}
.btn-bookmark { color: #9ca3af; background: none; border: none; font-size: 1rem; transition: color 0.2s; }
.btn-bookmark:hover { color: var(--black); }

/* ================================================================
   CATALOG PAGE
================================================================ */
.page-hero {
  background-color: var(--black);
  color: var(--white);
  padding: 3rem 0;
  border-top: 1px solid #1a1a1a;
}
.page-hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}
@media (min-width: 768px) { .page-hero-inner { flex-direction: row; } }
.page-hero h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.page-hero p  { color: #9ca3af; font-size: 0.875rem; }

.page-hero-badges { display: flex; gap: 2rem; flex-shrink: 0; }
.page-hero-badge { display: flex; align-items: center; gap: 0.75rem; }
.page-hero-badge svg { width: 2rem; height: 2rem; color: var(--gold); }
.page-hero-badge .badge-label { display: block; font-size: 0.625rem; text-transform: uppercase; font-weight: 700; letter-spacing: 0.1em; }
.page-hero-badge .badge-sub { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.1em; color: #6b7280; }

.catalog-layout { display: flex; flex-direction: column; gap: 2rem; padding: 2rem 0; }
@media (min-width: 768px) { .catalog-layout { flex-direction: row; } }

/* Sidebar */
.catalog-sidebar { width: 100%; flex-shrink: 0; }
@media (min-width: 768px) { .catalog-sidebar { width: 16rem; } }

.sidebar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.sidebar-header h3 { font-weight: 700; font-size: 0.9375rem; }
.sidebar-clear { font-size: 0.75rem; color: #9ca3af; background: none; border: none; cursor: pointer; }
.sidebar-clear:hover { color: var(--gold); }

.filter-group { margin-bottom: 1.5rem; border-bottom: 1px solid var(--border); padding-bottom: 1rem; }
.filter-group-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; cursor: pointer; }
.filter-group-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.filter-group-header svg { width: 1rem; height: 1rem; }

.filter-categories { display: flex; flex-direction: column; gap: 0.625rem; }
.filter-cat-item { display: flex; justify-content: space-between; align-items: center; font-size: 0.875rem; cursor: pointer; transition: color 0.2s; color: #4b5563; }
.filter-cat-item.active { color: var(--gold); font-weight: 600; }
.filter-cat-item:hover { color: var(--black); }
.filter-cat-item .count { font-size: 0.75rem; color: #9ca3af; }

.filter-select { width: 100%; font-size: 0.875rem; border: 1px solid var(--border); border-radius: var(--r-sm); padding: 0.5rem; outline: none; color: var(--text); }
.filter-select:focus { border-color: var(--gold); }

.filter-checkboxes { display: flex; flex-direction: column; gap: 0.625rem; }
.filter-checkbox-item { display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
.filter-checkbox-item-left { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: #4b5563; }
.filter-checkbox-item input[type="checkbox"] { accent-color: var(--gold); width: 1rem; height: 1rem; }
.filter-count { font-size: 0.75rem; color: #9ca3af; }

.filter-range { display: flex; align-items: center; gap: 0.5rem; }
.filter-range input { width: 100%; font-size: 0.875rem; border: 1px solid var(--border); border-radius: var(--r-sm); padding: 0.5rem; outline: none; }
.filter-range input:focus { border-color: var(--gold); }
.filter-range span { color: #9ca3af; flex-shrink: 0; }

.btn-apply-filters { width: 100%; background-color: var(--black); color: var(--white); font-weight: 700; font-size: 0.875rem; padding: 0.75rem; border-radius: var(--r-sm); border: none; cursor: pointer; transition: background-color 0.2s; margin-top: 0.5rem; font-family: var(--font); }
.btn-apply-filters:hover { background-color: #222; }

/* Catalog grid */
.catalog-main { flex: 1; min-width: 0; }
.catalog-toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.catalog-count { font-size: 0.875rem; color: #6b7280; }
.catalog-count strong { color: var(--black); font-weight: 700; }
.catalog-toolbar-right { display: flex; align-items: center; gap: 1rem; }
.sort-select-wrapper { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; }
.sort-select-wrapper label { color: #6b7280; }
.sort-select { border: none; background: transparent; font-weight: 700; outline: none; cursor: pointer; font-family: var(--font); color: var(--text); }
.view-toggle { display: flex; border: 1px solid var(--border); border-radius: var(--r-sm); overflow: hidden; }
.view-toggle button { padding: 0.375rem 0.625rem; font-size: 0.875rem; transition: background-color 0.2s; border: none; }
.view-toggle button.active { background-color: #f3f4f6; }
.view-toggle button:not(.active) { background-color: var(--white); color: #9ca3af; }

.products-grid-catalog { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px)  { .products-grid-catalog { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .products-grid-catalog { grid-template-columns: repeat(3,1fr); } }

.product-card-catalog { background-color: var(--white); border: 1px solid #f3f4f6; border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.2s; }
.product-card-catalog:hover { box-shadow: var(--s2); }

.product-card-catalog-img {
  position: relative;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  overflow: hidden;
}
.product-card-catalog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* fills the card image area */
  transition: transform 0.3s;
}
.product-card-catalog:hover .product-card-catalog-img img { transform: scale(1.04); }

.product-badges { position: absolute; top: 0.5rem; left: 0.5rem; display: flex; gap: 0.25rem; flex-wrap: wrap; }
.badge { font-size: 0.625rem; font-weight: 700; padding: 0.2rem 0.4rem; border-radius: 2px; letter-spacing: 0.05em; text-transform: uppercase; }
.badge-black { background-color: var(--black); color: var(--white); }
.badge-gold  { background-color: var(--gold); color: var(--white); }
.badge-green { background-color: var(--success); color: var(--white); }
.badge-red { background-color: #b91c1c; color: var(--white); }

.product-card-catalog-body { padding: 1rem; flex: 1; display: flex; flex-direction: column; }
.product-card-catalog-body h4 { font-size: 0.875rem; font-weight: 700; line-height: 1.4; color: var(--black); margin-bottom: 1rem; flex: 1; }
.product-card-catalog-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.card-price { font-size: 0.875rem; font-weight: 700; color: var(--black); }
.card-actions {
  display: flex; gap: 0.5rem;
  position: relative; z-index: 10;  /* ensure above any card overlays */
}
.btn-wha-small {
  background: none; border: none; color: var(--success);
  font-size: 1.1rem; transition: color 0.2s; cursor: pointer;
  position: relative; z-index: 10;
  padding: 0.25rem; line-height: 1;
}
.btn-wha-small:hover { color: #16a34a; }
.btn-bookmark-small {
  background: none; border: none; color: #9ca3af;
  font-size: 1.1rem; transition: color 0.2s; cursor: pointer;
  position: relative; z-index: 10;
  padding: 0.25rem; line-height: 1;
}
.btn-bookmark-small:hover { color: var(--gold); }
.btn-bookmark-small.is-saved,
.btn-bookmark-small.is-saved i { color: var(--gold) !important; }
.btn-bookmark-small.is-saved i { font-weight: 900; }  /* solid icon */
.product-card-catalog-footer { position: relative; z-index: 5; }

.products-grid-home .product-card-catalog-img { height: 10rem; }
.products-grid-home .product-card-catalog-body { padding: 0.875rem; }
.products-grid-home .product-card-catalog-body h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.products-grid-home .product-card-catalog-footer { gap: 0.625rem; }
.products-grid-home .card-actions { gap: 0.375rem; }

.catalog-load-more { margin-top: 3rem; text-align: center; }

/* Stats bar */
.stats-bar { background-color: var(--white); border-top: 1px solid var(--border); padding: 2rem 0; }
.stats-bar-inner { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
@media (min-width: 768px) { .stats-bar-inner { grid-template-columns: repeat(5,1fr); } }
.stat-item { display: flex; align-items: center; gap: 0.75rem; }
.stat-icon { width: 2.5rem; height: 2.5rem; border: 1px solid var(--border); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; color: var(--black); flex-shrink: 0; }
.stat-item h4 { font-size: 0.875rem; font-weight: 700; color: var(--black); }
.stat-item p  { font-size: 0.75rem; color: var(--text-light); }

/* ================================================================
   PRODUCT DETAIL PAGE
================================================================ */
.breadcrumb { display: flex; align-items: center; gap: 0.25rem; font-size: 0.875rem; color: var(--text-light); flex-wrap: wrap; margin-bottom: 1.5rem; padding-top: 1.5rem; }
.breadcrumb a { transition: color 0.2s; }
.breadcrumb a:hover { color: var(--black); }
.breadcrumb .sep { font-size: 0.625rem; color: #d1d5db; }
.breadcrumb .current { color: var(--black); }

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  width: 100%;
}
@media (min-width: 900px) {
  .product-detail-grid {
    grid-template-columns: 1fr 1fr;   /* 2-col on tablet */
    align-items: start;
  }
}
@media (min-width: 1200px) {
  .product-detail-grid {
    /* Gallery | Info | Panel — all generous */
    grid-template-columns: 42% 32% 26%;
    align-items: start;
  }
}

/* Gallery */
.product-gallery {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

/* Thumbnail strip — fixed width, scrollable when many images */
.gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 72px;
  flex-shrink: 0;
  max-height: 420px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) #f0f0f0;
}
.gallery-thumbs::-webkit-scrollbar { width: 4px; }
.gallery-thumbs::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

.thumb-btn {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: var(--r-sm);
  padding: 4px;
  background-color: var(--white);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thumb-btn.active { border-color: var(--gold); }
.thumb-btn:hover  { border-color: #999; }
.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Main image panel — no excess padding */
.gallery-main {
  flex: 1;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.gallery-main-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
  overflow: hidden;
  background-color: #fff;
}
.gallery-main-img img {
  /* Use natural image size up to box limits — no stretching, no crop */
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  /* Crisp rendering — no browser downscaling blur */
  image-rendering: auto;
  transition: opacity 0.2s;
}

/* Footer: warranty badge only (specs link removed) */
.gallery-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
}
.warranty-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--success);
  font-weight: 600;
}
/* Hide specs link globally in case it leaks through */
.specs-link { display: none !important; }

/* Product info */
.product-status-badges { display: flex; gap: 0.5rem; margin-bottom: 0.75rem; }
.product-info h1 { font-size: 1.875rem; font-weight: 800; color: var(--black); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 1rem; }
.product-grade { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; margin-bottom: 1rem; }
.product-grade .label { color: var(--text-light); }
.product-grade .value { font-weight: 700; }
.product-meta { display: flex; align-items: center; gap: 1rem; font-size: 0.875rem; color: var(--text-light); padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); margin-bottom: 1.5rem; }
.product-meta .divider { width: 1px; height: 1rem; background-color: var(--border); }
.product-meta a { text-decoration: underline; color: var(--text); transition: color 0.2s; }
.product-meta a:hover { color: var(--gold); }
.product-desc { font-size: 0.875rem; line-height: 1.6; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.product-features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.product-feature { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; }
.product-feature i { color: var(--text-light); margin-top: 0.125rem; }
.product-feature strong { font-weight: 700; }
.bulk-cta { background-color: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 1.25rem; }
.bulk-cta h3 { font-weight: 700; font-size: 0.9375rem; color: var(--black); margin-bottom: 0.25rem; }
.bulk-cta p { font-size: 0.875rem; color: var(--text-light); margin-bottom: 1rem; }

/* Conversion panel */
.conversion-panel { background-color: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 1.5rem; box-shadow: var(--s1); position: sticky; top: 5.5rem; }
.conversion-panel-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.5rem; }
.in-stock { display: flex; align-items: center; gap: 0.5rem; font-weight: 600; color: var(--success); margin-bottom: 0.25rem; font-size: 0.875rem; }
.in-stock .dot { width: 0.625rem; height: 0.625rem; background-color: var(--success); border-radius: 50%; }
.out-stock { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; color: #b91c1c; margin-bottom: 0.25rem; font-size: 0.875rem; }
.out-stock .dot { width: 0.625rem; height: 0.625rem; background-color: #ef4444; border-radius: 50%; }
.ready-ship { font-size: 0.875rem; color: var(--text-light); }
.units-available { text-align: right; }
.units-available .label { font-size: 0.75rem; color: var(--text-light); margin-bottom: 0.25rem; }
.units-available .value { font-size: 1.25rem; font-weight: 800; }
.price-section { margin-bottom: 1.5rem; }
.price-label { font-size: 0.875rem; color: var(--text-light); margin-bottom: 0.25rem; }
.price-display { display: flex; align-items: baseline; gap: 0.25rem; }
.price-main { font-size: 1.875rem; font-weight: 800; color: var(--black); }
.price-unit { font-size: 0.875rem; color: var(--text-light); }
.conversion-info { background-color: #f5f5f5; border-radius: var(--r-sm); padding: 1rem; margin-bottom: 1.5rem; font-size: 0.875rem; }
.conversion-info p { margin-bottom: 0.375rem; }
.conversion-info p:first-child { font-weight: 700; }
.conversion-btn-group { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 0.75rem; }
.btn-buy-now { width: 100%; background-color: var(--black); color: var(--white); border-radius: var(--r-sm); padding: 0.875rem; font-weight: 700; display: flex; flex-direction: column; align-items: center; justify-content: center; border: none; cursor: pointer; transition: background-color 0.2s; }
.btn-buy-now:hover { background-color: #222; }
.btn-buy-now .buy-icon { display: flex; align-items: center; gap: 0.5rem; font-size: 1rem; }
.btn-buy-now .buy-icon i { color: var(--gold); }
.btn-buy-now .buy-sub { font-size: 0.625rem; font-weight: 400; color: #9ca3af; margin-top: 0.25rem; }
.conversion-btn-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.btn-quote { border: 1px solid var(--border); border-radius: var(--r-sm); padding: 0.625rem; font-size: 0.8125rem; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 0.375rem; background-color: var(--white); cursor: pointer; transition: background-color 0.2s; }
.btn-quote:hover { background-color: #f9fafb; }
.btn-wha-panel { border: 1px solid var(--success); border-radius: var(--r-sm); padding: 0.625rem; font-size: 0.8125rem; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 0.375rem; color: var(--success); background-color: var(--white); cursor: pointer; transition: background-color 0.2s; }
.btn-wha-panel:hover { background-color: var(--success-bg); }
.btn-add-quote-list { width: 100%; border: 1px solid var(--border); border-radius: var(--r-sm); padding: 0.625rem; font-size: 0.875rem; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 0.5rem; background-color: var(--white); cursor: pointer; transition: background-color 0.2s; margin-bottom: 1.5rem; }
.btn-add-quote-list:hover { background-color: #f9fafb; }
.payment-methods {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.7rem;
  color: var(--text-light);
  flex-wrap: wrap;
  gap: 1.25rem;
}
.payment-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  text-align: center;
}
.payment-method i { font-size: 1rem; }
.payment-method span { font-size: 0.625rem; font-weight: 600; letter-spacing: 0.02em; }
/* PayPal & Wise removed — Bank Transfer only */
.payment-paypal,
.payment-wise { display: none !important; }

/* Related + Trust */
.related-trust-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem; }
@media (min-width: 1024px) { .related-trust-grid { grid-template-columns: 3fr 1fr; } }
.related-products { background-color: #f5f5f5; border-radius: var(--r); padding: 1.5rem; }
.related-products-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.related-products-header h2 { font-size: 1.25rem; font-weight: 800; color: var(--black); }
.related-products-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px)  { .related-products-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .related-products-grid { grid-template-columns: repeat(4,1fr); } }
.related-card { background-color: var(--white); border-radius: var(--r-sm); padding: 1rem; border: 1px solid var(--border); display: flex; flex-direction: column; }
.related-card img { width: 100%; height: 8rem; object-fit: contain; margin-bottom: 1rem; }
.related-card h3 { font-size: 0.8125rem; font-weight: 700; color: var(--black); line-height: 1.3; flex: 1; margin-bottom: 0.75rem; }
.related-price-label { font-size: 0.75rem; color: var(--text-light); }
.related-price { font-size: 0.875rem; font-weight: 700; color: var(--black); }
.related-stock { font-size: 0.75rem; font-weight: 700; color: var(--success); margin-top: 0.25rem; }
.trust-column { background-color: #f5f5f5; border-radius: var(--r); padding: 1.5rem; display: flex; flex-direction: column; justify-content: center; gap: 1.5rem; }
.trust-column-item { display: flex; align-items: flex-start; gap: 1rem; }
.trust-column-item i { font-size: 1.25rem; color: var(--text); margin-top: 0.125rem; }
.trust-column-item h4 { font-size: 0.875rem; font-weight: 700; color: var(--black); margin-bottom: 0.125rem; }
.trust-column-item p { font-size: 0.75rem; color: var(--text-light); }

/* ================================================================
   ABOUT US PAGE
================================================================ */

/* Hero */
.about-hero {
  position: relative;
  min-height: 28rem;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.auth-hero-bg { position: absolute; inset: 0; z-index: 0; }
.auth-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.auth-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.92) 40%, rgba(0,0,0,.5) 100%);
}

.about-hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 4rem;
  padding-top: 6rem;
}
.about-eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.875rem;
}
.about-hero-content h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.about-hero-sub {
  font-size: 1.0625rem;
  color: #b0b0b0;
  max-width: 36rem;
  line-height: 1.6;
}

/* Stats row */
.about-stats-row {
  background-color: var(--black);
  border-bottom: 1px solid #1a1a1a;
  padding: 2.5rem 0;
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
}
@media (min-width: 768px) { .about-stats-grid { grid-template-columns: repeat(4,1fr); } }

.about-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2rem;
  border-right: 1px solid #1c1c1c;
}
.about-stat:last-child { border-right: none; }
.about-stat i  { font-size: 1.75rem; color: var(--gold); flex-shrink: 0; }
.about-stat h3 { font-size: 1.75rem; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 0.25rem; }
.about-stat p  { font-size: 0.75rem; color: #6b7280; }

/* Section helpers */
.about-section { padding: 5rem 0; background-color: #fafafa; }

.about-section-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.about-section-header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3.5rem;
}
.about-section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.about-section-header p { font-size: 1rem; color: var(--text-light); line-height: 1.6; }

/* Story */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) { .about-story-grid { grid-template-columns: 1fr 1fr; } }

.about-story-text h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800; color: var(--black); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 1.5rem; }
.about-story-text p  { font-size: 0.9375rem; color: var(--text-light); line-height: 1.7; margin-bottom: 1rem; }

.about-story-images {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 1rem;
  height: 28rem;
}
.about-story-img-main { height: 100%; overflow: hidden; border-radius: var(--r); }
.about-story-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-story-img-side { position: relative; display: flex; flex-direction: column; gap: 1rem; }
.about-story-img-side img { width: 100%; flex: 1; object-fit: cover; border-radius: var(--r); }
.about-founded-badge { background-color: var(--gold); color: var(--black); border-radius: var(--r-sm); padding: 1.25rem; display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.badge-year  { font-size: 1.75rem; font-weight: 800; line-height: 1; }
.badge-label { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.25rem; }

/* Why choose us */
.about-why-section { background-color: var(--white); padding: 5rem 0; }
.about-features-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px)  { .about-features-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .about-features-grid { grid-template-columns: repeat(3,1fr); } }

.about-feature-card { border: 1px solid var(--border); border-radius: var(--r); padding: 2rem; transition: box-shadow 0.2s, border-color 0.2s; }
.about-feature-card:hover { box-shadow: var(--s2); border-color: var(--gold); }
.about-feature-icon { width: 3rem; height: 3rem; background-color: rgba(214,156,74,.1); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.25rem; margin-bottom: 1.25rem; }
.about-feature-card h3 { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 0.625rem; }
.about-feature-card p  { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; }

/* How it works */
.about-how-section { background-color: var(--black); padding: 5rem 0; }
.about-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .about-steps-grid { grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 0; }
}
.about-step { text-align: center; padding: 1.5rem; }
.about-step-num { font-size: 2.5rem; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 1rem; opacity: 0.8; }
.about-step h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.625rem; }
.about-step p  { font-size: 0.8125rem; color: #6b7280; line-height: 1.6; }
.about-step-connector { display: none; width: 2rem; height: 1px; background-color: #2a2a2a; flex-shrink: 0; }
@media (min-width: 768px) { .about-step-connector { display: block; } }

/* CTA */
.about-cta-section { background-color: #0d0d0d; padding: 4rem 0; border-top: 1px solid #1a1a1a; }
.about-cta-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 2rem; }
@media (min-width: 768px) { .about-cta-inner { flex-direction: row; text-align: left; justify-content: space-between; } }
.about-cta-inner h2 { font-size: 1.625rem; font-weight: 800; color: var(--white); letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.about-cta-inner p  { font-size: 0.9375rem; color: #6b7280; }
.about-cta-buttons { display: flex; flex-direction: column; gap: 0.75rem; flex-shrink: 0; }
@media (min-width: 480px) { .about-cta-buttons { flex-direction: row; } }
.btn-whatsapp-outline { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 0.9375rem; padding: 0.75rem 2rem; border-radius: var(--r-sm); border: 2px solid rgba(37,211,102,.4); color: #25d366; background: transparent; transition: all 0.2s; }
.btn-whatsapp-outline:hover { background-color: rgba(37,211,102,.08); }

/* Contact */
.about-contact-section { padding: 4rem 0; background-color: #fafafa; }
.about-contact-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .about-contact-grid { grid-template-columns: repeat(3,1fr); } }
.about-contact-card { background-color: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 2rem; text-align: center; transition: box-shadow 0.2s; }
.about-contact-card:hover { box-shadow: var(--s2); }
.about-contact-card i { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; display: block; }
.about-contact-card h4 { font-size: 0.9375rem; font-weight: 700; color: var(--black); margin-bottom: 0.375rem; }
.about-contact-card p  { font-size: 0.875rem; color: var(--text-light); margin-bottom: 1rem; }
.about-contact-card a  { font-size: 0.875rem; font-weight: 600; color: var(--gold); transition: opacity 0.2s; }
.about-contact-card a:hover { opacity: 0.75; }

/* ================================================================
   WOOCOMMERCE
================================================================ */
.woocommerce-notices-wrapper { max-width: 1280px; margin: 1rem auto; padding: 0 1rem; }
.woocommerce-message { padding: 1rem 1.5rem; border-radius: var(--r-sm); background-color: #f0fdf4; border-left: 4px solid var(--success); color: #166534; margin-bottom: 1rem; font-size: 0.9375rem; }
.woocommerce-error   { padding: 1rem 1.5rem; border-radius: var(--r-sm); background-color: #fef2f2; border-left: 4px solid #ef4444; color: #991b1b; margin-bottom: 1rem; font-size: 0.9375rem; }
.woocommerce-info    { padding: 1rem 1.5rem; border-radius: var(--r-sm); background-color: #eff6ff; border-left: 4px solid #3b82f6; color: #1e40af; margin-bottom: 1rem; font-size: 0.9375rem; }

/* ================================================================
   RESPONSIVE HELPERS
================================================================ */
@media (max-width: 767px) {
  .hero { padding: 3rem 0 4rem; }
  .why-content { padding: 2rem; }
  .product-gallery { flex-direction: column; }
  .gallery-thumbs { flex-direction: row; width: 100%; }
  .gallery-thumbs .thumb-btn { width: 4rem; }
  .about-story-images { height: auto; grid-template-columns: 1fr; }
  .about-story-img-main { height: 16rem; }
  .about-story-img-side { display: none; }
}

/* ================================================================
   AUTH PAGE — Combined Login / Register (Stitch-inspired design)
================================================================ */

/* Page wrapper — full viewport, horizontal split */
.iet-auth-page {
  display: flex;
  min-height: calc(100vh - 64px);
  background-color: #0f0f0f;
}

/* ── Left hero panel ── */
.iet-left {
  position: relative;
  width: 50%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .iet-left { display: none; }
  .iet-right { width: 100%; }
}

.iet-left-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.iet-left-content {
  position: relative;
  z-index: 1;
  padding: 3rem 3.5rem;
  overflow-y: auto;
  height: 100%;
}

.iet-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.iet-left-content h1 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.iet-left-sub {
  font-size: 0.9375rem;
  color: #a0a0a0;
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 30rem;
}

/* Benefits list */
.iet-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.iet-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.iet-benefit-icon {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid #2a2a2a;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  background-color: rgba(214,156,74,.07);
}
.iet-benefits li div:last-child {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.iet-benefits li strong {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
.iet-benefits li span {
  font-size: 0.75rem;
  color: #7a7a7a;
}

/* Mini stats (register panel) */
.iet-mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  margin-bottom: 2rem;
  padding: 1.25rem;
  background-color: rgba(255,255,255,.04);
  border: 1px solid #2a2a2a;
  border-radius: 0.25rem;
}
.iet-mini-stats > div {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.iet-mini-stats svg { color: var(--gold); flex-shrink: 0; }
.iet-mini-stats strong { display: block; font-size: 0.875rem; font-weight: 800; color: #fff; }
.iet-mini-stats span { font-size: 0.625rem; color: #5a5a5a; letter-spacing: 0.05em; }

/* Need help bar */
.iet-need-help {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  background-color: rgba(255,255,255,.04);
  border: 1px solid #2a2a2a;
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  margin-top: auto;
}
.iet-need-help-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.iet-need-help div { flex: 1; }
.iet-need-help strong { display: block; font-size: 0.875rem; color: #fff; }
.iet-need-help span { font-size: 0.75rem; color: #6b7280; }
.iet-wha-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background-color: rgba(37,211,102,.07);
  color: #25d366;
  border: 1px solid rgba(37,211,102,.25);
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.2s;
}
.iet-wha-btn:hover { background-color: rgba(37,211,102,.13); }

/* ── Right form panel ── */
.iet-right {
  flex: 1;
  background-color: #0a0a0a;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem 2rem;
  overflow-y: auto;
}

.iet-form-card {
  width: 100%;
  max-width: 30rem;
  background-color: #121212;
  border: 1px solid #2a2a2a;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,.6);
}

/* Tabs */
.iet-tabs {
  display: flex;
  border-bottom: 1px solid #2a2a2a;
}
.iet-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #6b7280;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  font-family: var(--font);
  transition: color 0.2s, border-color 0.2s, background-color 0.2s;
}
.iet-tab:hover { color: var(--gold); }
.iet-tab--active {
  color: var(--gold);
  border-bottom-color: var(--gold);
  background-color: rgba(255,255,255,.03);
}

/* Form body */
#form-login,
#form-register {
  padding: 2rem;
}

.iet-form-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.375rem;
  letter-spacing: -0.01em;
}
.iet-form-sub { font-size: 0.875rem; color: #6b7280; margin-bottom: 1.75rem; }

/* Alerts */
.iet-alert {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}
.iet-alert--error   { background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.3); color: #fca5a5; }
.iet-alert--success { background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3); color: #86efac; }

/* Form layout */
.iet-form { display: flex; flex-direction: column; gap: 1.125rem; }
.iet-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .iet-row-2 { grid-template-columns: 1fr; } }

.iet-field { display: flex; flex-direction: column; gap: 0.375rem; }
.iet-field label { font-size: 0.8125rem; font-weight: 600; color: #e5e5e5; }
.iet-field label .req { color: var(--gold); }

.iet-field input,
.iet-field select {
  background-color: transparent;
  border: 1px solid #333;
  border-radius: 0.25rem;
  color: #fff;
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.iet-field input::placeholder { color: #4b5563; }
.iet-field input:focus,
.iet-field select:focus { border-color: var(--gold); }

.iet-pw-wrap { position: relative; }
.iet-pw-wrap input { padding-right: 3rem; }
.iet-pw-toggle {
  position: absolute;
  right: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #5a5a5a;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0;
}
.iet-pw-toggle:hover { color: var(--gold); }

.iet-select-wrap { position: relative; }
.iet-select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.5rem;
  cursor: pointer;
}
.iet-select-wrap select option { background-color: #1a1a1a; }
.iet-sel-arrow {
  position: absolute;
  right: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  color: #5a5a5a;
  pointer-events: none;
}

.iet-row-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.iet-check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: #9ca3af;
  cursor: pointer;
  line-height: 1.45;
}
.iet-check-label input[type="checkbox"] {
  accent-color: var(--gold);
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  cursor: pointer;
}
.iet-terms a { color: var(--gold); }
.iet-terms a:hover { text-decoration: underline; }
.iet-link-gold { font-size: 0.8125rem; color: var(--gold); transition: opacity 0.2s; }
.iet-link-gold:hover { opacity: 0.75; }

.iet-submit-btn {
  width: 100%;
  background-color: var(--gold);
  color: #0a0a0a;
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  transition: background-color 0.2s;
  font-family: var(--font);
}
.iet-submit-btn:hover { background-color: var(--gold-hover); }

.iet-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8125rem;
  color: #333;
  margin: 0.5rem 0;
}
.iet-divider::before,
.iet-divider::after { content: ''; flex: 1; height: 1px; background-color: #222; }

.iet-wha-full-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  background-color: transparent;
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.8rem;
  border-radius: 0.25rem;
  transition: border-color 0.2s, color 0.2s;
}
.iet-wha-full-btn i { color: #25d366; font-size: 1.125rem; }
.iet-wha-full-btn:hover { border-color: var(--gold); color: var(--gold); }

.iet-note {
  font-size: 0.75rem;
  color: #4b5563;
  text-align: center;
  margin-top: 0.625rem;
}

/* Stats bar */
.iet-stats-bar {
  background-color: #141414;
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 3rem 0;
}
.iet-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) { .iet-stats-row { grid-template-columns: repeat(4, 1fr); } }
.iet-stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.5rem;
  border-right: 1px solid #222;
}
.iet-stat-item:last-child { border-right: none; }
.iet-stat-item svg { color: var(--gold); flex-shrink: 0; }
.iet-stat-item h4 { font-size: 1.625rem; font-weight: 800; color: #fff; line-height: 1; }
.iet-stat-item p  { font-size: 0.75rem; color: #6b7280; margin-top: 0.2rem; }

/* ================================================================
   IMAGE LOGO — header + footer
================================================================ */

.site-logo-img {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
}

/* Header */
.site-header .site-logo-img .site-logo-image {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Footer */
.site-footer .site-logo-img .site-logo-image,
.footer-brand .site-logo-img .site-logo-image {
  height: 120px;
  width: auto;
  max-width: 280px;
  display: block;
  object-fit: contain;
}

/* Mobile menu */
.mobile-menu .site-logo-img .site-logo-image {
  height: 48px;
  width: auto;
  display: block;
}

/* Auth left panel */
.iet-left-content .site-logo-img .site-logo-image {
  height: 32px;
  width: auto;
}

/* Hide old hex/text logo remnants */
.logo-hex-wrap,
.logo-text,
.logo-name,
.logo-sub { display: none; }

/* ================================================================
   HEADER — new layout (search bar + clean nav + account + cart)
================================================================ */

/* ── Search bar ── */
.header-search-bar {
  flex: 1;
  max-width: 500px;
}
.header-search-bar form {
  position: relative;
  display: flex;
  align-items: center;
}
.header-search-bar input {
  width: 100%;
  background-color: #1c1c1c;
  border: 1px solid #2e2e2e;
  border-radius: 0.375rem;
  color: var(--white);
  font-size: 0.875rem;
  padding: 0.5rem 2.5rem 0.5rem 1rem;
  outline: none;
  font-family: var(--font);
  transition: border-color 0.2s;
}
.header-search-bar input::placeholder { color: #6b7280; }
.header-search-bar input:focus { border-color: #444; }
.header-search-bar button {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  font-size: 0.875rem;
  transition: color 0.2s;
  padding: 0;
}
.header-search-bar button:hover { color: var(--white); }

/* ── Nav links ── */
.header-nav {
  display: none;
  align-items: center;
  gap: 0;
}
@media (min-width: 1024px) { .header-nav { display: flex; } }

.header-nav > a,
.header-nav .nav-dropdown-trigger {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #d1d5db;
  padding: 0.4rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.15s;
  white-space: nowrap;
  cursor: pointer;
  border-radius: 0.25rem;
}
.header-nav > a:hover,
.header-nav .nav-dropdown-trigger:hover { color: var(--white); }
.header-nav > a.nav-active { color: var(--gold); }
.header-nav .nav-dropdown-trigger i.fa-chevron-down { font-size: 0.5rem; transition: transform 0.2s; }

/* ── Dropdown ── */
.nav-dropdown-wrap {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: -1rem;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #111;
  border: 1px solid #252525;
  border-radius: 0.375rem;
  min-width: 13rem;
  padding: 0.4rem 0;
  box-shadow: 0 12px 32px rgba(0,0,0,0.6);
  z-index: 600;
}
/* Align right-side dropdowns to the right edge */
.nav-dropdown-menu--right {
  left: auto;
  right: 0;
}

.nav-dropdown-wrap:hover .nav-dropdown-menu,
.nav-dropdown-wrap.force-open .nav-dropdown-menu { display: block; }
.nav-dropdown-wrap:hover .nav-dropdown-trigger .fa-chevron-down,
.nav-dropdown-wrap.force-open .nav-dropdown-trigger .fa-chevron-down { transform: rotate(180deg); }

.nav-dropdown-menu a {
  display: block;
  padding: 0.55rem 1.125rem;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #c0c0c0;
  transition: color 0.15s, background-color 0.15s;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { color: var(--white); background-color: #1a1a1a; }
.nav-dropdown-menu a.view-all { color: var(--gold); font-weight: 600; border-top: 1px solid #252525; margin-top: 0.25rem; }

/* ── Right actions ── */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  margin-left: auto;
}

/* Account trigger — same style as nav link */
.hdr-account-trigger {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #d1d5db;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  padding: 0.4rem 0.625rem;
  border-radius: 0.25rem;
  transition: color 0.15s;
  white-space: nowrap;
  user-select: none;
}
.hdr-account-trigger:hover { color: var(--white); }
.hdr-account-trigger .fa-user { font-size: 0.9rem; }
.hdr-account-trigger .fa-chevron-down { font-size: 0.5rem; }

/* Cart button */
.hdr-cart-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #d1d5db;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border: 1px solid #2e2e2e;
  border-radius: 0.375rem;
  position: relative;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.hdr-cart-btn:hover { color: var(--white); border-color: #555; }
.hdr-cart-btn .fa-cart-shopping { font-size: 1rem; }
.hdr-cart-label { font-size: 0.8125rem; }
.hdr-cart-total { color: var(--gold); font-weight: 700; font-size: 0.8125rem; }

.cart-count {
  background-color: var(--gold);
  color: var(--black);
  font-size: 0.5625rem;
  font-weight: 800;
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0 0.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

/* Hide old login/register button styles — now replaced by account dropdown */
.btn-header-login,
.btn-header-register { display: none !important; }

.btn-mobile-menu {
  display: flex;
  align-items: center;
  color: var(--white);
  font-size: 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}
@media (min-width: 1024px) { .btn-mobile-menu { display: none; } }

/* ── Mobile menu ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background-color: var(--black);
  z-index: 700;
  flex-direction: column;
  padding: 1.5rem;
  overflow-y: auto;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.mobile-menu nav a { display: block; color: var(--white); font-size: 1rem; font-weight: 500; padding: 0.75rem 0; border-bottom: 1px solid #1c1c1c; transition: color 0.2s; }
.mobile-menu nav a:hover { color: var(--gold); }

/* ── Logo ── */
.site-logo-img { display: inline-flex; align-items: center; flex-shrink: 0; line-height: 0; }
.site-header .site-logo-img .site-logo-image { height: 72px; width: auto; display: block; object-fit: contain; }
.site-footer .site-logo-img .site-logo-image,
.footer-brand .site-logo-img .site-logo-image { height: 120px; width: auto; max-width: 280px; display: block; object-fit: contain; }
.mobile-menu .site-logo-img .site-logo-image { height: 48px; width: auto; }
.logo-hex-wrap, .logo-text, .logo-name, .logo-sub { display: none; }

/* Hide old nav-lang */
.nav-lang { display: none !important; }

@media (max-width: 1079px) {
  .hdr-wrap {
    min-height: 72px;
    padding: 0 1rem;
    gap: 0.75rem;
  }

  .site-header .site-logo-img .site-logo-image {
    height: 60px;
  }

  .hdr-search,
  .hdr-nav,
  .hdr-actions .hdr-drop-wrap,
  .hdr-actions .hdr-cart-btn {
    display: none !important;
  }

  .hdr-actions {
    margin-left: auto;
    display: flex;
  }

  .btn-mobile-menu {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid #2e2e2e;
    border-radius: 6px;
    color: var(--white);
    background-color: #111;
  }
}

@media (min-width: 1080px) {
  .btn-mobile-menu { display: none !important; }
}

.mobile-menu-search {
  margin-bottom: 1rem;
}

.mobile-menu-search form {
  display: flex;
  align-items: center;
  background-color: #151515;
  border: 1px solid #2e2e2e;
  border-radius: 6px;
  overflow: hidden;
}

.mobile-menu-search input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  color: var(--white);
  padding: 0.75rem 0.875rem;
  outline: none;
}

.mobile-menu-search button {
  color: #9ca3af;
  padding: 0.75rem 0.875rem;
}

.mobile-menu-link-strong {
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  font-weight: 700 !important;
}

.mobile-menu-link-strong > i {
  width: 1.25rem;
  color: var(--gold);
}

.mobile-cart-meta {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}

/* ================================================================
   LOGIN & REGISTER PAGES (lrp-*)  v2.0
================================================================ */

/* ── Page wrapper ── */
.lrp-page {
  display: flex;
  min-height: calc(100vh - 80px);
  background-color: #0a0a0a;
  margin-bottom: 0;
}

/* ── Left panel ── */
.lrp-left {
  position: relative;
  width: 46%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (max-width: 1023px) { .lrp-left { display: none; } }

.lrp-left-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(160deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.65) 100%),
    url(https://importexport-trader.com/wp-content/uploads/2026/05/243f3991-921c-4067-89a8-8ce4243c96de.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100%;
  width: 100%;
}
/* Ensure .lrp-left has position:relative so absolute child fills it */
.lrp-left { position: relative; }

.lrp-left-content {
  position: relative;
  z-index: 1;
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  gap: 1.75rem;
}

.lrp-logo { height: 58px; width: auto; display: block; }

.lrp-eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.625rem;
}
.lrp-headline h1 {
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.lrp-headline p {
  font-size: 0.9375rem;
  color: #a0a0a0;
  line-height: 1.6;
  max-width: 28rem;
}

/* Benefits */
.lrp-benefits { display: flex; flex-direction: column; gap: 1rem; }
.lrp-benefits li { display: flex; align-items: flex-start; gap: 0.875rem; }
.lrp-benefit-icon {
  width: 2rem; height: 2rem;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  background-color: rgba(214,156,74,.07);
  flex-shrink: 0;
}
.lrp-benefits li div:last-child { display: flex; flex-direction: column; gap: 0.15rem; }
.lrp-benefits li strong { font-size: 0.8125rem; font-weight: 700; color: #fff; }
.lrp-benefits li span  { font-size: 0.75rem; color: #7a7a7a; }

/* Mini stats (register only) */
.lrp-mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  padding: 1rem;
  background-color: rgba(255,255,255,.04);
  border: 1px solid #2a2a2a;
  border-radius: 8px;
}
.lrp-mini-stats > div { display: flex; align-items: center; gap: 0.5rem; }
.lrp-mini-stats i { color: var(--gold); font-size: 1rem; }
.lrp-mini-stats strong { display: block; font-size: 0.875rem; font-weight: 800; color: #fff; }
.lrp-mini-stats span  { font-size: 0.625rem; color: #5a5a5a; letter-spacing: 0.04em; }

/* Help bar */
.lrp-help-bar {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-wrap: wrap;
  background-color: rgba(255,255,255,.04);
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 0.875rem 1rem;
  margin-top: auto;
}
.lrp-help-icon {
  width: 2.25rem; height: 2.25rem;
  border-radius: 50%;
  border: 1px solid #333;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.9375rem;
  flex-shrink: 0;
}
.lrp-help-text { flex: 1; }
.lrp-help-text strong { display: block; font-size: 0.875rem; color: #fff; }
.lrp-help-text span   { font-size: 0.75rem; color: #6b7280; }
.lrp-wha-btn {
  display: inline-flex; align-items: center; gap: 0.375rem;
  background-color: rgba(37,211,102,.07);
  color: #25d366;
  border: 1px solid rgba(37,211,102,.28);
  padding: 0.45rem 0.875rem;
  border-radius: 6px;
  font-size: 0.8125rem; font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.2s;
}
.lrp-wha-btn:hover { background-color: rgba(37,211,102,.14); }

/* ── Right panel ── */
.lrp-right {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  overflow-y: auto;
  background-color: #0d0d0d;
}
.lrp-right--wide { align-items: flex-start; padding-top: 2rem; }

.lrp-form-card {
  width: 100%;
  max-width: 30rem;
  background-color: #141414;
  border: 1px solid #242424;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,.55);
}
.lrp-form-card--wide { max-width: 38rem; }

/* Tabs */
.lrp-tabs {
  display: flex;
  border-bottom: 1px solid #242424;
}
.lrp-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #5a5a5a;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s, background-color 0.2s;
  text-decoration: none;
  background: none;
}
.lrp-tab:hover { color: var(--gold); }
.lrp-tab--active {
  color: var(--gold);
  border-bottom-color: var(--gold);
  background-color: rgba(214,156,74,.04);
}

/* Form body */
.lrp-form-body { padding: 1.75rem 2rem 2rem; }
@media (max-width: 480px) { .lrp-form-body { padding: 1.5rem; } }

.lrp-form-body h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.375rem;
  letter-spacing: -0.01em;
}
.lrp-sub { font-size: 0.875rem; color: #6b7280; margin-bottom: 1.5rem; }

/* Alerts */
.lrp-alert {
  display: flex; align-items: center; gap: 0.625rem;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}
.lrp-alert--error   { background: rgba(239,68,68,.09); border: 1px solid rgba(239,68,68,.28); color: #fca5a5; }
.lrp-alert--success { background: rgba(34,197,94,.09); border: 1px solid rgba(34,197,94,.28); color: #86efac; }

/* Form */
.lrp-form { display: flex; flex-direction: column; gap: 1.125rem; }
.lrp-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .lrp-row-2 { grid-template-columns: 1fr; } }

.lrp-field { display: flex; flex-direction: column; gap: 0.375rem; }
.lrp-field label { font-size: 0.8125rem; font-weight: 600; color: #d4d4d4; }
.lrp-req { color: var(--gold); }
.lrp-optional { font-size: 0.75rem; font-weight: 400; color: #5a5a5a; }

.lrp-field input,
.lrp-field select {
  background-color: rgba(255,255,255,.05);
  border: 1px solid #2e2e2e;
  border-radius: 6px;
  color: #fff;
  font-size: 0.875rem;
  padding: 0.7rem 0.9rem;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.18s, background-color 0.18s;
  width: 100%;
}
.lrp-field input::placeholder { color: #444; }
.lrp-field input:focus,
.lrp-field select:focus {
  border-color: var(--gold);
  background-color: rgba(255,255,255,.07);
}

/* Password field */
.lrp-pw-wrap { position: relative; }
.lrp-pw-wrap input { padding-right: 2.75rem; }
.lrp-pw-toggle {
  position: absolute; right: 0.8rem; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: #666; cursor: pointer;
  font-size: 1rem; padding: 0.25rem; transition: color 0.18s;
  z-index: 5;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
}
.lrp-pw-toggle:hover { color: var(--gold); }

/* Select */
.lrp-select-wrap { position: relative; }
.lrp-select-wrap select { appearance: none; -webkit-appearance: none; padding-right: 2.25rem; cursor: pointer; }
.lrp-select-wrap select option { background-color: #1a1a1a; }
.lrp-sel-arrow {
  position: absolute; right: 0.8rem; top: 50%; transform: translateY(-50%);
  color: #555; font-size: 0.625rem; pointer-events: none;
}

/* Inline row (remember + forgot) */
.lrp-row-inline {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.5rem;
}

/* Checkbox */
.lrp-check {
  display: flex; align-items: flex-start; gap: 0.625rem;
  font-size: 0.8125rem; color: #8a8a8a; cursor: pointer; line-height: 1.45;
}
.lrp-check input[type="checkbox"] {
  accent-color: var(--gold);
  width: 1rem; height: 1rem;
  flex-shrink: 0; margin-top: 0.1rem; cursor: pointer;
}
.lrp-terms a { color: var(--gold); }
.lrp-terms a:hover { text-decoration: underline; }

.lrp-link-gold { font-size: 0.8125rem; color: var(--gold); }
.lrp-link-gold:hover { text-decoration: underline; }

/* Submit */
.lrp-submit {
  width: 100%;
  background-color: var(--gold);
  color: #0a0a0a;
  font-weight: 800;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  padding: 0.875rem 1.5rem;
  border: none; border-radius: 6px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 0.625rem;
  transition: background-color 0.18s;
  font-family: var(--font);
}
.lrp-submit:hover { background-color: var(--gold-hover); }

/* Divider */
.lrp-divider {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.8125rem; color: #2a2a2a; margin: 0.25rem 0;
}
.lrp-divider::before, .lrp-divider::after { content: ''; flex: 1; height: 1px; background-color: #222; }

/* WhatsApp full-width */
.lrp-wha-full {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 0.625rem;
  background-color: rgba(37,211,102,.06);
  border: 1px solid rgba(37,211,102,.22);
  color: #25d366;
  font-weight: 700; font-size: 0.875rem;
  padding: 0.8rem; border-radius: 6px;
  transition: background-color 0.18s;
}
.lrp-wha-full i { font-size: 1.125rem; }
.lrp-wha-full:hover { background-color: rgba(37,211,102,.12); }

/* Notes */
.lrp-note { font-size: 0.75rem; color: #444; text-align: center; margin-top: 0.5rem; }
.lrp-note--icon i { margin-right: 0.25rem; }
.lrp-switch-link {
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 1.25rem;
}
.lrp-switch-link a { color: var(--gold); font-weight: 600; }
.lrp-switch-link a:hover { text-decoration: underline; }

/* Stats strip */
.lrp-stats-strip {
  background-color: #111;
  border-top: 1px solid #1c1c1c;
  padding: 2rem 0;
  margin-bottom: 0;  /* flush with footer */
}
.lrp-stats-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) { .lrp-stats-inner { grid-template-columns: repeat(4,1fr); } }

.lrp-stat {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.5rem 1rem;
  border-right: 1px solid #1c1c1c;
}
.lrp-stat:last-child { border-right: none; }
.lrp-stat i { font-size: 2rem; color: var(--gold); }
.lrp-stat strong { display: block; font-size: 1.375rem; font-weight: 800; color: #fff; }
.lrp-stat span   { font-size: 0.75rem; color: #6b7280; }

/* Dark body background for auth pages */
body.page-template-page-login,
body.page-template-page-register {
  background-color: #0a0a0a;
}

/* ================================================================
   MY ACCOUNT PAGE  v1.0
================================================================ */

body.page-template-page-my-account {
  background-color: #f4f5f7;
}

.acct-page {
  display: flex;
  min-height: calc(100vh - 80px);
  max-width: 1600px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  gap: 2rem;
  align-items: flex-start;
}

/* ── Sidebar ── */
.acct-sidebar {
  width: 280px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 900px) {
  .acct-page { flex-direction: column; padding: 1rem; }
  .acct-sidebar { width: 100%; position: static; }
}

/* Profile card */
.acct-profile-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.acct-avatar { flex-shrink: 0; }
.acct-avatar-img {
  width: 56px !important;
  height: 56px !important;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.acct-profile-info h3 { font-size: 0.9375rem; font-weight: 700; color: var(--black); margin-bottom: 0.2rem; }
.acct-profile-info p  { font-size: 0.75rem; color: var(--text-light); margin-bottom: 0.375rem; }
.acct-company { font-size: 0.6875rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.05em; }
.acct-badge { display: inline-block; font-size: 0.625rem; font-weight: 700; padding: 0.2rem 0.5rem; border-radius: 20px; letter-spacing: 0.05em; margin-top: 0.375rem; }
.acct-badge--pending  { background: rgba(245,158,11,.12); color: #d97706; border: 1px solid rgba(245,158,11,.3); }
.acct-badge--approved { background: rgba(34,197,94,.1);  color: #16a34a; border: 1px solid rgba(34,197,94,.3); }

/* Sidebar nav */
.acct-nav {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.acct-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.18s;
  position: relative;
}
.acct-nav-item:hover { background-color: #fafafa; color: var(--black); }
.acct-nav-item.active {
  background-color: rgba(214,156,74,.06);
  color: var(--gold);
  border-left-color: var(--gold);
  font-weight: 700;
}
.acct-nav-item i { width: 1.125rem; text-align: center; font-size: 0.9375rem; }
.acct-nav-badge {
  margin-left: auto;
  background-color: var(--gold);
  color: #000;
  font-size: 0.625rem;
  font-weight: 800;
  width: 1.25rem; height: 1.25rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.acct-nav-divider { height: 1px; background-color: var(--border); margin: 0.25rem 0; }
.acct-nav-wha { color: #16a34a; }
.acct-nav-wha:hover { background-color: rgba(34,197,94,.06); }
.acct-nav-logout { color: #ef4444; }
.acct-nav-logout:hover { background-color: rgba(239,68,68,.05); }

/* ── Main ── */
.acct-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Section header */
.acct-section-header { margin-bottom: 0.25rem; }
.acct-section-header h1 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 0.625rem;
  margin-bottom: 0.25rem;
}
.acct-section-header h1 i { color: var(--gold); font-size: 1.25rem; }
.acct-section-header p { font-size: 0.9375rem; color: var(--text-light); }

/* Alert */
.acct-alert {
  display: flex; align-items: center; gap: 0.625rem;
  padding: 0.875rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
}
.acct-alert--success { background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3); color: #15803d; }

/* Stats row */
.acct-stats-row {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
}
@media (min-width: 768px) { .acct-stats-row { grid-template-columns: repeat(4,1fr); } }

.acct-stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.acct-stat-card i { font-size: 1.75rem; color: var(--gold); }
.acct-stat-card strong { display: block; font-size: 1.25rem; font-weight: 800; color: var(--black); line-height: 1.2; }
.acct-stat-card span  { font-size: 0.75rem; color: var(--text-light); }

/* Card */
.acct-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}
.acct-card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.25rem;
}
.acct-card-header h2 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--black);
  display: flex; align-items: center; gap: 0.5rem;
}
.acct-card-header h2 i { color: var(--gold); }
.acct-card-link { font-size: 0.875rem; color: var(--gold); font-weight: 600; }
.acct-card-link:hover { text-decoration: underline; }
.acct-card-title { font-size: 1.0625rem; font-weight: 700; color: var(--black); margin-bottom: 1rem; }

/* Empty state */
.acct-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  gap: 0.75rem;
}
.acct-empty i { font-size: 3rem; color: #d1d5db; }
.acct-empty h3 { font-size: 1.125rem; font-weight: 700; color: var(--black); }
.acct-empty p  { font-size: 0.9375rem; color: var(--text-light); max-width: 24rem; }

/* Table */
.acct-table-wrap { overflow-x: auto; }
.acct-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.acct-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.acct-table td {
  padding: 0.875rem 1rem;
  color: var(--text);
  border-bottom: 1px solid #f3f4f6;
  vertical-align: middle;
}
.acct-table tbody tr:last-child td { border-bottom: none; }
.acct-table tbody tr:hover td { background-color: #fafafa; }

/* Order status badges */
.acct-status {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: capitalize;
}
.acct-status--pending    { background: rgba(245,158,11,.1); color: #d97706; }
.acct-status--processing { background: rgba(59,130,246,.1); color: #2563eb; }
.acct-status--on-hold    { background: rgba(107,114,128,.1);color: #6b7280; }
.acct-status--completed  { background: rgba(34,197,94,.1);  color: #16a34a; }
.acct-status--cancelled  { background: rgba(239,68,68,.1);  color: #dc2626; }
.acct-status--refunded   { background: rgba(139,92,246,.1); color: #7c3aed; }

/* Buttons */
.acct-btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background-color: var(--gold);
  color: var(--black);
  font-weight: 700; font-size: 0.9375rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  border: none; cursor: pointer;
  font-family: var(--font);
  transition: background-color 0.18s;
  text-decoration: none;
}
.acct-btn-primary:hover { background-color: var(--gold-hover); color: var(--black); }

.acct-btn-sm {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.75rem; font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
}
.acct-btn-sm:hover { border-color: var(--gold); color: var(--gold); }
.acct-btn-wha { border-color: rgba(34,197,94,.4); color: #16a34a; }
.acct-btn-wha:hover { border-color: #16a34a; background: rgba(34,197,94,.06); }

/* Quick actions */
.acct-quick-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
}
@media (min-width: 768px) { .acct-quick-grid { grid-template-columns: repeat(4,1fr); } }

.acct-quick-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  text-decoration: none;
  transition: all 0.18s;
}
.acct-quick-card:hover { border-color: var(--gold); box-shadow: 0 4px 12px rgba(0,0,0,.08); }
.acct-quick-card i { font-size: 1.75rem; color: var(--gold); }
.acct-quick-card strong { font-size: 0.875rem; font-weight: 700; color: var(--black); }
.acct-quick-card span  { font-size: 0.75rem; color: var(--text-light); }
.acct-quick-card--wha i { color: #16a34a; }

/* Form */
.acct-form { display: flex; flex-direction: column; gap: 1.25rem; }
.acct-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 600px) { .acct-form-row { grid-template-columns: 1fr; } }

.acct-field { display: flex; flex-direction: column; gap: 0.375rem; }
.acct-field label { font-size: 0.8125rem; font-weight: 600; color: var(--text); }
.acct-optional { font-size: 0.75rem; font-weight: 400; color: var(--text-light); }
.acct-field-note { font-size: 0.75rem; color: var(--text-light); margin-top: 0.25rem; }

.acct-field input,
.acct-field select {
  background-color: var(--white);
  border: 1px solid #d1d5db;
  border-radius: 8px;
  color: var(--text);
  font-size: 0.875rem;
  padding: 0.7rem 0.9rem;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.18s;
  width: 100%;
}
.acct-field input:focus,
.acct-field select:focus { border-color: var(--gold); }
.acct-field input:disabled { background-color: #f3f4f6; color: #9ca3af; cursor: not-allowed; }

.acct-select-wrap { position: relative; }
.acct-select-wrap select { appearance: none; -webkit-appearance: none; padding-right: 2.25rem; }
.acct-select-wrap i { position: absolute; right: 0.875rem; top: 50%; transform: translateY(-50%); font-size: 0.625rem; color: #9ca3af; pointer-events: none; }

.acct-pw-wrap { position: relative; }
.acct-pw-wrap input { padding-right: 2.75rem; }
.acct-pw-toggle { position: absolute; right: 0.8rem; top: 50%; transform: translateY(-50%); background: none; border: none; color: #9ca3af; cursor: pointer; font-size: 0.9375rem; padding: 0; transition: color 0.15s; }
.acct-pw-toggle:hover { color: var(--gold); }

/* ================================================================
   SHARED CONTENT PAGES (Shipping, Contact, Privacy, Terms)
================================================================ */

/* Wrapper */
.pg-content-wrap {
  padding: 4rem 0;
  background-color: var(--bg);
}

/* Two-column layout: main + sidebar */
.pg-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .pg-content-grid { grid-template-columns: 1fr 280px; }
}

/* ── Main column ── */
.pg-main { display: flex; flex-direction: column; gap: 0; }

.pg-section {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 0 1.25rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.pg-section:first-child { padding-top: 0; }
.pg-section:last-child  { border-bottom: none; }

/* When there's no icon (prose sections in legal pages) */
.pg-prose .pg-section {
  display: block;
  padding: 1.75rem 0;
}

.pg-section-icon {
  width: 2.25rem;
  height: 2.25rem;
  background-color: rgba(214,156,74,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.pg-section h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.01em;
  margin-bottom: 0.875rem;
  margin-top: 0;
}
.pg-section h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.625rem;
  margin-top: 1.5rem;
}
.pg-section h3:first-child { margin-top: 0; }
.pg-section p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0.875rem;
}
.pg-section p:last-child { margin-bottom: 0; }
.pg-section a { color: var(--gold); }
.pg-section a:hover { text-decoration: underline; }

/* Carriers grid (shipping page) */
.pg-carriers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1rem 0;
}
@media (min-width: 768px) { .pg-carriers-grid { grid-template-columns: repeat(3,1fr); } }

.pg-carrier {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.875rem;
}
.pg-carrier i { color: var(--gold); font-size: 1.25rem; flex-shrink: 0; }
.pg-carrier strong { display: block; font-size: 0.8125rem; font-weight: 700; color: var(--black); }
.pg-carrier span   { font-size: 0.75rem; color: var(--text-light); }

/* Delivery table */
.pg-table-wrap { overflow-x: auto; margin: 1rem 0; }
.pg-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.pg-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--text-light);
  background-color: #f5f5f5;
  border-bottom: 1px solid var(--border);
}
.pg-table td {
  padding: 0.75rem 1rem;
  color: var(--text);
  border-bottom: 1px solid #f3f4f6;
  vertical-align: middle;
}
.pg-table tbody tr:last-child td { border-bottom: none; }
.pg-table tbody tr:hover td { background-color: #fafafa; }
.pg-table tr td:first-child { font-weight: 600; color: var(--black); }

/* Checklist */
.pg-list { display: flex; flex-direction: column; gap: 0.625rem; margin: 1rem 0; }
.pg-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9375rem; color: var(--text-light); }
.pg-list li i { color: var(--gold); font-size: 0.875rem; margin-top: 0.2rem; flex-shrink: 0; }

/* Info box */
.pg-info-box {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  background-color: rgba(214,156,74,.07);
  border: 1px solid rgba(214,156,74,.25);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.6;
}
.pg-info-box > i { color: var(--gold); font-size: 1.125rem; margin-top: 0.1rem; flex-shrink: 0; }

/* ── Sidebar ── */
.pg-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }

.pg-sidebar-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}
.pg-sidebar-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.875rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.pg-sidebar-card p { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; }

.pg-sidebar-card--dark {
  background-color: var(--dark);
  border-color: #252525;
}
.pg-sidebar-card--dark h3 { color: var(--white); }
.pg-sidebar-card--dark p  { color: #9ca3af; }

.pg-sidebar-list { display: flex; flex-direction: column; gap: 0.625rem; margin-top: 0.25rem; }
.pg-sidebar-list li {
  display: flex; align-items: center; gap: 0.625rem;
  font-size: 0.875rem; color: #c0c0c0;
}
.pg-sidebar-list li i { color: var(--gold); font-size: 0.875rem; }

.pg-sidebar-toc { display: flex; flex-direction: column; gap: 0.375rem; }
.pg-sidebar-toc li a {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; color: var(--text-light);
  padding: 0.375rem 0;
  transition: color 0.15s;
  text-decoration: none;
  border-bottom: 1px solid #f3f4f6;
}
.pg-sidebar-toc li:last-child a { border-bottom: none; }
.pg-sidebar-toc li a i { font-size: 0.5625rem; color: var(--gold); }
.pg-sidebar-toc li a:hover { color: var(--gold); }

/* Sidebar CTA buttons */
.pg-btn-wha {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background-color: rgba(37,211,102,.1);
  color: #25d366; border: 1px solid rgba(37,211,102,.3);
  padding: 0.625rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem; font-weight: 600;
  text-decoration: none; transition: background-color 0.18s;
  width: 100%; justify-content: center;
}
.pg-btn-wha:hover { background-color: rgba(37,211,102,.18); }

.pg-outline { display: block; }
.pg-btn-outline {
  display: block;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.625rem 1rem;
  font-size: 0.875rem; font-weight: 600;
  color: var(--text);
  text-align: center;
  text-decoration: none;
  transition: border-color 0.18s, color 0.18s;
  margin-top: 0.5rem;
}
.pg-btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── Contact page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 380px 1fr; } }

.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-title {
  font-size: 1.25rem; font-weight: 800; color: var(--black);
  letter-spacing: -0.01em; margin-bottom: 0.25rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.18s, box-shadow 0.18s;
  position: relative;
}
.contact-card:hover { border-color: var(--gold); box-shadow: var(--s2); }

.contact-card--wha { border-color: rgba(37,211,102,.3); }
.contact-card--wha:hover { border-color: #25d366; }
.contact-card--wha .contact-card-icon { background-color: rgba(37,211,102,.1); color: #25d366; }

.contact-card--plain { cursor: default; }
.contact-card--plain:hover { border-color: var(--border); box-shadow: none; }

.contact-card-icon {
  width: 2.75rem; height: 2.75rem;
  background-color: rgba(214,156,74,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.125rem;
  flex-shrink: 0;
}
.contact-card h3 { font-size: 0.9375rem; font-weight: 700; color: var(--black); margin-bottom: 0.2rem; }
.contact-card p  { font-size: 0.875rem; font-weight: 600; color: var(--text); margin-bottom: 0.2rem; }
.contact-card span { font-size: 0.75rem; color: var(--text-light); }
.contact-card-arrow { margin-left: auto; font-size: 0.875rem; color: #d1d5db; }

.contact-quick { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem; }
.contact-quick h3 { font-size: 0.9375rem; font-weight: 700; color: var(--black); margin-bottom: 0.875rem; }
.contact-quick-links { display: flex; flex-direction: column; gap: 0.5rem; }
.contact-quick-links a {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.625rem 0.875rem;
  border-radius: 8px;
  font-size: 0.875rem; font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.15s;
}
.contact-quick-links a i { color: var(--gold); width: 1rem; text-align: center; }
.contact-quick-links a:hover { border-color: var(--gold); color: var(--gold); background-color: rgba(214,156,74,.04); }

/* Contact form */
.contact-form-wrap {}
.contact-form-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}
.contact-form-card h2 { font-size: 1.25rem; font-weight: 800; color: var(--black); margin-bottom: 0.375rem; }
.contact-form-card > p { font-size: 0.9375rem; color: var(--text-light); margin-bottom: 1.5rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 640px) { .contact-form-row { grid-template-columns: 1fr; } }

/* Shared field styles for content pages */
.pg-field { display: flex; flex-direction: column; gap: 0.375rem; }
.pg-field label { font-size: 0.8125rem; font-weight: 600; color: var(--text); }
.pg-req { color: var(--gold); }

.pg-field input,
.pg-field select,
.pg-field textarea {
  background-color: var(--white);
  border: 1px solid #d1d5db;
  border-radius: 8px;
  color: var(--text);
  font-size: 0.9375rem;
  padding: 0.75rem 1rem;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.18s;
  width: 100%;
}
.pg-field input:focus,
.pg-field select:focus,
.pg-field textarea:focus { border-color: var(--gold); }
.pg-field textarea { resize: vertical; min-height: 9rem; }

.pg-select-wrap { position: relative; }
.pg-select-wrap select { appearance: none; -webkit-appearance: none; padding-right: 2.5rem; cursor: pointer; }
.pg-sel-arrow { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); font-size: 0.625rem; color: #9ca3af; pointer-events: none; }

.pg-submit-btn {
  display: inline-flex; align-items: center; gap: 0.625rem;
  background-color: var(--gold); color: var(--black);
  font-weight: 700; font-size: 0.9375rem;
  padding: 0.875rem 2rem;
  border: none; border-radius: 8px;
  cursor: pointer; font-family: var(--font);
  transition: background-color 0.18s;
  width: fit-content;
}
.pg-submit-btn:hover { background-color: var(--gold-hover); }

/* Alerts */
.pg-alert {
  display: flex; align-items: flex-start; gap: 0.875rem;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
}
.pg-alert--success { background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.3); color: #15803d; }
.pg-alert--error   { background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.3); color: #b91c1c; }
.pg-alert i { font-size: 1.125rem; margin-top: 0.1rem; flex-shrink: 0; }
.pg-alert strong { display: block; margin-bottom: 0.25rem; }

/* ================================================================
   OUR WAREHOUSE PAGE
================================================================ */

/* Feature grid */
.wh-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  margin-top: 1.5rem;
}
@media (max-width: 600px) { .wh-feature-grid { grid-template-columns: 1fr; } }

.wh-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
}
.wh-feature i {
  color: var(--gold);
  font-size: 1.25rem;
  width: 1.5rem;
  text-align: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.wh-feature strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--black); margin-bottom: 0.2rem; }
.wh-feature span   { font-size: 0.75rem; color: var(--text-light); }

/* QC Steps */
.wh-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 1rem;
  position: relative;
}
.wh-steps::before {
  content: '';
  position: absolute;
  left: 1.125rem;
  top: 2.5rem;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.wh-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0;
  position: relative;
}
.wh-step-num {
  width: 2.25rem;
  height: 2.25rem;
  background-color: var(--gold);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.wh-step > div { padding-top: 0.25rem; }
.wh-step strong { display: block; font-size: 0.9375rem; font-weight: 700; color: var(--black); margin-bottom: 0.25rem; }
.wh-step p { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; margin: 0; }

/* Categories grid */
.wh-categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
@media (min-width: 640px) { .wh-categories-grid { grid-template-columns: repeat(3, 1fr); } }

.wh-cat-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.875rem;
  transition: border-color 0.15s;
}
.wh-cat-card:hover { border-color: var(--gold); }
.wh-cat-card i { color: var(--gold); font-size: 1.125rem; flex-shrink: 0; }
.wh-cat-card strong { display: block; font-size: 0.8125rem; font-weight: 700; color: var(--black); }
.wh-cat-card span   { font-size: 0.6875rem; color: var(--text-light); }

/* Gallery section */
.wh-gallery-section {
  padding: 5rem 0;
  background-color: var(--white);
}
.wh-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .wh-gallery-grid {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 20rem;
  }
}

.wh-gallery-item {
  border-radius: 12px;
  overflow: hidden;
}
.wh-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wh-gallery-item--large { grid-row: 1 / -1; }

/* ================================================================
   CART PAGE  v2.0 — clean rebuild
================================================================ */

body.woocommerce-cart,
body.page-template-default { background-color: #f4f5f7; }

.iet-cart-page {
  padding: 2rem 0 4rem;
  min-height: 60vh;
}

/* Header */
.iet-cart-header { margin-bottom: 2rem; }
.iet-cart-header h1 {
  font-size: 1.75rem; font-weight: 800; color: var(--black);
  display: flex; align-items: center; gap: 0.75rem;
  letter-spacing: -0.02em; margin-bottom: 0.25rem;
}
.iet-cart-header h1 i { color: var(--gold); }
.iet-cart-header p { font-size: 0.9375rem; color: var(--text-light); }

/* Empty state */
.iet-cart-empty {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 5rem 2rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.iet-cart-empty i { font-size: 4rem; color: #d1d5db; }
.iet-cart-empty h2 { font-size: 1.25rem; font-weight: 700; color: var(--black); }
.iet-cart-empty p  { font-size: 0.9375rem; color: var(--text-light); }

/* ── Two-column layout ── */
.iet-cart-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .iet-cart-layout { grid-template-columns: 1fr 340px; }
}

/* ── Left: items ── */
.iet-cart-col-main { display: flex; flex-direction: column; gap: 0.75rem; }

/* Table header — desktop only */
.iet-cart-thead {
  display: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 1.25rem;
}
@media (min-width: 768px) {
  .iet-cart-thead {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1.25fr 2.5rem;
    gap: 1rem;
    align-items: center;
  }
}
.iet-cart-th {
  font-size: 0.6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-light);
}

/* ── Cart item row ── */
.iet-cart-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  transition: box-shadow 0.15s;
}
.iet-cart-item:hover { box-shadow: 0 2px 12px rgba(0,0,0,.07); }
@media (min-width: 768px) {
  .iet-cart-item {
    grid-template-columns: 3fr 1fr 1fr 1.25fr 2.5rem;
    align-items: center;
  }
}

/* Product cell */
.iet-ci-product {
  display: flex; align-items: center; gap: 1rem;
  grid-column: 1 / -1;   /* full width on mobile */
  min-width: 0;
}
@media (min-width: 768px) { .iet-ci-product { grid-column: auto; } }

.iet-ci-img { flex-shrink: 0; }
.iet-ci-img img {
  width: 72px; height: 72px;
  object-fit: contain;
  border: 1px solid var(--border);
  border-radius: 8px; padding: 0.25rem;
  background: #fafafa; display: block;
}

.iet-ci-info { min-width: 0; flex: 1; }
.iet-ci-info a { text-decoration: none; }
.iet-ci-info strong {
  display: block; font-size: 0.9375rem; font-weight: 700;
  color: var(--black); margin-bottom: 0.25rem;
  white-space: normal; word-break: break-word;
}
.iet-ci-info strong:hover { color: var(--gold); }
.iet-ci-sku {
  display: block; font-size: 0.75rem; color: var(--text-light); margin-bottom: 0.2rem;
}
.iet-ci-stock {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; font-weight: 600; color: #9ca3af;
}
.iet-ci-stock.is-in { color: var(--success); }
.iet-ci-stock i { font-size: 0.4rem; }

/* Price / Qty / Total cells */
.iet-ci-price, .iet-ci-qty, .iet-ci-total {
  display: flex; align-items: center;
  font-size: 0.9375rem;
}
/* Mobile labels */
@media (max-width: 767px) {
  .iet-ci-price::before { content: attr(data-label) ': '; font-size: 0.75rem; color: var(--text-light); margin-right: 0.375rem; }
  .iet-ci-qty::before   { content: attr(data-label) ': '; font-size: 0.75rem; color: var(--text-light); margin-right: 0.375rem; }
  .iet-ci-total::before { content: attr(data-label) ': '; font-size: 0.75rem; color: var(--text-light); margin-right: 0.375rem; }
}
.iet-ci-price { color: var(--text); }
.iet-ci-total strong { color: var(--gold); font-weight: 800; font-size: 1rem; }

/* Fixed batch badge */
.iet-batch-badge {
  display: inline-flex; align-items: center;
  background: #f3f4f6;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.3rem 0.875rem;
  font-size: 0.875rem; font-weight: 700; color: var(--black);
  white-space: nowrap;
}

/* Delete button */
.iet-ci-del { display: flex; align-items: center; justify-content: flex-end; }
@media (min-width: 768px) { .iet-ci-del { justify-content: center; } }
.iet-ci-remove {
  width: 2rem; height: 2rem;
  display: flex; align-items: center; justify-content: center;
  background: #fef2f2; color: #ef4444;
  border-radius: 6px; font-size: 0.875rem;
  transition: background-color 0.15s; text-decoration: none;
}
.iet-ci-remove:hover { background: #fee2e2; color: #dc2626; }

/* Coupon bar */
.iet-cart-coupon {
  display: flex; gap: 0;
}
.iet-cart-coupon form {
  display: flex; gap: 0.625rem; flex-wrap: wrap;
}
.iet-coupon-input {
  border: 1px solid var(--border); border-radius: 8px;
  padding: 0.625rem 1rem; font-size: 0.875rem;
  font-family: var(--font); outline: none;
  transition: border-color 0.15s; width: 200px;
}
.iet-coupon-input:focus { border-color: var(--gold); }

.iet-cart-continue {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 600; color: var(--text-light);
  text-decoration: none; transition: color 0.15s; align-self: flex-start;
}
.iet-cart-continue:hover { color: var(--gold); }

/* Shared button styles */
.iet-cart-btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background-color: var(--gold); color: var(--black);
  font-weight: 700; font-size: 0.9375rem;
  padding: 0.75rem 1.5rem; border-radius: 8px;
  border: none; cursor: pointer; font-family: var(--font);
  transition: background-color 0.18s; text-decoration: none;
}
.iet-cart-btn-primary:hover { background-color: var(--gold-hover); color: var(--black); }

.iet-cart-btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid var(--border); border-radius: 8px;
  padding: 0.625rem 1.25rem; font-size: 0.875rem; font-weight: 600;
  color: var(--text); background: var(--white);
  cursor: pointer; font-family: var(--font); transition: all 0.15s;
}
.iet-cart-btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── Summary card ── */
.iet-cart-col-side { position: sticky; top: 100px; }

.iet-summary-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.iet-summary-title {
  font-size: 1.125rem; font-weight: 800; color: var(--black);
}

/* Per-product lines */
.iet-summary-lines {
  display: flex; flex-direction: column; gap: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.iet-summary-line {
  display: flex; justify-content: space-between;
  font-size: 0.8125rem; color: var(--text-light);
}
.iet-summary-line span:first-child {
  flex: 1; margin-right: 1rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.iet-summary-line span:last-child { font-weight: 600; color: var(--text); white-space: nowrap; }

.iet-summary-sep { display: none; } /* spacer already provided by border */

.iet-summary-rows { display: flex; flex-direction: column; gap: 0.75rem; }
.iet-summary-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.9375rem; color: var(--text-light);
}
.iet-summary-row--green { color: var(--success); }
.iet-summary-row--muted { color: #9ca3af; }

.iet-summary-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 0;
  border-top: 2px solid var(--border);
  font-size: 1rem; color: var(--black);
}
.iet-summary-total strong { color: var(--gold); font-size: 1.375rem; font-weight: 800; }

.iet-summary-checkout {
  display: flex; align-items: center; justify-content: center; gap: 0.625rem;
  width: 100%;
  background-color: var(--gold); color: var(--black);
  font-weight: 800; font-size: 1rem;
  padding: 0.9375rem; border-radius: 8px;
  text-decoration: none; transition: background-color 0.18s;
}
.iet-summary-checkout:hover { background-color: var(--gold-hover); color: var(--black); }

.iet-summary-payment {
  display: flex; align-items: center; justify-content: center; gap: 0.625rem;
  padding: 0.75rem;
  background: #f9fafb; border-radius: 8px;
  font-size: 0.8125rem; font-weight: 600; color: var(--text-light);
}
.iet-summary-payment i { font-size: 1.125rem; }

.iet-summary-vat {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; color: var(--text-light);
  padding: 0.75rem 1rem;
  background: rgba(214,156,74,.07); border-radius: 8px;
  border: 1px solid rgba(214,156,74,.2);
}
.iet-summary-vat i { color: var(--gold); flex-shrink: 0; }

.iet-summary-wha {
  display: flex; align-items: center; justify-content: center; gap: 0.625rem;
  background: rgba(37,211,102,.08); border: 1px solid rgba(37,211,102,.25);
  color: #25d366; font-weight: 700; font-size: 0.875rem;
  padding: 0.75rem; border-radius: 8px;
  text-decoration: none; transition: background-color 0.18s;
}
.iet-summary-wha:hover { background: rgba(37,211,102,.15); }

/* ── Add to cart loading state ── */
.js-add-to-cart.iet-loading { cursor: wait; }

/* ================================================================
   SORT DROPDOWN — improved styling
================================================================ */
.woocommerce-ordering {
  position: relative;
}
.woocommerce-ordering select,
.sort-select {
  appearance: none;
  -webkit-appearance: none;
  background-color: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  color: var(--black);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font);
  padding: 0.6rem 2.5rem 0.6rem 1rem;
  cursor: pointer;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23d69c4a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  min-width: 180px;
}
.woocommerce-ordering select:hover,
.sort-select:hover { border-color: var(--gold); }
.woocommerce-ordering select:focus,
.sort-select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(214,156,74,.15); }

/* Option hover — browser-styled but we can style the container */
.woocommerce-ordering select option {
  background-color: var(--white);
  color: var(--black);
  font-weight: 500;
  padding: 0.5rem;
}
.woocommerce-ordering select option:checked {
  background-color: var(--gold);
  color: var(--black);
}

/* ================================================================
   QUOTE LIST SAVE BUTTON — bookmark icon states
================================================================ */
.js-quote-toggle { cursor: pointer; transition: color 0.18s, transform 0.15s; }
.js-quote-toggle:hover { transform: scale(1.15); }
.js-quote-toggle.is-saved i,
.js-quote-toggle.is-saved { color: var(--gold) !important; }

.btn-add-quote-list.is-saved {
  border-color: var(--gold);
  color: var(--gold);
  background-color: rgba(214,156,74,.06);
}

/* ================================================================
   ACCOUNT — Quote list grid
================================================================ */
.acct-quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px)  { .acct-quote-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .acct-quote-grid { grid-template-columns: repeat(3,1fr); } }

.acct-quote-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow 0.18s;
}
.acct-quote-card:hover { box-shadow: var(--s2); }

.acct-quote-img {
  height: 160px; overflow: hidden; background: #f5f5f5;
}
.acct-quote-img img {
  width: 100%; height: 100%; object-fit: contain; padding: 0.5rem;
}

.acct-quote-info { padding: 0.875rem 1rem; flex: 1; }
.acct-quote-info h4 { font-size: 0.875rem; font-weight: 700; color: var(--black); margin-bottom: 0.5rem; line-height: 1.35; }
.acct-quote-price { font-size: 0.9375rem; font-weight: 700; color: var(--gold); margin-bottom: 0.375rem; }
.acct-quote-stock { font-size: 0.75rem; font-weight: 600; color: var(--text-light); }
.acct-quote-stock.in-stock { color: var(--success); }

.acct-quote-actions {
  padding: 0.875rem 1rem;
  border-top: 1px solid #f3f4f6;
  display: flex; gap: 0.5rem; flex-wrap: wrap;
}
.acct-btn-remove { border-color: rgba(214,156,74,.3); color: var(--gold); }
.acct-btn-remove:hover { border-color: var(--gold); background: rgba(214,156,74,.05); }

/* ================================================================
   TOAST NOTIFICATION
================================================================ */
.iet-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(1rem);
  opacity: 0;
  padding: 0.875rem 1.75rem;
  border-radius: 40px;
  font-size: 0.9375rem;
  font-weight: 700;
  font-family: var(--font);
  z-index: 9999;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}
.iet-toast--show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ================================================================
   LIGHTBOX
================================================================ */
.iet-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,.94);
  z-index: 9000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.iet-lightbox.is-open { display: flex; }

.iet-lb-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 2.5rem; height: 2.5rem;
  background: rgba(255,255,255,.12);
  border: none; border-radius: 50%;
  color: #fff; font-size: 1.125rem;
  cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: background-color 0.18s; z-index: 2;
}
.iet-lb-close:hover { background: rgba(255,255,255,.25); }

.iet-lb-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 3rem; height: 3rem;
  background: rgba(255,255,255,.1);
  border: none; border-radius: 50%;
  color: #fff; font-size: 1.125rem;
  cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: background-color 0.18s; z-index: 2;
}
.iet-lb-arrow:hover { background: rgba(255,255,255,.22); }
.iet-lb-prev { left: 1.25rem; }
.iet-lb-next { right: 1.25rem; }

.iet-lb-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: calc(100vw - 8rem);
  max-height: calc(100vh - 10rem);
  position: relative;
}

#ietLbImg {
  max-width: 100%;
  max-height: calc(100vh - 12rem);
  object-fit: contain;
  border-radius: 8px;
}

.iet-lb-counter {
  position: absolute;
  bottom: -2rem;
  left: 50%; transform: translateX(-50%);
  font-size: 0.8125rem;
  color: rgba(255,255,255,.6);
  white-space: nowrap;
}

.iet-lb-video-wrap {
  width: min(90vw, 900px);
  aspect-ratio: 16/9;
}
.iet-lb-video-wrap iframe,
.iet-lb-video-wrap video {
  width: 100%; height: 100%; border-radius: 8px;
}

.iet-lb-thumbs {
  position: absolute;
  bottom: 1rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.5rem;
  padding: 0.5rem;
  background: rgba(0,0,0,.5);
  border-radius: 40px;
  max-width: 90vw; overflow-x: auto;
}
.iet-lb-thumb {
  width: 3rem; height: 3rem;
  border-radius: 6px;
  border: 2px solid transparent;
  background-size: cover; background-position: center;
  cursor: pointer; flex-shrink: 0;
  transition: border-color 0.15s;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem;
}
.iet-lb-thumb.active { border-color: var(--gold); }
.iet-lb-thumb--video { background: rgba(255,255,255,.1); }

/* Zoom hint on main image */
.gallery-main-img { position: relative; }
.gallery-zoom-hint {
  position: absolute;
  bottom: 0.625rem; right: 0.625rem;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 0.6875rem; font-weight: 600;
  padding: 0.3rem 0.625rem;
  border-radius: 20px;
  display: flex; align-items: center; gap: 0.375rem;
  pointer-events: none;
  opacity: 0; transition: opacity 0.2s;
}
.gallery-main-img:hover .gallery-zoom-hint { opacity: 1; }
.gallery-zoomable { cursor: zoom-in; }

/* Video thumb in gallery strip */
.thumb-btn--video {
  background: #1a1a1a;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  border: 1.5px solid #2a2a2a;
}
.thumb-btn--video .thumb-video-icon { font-size: 1.125rem; }
.thumb-btn--video.active { border-color: var(--gold); }

/* Video embed in main area */
.gallery-video-embed {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.gallery-video-embed iframe,
.gallery-video-embed video {
  width: 100%; height: 100%;
  max-height: 420px;
  object-fit: contain;
  border-radius: 4px;
}

/* ================================================================
   PRODUCT FULL DESCRIPTION — respects WP editor formatting
================================================================ */
.product-full-desc {
  margin-top: 1.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

/* Short description — also respects WP editor spacing */
.product-desc {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.product-desc p   { margin-bottom: 0.875em; }
.product-desc br  { display: block; content: ''; margin-top: 0.4em; }
.product-desc ul,
.product-desc ol  { padding-left: 1.5rem; margin-bottom: 0.875em; }
.product-desc li  { margin-bottom: 0.3em; }
.product-desc strong { color: var(--black); font-weight: 700; }
.product-desc a   { color: var(--gold); }
.product-full-desc-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
}
/* Preserve all WP editor spacing and formatting */
.product-full-desc-content {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.75;
}
.product-full-desc-content p   { margin-bottom: 1em; }
.product-full-desc-content br  { display: block; content: ''; margin-top: 0.5em; }
.product-full-desc-content h1,
.product-full-desc-content h2,
.product-full-desc-content h3,
.product-full-desc-content h4  { color: var(--black); font-weight: 700; margin: 1.25em 0 0.5em; }
.product-full-desc-content ul,
.product-full-desc-content ol  { padding-left: 1.5rem; margin-bottom: 1em; }
.product-full-desc-content li  { margin-bottom: 0.375em; }
.product-full-desc-content strong { color: var(--black); font-weight: 700; }
.product-full-desc-content a   { color: var(--gold); }
.product-full-desc-content a:hover { text-decoration: underline; }
.product-full-desc-content table { width:100%; border-collapse:collapse; margin-bottom:1em; font-size:0.875rem; }
.product-full-desc-content td,
.product-full-desc-content th { border:1px solid var(--border); padding:0.5rem 0.75rem; }
.product-full-desc-content th { background:#f5f5f5; font-weight:700; }

/* ================================================================
   SHIPPING NOTE in conversion panel
================================================================ */
.conversion-shipping-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(214,156,74,.07);
  border: 1px solid rgba(214,156,74,.22);
  border-radius: 8px;
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  color: var(--text);
}
.conversion-shipping-note i { color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.conversion-shipping-note strong { display: block; font-weight: 700; color: var(--black); }
.conversion-shipping-note span  { font-size: 0.8125rem; color: var(--text-light); }

.price-lot-total {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 0.375rem;
}
.price-lot-total strong { color: var(--gold); font-weight: 800; }

/* ================================================================
   CHECKOUT PAGE
================================================================ */

body.woocommerce-checkout { background-color: #f4f5f7; }

.iet-checkout-page {
  padding: 2rem 0 4rem;
  min-height: 70vh;
}

.iet-checkout-header { margin-bottom: 2rem; }
.iet-checkout-header h1 {
  font-size: 1.75rem; font-weight: 800; color: var(--black);
  display: flex; align-items: center; gap: 0.75rem;
  letter-spacing: -0.02em; margin-bottom: 0.25rem;
}
.iet-checkout-header h1 i { color: var(--gold); }
.iet-checkout-header p { font-size: 0.9375rem; color: var(--text-light); }

/* Two-column layout */
.iet-checkout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .iet-checkout-grid { grid-template-columns: 1fr 400px; }
}

/* Sections */
.iet-checkout-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.iet-checkout-section-title {
  font-size: 1rem; font-weight: 800; color: var(--black);
  display: flex; align-items: center; gap: 0.625rem;
  margin-bottom: 1.5rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.iet-checkout-section-title i { color: var(--gold); }

/* Coupon bar */
.iet-checkout-coupon-bar {
  margin-bottom: 1.5rem;
}
.iet-checkout-coupon-bar .checkout_coupon {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.75rem;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.iet-checkout-coupon-bar input[type="text"] {
  flex: 1; min-width: 180px;
  border: 1px solid #d1d5db; border-radius: 8px;
  padding: 0.65rem 1rem; font-size: 0.9375rem;
  font-family: var(--font); outline: none;
}
.iet-checkout-coupon-bar input[type="text"]:focus { border-color: var(--gold); }

/* WooCommerce form fields */
.iet-checkout-form .form-row { margin-bottom: 1rem; }
.iet-checkout-form .form-row label {
  display: block; font-size: 0.8125rem; font-weight: 600;
  color: var(--text); margin-bottom: 0.375rem;
}
.iet-checkout-form .form-row .required { color: var(--gold); }
.iet-checkout-form input[type="text"],
.iet-checkout-form input[type="email"],
.iet-checkout-form input[type="tel"],
.iet-checkout-form input[type="number"],
.iet-checkout-form select,
.iet-checkout-form textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-size: 0.9375rem;
  font-family: var(--font);
  color: var(--text);
  outline: none;
  background: var(--white);
  transition: border-color 0.18s;
  box-sizing: border-box;
}
.iet-checkout-form input:focus,
.iet-checkout-form select:focus,
.iet-checkout-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(214,156,74,.1); }

.iet-checkout-form #billing_company_field,
.iet-checkout-form #billing_vat_field {
  display: none;
}

.iet-checkout-form textarea {
  min-height: 120px;
  resize: vertical;
}

.iet-checkout-form .form-row-first,
.iet-checkout-form .form-row-last {
  display: inline-block; width: 48%;
}
.iet-checkout-form .form-row-first { margin-right: 4%; }
@media (max-width: 640px) {
  .iet-checkout-form .form-row-first,
  .iet-checkout-form .form-row-last { display: block; width: 100%; margin-right: 0; }
}

/* select2 override */
.iet-checkout-form .select2-container--default .select2-selection--single {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  height: 44px;
  padding: 0.35rem 0.75rem;
}
.iet-checkout-form .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 1.8; color: var(--text); font-size: 0.9375rem; font-family: var(--font);
}
.iet-checkout-form .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 44px;
}
.iet-checkout-form .select2-container--focus .select2-selection--single,
.iet-checkout-form .select2-container--open .select2-selection--single {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(214,156,74,.1);
}

/* Summary card */
.iet-checkout-summary-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  position: sticky;
  top: 100px;
}

/* WC order review table */
.iet-checkout-form table.shop_table {
  width: 100%; border-collapse: collapse;
  font-size: 0.9375rem; margin-bottom: 1.5rem;
}
.iet-checkout-form table.shop_table th {
  text-align: left; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--text-light); padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.iet-checkout-form table.shop_table td {
  padding: 0.875rem 0;
  border-bottom: 1px solid #f3f4f6;
  color: var(--text); vertical-align: middle;
}
.iet-checkout-form table.shop_table td.product-name { font-weight: 600; color: var(--black); }
.iet-checkout-form table.shop_table .product-quantity { color: var(--text-light); }
.iet-checkout-form table.shop_table tfoot tr td,
.iet-checkout-form table.shop_table tfoot tr th {
  padding: 0.625rem 0; border-bottom: 1px solid #f3f4f6;
}
.iet-checkout-form table.shop_table tfoot .order-total td,
.iet-checkout-form table.shop_table tfoot .order-total th {
  font-size: 1.0625rem; font-weight: 800; color: var(--black);
  border-top: 2px solid var(--border); padding-top: 1rem;
  border-bottom: none;
}
.iet-checkout-form table.shop_table tfoot .order-total .woocommerce-Price-amount {
  color: var(--gold); font-size: 1.25rem;
}

/* Payment section */
#payment {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1.25rem;
}
#payment .wc_payment_methods { list-style: none; padding: 0; margin: 0 0 1.25rem; }
#payment .wc_payment_methods li {
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  margin-bottom: 0.625rem;
  cursor: pointer;
  transition: border-color 0.15s;
}
#payment .wc_payment_methods li:has(input:checked),
#payment .wc_payment_methods li.payment_method_bacs { border-color: var(--gold); background: rgba(214,156,74,.04); }
#payment .wc_payment_methods label {
  font-weight: 600; font-size: 0.9375rem; color: var(--black);
  cursor: pointer; display: flex; align-items: center; gap: 0.75rem;
}
#payment .payment_box {
  margin-top: 0.75rem; padding: 0.875rem 1rem;
  background: #f9f9f9; border-radius: 8px;
  font-size: 0.875rem; color: var(--text-light);
}

/* Place order button */
#payment .place-order { margin-top: 1rem; }
#payment .woocommerce-privacy-policy-text { display: none; }
.iet-privacy-consent {
  margin: 1rem 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--text-light);
}
.iet-privacy-consent label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
}
.iet-privacy-consent input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
  accent-color: var(--gold);
}
.iet-privacy-consent a {
  color: #2563eb;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.iet-privacy-consent .required {
  color: #ef4444;
  text-decoration: none;
}
#place_order {
  width: 100%;
  background-color: var(--gold); color: var(--black);
  font-weight: 800; font-size: 1.0625rem;
  padding: 1rem 2rem;
  border: none; border-radius: 8px;
  cursor: pointer; font-family: var(--font);
  display: flex; align-items: center; justify-content: center; gap: 0.625rem;
  transition: background-color 0.18s;
  letter-spacing: 0.02em;
}
#place_order:hover { background-color: var(--gold-hover); }
#place_order:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* WC notices on checkout */
.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
  list-style: none;
}
.woocommerce-info    { background: rgba(59,130,246,.08); border: 1px solid rgba(59,130,246,.3); color: #1d4ed8; }
.woocommerce-message { background: rgba(34,197,94,.08);  border: 1px solid rgba(34,197,94,.3); color: #15803d; }
.woocommerce-error   { background: rgba(239,68,68,.08);  border: 1px solid rgba(239,68,68,.3); color: #b91c1c; }
.woocommerce-error li { margin-bottom: 0.25rem; }

/* VAT info box on checkout */
#iet_vat_info {
  background: rgba(214,156,74,.07) !important;
  border: 1px solid rgba(214,156,74,.25) !important;
  border-radius: 8px !important;
  padding: 0.75rem 1rem !important;
  margin-top: 0.75rem !important;
  font-size: 0.875rem !important;
  color: var(--text) !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

/* ================================================================
   CHECKOUT — Customer Type Toggle
================================================================ */

.iet-customer-type-section { margin-bottom: 1.5rem; }

.iet-ctype-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 560px) { .iet-ctype-toggle { grid-template-columns: 1fr; } }

.iet-ctype-option { cursor: pointer; }
.iet-ctype-option input[type="radio"] { display: none; }

.iet-ctype-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  transition: border-color 0.18s, background-color 0.18s, box-shadow 0.18s;
  position: relative;
  user-select: none;
}
.iet-ctype-card:hover { border-color: #aaa; }

.iet-ctype-option.iet-ctype-active .iet-ctype-card {
  border-color: var(--gold);
  background: rgba(214,156,74,.04);
  box-shadow: 0 0 0 3px rgba(214,156,74,.12);
}

.iet-ctype-card > i {
  font-size: 1.5rem;
  color: #9ca3af;
  flex-shrink: 0;
  width: 2rem;
  text-align: center;
}
.iet-ctype-option.iet-ctype-active .iet-ctype-card > i { color: var(--gold); }

.iet-ctype-card > div strong { display: block; font-size: 0.9375rem; font-weight: 700; color: var(--black); }
.iet-ctype-card > div span   { display: block; font-size: 0.8125rem; color: var(--text-light); margin-top: 0.15rem; }

.iet-ctype-check {
  margin-left: auto;
  color: transparent;
  font-size: 1.125rem;
  transition: color 0.15s;
  flex-shrink: 0;
}
.iet-ctype-option.iet-ctype-active .iet-ctype-check { color: var(--gold); }

/* Business fields */
.iet-business-fields {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.iet-business-vat-note {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  background: rgba(214,156,74,.07);
  border: 1px solid rgba(214,156,74,.2);
  border-radius: 8px;
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  color: var(--text);
  margin-top: 1rem;
  line-height: 1.5;
}
.iet-business-vat-note i { color: var(--gold); flex-shrink: 0; margin-top: 0.1rem; }

/* VAT rate indicator in order summary */
.iet-vat-indicator {
  margin-top: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.iet-vat-indicator-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(214,156,74,.07);
  border: 1px solid rgba(214,156,74,.22);
  border-radius: 8px;
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
}
.iet-vat-indicator-inner i { color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.iet-vat-indicator-inner strong { display: block; font-weight: 700; color: var(--black); font-size: 0.9375rem; }
.iet-vat-indicator-inner span  { font-size: 0.75rem; color: var(--text-light); }

/* ================================================================
   MOBILE RESPONSIVE POLISH
================================================================ */
@media (max-width: 767px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .page-hero {
    padding: 3rem 0 2.5rem;
  }

  .page-hero-inner {
    align-items: flex-start;
    gap: 0;
  }

  .page-hero h2 {
    font-size: 2.25rem;
    line-height: 1.1;
  }

  .page-hero p {
    font-size: 0.875rem;
    max-width: 18rem;
  }

  .page-hero-badges {
    display: none;
  }

  .catalog-layout {
    padding: 1.5rem 0;
    gap: 1.25rem;
  }

  .catalog-sidebar {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem;
  }

  .sidebar-header {
    margin-bottom: 1rem;
  }

  .filter-group {
    margin-bottom: 0;
    padding: 0.875rem 0;
  }

  .filter-group:last-of-type {
    border-bottom: none;
  }

  .filter-group-header {
    position: relative;
    margin-bottom: 0;
  }

  .filter-group-header svg {
    display: none;
  }

  .filter-group-header::after {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.18s;
  }

  .filter-group.is-open .filter-group-header {
    margin-bottom: 0.875rem;
  }

  .filter-group.is-open .filter-group-header::after {
    transform: rotate(225deg);
  }

  .catalog-sidebar .filter-group > :not(.filter-group-header) {
    display: none;
  }

  .catalog-sidebar .filter-group.is-open > :not(.filter-group-header) {
    display: flex;
  }

  .catalog-sidebar .filter-group.is-open select,
  .catalog-sidebar .filter-group.is-open .filter-select {
    display: block;
  }

  .btn-apply-filters {
    margin-top: 1rem;
  }

  .catalog-toolbar {
    align-items: flex-start;
  }

  .catalog-toolbar-right {
    width: 100%;
    justify-content: space-between;
  }

  .products-grid-catalog,
  .products-grid-home,
  .related-products-grid,
  .acct-quote-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.875rem;
  }

  .product-card-catalog {
    border-radius: 8px;
  }

  .product-card-catalog-img,
  .products-grid-home .product-card-catalog-img,
  .related-products-grid .product-card-catalog-img {
    height: 10rem;
  }

  .product-card-catalog-body,
  .products-grid-home .product-card-catalog-body {
    padding: 0.75rem;
  }

  .product-card-catalog-body h4,
  .products-grid-home .product-card-catalog-body h4 {
    font-size: 0.78rem;
    line-height: 1.35;
    margin-bottom: 0.75rem;
  }

  .product-card-catalog-footer {
    gap: 0.5rem;
  }

  .card-price,
  .login-for-price {
    font-size: 0.75rem;
  }

  .card-actions {
    gap: 0.25rem;
  }

  .btn-bookmark-small,
  .btn-wha-small {
    font-size: 1rem;
    padding: 0.15rem;
  }

  body.page-product .trust-bar,
  body.single-product .trust-bar,
  .product-status-badges,
  .product-features,
  .bulk-cta,
  .trust-column,
  .stats-bar {
    display: none;
  }

  .breadcrumb {
    font-size: 0.8125rem;
    margin-bottom: 0.75rem;
  }

  .product-detail-grid {
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .product-gallery {
    gap: 0.75rem;
  }

  .gallery-thumbs {
    order: -1;
    flex-direction: row;
    width: 100%;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.25rem;
  }

  .thumb-btn {
    width: 4.25rem;
    height: 4.25rem;
  }

  .gallery-main {
    padding: 0.75rem;
    border-radius: 8px;
  }

  .gallery-main-img {
    height: auto;
    min-height: 0;
    background: #fff;
  }

  .gallery-main-img img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .gallery-footer {
    display: none;
  }

  .product-info h1 {
    font-size: 1.25rem;
    line-height: 1.3;
  }

  .product-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }

  .product-meta .divider {
    display: none;
  }

  .conversion-panel {
    position: static;
    padding: 1rem;
  }

  .conversion-btn-row {
    grid-template-columns: 1fr;
  }

  .related-trust-grid {
    display: block;
    margin-bottom: 2rem;
  }

  .related-products {
    padding: 1rem;
    background: #f5f5f5;
    border-radius: 8px;
  }

  .related-products-header h2 {
    font-size: 1.125rem;
  }

  .mobile-menu {
    padding: 1rem;
  }

  .mobile-menu-header {
    margin-bottom: 1rem;
  }

  .mobile-menu .site-logo-img .site-logo-image {
    height: 72px;
  }

  .mobile-menu-logout {
    margin-top: 1rem;
    color: #ef4444 !important;
    font-weight: 800 !important;
    border: 1px solid rgba(239,68,68,.35) !important;
    border-radius: 8px;
    padding-left: 0.875rem !important;
    padding-right: 0.875rem !important;
  }

  .about-hero {
    min-height: 28rem;
  }

  .about-hero-content {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }

  .about-hero-content h1 {
    font-size: 2rem;
    line-height: 1.12;
    letter-spacing: 0;
  }

  .about-hero-sub {
    font-size: 0.9375rem;
    line-height: 1.6;
    max-width: 100%;
  }

  .about-stats-row {
    padding: 1.5rem 0;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .about-stat {
    min-width: 0;
    padding: 1rem 0.75rem;
    gap: 0.75rem;
    border-right: none;
  }

  .about-stat i {
    font-size: 1.35rem;
  }

  .about-stat h3 {
    font-size: 1.35rem;
    word-break: normal;
  }

  .about-stat p {
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .about-section,
  .about-why-section,
  .about-how-section,
  .about-contact-section,
  .about-cta-section,
  .wh-gallery-section {
    padding: 2.5rem 0;
  }

  .about-section-header {
    margin-bottom: 2rem;
  }

  .about-section-header h2,
  .about-story-text h2,
  .about-cta-inner h2 {
    font-size: 1.5rem;
    letter-spacing: 0;
  }

  .about-section-header p,
  .about-story-text p,
  .about-feature-card p,
  .about-cta-inner p,
  .about-contact-card p {
    font-size: 0.875rem;
  }

  .about-story-grid,
  .about-features-grid,
  .about-steps-grid,
  .about-contact-grid {
    gap: 1rem;
  }

  .about-feature-card,
  .about-contact-card {
    padding: 1.25rem;
  }

  .about-step {
    padding: 1rem 0;
  }

  .about-step-connector {
    display: none;
  }

  .about-cta-inner {
    align-items: stretch;
    gap: 1.25rem;
  }

  .about-cta-buttons,
  .about-cta-buttons .btn,
  .about-cta-buttons .btn-whatsapp-outline {
    width: 100%;
  }

  .about-cta-buttons .btn,
  .about-cta-buttons .btn-whatsapp-outline {
    justify-content: center;
  }

  .pg-content-wrap {
    padding: 2rem 0;
  }

  .pg-content-grid {
    display: block;
  }

  .pg-section {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1.5rem 0;
  }

  .pg-section-icon {
    width: 2rem;
    height: 2rem;
    font-size: 0.875rem;
  }

  .pg-section h2 {
    font-size: 1.125rem;
  }

  .pg-section h3 {
    font-size: 1rem;
  }

  .pg-section p,
  .pg-list li,
  .pg-info-box,
  .wh-step p {
    font-size: 0.875rem;
    line-height: 1.6;
  }

  .pg-carriers-grid,
  .wh-feature-grid,
  .wh-categories-grid {
    grid-template-columns: 1fr;
  }

  .pg-table {
    min-width: 36rem;
    font-size: 0.8125rem;
  }

  .pg-sidebar {
    margin-top: 1.5rem;
  }

  .pg-sidebar-card {
    padding: 1.125rem;
  }

  .pg-btn-wha,
  .pg-btn-outline {
    width: 100%;
    justify-content: center;
  }

  .wh-steps {
    padding-left: 0;
  }

  .wh-steps::before {
    display: none;
  }

  .wh-step {
    grid-template-columns: 2.25rem 1fr;
  }

  .wh-step-num {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.75rem;
  }

  .wh-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .wh-gallery-item--large {
    grid-row: auto;
  }

  .wh-gallery-item {
    min-height: 12rem;
  }
}

/* Cart and checkout spacing + mobile overflow fixes */
.iet-cart-page,
.iet-checkout-page {
  padding-top: 1.25rem;
}

.iet-cart-layout,
.iet-cart-col-main,
.iet-cart-col-side,
.iet-summary-card {
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 767px) {
  .iet-cart-page,
  .iet-checkout-page {
    padding-top: 0.75rem;
  }

  .iet-cart-page .container,
  .iet-checkout-page .container {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .iet-cart-header,
  .iet-checkout-header {
    margin-bottom: 1.25rem;
  }

  .iet-cart-layout {
    display: block;
    width: 100%;
  }

  .iet-cart-col-main,
  .iet-cart-col-side {
    width: 100%;
    min-width: 0;
  }

  .iet-cart-col-side {
    position: static;
    margin-top: 1.25rem;
  }

  .iet-cart-item {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1rem;
    width: 100%;
    overflow: hidden;
  }

  .iet-ci-product {
    grid-column: auto;
    align-items: flex-start;
    gap: 0.75rem;
    width: 100%;
    min-width: 0;
  }

  .iet-ci-img img {
    width: 60px;
    height: 60px;
  }

  .iet-ci-info,
  .iet-ci-info strong {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .iet-ci-price,
  .iet-ci-qty,
  .iet-ci-total,
  .iet-ci-del {
    width: 100%;
    min-width: 0;
    justify-content: space-between;
  }

  .iet-ci-del {
    justify-content: flex-start;
  }

  .iet-batch-badge {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .iet-cart-coupon,
  .iet-cart-coupon form {
    width: 100%;
  }

  .iet-coupon-input {
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
  }

  .iet-cart-btn-outline,
  .iet-summary-checkout,
  .iet-summary-wha {
    width: 100%;
    justify-content: center;
  }

  .iet-summary-card {
    padding: 1rem;
    gap: 1rem;
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .iet-summary-line,
  .iet-summary-row,
  .iet-summary-total {
    gap: 0.75rem;
    align-items: flex-start;
  }

  .iet-summary-line span:first-child,
  .iet-summary-row span:first-child,
  .iet-summary-total span:first-child {
    min-width: 0;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .iet-summary-line span:last-child,
  .iet-summary-row span:last-child,
  .iet-summary-total span:last-child {
    flex-shrink: 0;
    text-align: right;
    white-space: nowrap;
  }
}

/* Homepage, About, and product mobile polish */
.about-story-grid {
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .about-story-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .section-why {
    margin-bottom: 2.5rem;
  }

  .why-inner {
    border-radius: 12px;
  }

  .why-content {
    padding: 1.75rem;
  }

  .why-content h2 {
    font-size: 1.55rem;
    line-height: 1.18;
    letter-spacing: 0;
    margin-bottom: 1.25rem;
  }

  .why-content h2 br {
    display: none;
  }

  .why-list {
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .why-list li {
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .why-list li i {
    margin-top: 0.25rem;
    font-size: 0.8rem;
    flex: 0 0 auto;
  }

  .why-content .btn {
    width: 100%;
    justify-content: center;
  }

  .why-images {
    display: none;
  }

  body.single-product {
    overflow-x: hidden;
  }

  body.single-product > .container {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .product-detail-grid,
  .product-gallery,
  .gallery-main,
  .gallery-main-img,
  .gallery-thumbs,
  .product-info,
  .conversion-panel,
  .conversion-btn-group,
  .conversion-btn-row {
    min-width: 0;
    max-width: 100%;
  }

  .product-gallery,
  .gallery-main,
  .conversion-panel {
    width: 100%;
  }

  .gallery-thumbs {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-inline: contain;
  }

  .thumb-btn {
    flex: 0 0 4.25rem;
  }

  .gallery-main-img img,
  #js-main-img-el {
    max-width: 100%;
    width: 100%;
  }

  .conversion-panel-top {
    gap: 1rem;
  }

  .units-available {
    flex-shrink: 0;
  }

  .btn-buy-now,
  .btn-quote,
  .btn-wha-panel,
  .btn-add-quote-list {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .btn-buy-now .buy-icon {
    justify-content: center;
    flex-wrap: wrap;
    line-height: 1.3;
  }
}

/* Checkout confirmation bank details */
.iet-bank-details,
.woocommerce-bacs-bank-details,
.wc-bacs-bank-details,
.woocommerce-order .bacs_details {
  margin: 1.5rem 0;
  background: var(--white);
  border: 1px solid rgba(214,156,74,.35);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--s1);
}

.iet-bank-details-header {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.iet-bank-details-header i {
  color: var(--gold);
  font-size: 1.25rem;
  margin-top: 0.15rem;
}

.iet-bank-details-header h2 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--black);
  margin: 0 0 0.25rem;
}

.iet-bank-details-header p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

.iet-bank-details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.875rem;
  margin: 0;
}

.iet-bank-details-list div {
  background: #f9fafb;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.875rem;
  min-width: 0;
}

.iet-bank-details-list dt {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.iet-bank-details-list dd {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--black);
  margin: 0;
  overflow-wrap: anywhere;
}

.wc-bacs-bank-details-heading,
.woocommerce-bacs-bank-details .wc-bacs-bank-details-heading,
.woocommerce-order h2.wc-bacs-bank-details-heading {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--black);
  margin: 0 0 1rem;
}

.wc-bacs-bank-details-account-name {
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--gold);
  margin: 0 0 0.875rem;
}

.woocommerce-order .bacs_details {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.875rem;
  padding: 1rem;
}

.woocommerce-order .bacs_details li {
  background: #f9fafb;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.875rem;
  color: var(--black);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.woocommerce-order .bacs_details li strong {
  display: block;
  color: var(--text-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

/* My Account responsive polish */
@media (max-width: 900px) {
  .acct-page {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    gap: 1rem;
  }

  .acct-sidebar,
  .acct-main,
  .acct-card,
  .acct-table-wrap,
  .acct-quote-grid {
    min-width: 0;
    max-width: 100%;
  }

  .acct-profile-card {
    padding: 1rem;
  }

  .acct-profile-info {
    min-width: 0;
  }

  .acct-profile-info h3,
  .acct-profile-info p,
  .acct-company {
    overflow-wrap: anywhere;
  }

  .acct-nav {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 10px;
    padding: 0.35rem;
    gap: 0.35rem;
    scrollbar-width: thin;
  }

  .acct-nav-item {
    flex: 0 0 auto;
    border-left: 0;
    border-radius: 8px;
    padding: 0.7rem 0.85rem;
    white-space: nowrap;
  }

  .acct-nav-item.active {
    border-left-color: transparent;
    background-color: rgba(214,156,74,.12);
  }

  .acct-nav-divider {
    display: none;
  }

  .acct-nav-badge {
    margin-left: 0.35rem;
  }
}

@media (max-width: 767px) {
  .iet-bank-details,
  .woocommerce-bacs-bank-details,
  .wc-bacs-bank-details,
  .woocommerce-order .bacs_details {
    padding: 1rem;
  }

  .iet-bank-details-header {
    gap: 0.75rem;
  }

  .iet-bank-details-list,
  .woocommerce-order .bacs_details {
    grid-template-columns: 1fr;
  }

  .acct-page {
    padding: 0.75rem;
  }

  .acct-section-header h1 {
    font-size: 1.35rem;
    line-height: 1.25;
    letter-spacing: 0;
  }

  .acct-section-header p {
    font-size: 0.875rem;
  }

  .acct-stats-row,
  .acct-quick-grid,
  .acct-quote-grid {
    grid-template-columns: 1fr;
  }

  .acct-stat-card,
  .acct-quick-card,
  .acct-card {
    padding: 1rem;
  }

  .acct-card-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }

  .acct-empty {
    padding: 2.5rem 1rem;
  }

  .acct-table-wrap {
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    -webkit-overflow-scrolling: touch;
  }

  .acct-table {
    min-width: 42rem;
  }

  .acct-form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .acct-btn-primary,
  .acct-btn-sm {
    justify-content: center;
  }

  .acct-form .acct-btn-primary {
    width: 100%;
  }

  .acct-quote-card {
    width: 100%;
  }

  .acct-quote-img {
    height: 12rem;
  }

  .acct-quote-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .acct-quote-actions .acct-btn-sm,
  .acct-quote-actions button {
    width: 100%;
  }
}
