:root{
  --brand:#0ea5e9;
  --brand-ink:#0b5fff;

  --text:#0b1220;
  --muted:rgba(11,18,32,.65);
  --line:rgba(11,18,32,.10);

  --surface:#ffffff;
  --surface2:#ffffff;
  --surface3:#eef2f7;

  --shadow: 0 24px 60px rgba(11,18,32,.10);
  --shadow2: 0 12px 30px rgba(11,18,32,.12);

  --font-head:"Barlow Condensed", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-sub:"Oswald", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-body:"Outfit", system-ui, -apple-system, Segoe UI, Arial, sans-serif;

  color-scheme: light;
}

html[data-theme="dark"]{
  --text:#e8eefc;
  --muted:rgba(232,238,252,.72);
  --line:rgba(232,238,252,.12);

  --surface:#0f1626;
  --surface2:#0b0f18;
  --surface3:#0c1220;

  --shadow: 0 24px 60px rgba(0,0,0,.45);
  --shadow2: 0 12px 30px rgba(0,0,0,.35);

  color-scheme: dark;
}

*{box-sizing:border-box}
html,body{height:100%;
}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--text);
  background: var(--surface2);
}

/* grid bg 
.page-grid-bg{
  position:fixed; inset:0;
  background:
    linear-gradient(to right, color-mix(in srgb, var(--line) 70%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in srgb, var(--line) 70%, transparent) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity:.35;
  pointer-events:none;
  z-index:0;
}
*/

/* Apply background only to the #home and #gallery sections using ::before */
#home, #gallery {
  position: relative; /* Set position for the pseudo-element */
  overflow: hidden;   /* Hide the pseudo-element overflow */
}

#home::before, #gallery::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    color-mix(in srgb, rgb(11 18 32 / 24%) 50%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom,
    color-mix(in srgb, var(--line) 90%, transparent) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.4;
  pointer-events: none;
  z-index: -1; /* Place the background behind content */
  transition: opacity 1s ease-out;
  background-position: top; /* Make sure the fade happens from top to bottom */
}

/* Apply fading effect when scrolled out of view */
#home.scrolled::before, #gallery.scrolled::before {
  opacity: 0; /* Set opacity to 0 when scrolled */
}

/* Set a white background for other sections */
section:not(#home):not(#gallery) {
  background-color: #ffffff; /* White background for all other sections */
}


.main-wrap{position:relative; z-index:1 }

/* ============ HEADER (from partial) ============ */


.topbar{
  position:fixed; top:0; z-index:50;
  background: #ffffff !important;

  border-bottom:2px solid var(--line);
   background-color:#FFFFFF;
}
.topbar-row{
  height:78px;
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;

}
.topbar-logo img{height:64px; width:auto; display:block; transition: transform .25s ease; border-radius:14px;}
.topbar-logo:hover img{transform: translateY(-1px) scale(1.02)}

.topbar-nav{display:flex; align-items:center; gap:30px}
.nav-item{
  font-family:var(--font-sub);
  letter-spacing:.12em;
  font-size:13px;
  text-transform:uppercase;
  padding:10px 6px;
  border-bottom:2px solid transparent;
  opacity:.72;
  transition: opacity .2s ease, border-color .2s ease, transform .2s ease;
  color:inherit; text-decoration:none;
}
.nav-item:hover{opacity:1; transform: translateY(-1px); border-bottom-color: var(--brand)}


.topbar-actions{display:flex; align-items:center; gap:10px}

.lang{position:relative}
.lang-btn{
  border:1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  border-radius:12px;
  padding:8px 20px;
  font-family:var(--font-sub);
  letter-spacing:.10em;
  font-size:12px;
  text-transform:uppercase;
  cursor:pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  color:inherit;
}
.lang-btn:hover{transform: translateY(-1px); box-shadow: var(--shadow2)}
.lang-menu{
  position:absolute; right:0; top:46px;
  min-width:140px;
  background: var(--surface);
  border:1px solid var(--line);
  border-radius:14px;
  box-shadow: var(--shadow2);
  padding:8px;
  display:none;
}
.lang-menu.open{display:block}
.lang-opt{
  width:100%;
  text-align:left;
  border:0;
  background:transparent;
  padding:10px 10px;
  border-radius:12px;
  cursor:pointer;
  transition: background .15s ease;
  color:inherit;
}
.lang-opt:hover{background: color-mix(in srgb, var(--surface2) 70%, transparent)}

.theme-toggle{
  width:64px;height:34px;
  border-radius:12px;
  border:1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  cursor:pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  color:inherit;
}
.theme-toggle:hover{transform: translateY(-1px); box-shadow: var(--shadow2)}

.nav-toggle{
  display:none;
  width:44px;height:44px;
  border-radius:12px;
  border:1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
}
.nav-lines{
  width:18px;height:2px;
  display:block;
  margin:0 auto;
  background: var(--text);
  position:relative;
}
.nav-lines:before,.nav-lines:after{
  content:""; position:absolute; left:0;
  width:18px;height:2px; background: var(--text);
}
.nav-lines:before{top:-6px}
.nav-lines:after{top:6px}

.nav-mobile{
  display:none;
  padding:10px 0 18px;
  border-top:1px solid var(--line);
}
.nav-mobile.open{display:flex; flex-direction:column; gap:6px; background:#ffffff;}

/* ===== Buttons (Oswald) ===== */
.btn{
  font-family:var(--font-sub) !important;
  letter-spacing:.10em;
  text-transform:uppercase;
}




.btn-brand{
  background: var(--brand);
  border:0px solid color-mix(in srgb, var(--brand) 70%, #000);
  color:#fff !important;
  padding:14px 18px;
  border-radius:12px;
  font-weight:500;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn-brand:hover{transform: translateY(-2px); box-shadow: var(--shadow2); filter: brightness(1.02)}

.btn-outline-surface{
  border:2px solid #e6e7e8!important;

  background: color-mix(in srgb, var(--surface) 92%, transparent);
  color: var(--text) !important;
  padding:8px 20px;
  border-radius:12px;
  font-weight:600;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  font-size:20px !important;
  line-height:29px;
    box-shadow: var(--shadow);

  
}
.btn-outline-surface:hover{
   background-color: #0da3e7; /* slightly darker shade */
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.35);
    color:#0da4e8 !important;
    border:2px solid #0da4e8 !important;
    
}

.arr{display:inline-block; margin-left:6px; transition: transform .2s ease}
.btn-brand:hover .arr,
.btn-outline-surface:hover .arr{transform: translateX(2px)}

.btn-brand:hover {
    color: #0ea5e9;
}
/* ===== Hero ===== */
.hero-section{padding-bottom: 50px}
.hero-row{}

.hero-badge{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border-radius:12px;
  background:#0b1220;
  border:1px solid var(--line);
  box-shadow: var(--shadow2);
  margin-top:-250px;
  transition: transform .2s ease;
}
.hero-badge:hover{transform: translateY(-2px)}
.hero-badge-text{
  font-family:var(--font-sub);
  letter-spacing:.12em;
  font-size:14px;
  text-transform:uppercase;
  opacity:.9;
  color:#ffffff;
  B
}

.hero-title{
  font-family:var(--font-head);
  font-weight:800;
  letter-spacing:.01em;
  line-height:.92;
  font-size:104px;
  margin:40px 0 18px;
  color:#0b1220;
}
.hero-sub{
  max-width:520px;
  color:var(--muted);
  font-size:18px;
  margin:0 0 22px;
}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:26px}

.hero-stats{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:24px;
  margin-top: 18px;
}
.stat-item{padding:10px;  box-shadow: var(--shadow);
 border-top:5px solid var(--line); border-radius:16px; background:#ffffff;}
 
 .stat-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}
.stat-num{font-family:var(--font-head); font-size:32px; line-height:1; font-weight:600;}
.stat-label{
  margin-top:6px;
  font-family:var(--font-sub);
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:12px;
  color: color-mix(in srgb, var(--muted) 90%, transparent);
}

/* Right product card */
.product-card{
  position:relative;
  background: var(--surface);
  border-bottom:5px solid var(--line);
    border-right:5px solid var(--line);

  border-radius:22px;
  box-shadow: var(--shadow);
  overflow:hidden;
  padding: 26px;
  transition: transform .25s ease, box-shadow .25s ease;
  margin-top:20px;
}
.product-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(11,18,32,.16);
}
html[data-theme="dark"] .product-card:hover{box-shadow: 0 30px 80px rgba(0,0,0,.45)}
.product-img{width:100%; height:auto; object-fit:contain; border-radius:16px; animation: floaty 7.5s ease-in-out infinite}
@keyframes floaty{0%,100%{transform: translateY(0)}50%{transform: translateY(-10px)}}

