/* =====================================================================
   Jayshreeshyam Hardware â€” Premium Theme
   Fonts: Poppins (display/headings) + Inter (body)
   ===================================================================== */

:root {
  --navy: #0b1c33;
  --navy-dark: #071426;
  --blue: #1a5fd6;
  --blue-dark: #12439c;
  --blue-light: #eaf1fd;
  --blue-glow: rgba(26, 95, 214, .35);
  --steel: #4a5568;
  --gray-bg: #f5f7fa;
  --text: #1f2937;
  --muted: #6b7280;
  --green: #1a9d5c;
  --red: #d63a3a;
  --gold: #c9a227;
  --radius: 8px;
  --font-display: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --ease: cubic-bezier(.25, .8, .25, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: #fff;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  animation: pageFadeIn .5s var(--ease) both;
}
@keyframes pageFadeIn { from { opacity: 0; } to { opacity: 1; } }

.site-head-group { position: sticky; top: 0; z-index: 1030; background: #fff; transition: box-shadow .3s var(--ease); }
.site-head-group.is-scrolled { box-shadow: 0 6px 22px rgba(11,28,51,.12); }

/* ---------------- Mobile header controls ---------------- */
.mobile-toggle-btn {
  width: 42px; height: 42px; border-radius: 8px; border: 1px solid #eef0f3; background: var(--gray-bg);
  color: var(--navy); font-size: 17px; display: flex; align-items: center; justify-content: center;
  margin-right: 12px; flex-shrink: 0; transition: background .2s, color .2s;
}
.mobile-toggle-btn:hover, .mobile-toggle-btn:active { background: var(--blue); color: #fff; }

.search-form-mobile { width: 100%; }

/* ---------------- Mobile off-canvas menu ---------------- */
.mobile-offcanvas { width: 300px; background: var(--navy-dark); color: #dbe3ef; }
.mobile-offcanvas .offcanvas-header { border-bottom: 1px solid #16273f; padding: 16px 18px; }
.mobile-offcanvas .brand-logo .name { color: #fff; font-size: 16px; }
.mobile-offcanvas .brand-logo .ring { border-color: var(--blue); color: var(--blue); width: 38px; height: 38px; font-size: 15px; }
.mobile-offcanvas .offcanvas-body { padding: 18px; overflow-y: auto; }

.mobile-account-box {
  display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.05); border-radius: 8px; padding: 14px;
  margin-bottom: 18px; color: #fff; font-size: 13.5px;
}
.mobile-account-box i { font-size: 26px; color: var(--blue); }
.mobile-account-box a { color: var(--blue); font-weight: 600; font-size: 12.5px; }
.mobile-account-box small { color: #9aa7bb; }

.mobile-nav-list { list-style: none; padding: 0; margin: 0 0 8px; }
.mobile-nav-list li { border-bottom: 1px solid #16273f; }
.mobile-nav-list a {
  display: flex; align-items: center; gap: 12px; padding: 13px 4px; color: #dbe3ef; font-family: var(--font-display);
  font-weight: 500; font-size: 14px; transition: color .2s, padding-left .2s var(--ease);
}
.mobile-nav-list a i { width: 18px; color: var(--blue); text-align: center; }
.mobile-nav-list a:hover, .mobile-nav-list a:active { color: #fff; padding-left: 8px; }
.mobile-nav-section-title {
  font-family: var(--font-display); font-size: 11.5px; text-transform: uppercase; letter-spacing: .6px;
  color: #5a6b85; margin: 14px 0 4px;
}
.mobile-cat-list { max-height: 260px; overflow-y: auto; }
.mobile-offcanvas .btn-close { filter: invert(1) grayscale(1) brightness(2); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: -.01em;
}

a { text-decoration: none; color: inherit; transition: color .25s var(--ease); }
a:hover { text-decoration: none; }

::selection { background: var(--blue); color: #fff; }

/* ---------------- Keyframe animations ---------------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 var(--blue-glow); }
  50% { box-shadow: 0 0 0 10px rgba(26,95,214,0); }
}
@keyframes shimmerSweep {
  0% { transform: translateX(-120%) skewX(-15deg); }
  100% { transform: translateX(220%) skewX(-15deg); }
}
@keyframes underlineGrow {
  from { width: 0; } to { width: 54px; }
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Scroll-reveal utility (activated via IntersectionObserver in main.js) */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1.is-visible { transition-delay: .08s; }
.reveal-delay-2.is-visible { transition-delay: .16s; }
.reveal-delay-3.is-visible { transition-delay: .24s; }
.reveal-delay-4.is-visible { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-visible { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}

.btn-brand {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  box-shadow: 0 4px 14px rgba(26,95,214,.25);
}
.btn-brand:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(26,95,214,.38); }
.btn-brand::after {
  content: ""; position: absolute; top: 0; left: 0; width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
  transform: translateX(-120%) skewX(-15deg);
}
.btn-brand:hover::after { animation: shimmerSweep .9s var(--ease); }

.btn-outline-brand {
  border: 1.5px solid #fff;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 5px;
  background: transparent;
  transition: all .25s var(--ease);
}
.btn-outline-brand:hover { background: #fff; color: var(--navy); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(0,0,0,.2); }

.text-blue { color: var(--blue); }
.bg-navy { background: var(--navy); }

/* ---------------- Top bar ---------------- */
.topbar {
  background: linear-gradient(90deg, var(--navy-dark), #0a1f38, var(--navy-dark));
  background-size: 200% 200%;
  animation: gradientShift 14s ease infinite;
  color: #cbd5e1;
  font-size: 12.5px;
  padding: 7px 0;
  font-family: var(--font-body);
}
.topbar a { color: #cbd5e1; transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar .divider { color: #45566f; margin: 0 10px; }

/* ---------------- Main header ---------------- */
.main-header { padding: 16px 0; border-bottom: 1px solid #eef0f3; }
.brand-logo { display: flex; align-items: center; gap: 10px; }
.brand-logo .ring {
  width: 44px; height: 44px; border-radius: 50%;
  border: 3px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-weight: 700;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.brand-logo:hover .ring { transform: rotate(20deg) scale(1.06); box-shadow: 0 0 0 6px var(--blue-light); }
.brand-logo .name { font-family: var(--font-display); font-weight: 800; font-size: 21px; letter-spacing: .2px; line-height: 1.1; color: var(--navy); }
.brand-logo .name span { color: var(--blue); }
.brand-logo .tagline { font-size: 10.5px; color: var(--muted); letter-spacing: .8px; text-transform: uppercase; font-weight: 500; }

.search-form .form-control { border-radius: 5px 0 0 5px; border-right: 0; transition: box-shadow .25s var(--ease); }
.search-form .form-control:focus { box-shadow: 0 0 0 3px var(--blue-light); }
.search-form select { border-radius: 0; border-left: 0; border-right: 0; max-width: 150px; font-size: 13px; }
.search-form .btn { border-radius: 0 5px 5px 0; background: var(--blue); border-color: var(--blue); color: #fff; transition: background .2s; }
.search-form .btn:hover { background: var(--blue-dark); }

.header-icon-link { display: flex; align-items: center; gap: 8px; color: var(--navy); }
.header-icon-link .icon-circle {
  width: 38px; height: 38px; border-radius: 50%; background: var(--gray-bg);
  display: flex; align-items: center; justify-content: center; font-size: 16px; position: relative;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.header-icon-link:hover .icon-circle { background: var(--blue-light); color: var(--blue-dark); transform: translateY(-2px); }
.header-icon-link small { display: block; color: var(--muted); font-size: 11px; }
.header-icon-link strong { display: block; font-size: 13px; font-family: var(--font-display); }
.cart-badge {
  position: absolute; top: -6px; right: -6px; background: var(--blue); color: #fff;
  font-size: 10px; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  animation: pulseGlow 2.4s infinite;
}

/* ---------------- Nav bar ---------------- */
.main-nav { background: var(--navy); }
.main-nav .nav-link {
  color: #dbe3ef; font-family: var(--font-display); font-weight: 600; font-size: 13.5px; padding: 15px 16px !important;
  text-transform: uppercase; letter-spacing: .4px; position: relative;
}
.main-nav .nav-link::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 8px; height: 2px; background: var(--blue);
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.main-nav .nav-link:hover, .main-nav .nav-link.active { color: #fff; }
.main-nav .nav-link:hover::after, .main-nav .nav-link.active::after { transform: scaleX(1); }
.main-nav .btn-quote {
  background: var(--blue); color: #fff; font-family: var(--font-display); font-weight: 700; padding: 9px 20px; border-radius: 5px; font-size: 13px;
  text-transform: uppercase; transition: all .25s var(--ease); box-shadow: 0 4px 14px rgba(26,95,214,.3);
}
.main-nav .btn-quote:hover { background: #fff; color: var(--navy); transform: translateY(-2px); }
.categories-toggle {
  background: var(--blue-dark); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 13.5px;
  padding: 15px 18px; display: flex; align-items: center; gap: 10px; text-transform: uppercase; white-space: nowrap;
  transition: background .25s;
}
.categories-toggle:hover { background: var(--blue); color: #fff; }

/* ---------------- Sidebar categories (home) ---------------- */
.cat-sidebar { background: #fff; border: 1px solid #eef0f3; border-top: none; }
.cat-sidebar a {
  display: flex; align-items: center; justify-content: space-between; padding: 12px 16px;
  border-bottom: 1px solid #f1f3f6; color: var(--text); font-size: 13.5px; font-weight: 500;
  transition: background .2s, padding-left .25s var(--ease), color .2s;
}
.cat-sidebar a:hover { background: var(--blue-light); color: var(--blue-dark); padding-left: 22px; }
.cat-sidebar .icon { margin-right: 10px; color: var(--blue); transition: transform .25s var(--ease); }
.cat-sidebar a:hover .icon { transform: scale(1.15); }

/* ---------------- Hero ---------------- */
.hero {
  position: relative; background: var(--navy-dark); min-height: 440px; display: flex; align-items: center;
  background-size: cover; background-position: center; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(6,14,26,.95) 15%, rgba(6,14,26,.6) 55%, rgba(6,14,26,.18) 100%);
}
.hero-content { position: relative; z-index: 2; color: #fff; padding: 44px 0; animation: fadeInUp .9s var(--ease) both; }
.hero-eyebrow { color: var(--blue); font-family: var(--font-display); font-weight: 700; letter-spacing: 3px; font-size: 13px; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; }
.hero-eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--blue); display: inline-block; }
.hero-title { font-family: var(--font-display); font-size: 46px; font-weight: 800; line-height: 1.14; margin: 14px 0 18px; }
.hero-title .accent { color: #4b8dff; }
.hero-desc { color: #cbd5e1; max-width: 480px; margin-bottom: 26px; font-size: 15.5px; }

/* ---------------- Feature strip ---------------- */
.feature-strip { background: var(--navy-dark); color: #cbd5e1; padding: 24px 0; }
.feature-item { display: flex; align-items: center; gap: 12px; transition: transform .3s var(--ease); }
.feature-item:hover { transform: translateY(-3px); }
.feature-item .fi-icon { font-size: 23px; color: var(--blue); flex-shrink: 0; transition: transform .3s var(--ease); }
.feature-item:hover .fi-icon { transform: scale(1.15) rotate(-4deg); }
.feature-item strong { display: block; color: #fff; font-family: var(--font-display); font-size: 13.5px; }
.feature-item span { font-size: 12px; color: #9aa7bb; }

/* ---------------- Section titles ---------------- */
.section-title { text-align: center; font-family: var(--font-display); font-weight: 800; letter-spacing: .6px; margin-bottom: 8px; text-transform: uppercase; font-size: 25px; color: var(--navy); }
.section-title-underline { width: 54px; height: 3px; background: linear-gradient(90deg, var(--blue), #4b8dff); margin: 0 auto 36px; border-radius: 3px; }
.reveal.is-visible.section-title + .section-title-underline { animation: underlineGrow .6s var(--ease) .2s both; }

/* ---------------- Category cards ---------------- */
.cat-card { border: 1px solid #eef0f3; border-radius: var(--radius); overflow: hidden; transition: box-shadow .35s var(--ease), transform .35s var(--ease); background: #fff; height: 100%; }
.cat-card:hover { box-shadow: 0 18px 34px rgba(11,28,51,.16); transform: translateY(-6px); }
.cat-card .cat-img { height: 150px; background: var(--gray-bg); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.cat-card .cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.cat-card:hover .cat-img img { transform: scale(1.1); }
.cat-card .cat-icon-badge {
  position: absolute; bottom: -16px; left: 16px; width: 34px; height: 34px; border-radius: 50%;
  background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 15px; border: 3px solid #fff;
  transition: transform .35s var(--ease);
}
.cat-card:hover .cat-icon-badge { transform: rotate(360deg); }
.cat-card .cat-body { padding: 22px 16px 16px; }
.cat-card .cat-body h5 { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; text-transform: uppercase; margin-bottom: 4px; }
.cat-card .cat-body a.explore { color: var(--blue); font-size: 13px; font-weight: 600; }
.cat-card .cat-body a.explore i { transition: transform .25s var(--ease); display: inline-block; }
.cat-card:hover .cat-body a.explore i { transform: translateX(5px); }

/* ---------------- Product cards ---------------- */
.product-card { border: 1px solid #eef0f3; border-radius: var(--radius); background: #fff; height: 100%; position: relative; transition: box-shadow .35s var(--ease), transform .35s var(--ease); }
.product-card:hover { box-shadow: 0 18px 34px rgba(11,28,51,.16); transform: translateY(-6px); }
.product-card .badge-tag {
  position: absolute; top: 10px; left: 10px; z-index: 2; font-size: 11px; font-family: var(--font-display); font-weight: 700; padding: 4px 10px; border-radius: 3px; color: #fff;
}
.badge-tag.bestseller { background: var(--blue); }
.badge-tag.new { background: var(--green); }
.badge-tag.discount { background: var(--red); }
.product-card .wish-btn {
  position: absolute; top: 10px; right: 10px; z-index: 2; width: 30px; height: 30px; border-radius: 50%;
  background: #fff; border: 1px solid #eef0f3; display: flex; align-items: center; justify-content: center; color: var(--muted);
  transition: all .25s var(--ease);
}
.product-card .wish-btn:hover { color: var(--red); border-color: var(--red); transform: scale(1.12); }
.product-card .wish-btn.active { color: var(--red); border-color: var(--red); }
.product-card .wish-btn.active i { font-weight: 900; }
.product-card .prod-img { height: 172px; background: var(--gray-bg); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.product-card .prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.product-card:hover .prod-img img { transform: scale(1.08); }
.product-card .prod-body { padding: 15px; }
.product-card .prod-title { font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--text); margin-bottom: 2px; display: block; transition: color .2s; }
.product-card .prod-title:hover { color: var(--blue); }
.product-card .prod-size { color: var(--muted); font-size: 12px; margin-bottom: 8px; }
.product-card .prod-price { font-family: var(--font-display); font-weight: 800; color: var(--navy); font-size: 16.5px; }
.product-card .prod-price small { font-family: var(--font-body); font-weight: 400; color: var(--muted); font-size: 12px; }
.product-card .prod-mrp { text-decoration: line-through; color: var(--muted); font-size: 12.5px; margin-left: 6px; }
.product-card .add-cart-row { display: flex; gap: 8px; align-items: center; margin-top: 10px; }
.product-card .add-cart-row form { flex: 1; }
.product-card .btn-add { background: var(--navy); color: #fff; font-family: var(--font-display); font-size: 12.5px; font-weight: 600; border-radius: 5px; width: 100%; padding: 9px; border: none; text-transform: uppercase; transition: all .25s var(--ease); }
.product-card .btn-add:hover { background: var(--blue); box-shadow: 0 8px 18px rgba(26,95,214,.32); transform: translateY(-2px); }
.product-card .btn-wish { width: 36px; height: 36px; border-radius: 5px; border: 1px solid #eef0f3; background: #fff; color: var(--muted); }

/* ---------------- Info blocks (industries / why us / bulk order) ---------------- */
.info-block { background: var(--navy-dark); color: #fff; border-radius: var(--radius); padding: 28px; height: 100%; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.info-block:hover { transform: translateY(-5px); box-shadow: 0 18px 34px rgba(11,28,51,.28); }
.info-block h5 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 15px; margin-bottom: 20px; letter-spacing: .4px; }
.info-block .industry-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-bottom: 20px; text-align: center; }
.info-block .industry-grid div { font-size: 12px; color: #cbd5e1; transition: transform .25s var(--ease); }
.info-block .industry-grid div:hover { transform: translateY(-3px); }
.info-block .industry-grid .ii { font-size: 22px; color: var(--blue); display: block; margin-bottom: 6px; }
.info-block ul { list-style: none; padding: 0; margin: 0 0 20px; }
.info-block ul li { padding: 6px 0; font-size: 13.5px; color: #dbe3ef; transition: padding-left .25s var(--ease); }
.info-block ul li:hover { padding-left: 6px; }
.info-block ul li i { color: var(--blue); margin-right: 8px; }
.bulk-block { background: linear-gradient(135deg, #123a7a, #0b1c33, #123a7a); background-size: 200% 200%; animation: gradientShift 8s ease infinite; }

/* ---------------- Newsletter ---------------- */
.newsletter-strip { background: linear-gradient(90deg, var(--blue), var(--blue-dark)); color: #fff; padding: 22px 0; }
.newsletter-strip input { border-radius: 5px 0 0 5px; border: none; padding: 12px; transition: box-shadow .2s; }
.newsletter-strip input:focus { box-shadow: 0 0 0 3px rgba(255,255,255,.35); outline: none; }
.newsletter-strip button { border-radius: 0 5px 5px 0; background: var(--navy-dark); color: #fff; font-family: var(--font-display); font-weight: 700; border: none; padding: 0 24px; text-transform: uppercase; font-size: 13px; transition: background .2s; }
.newsletter-strip button:hover { background: #000; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--navy-dark); color: #9aa7bb; font-size: 13.5px; padding-top: 46px; }
.site-footer h6 { color: #fff; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 13px; margin-bottom: 18px; letter-spacing: .4px; }
.site-footer ul { list-style: none; padding: 0; }
.site-footer ul li { margin-bottom: 10px; transition: padding-left .2s var(--ease); }
.site-footer ul li a:hover { color: var(--blue); }
.site-footer ul li:has(a):hover { padding-left: 4px; }
.site-footer .social a {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid #2b3a52; display: inline-flex; align-items: center; justify-content: center; margin-right: 8px; color: #cbd5e1;
  transition: all .25s var(--ease);
}
.site-footer .social a:hover { background: var(--blue); border-color: var(--blue); color: #fff; transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid #1c2b41; margin-top: 32px; padding: 16px 0; font-size: 12.5px; }

/* ---------------- Breadcrumb / page header ---------------- */
.page-header-strip { background: var(--gray-bg); padding: 18px 0; border-bottom: 1px solid #eef0f3; margin-bottom: 32px; }
.page-header-strip h2 { font-family: var(--font-display); font-size: 21px; font-weight: 700; color: var(--navy); margin: 0; }
.page-header-strip .breadcrumb { margin: 0; font-size: 12.5px; }

/* ---------------- Generic containers ---------------- */
.section-pad { padding: 48px 0; }
.card-clean { border: 1px solid #eef0f3; border-radius: var(--radius); background: #fff; transition: box-shadow .3s var(--ease); }

/* ---------------- Forms ---------------- */
.form-label { font-family: var(--font-display); font-weight: 600; font-size: 13.5px; color: var(--navy); }
.form-control, .form-select { border-radius: 5px; font-size: 14px; transition: box-shadow .25s var(--ease), border-color .25s var(--ease); }
.form-control:focus, .form-select:focus { border-color: var(--blue); box-shadow: 0 0 0 .2rem rgba(26,95,214,.15); }

.auth-box { max-width: 440px; margin: 0 auto; animation: fadeInUp .6s var(--ease) both; }

/* ---------------- Map ---------------- */
.map-box { height: 340px; border-radius: var(--radius); overflow: hidden; border: 1px solid #eef0f3; }
.service-msg { padding: 10px 14px; border-radius: 5px; font-size: 13.5px; font-weight: 600; margin-top: 10px; animation: fadeIn .3s var(--ease); }
.service-msg.ok { background: #e7f8ef; color: var(--green); border: 1px solid #b9ecd0; }
.service-msg.bad { background: #fdecec; color: var(--red); border: 1px solid #f5c2c2; }

/* ---------------- Status badges ---------------- */
.status-pill { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 11.5px; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; }
.status-placed { background: #eaf1fd; color: var(--blue-dark); }
.status-confirmed { background: #e7f8ef; color: var(--green); }
.status-processing { background: #fff6e0; color: #a5760a; }
.status-shipped { background: #e6eefc; color: #1a5fd6; }
.status-delivered { background: #e7f8ef; color: var(--green); }
.status-cancelled { background: #fdecec; color: var(--red); }
.pay-pending { background: #fff6e0; color: #a5760a; }
.pay-submitted { background: #eaf1fd; color: var(--blue-dark); }
.pay-verified { background: #e7f8ef; color: var(--green); }
.pay-rejected { background: #fdecec; color: var(--red); }

/* ---------------- Buttons general polish ---------------- */
.btn { font-family: var(--font-display); transition: all .25s var(--ease); }
.btn:hover { transform: translateY(-1px); }

/* ---------------- Responsive ---------------- */
@media (max-width: 991px) {
  .hero-title { font-size: 33px; }
  .hero { min-height: 340px; }
  .info-block { margin-bottom: 20px; }
}
@media (max-width: 767px) {
  .hero-title { font-size: 27px; }
  .hero-desc { font-size: 13.5px; }
  .section-title { font-size: 19px; }

  .topbar { padding: 7px 0; }
  .topbar .container { flex-wrap: nowrap; }
  .topbar-msg { font-size: 11.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .topbar a.d-flex { font-size: 14px; color: #cbd5e1; flex-shrink: 0; margin-left: 10px; }

  .main-header { padding: 12px 0; }
  .brand-logo .ring { width: 36px; height: 36px; font-size: 14px; }
  .brand-logo .name { font-size: 16px; }

  .header-icon-link .icon-circle { width: 40px; height: 40px; }
}
@media (max-width: 400px) {
  .brand-logo .name { font-size: 14px; }
}