/*
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: 1.9.1
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;
}
@media (min-width: 768px) { .trust-bar-inner { grid-template-columns: repeat(4,1fr); } }

.trust-item { display: flex; align-items: center; gap: 0.75rem; }
.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: 2rem;
}
.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; }

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  background-color: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  transition: background-color 0.2s;
  z-index: 400;
}
.floating-whatsapp:hover { background-color: #20bd5a; }

/* ================================================================
   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; }
.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); }

.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-actions { display: flex; gap: 0.5rem; }
.btn-wha-small { background: none; border: none; color: var(--success); font-size: 1.1rem; transition: color 0.2s; cursor: pointer; }
.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; }
.btn-bookmark-small:hover { color: var(--black); }

.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%; }
.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: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.7rem;
  color: var(--text-light);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.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; }
.payment-paypal i,
.payment-paypal span { color: #003087; }
.payment-wise i,
.payment-wise span { color: #00b9ff; }

/* 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; }