.product-float-badge{
  position:absolute; left:22px; bottom:18px;
  display:flex; align-items:center; gap:12px;
  background: var(--surface);
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px 14px;
  box-shadow: var(--shadow2);
  transition: transform .2s ease;
}
.product-card:hover .product-float-badge{transform: translateY(-2px)}
.float-ic{
  width:42px;height:42px; border-radius:12px;
  display:grid; place-items:center;
  background: color-mix(in srgb, var(--brand) 12%, transparent);
  color: #16a249;
  font-weight:900;
  font-size:24px;
  border:2px solid #a8ddbb;
}
.float-title{
  font-family:var(--font-sub);
  letter-spacing:.10em;
  font-size:18px;
  text-transform:uppercase;
  font-weight:500;
  color:#000000;
}
.float-sub{font-size:12px; color:var(--muted); margin-top:2px}


.side-ribbon:hover{filter: brightness(1.03); transform: translateY(-52%) rotate(-90deg)}

/* ===== Sections common ===== */
.section-pad{padding: 40px 0px}
.section-soft{
  background: radial-gradient(900px 280px at 50% 0%,
 color-mix(in srgb, #0ea5e900 10%, transparent), transparent 60%);
}
.section-center{text-align:center; margin-bottom:34px}
.section-eyebrow{
  font-family:var(--font-sub);
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:600;
  margin-bottom:10px;
}
.section-desc-center{
  margin:0 auto;
  color:var(--muted);
  max-width:680px;
  font-size:14px;
}
.section-title-big{
  font-family:var(--font-head);
  font-weight:700;
  font-size:64px;
  letter-spacing:.01em;
  line-height:.95;
  margin:0 0 10px;
}

.section-head{margin-bottom:18px}
.section-title{
  font-family:var(--font-head);
  font-size:56px;
  margin:0;
  line-height:.95;
}
.section-desc{margin:8px 0 0; color:var(--muted); max-width:620px}

/* ===== TOP SELLING (grid of cards) ===== */
.selling-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:25px;
}
.selling-card {
    /* background: var(--surface); */
    border-bottom: 5px solid var(--line);
    border-right: 5px solid var(--line);
    background: linear-gradient(0deg, #defdf429 0%, #c8efe347 100%, #F2F2F2 100%);
    border-radius: 14px;
    box-shadow: 0 10px 26px rgba(11, 18, 32, .06);
    padding: 20px 30px 30px 20px;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    cursor: pointer;
}

.selling-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(11,18,32,.12);
  border-color: color-mix(in srgb, var(--brand) 22%, var(--line));
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: color-mix(in srgb, var(--surface2) 50%, transparent);
  font-size:11px;
  font-family:var(--font-sub);
  letter-spacing:.10em;
  text-transform:uppercase;
}
.selling-title{
  font-family:var(--font-sub);
  text-transform:uppercase;
  letter-spacing:.06em;
  font-size:16px;
  margin:10px 0 4px;
  color: color-mix(in srgb, var(--text) 92%, transparent);
  display:none;
}
.selling-name{
  margin:10px 0 10px;
  font-family:var(--font-sub);
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:14px !important;
}
.selling-sku{
  font-size:14px;
  color: color-mix(in srgb, var(--brand) 90%, transparent);
  font-family:var(--font-sub);
  letter-spacing:.06em;
}
.selling-desc{font-size:14px; color:var(--muted); margin:8px 0 14px; min-height:34px}
.selling-btn{
  width:100%;
  border:0;
  background: #0b0b0c;
  color:#fff;
  margin-top:10px;
  padding:10px 10px;
  border-radius:8px;
  font-family:var(--font-sub);
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:12px;
  transition: transform .2s ease, filter .2s ease;
}

.selling-btn:hover {
    background-color: #0284c7; /* slightly darker shade */
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.35);
}


html[data-theme="dark"] .selling-btn{background:#0b1020}
.selling-btn:hover{transform: translateY(-2px); filter: brightness(1.05)}

/* ===== CATALOG ===== */
.catalog-controls{
  display:flex;
  gap:12px;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  margin-bottom:14px;
}
.search-wrap{
  position:relative;
  width:min(520px, 100%);
}
.search-ic{
  position:absolute;
  left:12px;
  top:50%;
  transform: translateY(-50%);
  opacity:.55;
}
.search-wrap input{
  width:100%;
  border:1px solid var(--line);
  border-radius:8px;
  padding:12px 12px 12px 36px;
  background: var(--surface);
  outline:none;
}
.search-wrap input:focus{
  border-color: color-mix(in srgb, var(--brand) 55%, var(--line));
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 16%, transparent);
}
.make-select{
  border:1px solid var(--line);
  background: var(--surface);
  border-radius:8px;
  padding:12px 12px;
  outline:none;
  font-family:oswald;
}

