/* ==========================================================
   Arcreative - Premium Frontend Theme
   Theme: Royal Blue + Silver  (Light / Dark)
   ========================================================== */

:root {
  --primary: #1F4FD8;
  --primary-dark: #163BB0;
  --primary-light: #6D8CFF;
  --secondary: #8FA3C8;
  --accent: #B9C8E4;
  --bg: #F4F7FC;
  --bg-alt: #E9EEF6;
  --text: #16213B;
  --text-muted: #66728A;
  --card: #ffffff;
  --border-soft: #E2E9F4;
  --success: #2ECC71;
  --danger: #FF5A5F;
  --warning: #F5B041;
  --info: #2E8FDB;
  --shadow-sm: 0 2px 8px rgba(24, 46, 104, 0.06);
  --shadow: 0 10px 30px rgba(24, 46, 104, 0.10);
  --shadow-lg: 0 24px 60px rgba(24, 46, 104, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --gradient: linear-gradient(135deg, #1F4FD8 0%, #2E6BFF 55%, #6D8CFF 130%);
  --gradient-btn: linear-gradient(135deg, #1F4FD8 0%, #2E6BFF 100%);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Poppins', system-ui, -apple-system, sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-theme="dark"] {
  --primary: #5B8CFF;
  --primary-dark: #4D7BFF;
  --primary-light: #8FB0FF;
  --secondary: #8FA3C8;
  --accent: #AFC3E3;
  --bg: #0B1220;
  --bg-alt: #131D31;
  --text: #E7EDF8;
  --text-muted: #9AA7BF;
  --card: #121A2C;
  --border-soft: #22304A;
  --success: #34D87B;
  --danger: #FF6B70;
  --warning: #F7BE56;
  --info: #4FA8E8;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.5);
  --gradient: linear-gradient(135deg, #1E4FD8 0%, #3B6FFF 55%, #7B9DFF 130%);
  --gradient-btn: linear-gradient(135deg, #2E5BD8 0%, #4D7BFF 100%);
}

html { color-scheme: light; }
[data-theme="dark"] { color-scheme: dark; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--text); font-weight: 700; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; margin: 0; }
::selection { background: var(--primary); color: #fff; }

.container { max-width: 1280px; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--primary-light), var(--secondary)); border-radius: 8px; }

/* ---------- Top announcement bar ---------- */
.arc-topbar {
  background: var(--gradient);
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
  position: relative;
  z-index: 1050;
  overflow: hidden;
}
.arc-topbar .ticker { display: inline-block; animation: ticker 28s linear infinite; white-space: nowrap; padding-left: 100%; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
.arc-topbar a { color: #fff; text-decoration: underline; }
.arc-topbar .top-links a { margin-left: 18px; text-decoration: none; font-weight: 600; }

/* ---------- Header / Navbar ---------- */
.arc-header {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 1040;
  border-bottom: 1px solid var(--border-soft);
  transition: var(--transition);
}
.arc-header.scrolled { box-shadow: var(--shadow); }

/* ---------- Navbar action buttons (Login / Wishlist / Cart) ---------- */
.arc-nav-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 14px;
  border-radius: 50px;
  border: 1.5px solid var(--border-soft);
  background: var(--card);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition);
}
.arc-nav-btn i { font-size: 16px; color: var(--primary); }
.arc-nav-btn:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.arc-nav-btn .badge {
  position: absolute; top: -6px; right: -4px;
  background: var(--gradient-btn);
  color: #fff;
  font-size: 10px;
  min-width: 18px; height: 18px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  border: 2px solid var(--card);
}

/* ---------- Theme toggle ---------- */
.arc-theme-toggle {
  position: relative;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bg-alt);
  color: var(--text);
  font-size: 17px;
  border: 1.5px solid var(--border-soft);
  cursor: pointer;
  transition: var(--transition);
}
.arc-theme-toggle:hover { background: var(--gradient-btn); color: #fff; transform: rotate(20deg); box-shadow: var(--shadow-sm); }
.arc-theme-toggle .bi-sun { display: none; }
[data-theme="dark"] .arc-theme-toggle .bi-moon-stars { display: none; }
[data-theme="dark"] .arc-theme-toggle .bi-sun { display: inline-block; }

.arc-mobile-search { width: 100%; }
.arc-mobile-search .arc-search-wrap { max-width: 100%; }
.arc-brand { display: flex; align-items: center; gap: 10px; }
.arc-brand img.logo { height: 46px; width: auto; }
.arc-brand .brand-text { font-family: var(--font-heading); font-weight: 800; font-size: 22px; color: var(--text); }
.arc-brand .brand-text span { color: var(--primary); }
.navbar { padding: 12px 0; }
.navbar-nav .nav-link {
  color: var(--text);
  font-weight: 600;
  font-size: 14.5px;
  padding: 10px 14px !important;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2.5px;
  background: var(--gradient-btn);
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--primary); }
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after { transform: scaleX(1); }

.arc-icon-btn {
  position: relative;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bg-alt);
  color: var(--text);
  font-size: 18px;
  transition: var(--transition);
  border: none;
}
.arc-icon-btn:hover { background: var(--gradient-btn); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.arc-icon-btn .badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--gradient-btn);
  color: #fff;
  font-size: 10.5px;
  min-width: 19px; height: 19px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  border: 2px solid #fff;
}
.arc-search-wrap { position: relative; flex: 1; max-width: 460px; }
.arc-search-input {
  width: 100%;
  border: 2px solid var(--bg-alt);
  background: var(--bg);
  border-radius: 50px;
  padding: 10px 46px 10px 18px;
  font-size: 14px;
  transition: var(--transition);
  outline: none;
}
.arc-search-input:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 4px rgba(31, 79, 216, 0.12); }
.arc-search-btn {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  border: none; background: var(--gradient-btn); color: #fff;
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
/* Live search dropdown */
.arc-livesearch {
  position: absolute; top: 110%; left: 0; right: 0;
  background: #fff; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  z-index: 60;
  max-height: 420px; overflow: auto;
  display: none;
}
.arc-livesearch .ls-item { display: flex; gap: 12px; padding: 10px 14px; align-items: center; transition: var(--transition); }
.arc-livesearch .ls-item:hover { background: var(--bg); }
.arc-livesearch .ls-item img { width: 46px; height: 46px; object-fit: cover; border-radius: 8px; background: var(--bg-alt); }
.arc-livesearch .ls-item .ls-name { font-weight: 600; font-size: 13.5px; color: var(--text); }
.arc-livesearch .ls-item .ls-price { color: var(--primary); font-weight: 700; font-size: 13px; }
.arc-livesearch .ls-empty { padding: 18px; text-align: center; color: var(--text-muted); }

/* ---------- Buttons ---------- */
.btn {
  border-radius: 50px;
  font-weight: 600;
  padding: 10px 24px;
  font-size: 14.5px;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-grad {
  background: var(--gradient-btn);
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(31, 79, 216, 0.35);
}
.btn-grad::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #4D7BFF 0%, #7B9DFF 100%);
  opacity: 0; z-index: -1;
  transition: opacity 0.35s ease;
}
.btn-grad:hover::before { opacity: 1; }
.btn-grad:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(31, 79, 216, 0.45); }
.btn-outline-arc {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline-arc:hover { background: var(--gradient-btn); border-color: transparent; color: #fff; transform: translateY(-3px); box-shadow: 0 10px 24px rgba(31, 79, 216, 0.3); }
.btn-light-arc { background: #fff; color: var(--text); box-shadow: var(--shadow); }
.btn-light-arc:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.btn-dark-arc { background: var(--text); color: #fff; }
.btn-dark-arc:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.btn-sm-arc { padding: 7px 16px; font-size: 13px; }
.btn-block-arc { width: 100%; }
.btn[disabled] { opacity: 0.6; pointer-events: none; }

/* ---------- Section headers ---------- */
.arc-section { padding: 72px 0; position: relative; }
.arc-section-alt { background: var(--bg-alt); }
.section-head { text-align: center; margin-bottom: 42px; }
.section-head .eyebrow {
  display: inline-block;
  background: rgba(31, 79, 216, 0.1);
  color: var(--primary);
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 18px; border-radius: 30px;
  margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 8px; }
.section-head .sub { color: var(--text-muted); font-size: 15.5px; max-width: 620px; margin: 0 auto; }
.section-head .sub::after {
  content: '';
  display: block;
  width: 60px; height: 4px;
  background: var(--gradient-btn);
  border-radius: 4px;
  margin: 14px auto 0;
}

/* ---------- Hero slider ---------- */
.arc-hero { position: relative; }
.hero-slider { border-radius: 0 0 40px 40px; overflow: hidden; }
.hero-slider .swiper-slide { position: relative; min-height: 560px; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-slider .slide-bg { position: absolute; inset: 0; z-index: 0; }
.hero-slider .slide-bg img, .hero-slider .slide-bg svg { width: 100%; height: 100%; object-fit: cover; }
.hero-slider .slide-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(11,18,32,0.82) 0%, rgba(31,79,216,0.38) 55%, rgba(184,196,228,0.10) 100%); z-index: 1; }
.hero-slider .slide-content { position: relative; z-index: 2; max-width: 640px; padding: 0 12px; }
.hero-slider .slide-content.align-center { margin: 0 auto; text-align: center; }
.hero-slider .slide-content.align-right { margin-left: auto; text-align: right; }
.hero-slider .hero-kicker {
  font-size: 13px; letter-spacing: 3px; text-transform: uppercase;
  background: rgba(255,255,255,0.18);
  display: inline-block; padding: 7px 18px; border-radius: 30px;
  backdrop-filter: blur(6px);
  margin-bottom: 20px;
}
.hero-slider h1 { font-size: clamp(30px, 4.6vw, 54px); color: #fff; line-height: 1.15; margin-bottom: 16px; text-shadow: 0 6px 30px rgba(0,0,0,0.25); }
.hero-slider p { font-size: 17px; opacity: 0.94; margin-bottom: 26px; max-width: 540px; }
.hero-slider .hero-badges { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }
.hero-slider .hero-badge { display: flex; align-items: center; gap: 8px; font-size: 13px; background: rgba(255,255,255,0.14); padding: 8px 16px; border-radius: 40px; backdrop-filter: blur(8px); }
.hero-slider .swiper-pagination-bullet { width: 28px; height: 5px; border-radius: 4px; background: #fff; opacity: 0.5; transition: var(--transition); }
.hero-slider .swiper-pagination-bullet-active { opacity: 1; width: 46px; background: var(--accent); }

/* ---------- Marquee strip ---------- */
.arc-marquee {
  background: var(--text);
  color: #fff;
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.arc-marquee .marquee-track { display: flex; gap: 56px; white-space: nowrap; animation: marquee 30s linear infinite; width: max-content; }
.arc-marquee span { font-size: 14px; letter-spacing: 1px; display: flex; align-items: center; gap: 8px; }
.arc-marquee i { color: var(--accent); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---------- Product cards ---------- */
.product-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); }
.product-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(31, 79, 216, 0.06);
  animation: fadeUp 0.6s ease both;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(31, 79, 216, 0.2); }
.product-card .pc-media { position: relative; overflow: hidden; aspect-ratio: 1/1; background: var(--bg-alt); flex-shrink: 0; }
.product-card .pc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.product-card:hover .pc-media img { transform: scale(1.08); }
.product-card .pc-badges { position: absolute; top: 12px; left: 12px; z-index: 3; display: flex; flex-direction: column; gap: 6px; }
.product-card .pc-badge { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 30px; color: #fff; letter-spacing: 0.5px; }
.product-card .pc-badge.discount { background: var(--danger); }
.product-card .pc-badge.new { background: var(--success); }
.product-card .pc-badge.best { background: var(--secondary); }
.product-card .pc-actions { position: absolute; top: 12px; right: 12px; z-index: 3; display: flex; flex-direction: column; gap: 8px; }
.product-card .pc-actions button, .product-card .pc-actions a {
  width: 38px; height: 38px; border-radius: 50%;
  background: #fff; border: none; color: var(--text);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0; transform: translateX(16px);
  transition: var(--transition);
  cursor: pointer; font-size: 16px;
}
.product-card:hover .pc-actions button, .product-card:hover .pc-actions a { opacity: 1; transform: translateX(0); }
.product-card .pc-actions button:hover, .product-card .pc-actions a:hover { background: var(--gradient-btn); color: #fff; }
.product-card .pc-actions button.wishlist.active, .product-card .pc-actions a.wishlist.active { background: var(--secondary); color: #fff; opacity: 1; transform: translateX(0); }
.product-card .pc-quickview {
  position: absolute; bottom: 12px; left: 50%; transform: translate(-50%, 24px);
  background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
  color: var(--text); font-size: 13px; font-weight: 600;
  padding: 8px 18px; border-radius: 40px; border: none;
  opacity: 0; transition: var(--transition); cursor: pointer; white-space: nowrap;
  box-shadow: var(--shadow);
  z-index: 3;
}
.product-card:hover .pc-quickview { opacity: 1; transform: translate(-50%, 0); }
.product-card .pc-body { padding: 16px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.product-card .pc-cat { font-size: 12px; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.product-card .pc-title { font-size: 15px; font-weight: 600; margin: 4px 0 6px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 42px; }
.product-card .pc-title a { color: var(--text); }
.product-card .pc-title a:hover { color: var(--primary); }
.product-card .pc-rating { display: flex; align-items: center; gap: 4px; font-size: 12.5px; color: var(--text-muted); }
.product-card .pc-rating .arc-stars { font-size: 12px; }
.product-card .pc-price { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.product-card .pc-price .sale { font-size: 19px; font-weight: 800; color: var(--primary); }
.product-card .pc-price .mrp { font-size: 14px; color: var(--text-muted); text-decoration: line-through; }
.product-card .pc-add { margin-top: auto; padding-top: 14px; }
.product-card .pc-stock { font-size: 12px; margin-top: 8px; }
.product-card .pc-stock.in { color: var(--success); }
.product-card .pc-stock.out { color: var(--danger); }

/* Equal-height rows: stretch slides/cells and let cards fill them */
.product-slider .swiper-slide { display: flex; }
.product-slider .swiper-slide .product-card { width: 100%; }
.product-grid > * { display: flex; min-width: 0; }
.product-grid > * > .product-card { width: 100%; }

/* Skeleton loading */
.skeleton { position: relative; overflow: hidden; background: var(--bg-alt); }
.skeleton::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  animation: shimmer 1.4s infinite;
}
@keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

/* ---------- Category cards ---------- */
.category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.category-card:hover { transform: translateY(-6px) scale(1.01); box-shadow: var(--shadow-lg); }
.category-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.5s ease; }
.category-card:hover img { transform: scale(1.08); }
.category-card .cc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20,14,60,0.82) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px;
}
.category-card .cc-name { color: #fff; font-size: 18px; font-weight: 700; font-family: var(--font-heading); }
.category-card .cc-count { color: var(--accent); font-size: 13px; }

/* Category grid page tiles */
.cat-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.cat-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(31, 79, 216, 0.06);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cat-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(31, 79, 216, 0.2); }
.cat-tile .ct-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--bg-alt); }
.cat-tile .ct-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.cat-tile:hover .ct-media img { transform: scale(1.07); }
.cat-tile .ct-count {
  position: absolute; top: 12px; left: 12px;
  background: rgba(20, 14, 60, 0.72); color: #fff;
  font-size: 11.5px; font-weight: 700; padding: 4px 12px;
  border-radius: 30px; letter-spacing: 0.5px; backdrop-filter: blur(4px);
}
.cat-tile .ct-body { padding: 16px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.cat-tile .ct-body h3 { font-size: 17px; font-weight: 700; margin: 0 0 6px; font-family: var(--font-heading); }
.cat-tile .ct-body h3 a { color: var(--text); }
.cat-tile .ct-body h3 a:hover { color: var(--primary); }
.cat-tile .ct-body p { color: var(--text-muted); font-size: 13.5px; line-height: 1.55; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cat-tile .cat-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.cat-chip {
  position: relative; z-index: 2;
  font-size: 11.5px; color: var(--text);
  background: var(--bg-alt); border: 1px solid rgba(31, 79, 216, 0.12);
  padding: 3px 10px; border-radius: 30px; text-decoration: none;
  transition: var(--transition);
}
.cat-chip:hover { background: var(--gradient-btn); color: #fff; border-color: transparent; }
.cat-tile .ct-foot { margin-top: auto; padding-top: 14px; display: flex; align-items: center; }
.cat-tile .ct-link { font-size: 13px; font-weight: 700; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; }
.cat-tile .ct-link i { transition: transform 0.3s ease; }
.cat-tile:hover .ct-link i { transform: translateX(3px); }
.stretched-link::after { content: ''; position: absolute; inset: 0; z-index: 1; }
@media (max-width: 767px) {
  .cat-grid { gap: 14px; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .cat-tile .ct-body { padding: 12px 12px 14px; }
  .cat-tile .ct-body h3 { font-size: 15px; }
  .cat-tile .ct-body p { -webkit-line-clamp: 2; }
}

/* ---------- Why choose ---------- */
.feature-box {
  background: var(--card);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(31, 79, 216, 0.06);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.feature-box::before {
  content: '';
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(31,79,216,0.08) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.4s;
}
.feature-box:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-box:hover::before { opacity: 1; }
.feature-box .fb-icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  border-radius: 18px;
  background: var(--gradient-btn);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 26px;
  box-shadow: 0 10px 24px rgba(31, 79, 216, 0.35);
}
.feature-box h4 { font-size: 17px; margin-bottom: 8px; }
.feature-box p { color: var(--text-muted); font-size: 14px; margin: 0; }
/* Contact page info blocks: stacked, so they must not stretch to full column height */
.arc-contact-info .feature-box { height: auto; }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(31, 79, 216, 0.06);
  position: relative;
  transition: var(--transition);
  height: 100%;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testimonial-card .quote-mark { font-size: 54px; color: var(--primary-light); opacity: 0.25; font-family: Georgia, serif; line-height: 0.6; position: absolute; top: 18px; right: 24px; }
.testimonial-card .t-content { font-size: 14.5px; color: var(--text); margin-bottom: 18px; }
.testimonial-card .t-author { display: flex; align-items: center; gap: 12px; }
.testimonial-card .t-author img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary-light); }
.testimonial-card .t-author .t-name { font-weight: 700; font-size: 15px; }
.testimonial-card .t-author .t-desig { font-size: 12.5px; color: var(--text-muted); }

/* ---------- Newsletter ---------- */
.arc-newsletter {
  background: var(--gradient);
  border-radius: var(--radius-lg);
  padding: 54px 40px;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
}
.arc-newsletter::before, .arc-newsletter::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.arc-newsletter::before { width: 300px; height: 300px; top: -140px; right: -80px; }
.arc-newsletter::after { width: 200px; height: 200px; bottom: -110px; left: -60px; }
.arc-newsletter h3 { color: #fff; font-size: 28px; }
.arc-newsletter p { opacity: 0.92; margin-bottom: 22px; }
.newsletter-form { max-width: 480px; margin: 0 auto; display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1; border: none; border-radius: 50px;
  padding: 13px 22px; outline: none; font-size: 14.5px;
}
.newsletter-form button { border: none; border-radius: 50px; padding: 13px 26px; background: var(--text); color: #fff; font-weight: 600; cursor: pointer; transition: var(--transition); }
.newsletter-form button:hover { background: var(--accent); color: var(--text); transform: translateY(-2px); }

/* ---------- Instagram gallery ---------- */
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.ig-item { position: relative; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1/1; display: block; }
.ig-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ig-item::after {
  content: '📷';
  position: absolute; inset: 0;
  background: rgba(31, 79, 216, 0.55);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  opacity: 0; transition: var(--transition);
}
.ig-item:hover img { transform: scale(1.1); }
.ig-item:hover::after { opacity: 1; }

/* ---------- Blog cards ---------- */
.blog-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card .bc-media { overflow: hidden; aspect-ratio: 16/9; }
.blog-card .bc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .bc-media img { transform: scale(1.06); }
.blog-card .bc-body { padding: 20px; }
.blog-card .bc-meta { display: flex; gap: 14px; font-size: 12.5px; color: var(--text-muted); margin-bottom: 8px; }
.blog-card .bc-meta i { color: var(--primary); }
.blog-card .bc-title { font-size: 17px; line-height: 1.45; margin-bottom: 8px; }
.blog-card .bc-title a { color: var(--text); }
.blog-card .bc-title a:hover { color: var(--primary); }
.blog-card .bc-excerpt { color: var(--text-muted); font-size: 14px; }

/* ---------- Footer ---------- */
.arc-footer { background: #191527; color: #B9B4D4; padding: 70px 0 0; margin-top: 60px; position: relative; }
.arc-footer .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 34px; padding-bottom: 40px; }
.arc-footer h5 { color: #fff; font-size: 16px; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.arc-footer h5::after { content: ''; position: absolute; left: 0; bottom: 0; width: 34px; height: 3px; background: var(--gradient-btn); border-radius: 3px; }
.arc-footer a { color: #B9B4D4; font-size: 14px; display: block; padding: 5px 0; }
.arc-footer a:hover { color: var(--accent); padding-left: 5px; }
.arc-footer .about-text { font-size: 14px; }
.arc-footer .social-links { display: flex; gap: 10px; margin-top: 16px; }
.arc-footer .social-links a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px;
  padding: 0; transition: var(--transition);
}
.arc-footer .social-links a:hover { background: var(--gradient-btn); transform: translateY(-4px); padding: 0; }
.arc-footer .contact-info li { display: flex; gap: 12px; padding: 7px 0; font-size: 14px; }
.arc-footer .contact-info i { color: var(--accent); margin-top: 4px; }
.arc-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  font-size: 13.5px;
}
.arc-footer .footer-bottom a { display: inline; padding: 0; margin-left: 14px; }
.arc-footer .footer-bottom a:hover { padding: 0; }

/* ---------- WhatsApp float ---------- */
.arc-whatsapp {
  position: fixed; bottom: 24px; right: 24px; z-index: 1000;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  animation: pulse 2.4s infinite;
}
.arc-whatsapp:hover { transform: scale(1.1); color: #fff; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* ---------- Scroll to top ---------- */
.arc-scrolltop {
  position: fixed; bottom: 24px; left: 24px; z-index: 1000;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient-btn); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none; transition: var(--transition);
  cursor: pointer;
}
.arc-scrolltop.show { opacity: 1; pointer-events: auto; }

/* ---------- Animations ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes zoomIn { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: scale(1); } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Page load fade */
.arc-page { animation: fadeIn 0.5s ease; }

/* ---------- Flash alerts ---------- */
.arc-flash-stack { position: fixed; top: 84px; right: 20px; z-index: 2000; display: flex; flex-direction: column; gap: 10px; max-width: 380px; }
.arc-alert {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border-radius: var(--radius-sm);
  padding: 14px 16px; box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--primary);
  animation: slideInRight 0.4s ease;
}
.arc-alert-success { border-left-color: var(--success); }
.arc-alert-success .arc-alert-icon { background: var(--success); }
.arc-alert-error { border-left-color: var(--danger); }
.arc-alert-error .arc-alert-icon { background: var(--danger); }
.arc-alert-info { border-left-color: var(--info); }
.arc-alert-info .arc-alert-icon { background: var(--info); }
.arc-alert-warning { border-left-color: var(--warning); }
.arc-alert-warning .arc-alert-icon { background: var(--warning); }
.arc-alert-icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 14px; font-weight: 700;
}
.arc-alert-body { flex: 1; font-size: 14px; }
.arc-alert-close { border: none; background: none; font-size: 20px; color: var(--text-muted); cursor: pointer; line-height: 1; }
@keyframes slideInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }

/* ---------- Breadcrumb ---------- */
.arc-pagehead {
  background: linear-gradient(135deg, rgba(31,79,216,0.10), rgba(184,196,228,0.14));
  padding: 44px 0 30px;
  position: relative;
  overflow: hidden;
}
.arc-pagehead::after {
  content: '';
  position: absolute; right: -80px; top: -80px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(31,79,216,0.16), transparent 70%);
}
.arc-pagehead h1 { font-size: 30px; margin-bottom: 6px; }
.arc-pagehead p { color: var(--text-muted); margin: 0; }
.arc-breadcrumb { font-size: 13px; color: var(--text-muted); }
.arc-breadcrumb ol { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.arc-breadcrumb li { display: flex; align-items: center; }
.arc-breadcrumb li:not(:last-child)::after { content: '›'; margin-left: 8px; color: var(--primary-light); }
.arc-breadcrumb a { color: var(--primary); font-weight: 500; }
.arc-breadcrumb .current { color: var(--text-muted); }

/* ---------- About page ---------- */
.about-hero {
  background: linear-gradient(135deg, #12102B 0%, #1F4FD8 55%, #6C63FF 100%);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.about-hero::after {
  content: '';
  position: absolute; right: -140px; top: -140px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.14), transparent 70%);
}
.about-hero .arc-breadcrumb, .about-hero .arc-breadcrumb .current { color: rgba(255,255,255,0.85); }
.about-hero .arc-breadcrumb a { color: #fff; }
.about-hero .arc-breadcrumb li:not(:last-child)::after { color: rgba(255,255,255,0.5); }
.about-eyebrow {
  display: inline-block; margin: 18px 0 10px;
  background: rgba(255,255,255,0.16); color: #fff;
  font-size: 12.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 18px; border-radius: 30px;
}
.about-hero h1 { font-size: clamp(30px, 4.5vw, 46px); font-weight: 800; margin-bottom: 10px; }
.about-lead { max-width: 620px; font-size: 16.5px; color: rgba(255,255,255,0.9); line-height: 1.65; }
.about-hero-actions { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; }
.btn-ghost-light { background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.45); color: #fff; }
.btn-ghost-light:hover { background: #fff; color: #1F4FD8; border-color: #fff; transform: translateY(-2px); }
.about-badge {
  position: absolute; bottom: -18px; right: 10px;
  background: var(--gradient-btn); color: #fff;
  border-radius: var(--radius-sm); padding: 14px 20px;
  box-shadow: 0 12px 30px rgba(31, 79, 216, 0.35);
}
.about-badge-num { font-size: 18px; font-weight: 800; font-family: var(--font-heading); }
.about-badge-cap { font-size: 12px; opacity: 0.92; }
.about-point { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); }
.about-point i { color: var(--success); font-size: 18px; margin-top: 1px; }
.about-point span { line-height: 1.5; }
.about-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.about-stat {
  background: var(--card); border-radius: var(--radius);
  border: 1px solid rgba(31, 79, 216, 0.06);
  box-shadow: var(--shadow-sm);
  padding: 26px 18px; text-align: center;
  transition: var(--transition);
}
.about-stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.about-stat .as-num {
  font-size: clamp(26px, 3.2vw, 38px); font-weight: 800;
  color: var(--primary); font-family: var(--font-heading); line-height: 1.1;
}
.about-stat .as-cap { margin-top: 6px; font-size: 13.5px; color: var(--text-muted); font-weight: 600; }
.about-step {
  background: var(--card); border-radius: var(--radius);
  border: 1px solid rgba(31, 79, 216, 0.06);
  box-shadow: var(--shadow-sm);
  padding: 30px 24px; height: 100%; position: relative;
  overflow: hidden; text-align: center; transition: var(--transition);
}
.about-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.about-step .step-num {
  position: absolute; top: 14px; right: 20px;
  font-size: 52px; font-weight: 800; line-height: 1;
  color: var(--primary); opacity: 0.12; font-family: var(--font-heading);
}
.about-step .step-icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  border-radius: 18px; background: var(--gradient-btn);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 26px; box-shadow: 0 10px 24px rgba(31, 79, 216, 0.35);
}
.about-step h4 { font-size: 16.5px; margin-bottom: 8px; }
.about-step p { color: var(--text-muted); font-size: 13.5px; margin: 0; line-height: 1.6; }
@media (max-width: 767px) {
  .about-hero { padding: 44px 0 38px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .about-hero-actions .btn { width: 100%; }
}

/* ---------- Forms ---------- */
.arc-form .form-control, .arc-form .form-select {
  border-radius: var(--radius-sm);
  border: 2px solid var(--bg-alt);
  padding: 11px 16px;
  font-size: 14.5px;
  background: var(--bg);
  transition: var(--transition);
}
.arc-form .form-control:focus, .arc-form .form-select:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(31, 79, 216, 0.12);
}
.arc-form label { font-weight: 600; font-size: 13.5px; margin-bottom: 6px; color: var(--text); }
.arc-form .form-text { font-size: 12.5px; }
.form-floating-label { position: relative; }
.field-error { color: var(--danger); font-size: 12.5px; margin-top: 4px; }

/* ---------- Auth card ---------- */
.auth-wrap { display: flex; align-items: center; justify-content: center; min-height: 78vh; padding: 40px 16px; position: relative; overflow: hidden; }
.auth-wrap::before, .auth-wrap::after { content: ''; position: absolute; border-radius: 50%; filter: blur(40px); }
.auth-wrap::before { width: 340px; height: 340px; background: rgba(31,79,216,0.14); top: -100px; left: -80px; }
.auth-wrap::after { width: 300px; height: 300px; background: rgba(184,196,228,0.16); bottom: -100px; right: -60px; }
.auth-card {
  width: 100%; max-width: 440px;
  background: var(--card); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
  padding: 38px;
  position: relative; z-index: 2;
  animation: zoomIn 0.5s ease;
}
.auth-card .auth-head-toggle { position: absolute; top: 16px; right: 16px; }
.auth-card .auth-logo { text-align: center; margin-bottom: 22px; }
.auth-card .auth-logo img { height: 44px; }
.auth-card h2 { text-align: center; font-size: 24px; margin-bottom: 6px; }
.auth-card .auth-sub { text-align: center; color: var(--text-muted); font-size: 14px; margin-bottom: 26px; }
.auth-card .auth-alt { text-align: center; font-size: 14px; margin-top: 18px; color: var(--text-muted); }

/* ---------- Shop filters sidebar ---------- */
.filter-panel { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 22px; position: sticky; top: 100px; }
.filter-panel h6 { font-size: 15px; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--bg-alt); }
.filter-group { margin-bottom: 20px; }
.filter-group .form-check { margin-bottom: 8px; }
.filter-group .form-check-input:checked { background-color: var(--primary); border-color: var(--primary); }
.price-range { display: flex; align-items: center; gap: 8px; }
.price-range input { width: 100%; }

/* ---------- Product detail ---------- */
.product-gallery { position: sticky; top: 100px; }
.pg-main {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-alt);
  aspect-ratio: 1/1;
  box-shadow: var(--shadow);
  cursor: zoom-in;
}
.pg-main img { width: 100%; height: 100%; object-fit: cover; }
.pg-thumbs { display: flex; gap: 10px; margin-top: 12px; }
.pg-thumbs .pg-thumb {
  width: 74px; height: 74px; border-radius: var(--radius-sm);
  overflow: hidden; border: 2px solid transparent;
  cursor: pointer; background: var(--bg-alt);
  transition: var(--transition);
}
.pg-thumbs .pg-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pg-thumbs .pg-thumb.active, .pg-thumbs .pg-thumb:hover { border-color: var(--primary); }
.product-info h1 { font-size: 28px; margin-bottom: 10px; }
.product-info .pi-meta { display: flex; align-items: center; gap: 18px; font-size: 13.5px; color: var(--text-muted); margin-bottom: 14px; flex-wrap: wrap; }
.product-info .pi-price { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.product-info .pi-price .sale { font-size: 32px; font-weight: 800; color: var(--primary); }
.product-info .pi-price .mrp { font-size: 18px; color: var(--text-muted); text-decoration: line-through; }
.product-info .pi-price .save { background: rgba(46,204,113,0.14); color: var(--success); font-size: 13px; font-weight: 700; padding: 4px 12px; border-radius: 30px; }
.product-info .pi-short { color: var(--text-muted); margin-bottom: 20px; }
.product-info .pi-options { margin-bottom: 22px; }
.qty-stepper {
  display: inline-flex; align-items: center;
  border: 2px solid var(--bg-alt); border-radius: 50px;
  overflow: hidden;
}
.qty-stepper button { border: none; background: var(--bg); width: 40px; height: 44px; font-size: 18px; cursor: pointer; transition: var(--transition); color: var(--text); }
.qty-stepper button:hover { background: var(--primary); color: #fff; }
.qty-stepper input { width: 54px; border: none; text-align: center; font-weight: 700; font-size: 15px; outline: none; }
.product-info .pi-cta { display: flex; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.product-info .pi-extra { border-top: 1px solid var(--bg-alt); padding-top: 16px; }
.product-info .pi-extra li { display: flex; gap: 10px; padding: 6px 0; font-size: 14px; color: var(--text-muted); }
.product-info .pi-extra i { color: var(--primary); }

.product-tabs .nav-tabs { border: none; gap: 8px; }
.product-tabs .nav-link {
  border: none; border-radius: 40px;
  background: var(--bg-alt); color: var(--text-muted);
  font-weight: 600; padding: 10px 22px;
}
.product-tabs .nav-link.active {
  background: var(--gradient-btn); color: #fff;
  box-shadow: 0 8px 20px rgba(31,79,216,0.3);
}
.tab-content-panel { background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); margin-top: 18px; }
.tab-content-panel h4 { font-size: 18px; margin-bottom: 12px; }

/* Review item */
.review-item { border-bottom: 1px solid var(--bg-alt); padding: 18px 0; }
.review-item:last-child { border-bottom: none; }
.review-item .r-head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.review-item .r-head img { width: 42px; height: 42px; border-radius: 50%; }
.review-item .r-name { font-weight: 700; font-size: 14.5px; }
.review-item .r-date { font-size: 12.5px; color: var(--text-muted); }

/* ---------- Cart / Checkout ---------- */
.cart-table { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.cart-table table { margin: 0; }
.cart-table th { background: var(--bg-alt); font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; padding: 14px 18px; }
.cart-table td { padding: 18px; vertical-align: middle; }
.cart-product { display: flex; align-items: center; gap: 14px; }
.cart-product img { width: 78px; height: 78px; border-radius: var(--radius-sm); object-fit: cover; background: var(--bg-alt); }
.cart-product .cp-name { font-weight: 600; }
.cart-product .cp-sku { font-size: 12.5px; color: var(--text-muted); }
.cart-remove { color: var(--danger); background: rgba(255,90,95,0.1); width: 34px; height: 34px; border-radius: 50%; border: none; cursor: pointer; transition: var(--transition); }
.cart-remove:hover { background: var(--danger); color: #fff; }

.summary-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 24px; position: sticky; top: 100px; }
.summary-card h5 { margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--bg-alt); }
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14.5px; color: var(--text-muted); }
.summary-row.grand { font-size: 18px; font-weight: 800; color: var(--text); border-top: 1px dashed var(--bg-alt); margin-top: 10px; padding-top: 14px; }
.summary-row .val { color: var(--text); font-weight: 600; }
.coupon-input { display: flex; gap: 8px; }
.coupon-input input { flex: 1; }

/* Checkout */
.checkout-steps { display: flex; gap: 10px; margin-bottom: 26px; flex-wrap: wrap; }
.step-pill { background: var(--bg-alt); color: var(--text-muted); padding: 10px 20px; border-radius: 40px; font-size: 13.5px; font-weight: 600; }
.step-pill.active { background: var(--gradient-btn); color: #fff; box-shadow: 0 8px 20px rgba(31,79,216,0.3); }
.payment-option { border: 2px solid var(--bg-alt); border-radius: var(--radius-sm); padding: 16px; margin-bottom: 10px; cursor: pointer; transition: var(--transition); display: flex; gap: 12px; align-items: center; }
.payment-option:hover { border-color: var(--primary-light); }
.payment-option.selected { border-color: var(--primary); background: rgba(31,79,216,0.05); }
.payment-option input { accent-color: var(--primary); }
.saved-address { border: 2px solid var(--bg-alt); border-radius: var(--radius-sm); padding: 16px; margin-bottom: 12px; cursor: pointer; transition: var(--transition); }
.saved-address.selected { border-color: var(--primary); background: rgba(31,79,216,0.05); }
.ship-option { border: 2px solid var(--bg-alt); border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition); background: #fff; }
.ship-option:hover { border-color: var(--primary-light); }
.ship-option:has(input:checked) { border-color: var(--primary); background: rgba(31,79,216,0.05); }
.ship-option input { accent-color: var(--primary); flex-shrink: 0; }

/* ---------- Order progress / timeline ---------- */
.order-progress { display: flex; gap: 6px; }
.order-progress .op-step { flex: 1; text-align: center; position: relative; }
.order-progress .op-step:not(:last-child)::after { content: ''; position: absolute; top: 17px; left: 60%; width: 80%; height: 3px; background: var(--bg-alt); border-radius: 2px; z-index: 0; }
.order-progress .op-step.done:not(:last-child)::after { background: var(--success); }
.order-progress .op-dot { width: 36px; height: 36px; margin: 0 auto 8px; border-radius: 50%; background: var(--bg-alt); color: var(--text-muted); display: flex; align-items: center; justify-content: center; font-size: 16px; position: relative; z-index: 1; }
.order-progress .op-step.done .op-dot { background: var(--success); color: #fff; }
.order-progress .op-step.current .op-dot { background: var(--gradient-btn); color: #fff; box-shadow: 0 6px 16px rgba(31,79,216,0.35); }
.order-progress .op-label { font-size: 12px; color: var(--text-muted); font-weight: 600; }
.order-progress .op-step.current .op-label, .order-progress .op-step.done .op-label { color: var(--text); }

/* ---------- Empty states ---------- */
.empty-state { text-align: center; padding: 60px 20px; }
.empty-state .es-icon {
  width: 90px; height: 90px; margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; color: var(--primary);
}
.empty-state h3 { font-size: 22px; margin-bottom: 8px; }
.empty-state p { color: var(--text-muted); max-width: 420px; margin: 0 auto 22px; }

/* ---------- Blog / posts ---------- */
.post-content { background: #fff; border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); font-size: 15.5px; }
.post-content h2, .post-content h3 { margin-top: 22px; }
.post-content ul { list-style: disc; padding-left: 22px; margin: 12px 0; }
.post-content ol { list-style: decimal; padding-left: 22px; margin: 12px 0; }
.post-content blockquote { border-left: 4px solid var(--primary); background: var(--bg); padding: 14px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 18px 0; }
.post-content img { border-radius: var(--radius-sm); margin: 14px 0; }

/* ---------- FAQ ---------- */
.faq-item { background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); margin-bottom: 12px; overflow: hidden; transition: var(--transition); }
.faq-item:hover { box-shadow: var(--shadow); }
.faq-q { padding: 18px 22px; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-q .faq-icon { color: var(--primary); transition: transform 0.3s; font-size: 18px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a .faq-a-inner { padding: 0 22px 20px; color: var(--text-muted); }

/* ---------- 404 ---------- */
.error-404 { text-align: center; padding: 90px 20px; }
.error-404 .e-code { font-size: clamp(90px, 18vw, 180px); font-weight: 900; font-family: var(--font-heading); background: var(--gradient-btn); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.error-404 h2 { font-size: 28px; margin-bottom: 8px; }
.error-404 p { color: var(--text-muted); margin-bottom: 26px; }

/* ---------- Account ---------- */
.account-sidebar { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.account-sidebar .as-user { background: var(--gradient-btn); padding: 24px; text-align: center; color: #fff; }
.account-sidebar .as-user img { width: 64px; height: 64px; border-radius: 50%; border: 3px solid rgba(255,255,255,0.4); margin-bottom: 10px; object-fit: cover; }
.account-sidebar .as-user h5 { color: #fff; margin: 0; font-size: 17px; }
.account-sidebar .as-user small { opacity: 0.85; }
.account-sidebar .as-nav a { display: flex; align-items: center; gap: 12px; padding: 13px 20px; color: var(--text); font-size: 14px; border-bottom: 1px solid var(--bg-alt); transition: var(--transition); }
.account-sidebar .as-nav a:hover, .account-sidebar .as-nav a.active { background: rgba(31,79,216,0.08); color: var(--primary); padding-left: 26px; }
.account-sidebar .as-nav i { width: 20px; text-align: center; }
.stat-box { background: #fff; border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); border-left: 4px solid var(--primary); height: 100%; }
.stat-box .sb-value { font-size: 28px; font-weight: 800; color: var(--primary); }
.stat-box .sb-label { font-size: 13px; color: var(--text-muted); }

/* ---------- Admin badge reuse ---------- */
.badge { font-weight: 600; padding: 5px 12px; border-radius: 30px; font-size: 12px; }
.badge-success { background: rgba(46,204,113,0.14); color: #1E8E4E; }
.badge-danger { background: rgba(255,90,95,0.14); color: #D6363B; }
.badge-warning { background: rgba(245,176,65,0.16); color: #B57817; }
.badge-info { background: rgba(90,210,255,0.16); color: #1D8FC7; }
.badge-primary { background: rgba(31,79,216,0.14); color: var(--primary); }
.badge-secondary { background: var(--bg-alt); color: var(--text-muted); }

/* ---------- Pagination ---------- */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 36px; }
.pagination li a, .pagination li.current { display: inline-flex; min-width: 40px; height: 40px; padding: 0 12px; align-items: center; justify-content: center; border-radius: var(--radius-sm); background: #fff; color: var(--text); box-shadow: var(--shadow-sm); font-weight: 600; font-size: 14px; }
.pagination li a:hover { background: var(--gradient-btn); color: #fff; transform: translateY(-2px); }
.pagination li.current { background: var(--gradient-btn); color: #fff; }

/* ---------- Misc ---------- */
.arc-divider { display: flex; align-items: center; gap: 16px; color: var(--text-muted); font-size: 13px; margin: 22px 0; }
.arc-divider::before, .arc-divider::after { content: ''; flex: 1; height: 1px; background: var(--bg-alt); }
.text-primary-arc { color: var(--primary) !important; }
.bg-gradient-arc { background: var(--gradient); }
.rounded-arc { border-radius: var(--radius); }
.shadow-arc { box-shadow: var(--shadow); }
.shadow-arc-lg { box-shadow: var(--shadow-lg); }
.text-ellipsis-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Loader overlay */
.arc-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  transition: opacity 0.5s ease, visibility 0.5s;
}
.arc-loader.hidden { opacity: 0; visibility: hidden; }
.arc-loader .loader-logo { animation: floaty 2s ease-in-out infinite; }
.arc-loader .loader-logo img { height: 54px; }
.arc-loader .spinner-ring {
  width: 46px; height: 46px; border-radius: 50%;
  border: 4px solid var(--bg-alt);
  border-top-color: var(--primary);
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Modal quick view */
.arc-modal .modal-content { border-radius: var(--radius-lg); border: none; box-shadow: var(--shadow-lg); overflow: hidden; }
.arc-modal .modal-header { border: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
  .hero-slider .swiper-slide { min-height: 480px; }
}
@media (max-width: 991px) {
  .arc-search-wrap { display: none; }
  .arc-footer .footer-top { grid-template-columns: 1fr 1fr; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-slider .swiper-slide { min-height: 420px; }
  .navbar-collapse { background: #fff; border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow-lg); margin-top: 10px; }
}
@media (max-width: 767px) {
  .arc-section { padding: 48px 0; }
  .arc-footer .footer-top { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .hero-slider .swiper-slide { min-height: 380px; }
  .hero-slider p { font-size: 15px; }
  .arc-newsletter { padding: 38px 20px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; }
  .cart-product img { width: 60px; height: 60px; }
  .arc-pagehead { padding: 30px 0 22px; }
  .product-gallery { position: static; }
}
@media (max-width: 575px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pg-thumbs .pg-thumb { width: 60px; height: 60px; }
  .auth-card { padding: 26px; }
  .arc-footer .footer-bottom { justify-content: center; text-align: center; }
}

/* ==========================================================
   Floating action buttons (Call / WhatsApp / AI Chatbot)
   ========================================================== */
.arc-floating { position: fixed; right: 22px; bottom: 22px; z-index: 1500; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.arc-fab {
  width: 54px; height: 54px; border-radius: 50%;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #fff;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  text-decoration: none;
}
.arc-fab:hover { transform: scale(1.12) translateY(-2px); color: #fff; }
.arc-fab-main {
  background: var(--gradient-btn);
  animation: fabPulse 2.4s infinite;
  font-size: 26px;
}
.arc-fab-main i { transition: transform 0.3s ease; }
.arc-floating.open .arc-fab-main i { transform: rotate(45deg); }
.arc-fab-call { background: linear-gradient(135deg, #1E90FF, #005BCC); }
.arc-fab-wa { background: linear-gradient(135deg, #25D366, #128C7E); }
.arc-fab-chat { background: linear-gradient(135deg, #5B8CFF, #1F4FD8); }

.arc-fab-menu {
  display: flex; flex-direction: column; gap: 12px; align-items: center;
  opacity: 0; transform: translateY(16px) scale(0.8);
  pointer-events: none;
  transition: var(--transition);
}
.arc-floating.open .arc-fab-menu { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.arc-fab-menu .arc-fab { animation: fabPop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
.arc-fab-menu .arc-fab:nth-child(1) { animation-delay: 0.05s; }
.arc-fab-menu .arc-fab:nth-child(2) { animation-delay: 0.12s; }
.arc-fab-menu .arc-fab:nth-child(3) { animation-delay: 0.19s; }
@keyframes fabPop { from { opacity: 0; transform: scale(0.4); } to { opacity: 1; transform: scale(1); } }
@keyframes fabPulse {
  0% { box-shadow: 0 0 0 0 rgba(31, 79, 216, 0.45), var(--shadow-lg); }
  70% { box-shadow: 0 0 0 18px rgba(31, 79, 216, 0); }
  100% { box-shadow: 0 0 0 0 rgba(31, 79, 216, 0); }
}

/* ==========================================================
   AI Chatbot widget
   ========================================================== */
.arc-chat {
  position: fixed; right: 22px; bottom: 92px; z-index: 1500;
  width: min(360px, calc(100vw - 32px));
  background: var(--card); color: var(--text);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
  display: flex; flex-direction: column; overflow: hidden;
  opacity: 0; transform: translateY(24px) scale(0.95);
  transform-origin: bottom right;
  pointer-events: none;
  transition: var(--transition);
}
.arc-chat.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.arc-chat-head {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 14px 16px;
  background: var(--gradient-btn); color: #fff;
}
.arc-chat-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.arc-chat-head strong { font-size: 14.5px; display: block; line-height: 1.2; }
.arc-chat-head small { font-size: 11.5px; opacity: 0.9; }
.arc-chat-online { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #34D87B; margin-right: 3px; box-shadow: 0 0 0 3px rgba(52, 216, 123, 0.25); }
.arc-chat-close { background: none; border: none; color: #fff; font-size: 17px; cursor: pointer; opacity: 0.85; }
.arc-chat-close:hover { opacity: 1; }
.arc-chat-body {
  flex: 1; min-height: 200px; max-height: 260px; overflow-y: auto;
  padding: 14px; display: flex; flex-direction: column; gap: 10px;
  background: var(--bg);
}
.arc-chat-bubble {
  max-width: 82%; padding: 9px 14px; border-radius: 14px;
  font-size: 13.5px; line-height: 1.5; word-wrap: break-word;
  animation: fadeUp 0.3s ease both;
}
.arc-chat-bubble.bot { background: var(--card); color: var(--text); border: 1px solid var(--border-soft); border-top-left-radius: 4px; align-self: flex-start; }
.arc-chat-bubble.user { background: var(--primary); color: #fff; border-top-right-radius: 4px; align-self: flex-end; }
.arc-chat-bubble .arc-chat-link { color: var(--primary); font-weight: 600; text-decoration: underline; }
.arc-chat-bubble .arc-chat-link:hover { color: var(--primary-dark); }
.arc-chat-bubble .typing { display: inline-flex; gap: 4px; }
.arc-chat-bubble .typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--text-muted); animation: blink 1.2s infinite; }
.arc-chat-bubble .typing i:nth-child(2) { animation-delay: 0.2s; }
.arc-chat-bubble .typing i:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink { 0%, 80%, 100% { opacity: 0.3; } 40% { opacity: 1; } }
.arc-chat-product {
  display: flex; align-items: center; gap: 10px; margin: 8px 0;
  padding: 8px; border: 1px solid var(--border-soft); border-radius: 10px;
  background: var(--bg-alt);
}
.arc-chat-product img { width: 42px; height: 42px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.arc-chat-product .arc-chat-price { font-weight: 700; color: var(--primary); }
.arc-chat-actions { display: flex; gap: 8px; flex-wrap: wrap; padding: 10px 14px 0; }
.arc-chat-chip {
  border: 1.5px solid var(--border-soft); background: var(--card); color: var(--primary);
  border-radius: 30px; padding: 6px 12px; font-size: 12px; font-weight: 600; cursor: pointer;
  transition: var(--transition);
}
.arc-chat-chip:hover { border-color: var(--primary); background: var(--gradient-btn); color: #fff; }
.arc-chat-form { display: flex; gap: 8px; padding: 12px 14px; }
.arc-chat-input {
  flex: 1; border: 1.5px solid var(--border-soft); background: var(--bg-alt); color: var(--text);
  border-radius: 30px; padding: 10px 16px; font-size: 13.5px; outline: none; transition: var(--transition);
}
.arc-chat-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(31, 79, 216, 0.12); }
.arc-chat-send {
  width: 42px; height: 42px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--gradient-btn); color: #fff; font-size: 16px; transition: var(--transition);
}
.arc-chat-send:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* ==========================================================
   HTML sitemap page
   ========================================================== */
.arc-sitemap .sm-card {
  background: var(--card); border: 1px solid var(--border-soft); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow-sm); height: 100%; transition: var(--transition);
}
.arc-sitemap .sm-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.arc-sitemap .sm-title { font-size: 16px; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border-soft); }
.arc-sitemap .sm-title i { color: var(--primary); }
.arc-sitemap .sm-list { display: flex; flex-direction: column; gap: 4px; }
.arc-sitemap .sm-list a { color: var(--text); font-size: 14px; padding: 4px 8px; border-radius: 8px; display: inline-block; transition: var(--transition); }
.arc-sitemap .sm-list a:hover { color: var(--primary); background: var(--bg-alt); padding-left: 14px; }

/* ==========================================================
   New animations & micro-interactions
   ========================================================== */
.arc-btn-cta { position: relative; overflow: hidden; }
.arc-btn-cta::after { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(255,255,255,0.28), transparent 40%); transform: translateX(-120%); transition: transform 0.6s ease; }
.arc-btn-cta:hover::after { transform: translateX(120%); }
.hero-slider .swiper-slide { animation: none; }
.arc-float-slow { animation: floaty 4s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================
   Dark theme overrides (surface & Bootstrap utilities)
   ========================================================== */
[data-theme="dark"] .arc-header { background: rgba(18, 26, 44, 0.85); }
[data-theme="dark"] .navbar-collapse { background: var(--card); }
[data-theme="dark"] .arc-search-input:focus { background: var(--card); }
[data-theme="dark"] .arc-livesearch { background: var(--card); }
[data-theme="dark"] .btn-light-arc { background: var(--card); }
[data-theme="dark"] .arc-alert { background: var(--card); }
[data-theme="dark"] .newsletter-form button { background: var(--primary); }
[data-theme="dark"] .product-card .pc-actions button, [data-theme="dark"] .product-card .pc-actions a { background: var(--card); color: var(--text); }
[data-theme="dark"] .filter-panel,
[data-theme="dark"] .tab-content-panel,
[data-theme="dark"] .cart-table,
[data-theme="dark"] .summary-card,
[data-theme="dark"] .ship-option,
[data-theme="dark"] .post-content,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .account-sidebar,
[data-theme="dark"] .stat-box,
[data-theme="dark"] .pagination li a,
[data-theme="dark"] .arc-modal .modal-content,
[data-theme="dark"] .arc-toast { background: var(--card); }
[data-theme="dark"] .account-sidebar .as-nav a:hover, [data-theme="dark"] .account-sidebar .as-nav a.active { background: rgba(31, 79, 216, 0.18); }
[data-theme="dark"] .product-card .pc-info { background: var(--card); }
[data-theme="dark"] .cart-product img, [data-theme="dark"] .adm-img-grid .ig-item img { background: var(--bg-alt); }

/* Bootstrap dark surfaces */
[data-theme="dark"] body { background: var(--bg); }
[data-theme="dark"] .dropdown-menu { background: var(--card); border-color: var(--border-soft); }
[data-theme="dark"] .dropdown-item { color: var(--text); }
[data-theme="dark"] .dropdown-item:hover, [data-theme="dark"] .dropdown-item:focus { background: var(--bg-alt); color: var(--primary); }
[data-theme="dark"] .modal-content { background: var(--card); color: var(--text); }
[data-theme="dark"] .form-control, [data-theme="dark"] .form-select { background: var(--bg-alt); color: var(--text); border-color: var(--border-soft); }
[data-theme="dark"] .form-control:focus { background: var(--bg-alt); color: var(--text); }
[data-theme="dark"] .form-control::placeholder { color: var(--text-muted); }
[data-theme="dark"] .btn-close { filter: invert(1) grayscale(100%) brightness(200%); }
[data-theme="dark"] .bg-white { background-color: var(--card) !important; }
[data-theme="dark"] .text-dark { color: var(--text) !important; }
[data-theme="dark"] .border { border-color: var(--border-soft) !important; }
[data-theme="dark"] .table { --bs-table-bg: transparent; color: var(--text); }
[data-theme="dark"] .card { background: var(--card); border-color: var(--border-soft); color: var(--text); }

/* Fix Bootstrap muted text (dark gray default invisible on dark bg) */
[data-theme="dark"] .text-muted, [data-theme="dark"] .text-body-secondary, [data-theme="dark"] .text-secondary { color: var(--text-muted) !important; }
[data-theme="dark"] .btn-dark-arc { background: #0B1220; color: #fff; border: 1px solid rgba(255,255,255,0.18); }
[data-theme="dark"] .badge-primary, [data-theme="dark"] .section-head .eyebrow { color: var(--primary-light); }
[data-theme="dark"] .badge-success { color: var(--success); }
[data-theme="dark"] .badge-danger { color: var(--danger); }
[data-theme="dark"] .badge-warning { color: var(--warning); }
[data-theme="dark"] .badge-info { color: var(--info); }

/* Responsive floating / chat on small screens */
@media (max-width: 575px) {
  .arc-floating { right: 16px; bottom: 16px; }
  .arc-chat { right: 0; bottom: 0; left: 0; width: 100%; height: 80vh; max-height: 560px; border-radius: 18px 18px 0 0; border-bottom: none; }
  .arc-chat-body { max-height: none; flex: 1; min-height: 0; }
  .arc-scrolltop { left: 16px; bottom: 16px; width: 40px; height: 40px; }
  .arc-nav-btn { padding: 0 10px; }
  .arc-nav-btn .badge { min-width: 16px; height: 16px; font-size: 9px; }
}

/* ==========================================================
   Missing component styles (buttons, cart, auth, empty states)
   ========================================================== */

/* Outline primary button variant (cart/checkout/account pages) */
.btn-outline-primary-arc {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
  transition: var(--transition);
}
.btn-outline-primary-arc:hover, .btn-outline-primary-arc:focus, .btn-outline-primary-arc.active {
  background: var(--gradient-btn);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(31, 79, 216, 0.28);
}

/* Cart page blocks */
.card-header-arc {
  background: var(--bg-alt);
  padding: 13px 20px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-soft);
}
.cart-line {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--bg-alt);
}
.cart-line:last-child { border-bottom: none; }
.cart-line:hover { background: rgba(31, 79, 216, 0.025); }
.cart-thumb {
  width: 74px; height: 74px; flex: 0 0 74px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
}
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-qty-input { width: 74px; }

/* Empty states */
.empty-icon {
  width: 88px; height: 88px; margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  font-size: 38px; color: var(--primary);
}

/* Auth pages */
.auth-body { background: var(--bg); }
.auth-form .auth-title { font-size: 24px; text-align: center; }
.auth-form .auth-sub { text-align: center; color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }
.auth-switch { text-align: center; font-size: 14px; margin-top: 18px; color: var(--text-muted); }
.auth-switch a { font-weight: 600; }
.auth-foot {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 8px; margin-top: 22px; padding-top: 16px;
  border-top: 1px solid var(--bg-alt);
  font-size: 13px; color: var(--text-muted);
}
.pass-toggle { border: none; background: transparent; color: var(--text-muted); }
.pass-toggle:hover { background: var(--bg-alt); color: var(--primary); }
.border-bottom-arc { border-bottom: 1px solid var(--bg-alt) !important; }

/* ==========================================================
   Google Map (contact page + footer)
   ========================================================== */
.arc-map-wrap { margin-top: 48px; }
.arc-map-wrap .section-head { margin-bottom: 26px; }
.arc-map-wrap iframe {
  width: 100%; height: 380px; border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: block;
}
.footer-map { margin-top: 22px; }
.footer-map h5 { margin-bottom: 12px; }
.footer-map iframe {
  width: 100%; height: 200px; border: 0;
  border-radius: var(--radius-sm);
  display: block;
}

/* ==========================================================
   Testimonial slider navigation
   ========================================================== */
.testimonial-slider { position: relative; padding-bottom: 4px; }
.testimonial-slider .swiper-button-next,
.testimonial-slider .swiper-button-prev {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--card);
  border: 1.5px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  color: var(--primary);
  top: 34%;
  transform: translateY(-50%);
}
.testimonial-slider .swiper-button-next::after,
.testimonial-slider .swiper-button-prev::after { font-size: 14px; font-weight: 800; }
.testimonial-slider .swiper-button-prev { left: -10px; }
.testimonial-slider .swiper-button-next { right: -10px; }
.testimonial-slider .swiper-button-next:hover,
.testimonial-slider .swiper-button-prev:hover {
  background: var(--gradient-btn);
  border-color: transparent;
  color: #fff;
}

/* ==========================================================
   Responsive refinements
   ========================================================== */

/* Tablet & below */
@media (max-width: 991px) {
  .footer-top { row-gap: 34px; }
  .footer-map iframe { height: 220px; }
  .about-hero { padding: 56px 0 48px; }
}

/* Small phones */
@media (max-width: 575px) {
  .arc-topbar { font-size: 12px; text-align: center; }
  .arc-topbar .ticker { white-space: normal; }
  .arc-section { padding: 48px 0; }
  .section-head { margin-bottom: 32px; }
  .section-head h2 { font-size: 23px; }
  .hero-slider .swiper-slide { min-height: 430px; }
  .hero-slider .slide-content { padding: 0 6px; }
  .hero-slider .hero-badges { margin-top: 18px; }
  .hero-slider .btn { padding: 9px 18px; font-size: 13.5px; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .testimonial-slider .swiper-button-next,
  .testimonial-slider .swiper-button-prev { display: none; }
  .cart-line { padding: 14px; gap: 12px; }
  .cart-thumb { width: 62px; height: 62px; flex-basis: 62px; }
  .post-content { padding: 22px 18px; }
  .about-badge { position: static; display: inline-flex; flex-direction: column; margin-top: -20px; margin-right: 10px; }
  .arc-newsletter .btn { width: 100%; margin-left: 0 !important; margin-top: 8px; }
  .arc-map-wrap iframe { height: 300px; }
  .arc-map-wrap { margin-top: 40px; }
}

/* Compact header on very small phones */
@media (max-width: 480px) {
  .arc-header .navbar .container { --bs-gutter-x: 0.9rem; }
  .arc-actions { gap: 6px !important; }
  .arc-nav-btn { height: 38px; padding: 0 8px; }
  .arc-nav-btn i { font-size: 15px; }
  .arc-nav-btn .badge { min-width: 15px; height: 15px; font-size: 8.5px; }
  .arc-theme-toggle { width: 38px; height: 38px; font-size: 15px; }
  .navbar-toggler { padding: 4px 6px; }
  .arc-brand img.logo { height: 40px; }
  .hero-slider .swiper-slide { min-height: 470px; }
}