.catalog-tabs{
  display:flex;
  justify-content:flex-start;
  gap:10px;
  margin: 14px 0 12px;
}
.tab-btn{
  border:1px solid var(--line);
  background: var(--surface);
  padding:10px 14px;
  border-radius:8px;
  font-family:var(--font-sub);
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:12px;
  cursor:pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.tab-btn:hover{transform: translateY(-2px); box-shadow: var(--shadow2)}
.tab-btn.active{
  background:#0b0b0c;
  color:#fff;
  border-color:#0b0b0c;
}
html[data-theme="dark"] .tab-btn.active{background:#0b1020; border-color:#0b1020}

.catalog-table-wrap{
  border:1px solid var(--line);
  background: var(--surface);
  border-radius:10px;
  overflow:hidden;
  box-shadow: var(--shadow2);
}
.catalog-table{
  width:100%;
  border-collapse:collapse;
  font-size:12px;
}
.catalog-table thead th {
    background: linear-gradient(180deg, #DEFDF4 0%, #EAFDF7 50%, #F2F2F2 100%) !important;
    color: black !important;
    font-family: var(--font-sub);
    text-transform: uppercase;
    letter-spacing: .10em;
    padding: 10px 10px;
    font-size: 14px;
    font-weight: 500 !important;
}
html[data-theme="dark"] .catalog-table thead th{background:#0b1020}

.catalog-table td{
  border-top:1px solid var(--line);
  padding:10px 10px;
  vertical-align:middle;
}
.make-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.make-tag{
  border:1px solid var(--line);
  padding:4px 8px;
  border-radius:999px;
  font-size:10px;
  font-family:var(--font-sub);
  letter-spacing:.10em;
  text-transform:uppercase;
  background: color-mix(in srgb, var(--surface2) 50%, transparent);
}
.quote-add{
  border:0;
  background:#0b0b0c;
  color:#fff;
  border-radius:6px;
  padding:8px 10px;
  font-family:var(--font-sub);
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:11px;
  transition: transform .2s ease, filter .2s ease;
}
.quote-add:hover {
    background-color: #0284c7; /* slightly darker shade */
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.35);
}

html[data-theme="dark"] .quote-add{background:#0b1020}
.quote-add:hover{transform: translateY(-2px); filter: brightness(1.06)}

.catalog-foot{
  padding:12px 14px;
  font-family:var(--font-sub);
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:12px;
  opacity:.7;
  text-align:center;
}

/* ===== Gallery carousel ===== */
.gallery-carousel{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:18px;
}
.gc-btn{
  width:46px;height:46px;
  border-radius:12px;
  border:1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow2);
  cursor:pointer;
  transition: transform .2s ease;
  font-size:22px;
}
.gc-btn:hover{transform: translateY(-2px)}
.gc-viewport{
  flex:1;
  overflow:hidden;
  border-radius:16px;
}
.gc-track{
  display:flex;
  gap:16px;
  transform: translateX(0);
  transition: transform .55s cubic-bezier(.2,.9,.2,1);
}
.gc-slide{
  min-width: calc(33.333% - 11px);
  background: var(--surface);
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow: 0 10px 26px rgba(11,18,32,.06);
  overflow:hidden;
  transition: transform .22s ease;
}
.gc-slide:hover{transform: translateY(-6px)}
.gc-thumb{
  height:280px;
  display:grid;
  place-items:center;
  background: color-mix(in srgb, var(--surface3) 75%, transparent);
  margin:5px;
}
.gc-thumb .gc-icon{
  width:70px; height:70px;
  border-radius:16px;
  display:grid;
  place-items:center;
  border:1px solid var(--line);
  background: var(--surface);
  font-size:26px;
}
.gc-body{padding:16px}
.gc-title{
  font-family:var(--font-sub);
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:18px;
  margin:0 0 8px;
}
.gc-text{margin:0; color:var(--muted); font-size:16px; line-height:17px}
.gc-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:16px;
}
.dot{
  width:10px;height:10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: var(--surface);
  cursor:pointer;
  transition: transform .2s ease, background .2s ease;
}
.dot.active{background: var(--brand); border-color: var(--brand)}
.dot:hover{transform: scale(1.15)}


.gc-thumb{
  height:220px;
  border-radius:16px;
  border:1px solid var(--line);
  background: color-mix(in srgb, var(--surface2) 55%, transparent);
  display:grid;
  place-items:center;
  overflow:hidden;
  box-shadow: var(--shadow2);
}

.gc-img{
  width:72px;
  height:72px;
  object-fit:contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.10));
  transition: transform .25s ease;
    border-right:4px solid var(--line);
    border-top:4px solid var(--line);
    border-radius:14px;
    

}

.gc-slide:hover .gc-img{
  transform: translateY(-4px) scale(1.04);
}

/* ===== Verify ===== */
.verify-card{
  border:1px solid var(--line);
  border-radius:18px;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding:22px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
}
.verify-title{
  font-family:var(--font-head);
  font-size:46px;
  line-height:1;
  margin:0 0 10px;
}
.verify-text{margin:0; color:var(--muted); max-width:540px}
.verify-right{display:flex; flex-wrap:wrap; gap:10px; justify-content:flex-end}
.verify-bubble{
  border:1px solid var(--line);
  background: var(--surface2);
  padding:10px 12px;
  border-radius:999px;
  font-family:var(--font-sub);
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:11px;
}



/* ===== Footer (dark like screenshot) ===== */
.footer{
  background: #0b0b0c;
  color: rgba(255,255,255,.92);
  padding: 0px;
  border-top:1px solid rgba(255,255,255,.08);
}
html[data-theme="dark"] .footer{background:#070a12}
.footer-row{
  display:grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap:22px;
  align-items:start;
}
.footer h6{
  font-family:var(--font-sub);
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:18px;
  margin:0 0 10px;
  color: rgba(255,255,255,.85);
}
.footer p, .footer a{
  color: rgba(255,255,255,.70);
  font-size:16px;
  text-decoration:none;
  font-family:oswald;
}
.footer a:hover{color:#fff}
.footer-brandline{
  display:flex; align-items:center; gap:12px;
}
.footer-brandline img{height:64px; width:auto; border-radius:6px}
.wh-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#22c55e;
  color:#06240f !important;
  border-radius:10px;
  padding:10px 14px;
  font-family:var(--font-sub);
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:12px;
  border:0;
}
.wh-btn:hover{filter: brightness(1.03); transform: translateY(-1px)}
.footer-bottom{
 padding:20px !important;
  border-top:1px solid rgba(255,255,255,.10);
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
  color: rgba(255,255,255,.55);
  font-size:12px;
}

/* ===== Modal ===== */
.modal-shell{position:fixed; inset:0; display:none; z-index:100}
.modal-shell.show{display:block}
.modal-overlay{position:absolute; inset:0; background: rgba(0,0,0,.55)}
.modal-card{
  position:relative;
  width:min(780px, calc(100% - 28px));
  margin: 10vh auto 0;
  background: var(--surface);
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow: var(--shadow);
  padding:16px;
}
.modal-head{display:flex; align-items:center; justify-content:space-between; gap:12px; border-bottom:1px solid var(--line); padding-bottom:10px}
.modal-title{font-family:var(--font-head); font-size:36px; margin:0}
.modal-form{padding-top:14px}
.field{display:flex; flex-direction:column; gap:6px}
.label{font-family:var(--font-sub); letter-spacing:.12em; text-transform:uppercase; font-size:11px; color:var(--muted)}
.field input,.field textarea{
  border:1px solid var(--line);
  border-radius:12px;
  padding:12px 12px;
  background: color-mix(in srgb, var(--surface2) 40%, transparent);
  outline:none;
  color:inherit;
}
.field input:focus,.field textarea:focus{
  border-color: color-mix(in srgb, var(--brand) 70%, transparent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 18%, transparent);
}
.modal-actions{display:flex; justify-content:flex-end; gap:10px; margin-top:14px}
.form-hint{margin:10px 0 0; color:var(--muted)}

/* Motion */
.reveal{opacity:0; transform: translateY(18px); transition: opacity .95s ease, transform .95s ease}
.reveal.in{opacity:1; transform: translateY(0)}

/* Responsive */
@media (max-width: 1200px){
  .hero-title{font-size:78px}
  .selling-grid{grid-template-columns: repeat(3, 1fr)}
}
@media (max-width: 992px){
  .topbar-nav{display:none}
  .nav-toggle{display:inline-flex; align-items:center; justify-content:center}
  .hero-title{font-size:72px}
  .hero-row{min-height:auto}
  .hero-stats{grid-template-columns: repeat(2, 1fr)}
  .selling-grid{grid-template-columns: repeat(2, 1fr)}
  .gc-slide{min-width: calc(50% - 8px)}
  .footer-row{grid-template-columns: 1fr}
}
@media (max-width: 576px){
  .hero-title{font-size:58px}
  .selling-grid{grid-template-columns: 1fr}
  .gc-slide{min-width: 100%}
  
}

/* ===== FIXED HEADER (DESKTOP + MOBILE) ===== */
.topbar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  background: var(--bg);
  border-bottom: 2px solid var(--line);
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

/* Optional: blur glass effect (looks premium) */
.topbar{
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
}

/* Keep nav aligned nicely */
.topbar-row{
  height: 74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}

/* Mobile dropdown should open below fixed header */
.nav-mobile{
  display:none;
  padding: 12px 0 16px;
  border-top: 1px solid var(--line);
}

/* When mobile menu is open */


/* Ensure mobile menu is also "fixed" with header and not scrolling away */
@media (max-width: 992px){
  .topbar-nav{display:none;}
}

/* Add spacing so content doesn't hide behind fixed header */
body{
  padding-top: 74px;  /* same as .topbar-row height */
}

/* If you want more spacing on smaller devices */
@media (max-width: 576px){
  body{ padding-top: 70px; }
  .topbar-row{ height: 70px; }
  .topbar-logo img{height:42px; width:auto; display:block; transition: transform .25s ease}
  
  .section-pad{padding: 30px 0}
}
/* Ensure proper max-width for desktop */
@media (min-width: 1800px) {
  .container-xxl {
    max-width: 1750px;
    margin: 0 auto;
    padding:54px;
   
  }
}

/* Mobile responsiveness */
@media (max-width: 992px) {
  .hero-title {
    font-size: 72px;
    font-weight:900;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .selling-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gc-slide {
    min-width: 50%;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 58px;
  }
  .selling-grid {
    grid-template-columns: 1fr;
  }
  .gc-slide {
    min-width: 100%;
  }
  
  
}

/* Add motion effects */
.hero-badge:hover {
  transform: translateY(-5px);
}

.hero-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(11, 18, 32, .16);
}

.hero-actions a:hover {
  transform: translateY(-3px);
}

/* Buttons */
.btn {
  font-family: var(--font-sub) !important;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.btn-brand {
  background:#0da4e8 !important;
  color: #fff !important;
  padding: 14px 18px;
  border-radius: 12px;
  border:2px solid #000000;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  font-size:20px !important;
  
}
.btn-brand:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow2);
  filter: brightness(1.02);
  color:#00a1e6 !important;
  border:2px solid #0da4e8 !important;
  background:#fff !important;
}

/* Card hover */
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(11, 18, 32, .16);
}

/* Smooth scrolling */
.smooth-scroll {
  scroll-behavior: smooth;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .95s ease, transform .95s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
/* Fixed position button */
.side-ribbon {
  position: fixed !important;
  font-weight:500;
  right: -12%;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  background-color: #0ea5ff;
  color: white;
  font-family: var(--font-sub);
  font-weight: bold;
  padding: 10px 16px;
  box-shadow: var(--shadow2);
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
  border-style:none;
  z-index: 1000; /* Ensure it's on top of other content */
  border-radius:0px 0px 12px 12px;
  border-bottom:5px solid #ffffff;
    border-right:5px solid #ffffff;
      border-left:5px solid #ffffff;


 
}

.side-ribbon:hover {
  filter: brightness(1.03);
  transform: translateY(-50%) rotate(-90deg) translateX(-5px);
}

.side-ribbon:focus {
  outline: none;
}

/* Ensure proper max-width for desktop */
@media (min-width: 1800px) {
  .container-xxl {
    max-width: 1750px;
    margin: 0 auto;
    padding:54px;
     
  }
}

/* Mobile responsiveness */
@media (max-width: 992px) {
  .hero-title {
    font-size: 72px;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .selling-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gc-slide {
    min-width: 50%;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 58px;
  }
  .selling-grid {
    grid-template-columns: 1fr;
  }
  .gc-slide {
    min-width: 100%;
  }
}

/* Add motion effects */
.hero-badge:hover {
  transform: translateY(-5px);
}

.hero-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(11, 18, 32, .16);
}

.hero-actions a:hover {
  transform: translateY(-3px);
}

/* Catalog Page Styles */
.catalog-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.search-wrap {
  position: relative;
  width: min(520px, 100%);
}

.search-ic {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  opacity: .55;
}

.search-wrap input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 12px 12px 36px;
  background: var(--surface);
  outline: none;
}

.search-wrap input:focus {
  border-color: color-mix(in srgb, var(--brand) 55%, var(--line));
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 16%, transparent);
}

.make-select {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 8px;
  padding: 12px 12px;
  outline: none;
  font-family: oswald;
}

.catalog-tabs {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin: 14px 0 12px;
}

.tab-btn {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 10px 14px;
  border-radius: 8px;
  font-family: var(--font-sub);
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.tab-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow2);
}

.tab-btn.active {
    background: linear-gradient(
        180deg,
        #DEFDF4 0%,
        #EAFDF7 50%,
        #F2F2F2 100%
    ) !important;
    color: #000 !important;
    border: 1px solid #0b0b0c;
}


.catalog-table-wrap {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow2);
}

.catalog-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.catalog-table thead th {
  background: #0b0b0c;
  color: #fff;
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: .10em;
  padding: 12px 10px;
  font-size: 14px;
  font-weight: 400;
}

.catalog-table td {
  border-top: 1px solid var(--line);
  padding: 10px 10px;
  vertical-align: middle;
}

.make-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size:14px;
}

.make-tag {
  border: 1px solid var(--line);
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-family: var(--font-sub);
  letter-spacing: .10em;
  text-transform: uppercase;
  background: color-mix(in srgb, var(--surface2) 50%, transparent);
}

.quote-add {
  border: 0;
  background: #0b0b0c;
  color: #fff;
  border-radius: 6px;
  padding: 8px 20px;
  font-family: var(--font-sub);
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: 14px;
  transition: transform .2s ease, filter .2s ease;
  font-weight:400;
}

.quote-add:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.catalog-foot {
  padding: 12px 14px;
  font-family: var(--font-sub);
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: .7;
  text-align: center;
}

/* General Styles */
body {
  font-family: 'Outfit', sans-serif;
}

.container-xxl {
  max-width: 1750px;
  margin: 0 auto;
  padding:54px;

}

h2.section-title-big {
  font-size: 64px;
  margin-bottom: 20px;
  text-align: center;
}

p.section-desc-center {
  font-size: 16px;
  text-align: center;
  margin-bottom: 20px;
}

/* Catalog Controls (Search and Filter) */
.catalog-controls {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.search-wrap {
  display: flex;
  align-items: center;
}

.search-ic {
  font-size: 18px;
  margin-right: 10px;
}

#catalogSearch {
  
  font-size: 16px;
  width: 70%;
  color:;
}

.make-select {
  padding: 10px;
  font-size: 16px;
  width: 25%;
}

/* Catalog Tabs */
.catalog-tabs {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.tab-btn {
  padding: 10px 20px;
  border: 1px solid #ccc;
  margin-right: 5px;
  cursor: pointer;
}

.tab-btn.active {
  background-color:#0b0b0c;
  color: white;
}

/* Catalog Table */
.catalog-table-wrap {
  overflow-x: auto;
}

.catalog-table {
  width: 100%;
  border-collapse: collapse;
}

.catalog-table th, .catalog-table td {
  padding: 15px;
  border: 1px solid #ddd;
  text-align: left;
  font-size: 13px;
}

.catalog-table th {
  background-color: #f4f4f4;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .catalog-controls {
    flex-direction: column;
  }

  #catalogSearch {
    width: 100%;
    margin-bottom: 10px;
  }

  .make-select {
    width: 100%;
  }
}
/* Mobile View Adjustments */
@media (max-width: 768px) {
    .side-ribbon {
      display:none;
    }
    
    .lang-btn{
        padding:10px 10px;
    }
    
    .nav-item{
        color:#000000;
        background:#ffffff;
    }
}

.product-float-badge {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  padding: 20px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow2);
  border-right:5px solid var(--line);
    border-bottom:5px solid var(--line);

}

.float-ic {
  width: 50px; /* Adjust size to match the new image */
  height: 50px; /* Adjust size to match the new image */
  margin-right: 6px; /* Space between the image and text */
}

.badge-icon {
  width: 100%;
  height: auto;
}

.float-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 0px;
}

.float-sub {
  font-size: 14px;
  color: #666;
}


@media (max-width: 576px) {
    .hero-title {
        font-size: 58px;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .section-pad {
        padding: 0px 0;
    }
    .section-title-big{
        font-size:48px;
    }
    .hero-section{
        padding:20px;
    }
    .container-xxl{
        padding:40px 20px;
    }
    #hero-padding{
        padding:0px !important;
    }
    .row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
   
    margin-top: var(--bs-gutter-y);
    padding: 0px;
}
@media (max-width: 576px) {
    .container-xxl {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}


.topbar-row {
    height: 74px;
    width: 100%;  /* Set the width to 100% for responsive scaling */
    max-width: 1600px;  /* Set a max-width for large screens */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background-color: inherit;
    padding: 0px 50px;
    margin: 0 auto;  /* Center the topbar-row */
}


/* Light mode */
@media (prefers-color-scheme: light) {
    .topbar-row {
        background-color: #ffffff !important;
        
    }
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
    .topbar-row {
        background-color: inherit !important;
    }
}


@media (min-width: 992px) {
    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
        padding: 0px;
    }
}


#hero-padding{
    padding:0px 20px 20px 20px;
}
.reveal-set{
    margin-top:-45px !important;
}


/* Default (Light Mode) */
.topbar-row {
    background-color: #ffffff !important; /* White background for light mode */
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
    .topbar-row {
        background-color: #0b0f18; /* Dark background for dark mode */
    }
}

/* Optional: Ensure no transparency effect is applied in both light and dark modes */
.topbar {
    background: var(--surface); /* Replace any transparency or background mix */

}



.topbar
     {
    box-sizing: content-box;
}
.topbar-row{  box-sizing: content-box;
}}




/* Styling for the title */
.section-title-big {
  font-family: var(--font-head); /* Use your desired font */
  font-weight: 700; /* Bold */
  font-size: 64px; /* Adjust the font size as needed */
  letter-spacing: .01em;
  line-height: .95;
  text-transform: uppercase;
  color: #000; /* Black color for the text */
  display: flex;
  align-items: center; /* Align text and stars vertically */
  justify-content: center; /* Center the text */
  gap: 10px; /* Space between the text and the stars */
}

/* Styling for the stars */
.star-icon {
  font-size: 28px; /* Adjust the size of the star */
  color: #fbbf24; /* Yellow color for the stars */
}
@media (max-width: 768px) {
    .topbar-row {
        padding: 0px 20px;  /* Reduce padding for mobile */
    }
}

@media (max-width: 576px) {
    .topbar-row {
        padding: 0px 0px;  /* Further reduce padding on very small screens */
    }
    h2.section-title-big {
  font-size: 36px;
  margin-bottom: 20px;
  text-align: center;
}

.section-title-big{
    font-size: 36px;
  margin-bottom: 20px;
  text-align: center;
    
}
}
.hero-title span{
  color:#0da4e8;
  display:inline-block;
  animation: wave 1.8s ease-in-out infinite;
}

@keyframes wave{
  0%,100%{ transform: translateY(0); }
  50%    { transform: translateY(-5px); }
}

.section-title-big span{
  color:#0da4e8;
  display:inline-block;
  animation: wave 1.8s ease-in-out infinite;
}

@keyframes wave{
  0%,100%{ transform: translateY(0); }
  50%    { transform: translateY(-5px); }
}





#product-catalog{
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,.03) 2px,
    rgba(0,0,0,.03) 4px
  );
}

    .catalog-new{
        padding-top:50px;
        padding-bottom:50px;
    }
.gallery-new{
    padding-top:50px;
        padding-bottom:50px;
    
}










/* ===== Verify Authenticity (same look) ===== */
#verify-auth{
  position: relative;
  padding: 100px 16px 100px;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  background: #fff;

  /* subtle grid background like screenshot */
  background-image:
    linear-gradient(to right, rgba(0,0,0,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,.05) 1px, transparent 1px);
  background-size: 44px 44px;
}

.va-back{
  position: absolute;
  top: 34px;
  left: 90px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: #111;
  font-size: 14px;
}
.va-back-arrow{ font-size: 18px; line-height: 1; }

.va-inner{
  width: min(760px, 100%);
  text-align: center;
  margin-top: 30px;
}

.va-title{
  margin: 0;
  font-weight: 900;
  font-size: clamp(30px, 3.4vw, 44px);
  letter-spacing: 1px;
  color: #111;
}

.va-subtitle {
    margin: 10px 0 28px;
    font-size: 20px;
    color: #555;
}

/* top boxes */
.va-actions{
  width: min(560px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.va-card{
  height: 118px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  box-shadow:var(--shadow2);
}

.va-card:hover{
  transform: translateY(-2px);
  border-color: #cfcfcf;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
}

.va-ic{
  width: 18px;
  height: 18px;
  color: #0da4e8;
  display: inline-flex;
}
.va-ic svg{ width: 18px; height: 18px; }

.va-card-text{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .8px;
  color: #111;
}

/* divider like screenshot */
.va-divider{
  width: min(560px, 100%);
  margin: 22px auto 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.va-divider::before,
.va-divider::after{
  content: "";
  height: 1px;
  background: #e6e6e6;
  flex: 1;
}

.va-divider span{
  font-size: 12px;
  font-weight: 800;
  color: #666;
  letter-spacing: .6px;
}

/* input + button row */
.va-form{
  width: min(560px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 16px;
  align-items: center;
}

.va-input{
  height: 50px;
  border: 2px solid #41b9ec;
  background: #fff;
  padding: 0 14px;
  font-size: 14px;
  outline: none;
  color: #111;
}

.va-input:focus{
  border-color: #bdbdbd;
  box-shadow: 0 0 0 3px rgba(13,164,232,.12);
}

.va-btn{
  height: 46px;
  border: none;
  background: #111;
  color: #fff;
  font-weight: 900;
  letter-spacing: .6px;
  cursor: pointer;
  border-radius: 2px;
  transition: transform .15s ease, opacity .15s ease;
}

.va-btn:hover{
  transform: translateY(-1px);
  opacity: .95;
}

/* responsive */
@media (max-width: 700px){
  .va-back{ left: 16px; top: 16px; }
  .va-actions{ grid-template-columns: 1fr; }
  .va-form{ grid-template-columns: 1fr; }
  .va-btn{ width: 100%; }
}




@media (max-width: 576px) {
    
    .product-float-badge {
        padding:10px 10px;
        bottom:0px;
    }
   
}
@media (max-width: 576px) {
    .section-pad {
        padding: 20px ;
    }
    
     .catalog-new{
        padding-top:30px;
        padding-bottom:30px;
    }
.gallery-new{
    padding-top:30px;
        padding-bottom:30px;
    
}


#verify-auth {
    position: relative;
    padding: 30px 16px 30px;
}


/* =========================
   MODERN BLACK FOOTER (1750px + MOBILE PADDING)
   Add/replace these styles in your CSS
========================= */

/* footer base */
.footer--modern{
  background:#000;
  color:rgba(255,255,255,.84);
  border-top: 1px solid rgba(255,255,255,.08);
}

/* make container behave like max-width:1750px even if bootstrap container-xxl is smaller */
.footer--modern .footer-inner,
.footer--modern .footer-bottom{
  max-width: 1700px;
  margin-left: auto;
  margin-right: auto;

  /* desktop padding */
  padding-left: 32px;
  padding-right: 32px;
}

/* layout */
.footer--modern .footer-inner{
  display:grid;
  grid-template-columns: 1.55fr 1fr 1fr 1.15fr;
  gap: 28px;
  padding-top: 56px;
  padding-bottom: 26px;
}

/* brand block */
.footer--modern .footer-brandline{
  display:flex;
  gap: 14px;
  align-items:center;
}

.footer--modern .footer-logo{
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.10);
}

.footer--modern .footer-title{
  margin:0;
  font-family: Oswald, sans-serif;
  letter-spacing:.08em;
  text-transform: uppercase;
  font-size: 16px;
  color:#fff;
}
.footer--modern .footer-title .muted{
  color: rgba(255,255,255,.72);
}

.footer--modern .footer-subtitle{
  margin:2px 0 0;
  font-family: Outfit, system-ui, sans-serif;
  letter-spacing:.06em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255,255,255,.70);
}

.footer--modern .footer-desc{
  margin: 14px 0 14px;
  max-width: 520px;
  line-height: 1.6;
  font-family: Outfit, system-ui, sans-serif;
  color: rgba(255,255,255,.76);
}

/* badges */
.footer--modern .footer-badges{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin: 10px 0 18px;
}
.footer--modern .badge-pill{
  display:inline-flex;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  font-size: 12px;
  letter-spacing:.04em;
  color: rgba(255,255,255,.85);
}

/* actions */
.footer--modern .footer-actions{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}
.footer--modern .footer-btn{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 14px;
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 600;
  text-decoration:none;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.footer--modern .footer-btn--wh{
  background: rgba(13,164,232,.18);
  border: 1px solid rgba(13,164,232,.35);
  color: #dff4ff;
}
.footer--modern .footer-btn--outline{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.88);
}
.footer--modern .footer-btn:hover{
  transform: translateY(-2px);
}
.footer--modern .footer-btn--wh:hover{
  background: rgba(13,164,232,.24);
  border-color: rgba(13,164,232,.55);
}
.footer--modern .footer-btn--outline:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.20);
}

/* headings + links */
.footer--modern .footer-head{
  margin: 6px 0 14px;
  font-family: Oswald, sans-serif;
  letter-spacing:.12em;
  text-transform: uppercase;
  font-size: 13px;
  color: rgba(255,255,255,.92);
}

.footer--modern .footer-links{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 10px;
}
.footer--modern .footer-links a{
  color: rgba(255,255,255,.74);
  text-decoration:none;
  font-family: Outfit, system-ui, sans-serif;
  transition: color .2s ease, transform .2s ease;
  display:inline-flex;
  align-items:center;
  gap: 8px;
}
.footer--modern .footer-links a:hover{
  color: #fff;
  transform: translateX(2px);
}

/* contact cards */
.footer--modern .footer-contact{
  display:grid;
  gap: 10px;
}
.footer--modern .footer-contact-item{
  display:flex;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  text-decoration:none;
  color: rgba(255,255,255,.82);
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.footer--modern .footer-contact-item:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
}
.footer--modern .footer-contact-item .dot{
  width: 10px;
  height: 10px;
  border-radius: 99px;
  margin-top: 5px;
  background: rgba(13,164,232,.95);
  box-shadow: 0 0 0 6px rgba(13,164,232,.12);
}
.footer--modern .footer-contact-item .label{
  font-size: 12px;
  letter-spacing:.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
  font-family: Oswald, sans-serif;
}
.footer--modern .footer-contact-item .value{
  font-size: 14px;
  color: rgba(255,255,255,.88);
  font-family: Outfit, system-ui, sans-serif;
}

/* bottom bar */
.footer--modern .footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;

  padding-top: 18px;
  padding-bottom: 22px;

  border-top: 1px solid rgba(255,255,255,.08);
}
.footer--modern .footer-bottom .copy{
  color: rgba(255,255,255,.68);
  font-family: Outfit, system-ui, sans-serif;
  font-size: 13px;
}
.footer--modern .footer-bottom .tagline{
  font-family: Oswald, sans-serif;
  letter-spacing:.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  font-size: 12px;
}

/* =========================
   RESPONSIVE (with 20px padding on mobile)
========================= */
@media (max-width: 992px){
  .footer--modern .footer-inner{
    grid-template-columns: 1fr 1fr;
    padding-top: 46px;
    padding-bottom: 18px;
  }
}

/* MOBILE: 20px padding from all sides */
@media (max-width: 576px){
  .footer--modern{
    padding-left: 20px;
    padding-right: 20px;
  }

  /* remove extra inner padding on mobile so it stays 20px total */
  .footer--modern .footer-inner,
  .footer--modern .footer-bottom{
    padding-left: 0;
    padding-right: 0;
  }

  .footer--modern .footer-inner{
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 40px;
    padding-bottom: 14px;
  }

  .footer--modern .footer-actions{
    flex-direction: column;
    align-items: stretch;
  }
  .footer--modern .footer-btn{
    justify-content:center;
    width: 100%;
  }

  .footer--modern .footer-bottom{
    flex-direction: column;
    align-items:flex-start;
  }
}

/* Active underline */
.nav-item.is-active{
  opacity: 1 !important;
  position: relative;
}


/* Modal show */
.modal-shell{display:none;}
.modal-shell.show{display:block;}

/* Mobile: hide desktop auth buttons, keep only in dropdown */
@media (max-width: 992px){
  #authGuest, #authUser{ display:none !important; }
  #navMobileAuth{ display:grid !important; }
}

.nav-item.is-active{
  position: relative;
}


.modal-shell{display:none;}
.modal-shell.show{display:block;}


/* =========================
   ADMIN DEMO (GXL Portal)
   Uses Oswald like screenshot
========================= */
:root{
  --gxl-brand:#0da4e8;
  --gxl-text:#0b1220;
  --gxl-muted: rgba(11,18,32,.65);
  --gxl-line: rgba(11,18,32,.12);
  --gxl-surface:#fff;
  --gxl-soft: rgba(13,164,232,.10);
  --gxl-oswald: "Oswald", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --gxl-outfit: "Outfit", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.admin-demo{
  padding: 24px 0 40px;
}

.admin-wrap{
  max-width: 1750px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  border: 1px solid var(--gxl-line);
  background: var(--gxl-surface);
}

@media (max-width: 576px){
  .admin-wrap{ padding: 0 20px; }
}

/* Sidebar */
.admin-sidebar{
  border-right: 1px solid var(--gxl-line);
  background: #fff;
  min-height: calc(100vh - 140px);
}

.admin-side-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 18px 16px;
  border-bottom: 1px solid var(--gxl-line);
}

.admin-brand-title{
  font-family: var(--gxl-oswald);
  font-size: 22px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
  color: #0b1220;
}

.admin-role-badge{
  display:inline-block;
  margin-top: 6px;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-family: var(--gxl-oswald);
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(167, 82, 255, .15);
  color: #6f2cff;
}

.admin-side-toggle{
  display:none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--gxl-line);
  background: #fff;
  font-size: 18px;
}

/* Nav groups */
.admin-nav{
  padding: 10px 10px 14px;
}

.admin-group{
  padding: 6px 0;
}

.admin-group-btn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  border: 0;
  background: transparent;
  padding: 10px 10px;
  border-radius: 10px;
  cursor:pointer;
  font-family: var(--gxl-oswald);
  font-weight: 500;
  letter-spacing: .02em;
  text-transform: none;
  color: #0b1220;
}

.admin-group-btn:hover{
  background: rgba(0,0,0,.03);
}

.admin-caret{
  opacity: .65;
  transition: transform .2s ease;
}

.admin-group.is-open .admin-caret{
  transform: rotate(180deg);
}

.admin-group-body{
  display:none;
  padding: 6px 0 0 0;
}
.admin-group.is-open .admin-group-body{
  display:block;
}

.admin-link{
  width:100%;
  display:flex;
  align-items:center;
  gap:10px;
  border: 0;
  background: transparent;
  padding: 10px 12px;
  border-radius: 8px;
  cursor:pointer;
  font-family: var(--gxl-outfit);
  font-size: 14px;
  color: #0b1220;
  text-align:left;
}

.admin-link:hover{
  background: rgba(13,164,232,.08);
}

.admin-link.is-active{
  background: var(--gxl-brand);
  color: #fff;
}

.admin-link.is-active .admin-ic{
  color:#fff;
}

.admin-ic{
  width: 22px;
  display:inline-flex;
  justify-content:center;
  opacity:.95;
}

/* Main */
.admin-main{
  background: #fff;
  min-height: calc(100vh - 140px);
}

.admin-topbar{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  padding: 24px 26px 14px;
  border-bottom: 1px solid var(--gxl-line);
}

.admin-title{
  font-family: var(--gxl-oswald);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 34px;
  color:#0b1220;
  line-height: 1.1;
}

.admin-sub{
  margin-top: 6px;
  font-family: var(--gxl-outfit);
  color: var(--gxl-muted);
  font-size: 13px;
}
.admin-sub-role{
  color: var(--gxl-brand);
  font-weight: 600;
  margin-left: 6px;
}

.admin-logout{
  display:inline-flex;
  align-items:center;
  gap:10px;
  border: 0;
  background: transparent;
  font-family: var(--gxl-oswald);
  letter-spacing:.08em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  color: #0b1220;
  cursor:pointer;
  padding: 10px 10px;
  border-radius: 10px;
}
.admin-logout:hover{
  background: rgba(0,0,0,.04);
}

.admin-content{
  padding: 22px 26px 28px;
}

/* Views */
.admin-view{ display:none; }
.admin-view.is-active{ display:block; }

.admin-h2{
  font-family: var(--gxl-oswald);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 6px;
}
.admin-note{
  font-family: var(--gxl-outfit);
  color: var(--gxl-muted);
  font-size: 13px;
  margin-bottom: 16px;
}

/* Cards row */
.admin-cards{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.admin-card{
  border: 1px solid var(--gxl-line);
  border-radius: 2px;
  padding: 16px 16px 14px;
  background: #fff;
  min-height: 112px;
}

.admin-card--blue{ background: linear-gradient(135deg, rgba(13,164,232,.12), #fff 65%); }
.admin-card--green{ background: linear-gradient(135deg, rgba(38,205,124,.12), #fff 65%); }
.admin-card--red{ background: linear-gradient(135deg, rgba(255,90,90,.12), #fff 65%); }

.admin-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.admin-card-title{
  font-family: var(--gxl-oswald);
  letter-spacing:.04em;
  text-transform: uppercase;
  font-size: 12px;
  color:#0b1220;
  font-weight: 600;
}
.admin-card-ic{
  opacity:.75;
}

.admin-card-num{
  font-family: var(--gxl-oswald);
  font-size: 34px;
  font-weight: 600;
  margin-top: 8px;
  line-height: 1;
}
.admin-card-sub{
  margin-top: 8px;
  font-family: var(--gxl-outfit);
  font-size: 12px;
  color: var(--gxl-muted);
}
.admin-card-sub .ok{ color: #1aa35b; font-weight: 600; margin-right: 10px; }
.admin-card-sub .bad{ color: #d93b3b; font-weight: 600; }

/* Panel */
.admin-panel{
  border: 1px solid var(--gxl-line);
  border-radius: 2px;
  background: #fff;
}
.admin-panel-head{
  padding: 14px 16px;
  border-bottom: 1px solid var(--gxl-line);
}
.admin-panel-title{
  font-family: var(--gxl-oswald);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing:.03em;
  font-size: 14px;
}
.admin-panel-body{
  padding: 18px 16px;
  font-family: var(--gxl-outfit);
  color: var(--gxl-muted);
  min-height: 140px;
}
.admin-empty{
  display:flex;
  align-items:center;
  justify-content:center;
}

/* Demo blocks */
.admin-demo-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.admin-mini{
  border: 1px solid var(--gxl-line);
  border-radius: 10px;
  padding: 14px;
  background: rgba(0,0,0,.015);
}
.admin-mini-title{
  font-family: var(--gxl-oswald);
  font-weight: 600;
  letter-spacing:.02em;
}
.admin-mini-sub{
  font-family: var(--gxl-outfit);
  color: var(--gxl-muted);
  font-size: 12px;
  margin-top: 4px;
}

/* List rows */
.admin-list{ display:grid; gap: 10px; }
.admin-row{
  border: 1px solid var(--gxl-line);
  border-radius: 10px;
  padding: 12px 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.admin-row-title{
  font-family: var(--gxl-outfit);
  font-weight: 600;
  color:#0b1220;
  font-size: 13px;
}
.admin-row-sub{
  font-family: var(--gxl-outfit);
  color: var(--gxl-muted);
  font-size: 12px;
  margin-top: 3px;
}

.admin-chip{
  font-family: var(--gxl-oswald);
  letter-spacing:.06em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(13,164,232,.14);
  color: var(--gxl-brand);
}
.admin-chip.is-muted{
  background: rgba(0,0,0,.06);
  color: rgba(11,18,32,.70);
}
.admin-chip.is-ok{
  background: rgba(38,205,124,.16);
  color: #1aa35b;
}
.admin-chip.is-bad{
  background: rgba(255,90,90,.16);
  color: #d93b3b;
}

.admin-upload-box{
  border: 1px dashed rgba(11,18,32,.28);
  border-radius: 14px;
  padding: 26px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap: 6px;
  background: rgba(13,164,232,.06);
}
.admin-upload-ic{
  font-size: 26px;
  opacity:.75;
}
.admin-upload-title{
  font-family: var(--gxl-oswald);
  font-weight: 600;
  letter-spacing:.03em;
}
.admin-upload-sub{
  font-family: var(--gxl-outfit);
  color: var(--gxl-muted);
  font-size: 12px;
}

/* Responsive */
@media (max-width: 1100px){
  .admin-wrap{
    grid-template-columns: 270px 1fr;
    padding: 0 20px;
  }
  .admin-cards{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-demo-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 820px){
  .admin-wrap{
    grid-template-columns: 1fr;
    border-left: 0;
    border-right: 0;
  }
  .admin-sidebar{
    border-right: 0;
    border-bottom: 1px solid var(--gxl-line);
    min-height: auto;
  }
  .admin-side-toggle{ display:inline-flex; align-items:center; justify-content:center; }
  .admin-nav{ display:none; }
  .admin-nav.is-open{ display:block; }
  .admin-topbar{ padding: 18px 16px 12px; }
  .admin-content{ padding: 18px 16px 22px; }
  .admin-title{ font-size: 28px; }
}

@media (max-width: 520px){
  .admin-cards{ grid-template-columns: 1fr; }
}


.btn-outline-surface:hover{
    color: #0da4e8!important;
}


/* =========================
   AUTH PAGES (LOGIN/SIGNUP)
   ✅ Updated CSS with SAME cheque/grid background like other pages
   ✅ 100vh sections, Oswald + Outfit
   ✅ Mobile padding 20px from all sides
========================= */

:root{
  --brand:#0da4e8;
  --text:#0b1220;
  --muted: rgba(11,18,32,.65);
  --line: rgba(11,18,32,.12);
  --surface:#fff;
  --surface2:#fff;
  --shadow: 0 24px 60px rgba(11,18,32,.10);
  --shadow2: 0 12px 30px rgba(11,18,32,.12);
  --oswald: "Oswald", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --outfit: "Outfit", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* =========================
   ✅ FULL HEIGHT + GRID BACKGROUND
========================= */
.auth-page{
  min-height: 100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 28px 0;
  background: var(--surface2);
  position: relative;
  overflow: hidden;
}

/* ✅ Cheque/Grid overlay */
.auth-page::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;

  /* grid lines */
  background-image:
    linear-gradient(to right, rgba(11,18,32,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11,18,32,.06) 1px, transparent 1px);

  /* size = "cheque" feel */
  background-size: 72px 72px;
  opacity: .55;
}

/* ✅ Soft brand glow blobs (same vibe as your site background) */
.auth-page::after{
  content:"";
  position:absolute;
  inset:-20%;
  pointer-events:none;
  background:
    radial-gradient(900px 520px at 15% 20%, rgba(13,164,232,.14), transparent 62%),
    radial-gradient(900px 520px at 90% 85%, rgba(13,164,232,.10), transparent 60%);
  filter: blur(2px);
  opacity: .95;
}

/* keep UI above background */
.auth-shell{
  position: relative;
  z-index: 2;
  width: min(1100px, calc(100% - 64px));
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: stretch;
}

/* =========================
   LEFT ASIDE
========================= */
.auth-aside{
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 24px;

  /* subtle premium panel + tiny pattern */
  background:
    linear-gradient(135deg, rgba(13,164,232,.10), #fff 55%),
    repeating-linear-gradient(
      45deg,
      rgba(11,18,32,.018),
      rgba(11,18,32,.018) 10px,
      transparent 10px,
      transparent 20px
    );

  box-shadow: var(--shadow2);
}

.auth-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(13,164,232,.25);
  background: rgba(13,164,232,.08);
  font-family: var(--oswald);
  letter-spacing: .10em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  color: var(--brand);
}

.auth-heading{
  margin: 16px 0 6px;
  font-family: var(--oswald);
  font-size: 48px;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--text);
}

.auth-sub{
  margin: 0 0 16px;
  font-family: var(--outfit);
  color: var(--muted);
  font-size: 14px;
  max-width: 48ch;
}

.auth-points{
  display:grid;
  gap: 10px;
  margin-top: 10px;
}

.auth-point{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  font-family: var(--outfit);
  color: rgba(11,18,32,.85);
  font-size: 14px;
}

.auth-dot{
  width:10px;
  height:10px;
  border-radius: 999px;
  margin-top: 6px;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(13,164,232,.12);
}

.auth-mini-note{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: var(--outfit);
  color: var(--muted);
  font-size: 14px;
}

.auth-link{
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
}
.auth-link:hover{ text-decoration: underline; }

/* =========================
   RIGHT CARD
========================= */
.auth-card{
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    #ffffff;
  box-shadow: var(--shadow);
  padding: 22px;
  display:flex;
  flex-direction:column;
}

.auth-card-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.auth-card-title{
  font-family: var(--oswald);
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 22px;
  color: var(--text);
}

.auth-card-note{
  margin-top: 2px;
  font-family: var(--outfit);
  color: var(--muted);
  font-size: 13px;
}

/* =========================
   FORM
========================= */
.auth-form{
  margin-top: 14px;
  display:grid;
  gap: 12px;
}

.auth-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.auth-field{
  display:grid;
  gap: 6px;
}

.auth-label{
  font-family: var(--oswald);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  color: rgba(11,18,32,.75);
}

.auth-input{
  width:100%;
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 12px 12px;
  background: rgba(13,164,232,.06);
  color: var(--text);
  font-family: var(--outfit);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease, background .15s ease;
}
.auth-input:focus{
  border-color: rgba(13,164,232,.55);
  box-shadow: 0 0 0 4px rgba(13,164,232,.15);
  background: rgba(13,164,232,.08);
}

.auth-row{
  display:grid;
  grid-template-columns: 1fr 160px;
  gap: 12px;
  align-items:end;
}

/* =========================
   BUTTONS
========================= */
.auth-btn{
  border: 0;
  border-radius: 14px;
  padding: 12px 14px;
  font-family: var(--oswald);
  letter-spacing: .10em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  user-select:none;
}

.auth-btn:active{ transform: translateY(1px); }

.auth-btn--primary{
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 22px rgba(13,164,232,.22);
}
.auth-btn--primary:hover{ box-shadow: 0 14px 30px rgba(13,164,232,.28); }

.auth-btn--ghost{
  background: #fff;
  color: var(--text);
  border: 2px solid var(--line);
}
.auth-btn--ghost:hover{ opacity: .96; }

.auth-btn--link{
  background: transparent;
  border: 2px solid rgba(0,0,0,.06);
  color: rgba(11,18,32,.78);
}
.auth-btn--link:hover{ background: rgba(0,0,0,.03); }

/* =========================
   DIVIDER + HINTS
========================= */
.auth-divider{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  margin: 4px 0;
}
.auth-divider::before{
  content:"";
  position:absolute;
  left:0; right:0;
  height:1px;
  background: var(--line);
}
.auth-divider span{
  position:relative;
  padding: 4px 10px;
  background: #fff;
  font-family: var(--oswald);
  letter-spacing:.12em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(11,18,32,.55);
}

.auth-hint{
  min-height: 18px;
  font-family: var(--outfit);
  font-size: 13px;
  color: var(--muted);
}
.auth-hint.is-ok{ color: #1aa35b; font-weight: 600; }
.auth-hint.is-bad{ color: #d93b3b; font-weight: 600; }

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px){
  .auth-shell{
    width: min(980px, calc(100% - 40px));
    grid-template-columns: 1fr;
  }
  .auth-heading{ font-size: 40px; }
}

@media (max-width: 576px){
  /* ✅ 20px padding from all sides (left/right) */
  .auth-page{ padding: 18px 0; }
  .auth-shell{ width: calc(100% - 40px); }

  .auth-aside{ padding: 18px 16px; }
  .auth-card{ padding: 16px; }

  .auth-grid{ grid-template-columns: 1fr; }
  .auth-row{ grid-template-columns: 1fr; }

  /* shrink background grid a bit on mobile */
  .auth-page::before{ background-size: 56px 56px; opacity: .5; }
}
.btn-catalog{
    
    background:#0da4e8 !important;
    border:2px solid #000000;
}