/* ============================================================
   ServiceCarIQ — Premium Blue Chrome Theme
   Designed & developed by Giturn (https://giturn.com)
   Palette: Navy Dark Frame + Electric Blue + Chrome Silver + Light Surface
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Inter:wght@400;500;600;700&family=Tajawal:wght@400;500;700;900&display=swap');

:root {
  --bg-deep: #eef2f8;
  --bg-surface: #ffffff;
  --bg-elev: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f4f7fc;

  --dark-deep: #0b1220;
  --dark-surface: #131b2e;
  --dark-elev: #1a2438;
  --dark-card: #1a2438;

  --accent: #1e6fff;
  --accent-hot: #3b8bff;
  --accent-deep: #0b4ed4;
  --accent-soft: rgba(30, 111, 255, 0.14);
  --accent-glow: rgba(30, 111, 255, 0.55);

  --chrome-1: #f4f6fa;
  --chrome-2: #94a3b8;
  --chrome-3: #475569;
  --chrome-line: rgba(15, 23, 42, 0.10);
  --chrome-line-strong: rgba(15, 23, 42, 0.18);

  --dark-line: rgba(255, 255, 255, 0.08);
  --dark-line-strong: rgba(255, 255, 255, 0.18);

  --giturn-1: #6c63ff;
  --giturn-2: #8a7bff;

  --text: #0f172a;
  --text-strong: #050b1c;
  --text-muted: #475569;
  --text-dim: #64748b;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;

  --shadow-1: 0 1px 2px rgba(15, 23, 42, 0.06), 0 4px 12px rgba(15, 23, 42, 0.06);
  --shadow-2: 0 6px 18px rgba(15, 23, 42, 0.08), 0 24px 60px rgba(15, 23, 42, 0.10);
  --shadow-blue: 0 0 0 1px rgba(30, 111, 255, 0.30), 0 10px 30px rgba(30, 111, 255, 0.22);

  --font-display: 'Rajdhani', 'Tajawal', system-ui, sans-serif;
  --font-body: 'Inter', 'Tajawal', system-ui, -apple-system, sans-serif;

  --bs-body-bg: #eef2f8;
  --bs-body-color: #0f172a;
  --bs-border-color: rgba(15, 23, 42, 0.10);
  --bs-primary: #1e6fff;
  --bs-primary-rgb: 30, 111, 255;
}

/* ---------- dark sections scope (header/footer/menu/banners) ----------
   These sections keep a deep navy background. We override the CSS variables
   inside them so child elements automatically use light text and bright
   borders without needing per-rule overrides. */
#top,
header,
footer,
#menu,
[id^="carousel-banner-"].giturn-hero-slider {
  --text: #f1f5f9;
  --text-strong: #ffffff;
  --text-muted: #cbd5e1;
  --text-dim: #94a3b8;
  --chrome-line: rgba(255, 255, 255, 0.10);
  --chrome-line-strong: rgba(255, 255, 255, 0.22);
  --chrome-2: #cbd5e1;
}

/* ---------- base ---------- */
html, body {
  width: 100%;
  min-height: 100%;
}
body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  background-image:
    radial-gradient(1200px 600px at 12% -10%, rgba(30, 111, 255, 0.10), transparent 60%),
    radial-gradient(900px 500px at 95% 5%, rgba(11, 78, 212, 0.06), transparent 60%),
    repeating-linear-gradient(45deg, rgba(15, 23, 42, 0.018) 0 2px, transparent 2px 6px),
    linear-gradient(180deg, #f7f9fc 0%, #eef2f8 50%, #e7ecf4 100%);
  background-attachment: fixed;
  color: var(--text);
  letter-spacing: 0.01em;
}
a { color: var(--accent-deep); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent); }
hr { border-top: 1px solid var(--chrome-line); opacity: 1; }
p { color: var(--text); }
small, .small { color: var(--text-muted); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-strong);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
}
h1 { font-size: 2.1rem; }
h2 { font-size: 1.65rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
h5 { font-size: 1rem; }

legend {
  padding: 7px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--chrome-line);
  color: var(--text-strong);
  font-family: var(--font-display);
}
label { font-size: 13px; font-weight: 500; color: var(--text-muted); }

button:focus { outline: none !important; }

/* ---------- container ---------- */
#container {
  width: 100%;
  min-height: 100%;
  position: absolute;
  margin-bottom: 300px;
}
#content, #column-left, #column-right { padding-bottom: 730px; }
@media (min-width: 576px) {
  #content, #column-left, #column-right { padding-bottom: 400px; }
}

/* ---------- alert ---------- */
#alert {
  z-index: 9999;
  position: fixed;
  top: 30%;
  left: 50%;
  width: 400px;
  margin-left: -200px;
}
@media (min-width: 992px) { #alert { width: 600px; margin-left: -300px; } }
#alert .alert {
  margin-bottom: 15px;
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--chrome-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-2);
}
#alert .alert-success { border-color: rgba(60, 200, 120, 0.4); box-shadow: 0 0 0 1px rgba(60, 200, 120, 0.25), var(--shadow-2); }
#alert .alert-danger  { border-color: var(--accent); box-shadow: var(--shadow-red); }
#alert .alert-warning { border-color: rgba(255, 180, 0, 0.4); }
#alert .alert-info    { border-color: rgba(80, 160, 255, 0.4); }

/* ---------- top utility bar ---------- */
#top {
  position: relative;
  z-index: 1200;
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.95) 0%, rgba(19, 27, 46, 0.92) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--chrome-line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 6px 18px rgba(11, 18, 32, 0.30);
  margin-bottom: 0;
  padding: 4px 0 4px;
}
#top::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent) 50%, transparent);
  opacity: 0.85;
}
#top ul.list-inline { margin-bottom: 0; }
#top .list-inline-item > a,
#top .list-inline-item .dropdown > a {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 40px;
  vertical-align: middle;
  padding: 10px 0 5px;
  transition: color .2s ease, text-shadow .2s ease;
}
#top .list-inline-item > a:hover,
#top .list-inline-item .dropdown > a:hover {
  color: var(--text-strong);
  text-shadow: 0 0 10px rgba(30, 111, 255, 0.55);
}
#top i { color: var(--accent-hot); margin-right: 4px; }

/* ---------- header ---------- */
header {
  position: relative;
  padding: 14px 0 18px;
  background: linear-gradient(180deg, #0d1730 0%, #0b1220 100%);
  border-bottom: 1px solid var(--chrome-line);
  overflow: hidden;
}
header::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  width: 520px; height: 240px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(30, 111, 255, 0.35), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}
header::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45) 50%, transparent);
  opacity: 0.35;
}

#logo { text-align: center; margin: 6px 0; position: relative; z-index: 1; }
#logo img {
  max-width: 220px;
  max-height: 72px;
  filter: drop-shadow(0 4px 18px rgba(30, 111, 255, 0.35)) drop-shadow(0 1px 0 rgba(255, 255, 255, 0.05));
  transition: transform .35s ease, filter .35s ease;
}
#logo img:hover {
  transform: translateY(-1px) scale(1.02);
  filter: drop-shadow(0 8px 24px rgba(30, 111, 255, 0.55));
}
#logo h1 { color: var(--text-strong); margin: 0; }
#logo h1 a { color: var(--text-strong); }
@media (min-width: 768px) { #logo { text-align: left; } }

/* ---------- search ---------- */
#search { margin-bottom: 10px; position: relative; z-index: 1; }
#search form.input-group {
  border-radius: 999px;
  background: linear-gradient(180deg, #1a2438, #131b2e);
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 8px 24px rgba(11, 18, 32, 0.50);
  transition: box-shadow .25s ease, border-color .25s ease;
}
#search form.input-group:focus-within {
  border-color: rgba(30, 111, 255, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 0 4px rgba(30, 111, 255, 0.20), 0 10px 30px rgba(30, 111, 255, 0.28);
}
#search .form-control,
#search .form-control-lg {
  height: 44px;
  font-size: 0.95rem;
  line-height: 22px;
  padding: 0 18px;
  background: transparent;
  color: #ffffff;
  border: 0;
  box-shadow: none;
  border-radius: 999px;
}
#search .form-control::placeholder { color: rgba(255, 255, 255, 0.55); }
#search .form-control:focus { box-shadow: none; outline: none; color: #ffffff; background: transparent; }
#search .btn,
#search .btn-lg {
  font-size: 15px;
  line-height: 18px;
  padding: 0 22px;
  height: 44px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #3b8bff 0%, #0b4ed4 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 4px 14px rgba(30, 111, 255, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  text-shadow: 0 1px 0 rgba(11, 18, 32, 0.35);
  transition: transform .15s ease, box-shadow .25s ease;
}
#search .btn:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(30, 111, 255, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.26); }
#search .btn:active { transform: translateY(0); }

/* ---------- cart (header) ---------- */
#cart { margin-bottom: 10px; position: relative; z-index: 1; }
#cart .btn,
#cart .btn-lg {
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 18px;
  padding: 12px 28px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #243152 0%, #131b2e 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10), 0 6px 18px rgba(11, 18, 32, 0.45);
  transition: transform .15s ease, box-shadow .25s ease, border-color .25s ease;
}
#cart .btn:hover {
  transform: translateY(-1px);
  border-color: var(--accent-hot);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 0 1px rgba(30, 111, 255, 0.30), 0 10px 26px rgba(30, 111, 255, 0.32);
}
#cart .btn i { color: var(--accent-hot); margin-right: 6px; }
#cart .img-thumbnail { min-width: 100px; background: #ffffff; border: 1px solid rgba(15, 23, 42, 0.10); }
#cart .dropdown-menu {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.18);
  padding: 14px;
  --text: #0f172a;
  --text-strong: #050b1c;
  --text-muted: #475569;
  --chrome-line: rgba(15, 23, 42, 0.10);
}
#cart .dropdown-menu li { min-width: 320px; color: #0f172a; }
#cart .dropdown-menu table { color: #0f172a; }
#cart .dropdown-menu table.table > :not(caption) > * > * { background: transparent; color: #0f172a; border-bottom-color: rgba(15, 23, 42, 0.10); }
#cart .dropdown-menu .btn-danger {
  background: linear-gradient(180deg, #ff5c5c, #c91414);
  border: 0; box-shadow: 0 4px 12px rgba(201, 20, 20, 0.30);
}
@media (max-width: 768px) { #cart .dropdown-menu li { min-width: 100%; } }

/* ---------- top dropdowns scope (inherits dark) ---------- */
#top .dropdown-menu {
  position: absolute;
  z-index: 1300;
  background: #131b2e;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 18px 50px rgba(11, 18, 32, 0.55);
}
#top .dropdown-menu .dropdown-item { color: #f1f5f9; }
#top .dropdown-menu .dropdown-item:hover,
#top .dropdown-menu .dropdown-item:focus { background: rgba(30, 111, 255, 0.18); color: #ffffff; }

/* ---------- top dropdowns (account) ---------- */
.dropdown-menu {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.14);
  padding: 6px;
}
.dropdown-item {
  color: #0f172a;
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  transition: background .15s ease, color .15s ease;
}
.dropdown-item:hover, .dropdown-item:focus {
  background: rgba(30, 111, 255, 0.10);
  color: var(--accent-deep);
}
.dropdown-divider { border-top-color: rgba(15, 23, 42, 0.10); }

/* ---------- menu / navbar ---------- */
#menu {
  position: relative;
  background: linear-gradient(180deg, #131b2e 0%, #0b1220 100%) !important;
  background-image: linear-gradient(180deg, #131b2e 0%, #0b1220 100%), repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 4px) !important;
  border: 1px solid rgba(255, 255, 255, 0.10);
  min-height: 48px;
  border-radius: var(--radius);
  padding: 0 1rem;
  margin: 18px 0 26px;
  box-shadow: 0 10px 30px rgba(11, 18, 32, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
#menu::before {
  content: '';
  position: absolute;
  left: 12px; right: 12px; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent) 50%, transparent);
  opacity: 0.85;
  border-radius: 2px;
}
#menu .navbar-nav > li > a,
#menu .navbar-nav .nav-link {
  position: relative;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.92rem;
  padding: 14px 18px;
  background-color: transparent;
  text-shadow: none;
  transition: color .2s ease;
}
#menu .navbar-nav > li > a::after,
#menu .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 18px; right: 18px; bottom: 6px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s ease;
}
#menu .navbar-nav > li > a:hover,
#menu .navbar-nav .nav-link:hover,
#menu .navbar-nav .nav-item.show > .nav-link {
  color: #fff;
  background: transparent;
}
#menu .navbar-nav > li > a:hover::after,
#menu .navbar-nav .nav-link:hover::after,
#menu .navbar-nav .nav-item.show > .nav-link::after {
  transform: scaleX(1);
}
#menu .dropdown-menu {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-top: 2px solid var(--accent);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 14px;
  margin-top: 0;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
}
#menu .dropdown-inner { display: flex; flex-direction: column; gap: 4px; }
#menu .dropdown-inner ul { width: 100%; min-width: 200px; margin: 0; }
#menu .dropdown-inner .dropdown-item {
  color: #0f172a;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}
#menu .dropdown-inner .dropdown-item:hover { background: rgba(30, 111, 255, 0.10); color: var(--accent-deep); }
@media (min-width: 960px) {
  #menu .dropdown:hover .dropdown-menu { display: block; }
  #menu .dropdown-inner { flex-direction: row; }
  #menu .nav-item + .nav-item + .nav-item .dropdown-column-3 { left: -200px; }
  #menu .nav-item + .nav-item + .nav-item .dropdown-column-4 { left: -400px; }
  #menu .nav-item + .nav-item + .nav-item + .nav-item .dropdown-column-2 { left: -200px; }
  #menu .nav-item + .nav-item + .nav-item + .nav-item .dropdown-column-3 { left: -400px; }
  #menu .nav-item + .nav-item + .nav-item + .nav-item .dropdown-column-4 { left: -600px; }
}
#category {
  float: left;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  line-height: 48px;
  color: #fff;
  text-shadow: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
#menu .navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
}
#menu .navbar-toggler i { color: var(--accent-hot); font-size: 1rem; }

/* ---------- bootstrap form/required defaults ---------- */
div.required .col-form-label:before,
div.required .form-label:before {
  content: "* ";
  color: var(--accent);
  font-weight: bold;
}
.form-label, .col-form-label { color: var(--text); font-weight: 500; }
.form-control, .form-select {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: var(--radius-sm);
}
.form-control:focus, .form-select:focus {
  background: #ffffff;
  color: #0f172a;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-control::placeholder { color: var(--text-dim); }
.form-check-input {
  background-color: #ffffff;
  border-color: rgba(15, 23, 42, 0.30);
}
.form-check-input:checked { background-color: var(--accent); border-color: var(--accent); }
.input-group-text {
  background: linear-gradient(180deg, #f4f6fa, #e7ecf4);
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.12);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}
.form-switch-lg { font-size: 20px; min-height: 30px; line-height: 30px; }
.nav-tabs { margin-bottom: 15px; border-bottom: 1px solid var(--chrome-line); }
.nav-tabs .nav-link {
  color: var(--text-muted);
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 12px 18px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  background: transparent;
}
.nav-tabs .nav-link:hover { color: var(--text-strong); border-color: var(--chrome-line-strong); }
.nav-tabs .nav-link.active {
  color: #fff;
  background: transparent;
  border-color: var(--accent);
  position: relative;
}
.nav-tabs .nav-link.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 6px;
  background: radial-gradient(closest-side, rgba(30, 111, 255, 0.45), transparent 70%);
}
.nav-tabs .nav-link.active { color: var(--accent-deep); }
.form-check .form-check-input { margin-top: 0.25rem; }
@media (min-width: 768px) { .col-form-label { text-align: right; } }

/* ---------- buttons (global) ---------- */
.btn { font-family: var(--font-display); letter-spacing: 0.04em; font-weight: 600; }
.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #3b8bff 0%, #0b4ed4 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 6px 18px rgba(30, 111, 255, 0.40), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  text-shadow: 0 1px 0 rgba(11, 18, 32, 0.35);
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(180deg, #5fa3ff 0%, #0d57e2 100%);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 26px rgba(30, 111, 255, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.26);
  transform: translateY(-1px);
  color: #fff;
}
.btn-primary:active { transform: translateY(0); }
.btn-light {
  background: linear-gradient(180deg, #ffffff 0%, #eef2f8 100%);
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 4px 12px rgba(15, 23, 42, 0.08);
}
.btn-light:hover { color: var(--accent-deep); border-color: var(--accent); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1), 0 0 0 1px var(--accent-soft), 0 8px 22px rgba(30, 111, 255, 0.18); }
.btn-dark {
  background: linear-gradient(180deg, #1a2438, #0b1220);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #fff;
}
.btn-danger {
  background: linear-gradient(180deg, #ff5c5c, #c91414);
  border: 0;
  box-shadow: 0 4px 12px rgba(201, 20, 20, 0.30);
}
.btn-success {
  background: linear-gradient(180deg, #22c55e, #15803d);
  border: 0;
  color: #fff;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.30);
}
.btn-info {
  background: linear-gradient(180deg, #38bdf8, #0284c7);
  border: 0;
  color: #fff;
}
.btn-warning {
  background: linear-gradient(180deg, #fbbf24, #d97706);
  border: 0;
  color: #1a1a1a;
}
.btn-outline-primary {
  color: var(--accent-deep);
  border-color: var(--accent);
  background: transparent;
}
.btn-outline-primary:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ---------- footer ---------- */
footer {
  position: absolute;
  bottom: -1px;
  width: 100%;
  padding: 50px 0 24px;
  background:
    radial-gradient(600px 240px at 50% -40%, rgba(30, 111, 255, 0.18), transparent 70%),
    linear-gradient(180deg, #0d1730 0%, #070d1c 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent) 50%, transparent);
  box-shadow: 0 0 18px rgba(30, 111, 255, 0.55);
}
footer hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  margin: 28px 0 18px;
}
footer a { color: var(--text-muted); text-decoration: none; }
footer a:hover { color: var(--accent-hot); }
footer h5 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin: 8px 0 16px;
  position: relative;
  padding-bottom: 10px;
}
footer h5::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 38px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
footer ul.list-unstyled li { padding: 4px 0; }
footer ul.list-unstyled li a { transition: color .2s ease, padding-left .2s ease; }
footer ul.list-unstyled li a:hover { padding-left: 4px; }

/* ---------- giturn credit block ---------- */
.giturn-credit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(26, 36, 56, 0.7), rgba(13, 23, 48, 0.7));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 8px 22px rgba(11, 18, 32, 0.45);
}
.giturn-credit__copy {
  color: var(--text-muted);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}
.giturn-credit__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1a2438, #0b1220);
  border: 1px solid rgba(108, 99, 255, 0.45);
  box-shadow: 0 0 0 1px rgba(108, 99, 255, 0.10), 0 8px 22px rgba(108, 99, 255, 0.25);
  transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease;
}
.giturn-credit__brand:hover {
  transform: translateY(-1px);
  border-color: rgba(138, 123, 255, 0.7);
  box-shadow: 0 0 0 1px rgba(138, 123, 255, 0.2), 0 10px 28px rgba(108, 99, 255, 0.35);
}
.giturn-credit__label {
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.giturn-credit__logo {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: cover;
  background: #000;
  box-shadow: 0 0 14px rgba(138, 123, 255, 0.45);
}
.giturn-credit__name {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 0.95rem;
  background: linear-gradient(90deg, var(--giturn-1), var(--giturn-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- breadcrumb ---------- */
.breadcrumb {
  margin: 0 0 22px 0;
  padding: 10px 14px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f4f7fc);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 4px 14px rgba(15, 23, 42, 0.05);
}
.breadcrumb i { font-size: 14px; color: var(--accent); }
.breadcrumb > li.breadcrumb-item {
  text-shadow: none;
  padding: 0 14px;
  position: relative;
  white-space: nowrap;
  color: var(--text-muted);
}
.breadcrumb > li.breadcrumb-item > a { text-decoration: none; color: var(--accent-deep); }
.breadcrumb > li.breadcrumb-item > a:hover { color: var(--accent); }
.breadcrumb > li.breadcrumb-item.active { color: var(--text-strong); }
.breadcrumb > li.breadcrumb-item + li::before { content: ''; padding: 0; }
.breadcrumb > li.breadcrumb-item:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: -6px;
  width: 8px; height: 8px;
  transform: translateY(-50%) rotate(-45deg);
  border-right: 1px solid rgba(15, 23, 42, 0.20);
  border-bottom: 1px solid rgba(15, 23, 42, 0.20);
}
.breadcrumb > li.breadcrumb-item:last-child::after { display: none; }

/* ---------- product card (.product-thumb) ---------- */
.product-thumb {
  position: relative;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-lg);
  height: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, 0 10px 24px rgba(15, 23, 42, 0.07);
}
.product-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(30, 111, 255, 0.04), transparent 30%);
  pointer-events: none;
}
.product-thumb::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity .35s ease;
}
.product-thumb:hover {
  transform: perspective(900px) rotateX(2deg) translateY(-4px);
  border-color: rgba(30, 111, 255, 0.40);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 0 0 1px rgba(30, 111, 255, 0.20), 0 20px 50px rgba(15, 23, 42, 0.12), 0 12px 36px rgba(30, 111, 255, 0.18);
}
.product-thumb:hover::after { opacity: 1; }
.product-thumb .image {
  text-align: center;
  background:
    repeating-linear-gradient(45deg, rgba(15, 23, 42, 0.02) 0 1px, transparent 1px 4px),
    radial-gradient(closest-side at 50% 40%, rgba(30, 111, 255, 0.08), transparent 70%),
    #f4f7fc;
  padding: 22px 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  overflow: hidden;
}
.product-thumb .image a { display: inline-block; transition: transform .4s ease; }
.product-thumb .image a img { transition: transform .5s ease, filter .35s ease; }
.product-thumb:hover .image a img {
  transform: perspective(800px) rotateY(-6deg) scale(1.05);
  filter: drop-shadow(0 16px 26px rgba(15, 23, 42, 0.20)) drop-shadow(0 0 18px rgba(30, 111, 255, 0.25));
}
.product-thumb .description {
  padding: 18px 16px;
  margin-bottom: 48px;
}
.product-thumb .description h4 {
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: 8px;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}
.product-thumb .description h4 a { color: var(--text-strong); }
.product-thumb .description h4 a:hover { color: var(--accent); }
.product-thumb .description p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 10px; }
.product-thumb .button {
  display: flex;
  position: absolute;
  width: 100%;
  bottom: 0;
  background: linear-gradient(180deg, #f4f7fc, #e7ecf4);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.product-thumb .button button {
  width: 33.33%;
  border: none;
  border-top: 0;
  background-color: transparent;
  color: var(--text-muted);
  line-height: 42px;
  text-align: center;
  font-size: 0.95rem;
  transition: color .2s ease, background .2s ease;
}
.product-thumb .button button:hover {
  color: var(--accent-deep);
  background-color: rgba(30, 111, 255, 0.10);
  text-decoration: none;
  cursor: pointer;
}
.product-thumb .button button:first-child:hover { color: var(--accent-deep); }
.product-thumb .button button + button {
  border-left: 1px solid rgba(15, 23, 42, 0.08);
}
@media (min-width: 960px) {
  .product-list .product-thumb { display: flex; }
  .product-list .product-thumb .image { flex-direction: column; margin-bottom: 0; border-bottom: 0; border-right: 1px solid rgba(15, 23, 42, 0.08); min-width: 240px; }
  .product-list .product-thumb .content { flex-direction: column; flex: 75%; position: relative; }
  .product-list .product-thumb .button {
    border-left: 1px solid rgba(15, 23, 42, 0.08);
    width: calc(100% - 15px);
    margin-left: 15px;
  }
}

/* ---------- homepage luxury product cards ---------- */
#common-home .luxury-product-card {
  border-radius: 20px;
  background:
    radial-gradient(460px 180px at 0% 0%, rgba(30, 111, 255, 0.06), transparent 70%),
    linear-gradient(165deg, #ffffff 0%, #f7f9fc 45%, #eef2f8 100%);
  border-color: rgba(15, 23, 42, 0.10);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.10), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}
#common-home .luxury-product-card::after {
  width: 4px;
  background: linear-gradient(180deg, transparent, #3b8bff, #1e6fff, transparent);
}
#common-home .luxury-product-card .image {
  padding: 20px 18px 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), transparent 55%),
    radial-gradient(closest-side at 50% 35%, rgba(30, 111, 255, 0.10), transparent 72%),
    #f4f7fc;
}
#common-home .luxury-product-card .product-image-link {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.10);
  background: #ffffff;
}
#common-home .luxury-product-card .product-image-link img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
#common-home .luxury-product-card .product-meta {
  margin-bottom: 56px;
}
#common-home .luxury-product-card .product-title {
  font-size: 1.18rem;
  line-height: 1.25;
  min-height: 2.5em;
  margin-bottom: 10px;
}
#common-home .luxury-product-card .product-short-description {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  min-height: 2.8em;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#common-home .luxury-product-card .product-price-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #f4f7fc);
  border: 1px solid rgba(30, 111, 255, 0.30);
  box-shadow: 0 0 0 1px rgba(30, 111, 255, 0.15), 0 10px 22px rgba(15, 23, 42, 0.10);
}
#common-home .luxury-product-card .product-price-box .price-new {
  font-size: 1.45rem;
  letter-spacing: 0.01em;
}
#common-home .luxury-product-card .product-price-box .price-old {
  font-size: 0.98rem;
}
#common-home .luxury-product-card .product-rating {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  margin-top: 8px;
  border-radius: 999px;
  background: rgba(255, 180, 0, 0.10);
  border: 1px solid rgba(255, 180, 0, 0.30);
}
#common-home .luxury-product-card .product-actions {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
}
#common-home .luxury-product-card .product-actions button {
  line-height: 46px;
}
#common-home .luxury-product-card .product-actions .btn-cart-action {
  background: linear-gradient(180deg, #3b8bff 0%, #0b4ed4 100%);
  color: #fff;
}
#common-home .luxury-product-card .product-actions .btn-cart-action:hover {
  background: linear-gradient(180deg, #5fa3ff 0%, #0d57e2 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22), 0 0 24px rgba(30, 111, 255, 0.50);
}
#common-home .luxury-product-card .product-actions .btn-wishlist-action:hover,
#common-home .luxury-product-card .product-actions .btn-compare-action:hover {
  background-color: rgba(30, 111, 255, 0.14);
  color: var(--accent-deep);
}
@media (max-width: 767px) {
  #common-home .luxury-product-card .product-title {
    font-size: 1.05rem;
    min-height: auto;
  }
  #common-home .luxury-product-card .product-short-description {
    min-height: auto;
  }
}

/* ---------- rating ---------- */
.rating .fa-stack { width: 20px; }
.rating .fa-star { color: #cbd5e1; font-size: 15px; }
.rating .fa-solid.fa-star { color: #f59e0b; }
.rating .fa-star + .fa-star { color: #f59e0b; }

/* ---------- prices ---------- */
.price { color: var(--text-strong); font-family: var(--font-display); font-weight: 700; letter-spacing: 0.02em; }
.price-new {
  font-weight: 700;
  color: var(--accent-deep);
  font-size: 1.25rem;
  text-shadow: 0 0 18px rgba(30, 111, 255, 0.18);
}
.price-old {
  color: var(--text-dim);
  text-decoration: line-through;
  font-size: 0.95rem;
  margin-left: 8px;
}
.price-tax { color: var(--text-muted); font-size: 12px; display: block; font-family: var(--font-body); font-weight: 400; }

/* ---------- product page (#product-info) ---------- */
#product-info { padding-top: 18px; }
#product-info > .row { gap: 0; }
#product-info .image.magnific-popup {
  position: relative;
  padding: 18px;
  background:
    repeating-linear-gradient(45deg, rgba(15, 23, 42, 0.02) 0 1px, transparent 1px 5px),
    radial-gradient(closest-side at 50% 35%, rgba(30, 111, 255, 0.10), transparent 70%),
    linear-gradient(180deg, #ffffff, #f4f7fc);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.10);
  overflow: hidden;
}
#product-info .image.magnific-popup::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
#product-info .image.magnific-popup > a:first-child {
  display: block;
  perspective: 1200px;
}
#product-info .image.magnific-popup > a:first-child img {
  display: block;
  width: 100%;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 10px;
  transition: transform .5s ease, box-shadow .5s ease;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.10);
}
#product-info .image.magnific-popup > a:first-child:hover img {
  transform: rotateY(-6deg) rotateX(2deg) translateY(-2px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(30, 111, 255, 0.30);
}
#product-info .image.magnific-popup > div {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}
#product-info .image.magnific-popup > div a {
  flex: 0 0 auto;
}
#product-info .image.magnific-popup > div img.img-thumbnail {
  width: 78px; height: 78px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.10);
  padding: 4px;
  transition: border-color .2s ease, transform .2s ease;
}
#product-info .image.magnific-popup > div a:hover img.img-thumbnail {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.img-thumbnail {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.10);
}

#product-info #content > .row > .col-sm:nth-child(2),
#product-info #content > .row > div + .col-sm {
  /* info card panel */
}
#product-info h1 {
  font-size: 2rem;
  margin-bottom: 14px;
  background: linear-gradient(180deg, #0b1220, #1e6fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
#product-info ul.list-unstyled li { color: var(--text-muted); padding: 3px 0; }
#product-info ul.list-unstyled li strong { color: var(--text-strong); }
#product-info ul.list-unstyled h2 .price-new { font-size: 2rem; line-height: 1; }

#product-info form[data-oc-toggle="ajax"] .btn-group { gap: 8px; }
#product-info form[data-oc-toggle="ajax"] .btn-group .btn { border-radius: var(--radius-sm) !important; }

#product .input-group {
  background: linear-gradient(180deg, #ffffff, #f4f7fc);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  padding: 6px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1), 0 10px 24px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}
#product .input-group .input-group-text {
  background: transparent;
  border: 0;
  color: var(--text-muted);
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}
#product .input-group .form-control {
  background: transparent;
  border: 0;
  color: var(--text-strong);
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  max-width: 70px;
}
#product .input-group .form-control:focus { box-shadow: none; }
#product #button-cart {
  flex: 1;
  border-radius: 999px !important;
  padding: 12px 26px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  background: linear-gradient(180deg, #3b8bff 0%, #073cb0 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 24px rgba(30, 111, 255, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: transform .15s ease, box-shadow .25s ease;
}
#product #button-cart:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(30, 111, 255, 0.60), inset 0 1px 0 rgba(255, 255, 255, 0.26); }
#product #button-cart:active { transform: translateY(0); }

#product-info .tab-content {
  background: linear-gradient(180deg, #ffffff, #f4f7fc);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: var(--radius);
  padding: 22px;
  margin-top: -1px;
}
#product-info .tab-content p { color: var(--text); }
#product-info table.table {
  color: var(--text);
  --bs-table-bg: transparent;
  --bs-table-color: var(--text);
  --bs-table-border-color: var(--chrome-line);
}
#product-info table.table thead td { color: var(--text-strong); font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.06em; }

.alert {
  background: #ffffff;
  color: var(--text);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: var(--radius);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}
.alert-success { border-color: rgba(34, 197, 94, 0.40); color: #166534; background: #f0fdf4; }
.alert-danger { border-color: rgba(220, 38, 38, 0.40); color: #991b1b; background: #fef2f2; }
.alert-warning { border-color: rgba(245, 158, 11, 0.40); color: #92400e; background: #fffbeb; }
.alert-info { border-color: rgba(30, 111, 255, 0.30); color: var(--accent-deep); background: #eff6ff; }
.alert i { color: var(--accent); margin-right: 6px; }

/* ---------- pagination ---------- */
.pagination .page-link {
  background: #ffffff;
  color: var(--text);
  border: 1px solid rgba(15, 23, 42, 0.12);
  margin: 0 3px;
  border-radius: var(--radius-sm);
}
.pagination .page-link:hover { background: rgba(30, 111, 255, 0.10); color: var(--accent-deep); border-color: var(--accent); }
.pagination .page-item.active .page-link {
  background: linear-gradient(180deg, #3b8bff, #0b4ed4);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 6px 16px rgba(30, 111, 255, 0.40);
}

/* ---------- tables ---------- */
.table {
  --bs-table-bg: #ffffff;
  --bs-table-color: var(--text);
  --bs-table-striped-bg: rgba(15, 23, 42, 0.025);
  --bs-table-striped-color: var(--text);
  --bs-table-hover-bg: rgba(30, 111, 255, 0.08);
  --bs-table-hover-color: var(--accent-deep);
  --bs-table-border-color: rgba(15, 23, 42, 0.10);
  color: var(--text);
  border-color: rgba(15, 23, 42, 0.10);
}
.table > :not(caption) > * > * { background-color: transparent; color: var(--text); border-bottom-color: rgba(15, 23, 42, 0.10); }
.table thead th { color: var(--text-strong); background: #f4f7fc; }

/* ---------- card bootstrap ---------- */
.card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.10);
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}
.card-header, .card-footer { background: #f4f7fc; border-color: rgba(15, 23, 42, 0.10); color: var(--text-strong); }

/* ---------- blog ---------- */
.blog-thumb {
  border: 1px solid rgba(15, 23, 42, 0.10);
  margin-bottom: 15px;
  background: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}
.blog-thumb h4 { font-weight: 700; }
.blog-thumb .image { text-align: center; margin-bottom: 15px; }
.blog-thumb .image a:hover { opacity: 0.85; }
.blog-thumb .description { padding: 15px; }

/* ---------- cookie banner ---------- */
#cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 110px;
  z-index: 9999;
  opacity: 0.98;
  color: #f1f5f9;
  background: linear-gradient(180deg, rgba(19, 27, 46, 0.96), rgba(11, 18, 32, 0.96));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 -8px 30px rgba(11, 18, 32, 0.55);
}
#cookie div { font-size: 0.95rem; color: #FFFFFF; }
#cookie .btn-primary { font-weight: 600; }

/* ---------- banner slider ---------- */
[id^="carousel-banner-"].giturn-hero-slider {
  position: relative;
  margin: 0 0 30px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background:
    radial-gradient(700px 240px at 10% -20%, rgba(30, 111, 255, 0.20), transparent 70%),
    linear-gradient(180deg, #131b2e 0%, #0b1220 100%);
  box-shadow: 0 24px 60px rgba(11, 18, 32, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  overflow: hidden;
}
[id^="carousel-banner-"].giturn-hero-slider::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 20px rgba(30, 111, 255, 0.55);
  z-index: 2;
}
[id^="carousel-banner-"].giturn-hero-slider .carousel-inner {
  border-radius: 18px;
}
[id^="carousel-banner-"].giturn-hero-slider .carousel-item {
  padding: 10px 12px 18px;
}
[id^="carousel-banner-"].giturn-hero-slider .giturn-slide-frame {
  display: block;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(11, 18, 32, 0.35);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
[id^="carousel-banner-"].giturn-hero-slider .giturn-slide-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(30, 111, 255, 0.04) 30%, rgba(11, 18, 32, 0.05) 100%);
  pointer-events: none;
}
[id^="carousel-banner-"].giturn-hero-slider .giturn-slide-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .9s ease, filter .35s ease;
}
[id^="carousel-banner-"].giturn-hero-slider .carousel-item.active .giturn-slide-frame img {
  transform: scale(1.03);
}
[id^="carousel-banner-"].giturn-hero-slider .giturn-slide-frame:hover {
  transform: translateY(-3px);
  border-color: rgba(30, 111, 255, 0.55);
  box-shadow: 0 22px 44px rgba(11, 18, 32, 0.45), 0 0 0 1px rgba(30, 111, 255, 0.25);
}
[id^="carousel-banner-"].giturn-hero-slider .carousel-control-prev,
[id^="carousel-banner-"].giturn-hero-slider .carousel-control-next {
  width: 48px;
  height: 48px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(36, 49, 82, 0.95), rgba(19, 27, 46, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 26px rgba(11, 18, 32, 0.45);
  opacity: 0.95;
}
[id^="carousel-banner-"].giturn-hero-slider .carousel-control-prev { right: 16px; left: auto; }
[id^="carousel-banner-"].giturn-hero-slider .carousel-control-next { left: 16px; right: auto; }
[id^="carousel-banner-"].giturn-hero-slider .carousel-control-prev:hover,
[id^="carousel-banner-"].giturn-hero-slider .carousel-control-next:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(30, 111, 255, 0.30), 0 10px 30px rgba(30, 111, 255, 0.40);
}
[id^="carousel-banner-"].giturn-hero-slider .carousel-control-prev span,
[id^="carousel-banner-"].giturn-hero-slider .carousel-control-next span {
  color: #fff;
  font-size: 1rem;
  text-shadow: 0 0 14px rgba(30, 111, 255, 0.55);
}
[id^="carousel-banner-"].giturn-hero-slider .carousel-indicators {
  margin-bottom: 10px;
  gap: 8px;
}
[id^="carousel-banner-"].giturn-hero-slider .carousel-indicators button {
  width: 26px;
  height: 6px;
  border-radius: 999px;
  border: 0;
  background-color: rgba(255, 255, 255, 0.30);
  box-shadow: none;
  transition: width .2s ease, background-color .2s ease;
}
[id^="carousel-banner-"].giturn-hero-slider .carousel-indicators button.active {
  width: 38px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hot));
  box-shadow: 0 0 12px rgba(30, 111, 255, 0.55);
}
@media (max-width: 767px) {
  [id^="carousel-banner-"].giturn-hero-slider .carousel-control-prev,
  [id^="carousel-banner-"].giturn-hero-slider .carousel-control-next {
    width: 40px;
    height: 40px;
  }
  [id^="carousel-banner-"].giturn-hero-slider .carousel-control-prev { right: 8px; left: auto; }
  [id^="carousel-banner-"].giturn-hero-slider .carousel-control-next { left: 8px; right: auto; }
}

/* ---------- responsive header layout fix ---------- */
@media (max-width: 767px) {
  header { padding: 18px 0 14px; }
  #logo img { max-height: 56px; }
  .giturn-credit { justify-content: center; text-align: center; }
}

/* ============================================================
   Brand strip — pure CSS continuous marquee (server-rendered).
   RTL variant: the track is forced to LTR layout internally,
   then animated in reverse so logos visually flow left-to-right,
   matching the Arabic reading direction. Seamless loop via -33.3333%.
   ============================================================ */
.brand-strip-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 26px 0;
  margin-top: 40px;
  background:
    radial-gradient(700px 220px at 50% -40%, rgba(30, 111, 255, 0.20), transparent 70%),
    linear-gradient(180deg, #131b2e 0%, #0b1220 100%);
  direction: ltr;
}
.brand-strip-marquee::before,
.brand-strip-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}
.brand-strip-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(11, 18, 32, 1) 0%, rgba(11, 18, 32, 0) 100%);
}
.brand-strip-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(11, 18, 32, 1) 0%, rgba(11, 18, 32, 0) 100%);
}
.brand-strip-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 22px;
  width: max-content;
  will-change: transform;
  animation: brand-strip-scroll-rtl 38s linear infinite;
}
.brand-strip-marquee:hover .brand-strip-track {
  animation-play-state: paused;
}
.brand-strip-item {
  flex: 0 0 auto;
  width: 170px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 18px 14px;
  box-shadow: 0 10px 26px rgba(11, 18, 32, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  text-decoration: none;
}
.brand-strip-item img {
  max-width: 100%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 3px 6px rgba(15, 23, 42, 0.10));
  transition: filter .3s ease, transform .3s ease;
}
.brand-strip-item:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 111, 255, 0.55);
  box-shadow: 0 16px 36px rgba(11, 18, 32, 0.5), 0 0 0 1px rgba(30, 111, 255, 0.25), 0 0 24px rgba(30, 111, 255, 0.25);
}
.brand-strip-item:hover img {
  filter: drop-shadow(0 8px 14px rgba(30, 111, 255, 0.30));
  transform: scale(1.04);
}

@keyframes brand-strip-scroll-rtl {
  from { transform: translate3d(-33.3333%, 0, 0); }
  to   { transform: translate3d(0, 0, 0); }
}

@media (max-width: 767px) {
  .brand-strip-track { gap: 16px; }
  .brand-strip-item { width: 138px; height: 90px; padding: 12px 10px; }
  .brand-strip-item img { max-height: 58px; }
  .brand-strip-marquee { padding: 20px 0; margin-top: 28px; }
  .brand-strip-marquee::before,
  .brand-strip-marquee::after { width: 60px; }
}

/* ---------- scrollbar (webkit) ---------- */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #e7ecf4; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #94a3b8, #64748b);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #3b8bff, #0b4ed4); }

/* ---------- text selection ---------- */
::selection { background: rgba(30, 111, 255, 0.35); color: #fff; }
/* ============================================================
   RTL — directional overrides for Arabic
   ============================================================ */

body, html { direction: rtl; }
body { font-family: 'Tajawal', 'Inter', system-ui, sans-serif; letter-spacing: 0; }
h1, h2, h3, h4, h5, h6 { font-family: 'Tajawal', 'Rajdhani', system-ui, sans-serif; letter-spacing: 0; }

/* logo alignment on desktop */
@media (min-width: 768px) {
  #logo { text-align: right; }
}

/* top utility */
#top i { margin-right: 0; margin-left: 4px; }

/* cart button icon spacing */
#cart .btn i { margin-right: 0; margin-left: 6px; }

/* category float in menu */
#category { float: right; }

/* menu underline origin (animate from the right) */
#menu .navbar-nav > li > a::after,
#menu .navbar-nav .nav-link::after { transform-origin: right center; }

/* required form star */
div.required .col-form-label:before,
div.required .form-label:before { content: " *"; }

/* col-form-label alignment */
@media (min-width: 768px) {
  .col-form-label { text-align: left; }
}

/* footer h5 underline (right aligned) */
footer h5::after { left: auto; right: 0; }

/* footer list hover indent reversed */
footer ul.list-unstyled li a:hover { padding-left: 0; padding-right: 4px; }

/* breadcrumb chevron flipped */
.breadcrumb > li.breadcrumb-item:after {
  right: auto;
  left: -6px;
  border-right: 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.20);
  border-left: 1px solid rgba(15, 23, 42, 0.20);
  transform: translateY(-50%) rotate(45deg);
}

/* alert icon spacing */
.alert i { margin-right: 0; margin-left: 6px; }

/* breadcrumb i icon spacing */
.breadcrumb i { margin-left: 6px; }

/* product card accent strip on the right (was red, now blue) */
.product-thumb::after { left: auto; right: 0; }

/* product image hover rotateY flipped */
.product-thumb:hover .image a img {
  transform: perspective(800px) rotateY(6deg) scale(1.05);
}

/* product list (RTL) layout: image on right side */
@media (min-width: 960px) {
  .product-list .product-thumb .image { border-right: 0; border-left: 1px solid rgba(15, 23, 42, 0.08); }
  .product-list .product-thumb .button { margin-left: 0; margin-right: 15px; border-left: 0; border-right: 1px solid rgba(15, 23, 42, 0.08); }
}

/* product page main image hover rotateY flipped */
#product-info .image.magnific-popup > a:first-child:hover img {
  transform: rotateY(6deg) rotateX(2deg) translateY(-2px);
}

/* price old line offset */
.price-old { margin-left: 0; margin-right: 8px; }

/* product-thumb button divider flipped */
.product-thumb .button button + button { border-left: 0; border-right: 1px solid rgba(15, 23, 42, 0.08); }

/* ============================================================
   Home — category product blocks (auto from active categories)
   ============================================================ */
.home-category-products {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 30px;
}
.home-category-block {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fc 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 22px 22px 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}
.home-category-block::before {
  content: '';
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #1e6fff 50%, transparent);
  border-radius: 3px;
  opacity: 0.85;
}
.home-category-block__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.10);
}
.home-category-block__title {
  margin: 0;
  font-family: 'Tajawal', 'Rajdhani', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0;
  color: #0b1220;
}
.home-category-block__title a {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(90deg, #1e6fff, #0b4ed4);
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: 100% 100%;
  transition: background-size .35s ease, color .2s ease;
}
.home-category-block__title a:hover {
  color: #0b4ed4;
  background-size: 100% 2px;
}
.home-category-block__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(180deg, #3b8bff 0%, #0b4ed4 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 12px rgba(30, 111, 255, 0.35);
  text-decoration: none;
  transition: transform .15s ease, box-shadow .25s ease;
}
.home-category-block__more:hover {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(30, 111, 255, 0.45);
}
.home-category-block__grid > .col { display: flex; }
.home-category-block__grid > .col > .product-thumb { width: 100%; }

@media (max-width: 575px) {
  .home-category-block { padding: 16px 14px 10px; border-radius: 14px; }
  .home-category-block__title { font-size: 1.1rem; }
  .home-category-block__more { padding: 5px 10px; font-size: 0.78rem; }
  .home-category-products { gap: 22px; margin-top: 22px; }
}

/* ============================================================
   Mobile Polish Pack (balanced luxury) - RTL
   ============================================================ */
@media (max-width: 991.98px) {
  #top .row { row-gap: 4px; }
  #top ul.list-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
  }
  #top .list-inline-item { margin: 0 !important; }
  #top .list-inline-item > a,
  #top .list-inline-item .dropdown > a {
    line-height: 1.25;
    padding: 4px 0;
    display: inline-flex;
    align-items: center;
  }

  header .row { row-gap: 12px; }
  #search, #cart { margin-bottom: 0; }
  #cart .btn, #cart .btn-lg {
    width: 100%;
    justify-content: center;
  }

  #menu {
    margin: 12px 0 18px;
    padding: 0 0.65rem;
  }
  #menu .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: none;
    color: #fff;
  }
  #menu .navbar-nav > li > a,
  #menu .navbar-nav .nav-link {
    padding: 11px 8px;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
  }
  #menu .dropdown-menu {
    padding: 8px;
    border-top-width: 1px;
  }
  #menu .dropdown-inner .dropdown-item {
    padding: 9px 10px;
    white-space: normal;
  }

  #cart .dropdown-menu {
    width: min(92vw, 420px);
    max-height: 78vh;
    overflow: auto;
    padding: 10px;
  }
  #cart .dropdown-menu li { min-width: 100%; }
  #cart .dropdown-menu .table td,
  #cart .dropdown-menu .table th {
    padding: 6px;
    white-space: normal;
  }
  .cart-dropdown-links {
    display: flex;
    gap: 10px 14px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 0;
  }

  .breadcrumb {
    padding: 8px 10px;
    overflow-x: auto;
    flex-wrap: nowrap;
  }
  .breadcrumb > li.breadcrumb-item {
    white-space: normal;
    min-width: max-content;
  }

  .pagination .page-link {
    min-width: 40px;
    text-align: center;
    padding: 0.45rem 0.55rem;
  }

  #display-control .input-group,
  #product-category .input-group {
    flex-wrap: nowrap;
  }
  #display-control .input-group .input-group-text,
  #product-category .input-group .input-group-text {
    min-width: 72px;
    justify-content: center;
    font-size: 0.82rem;
    padding-inline: 8px;
  }
}

@media (max-width: 767.98px) {
  body { background-attachment: scroll; }

  #menu .navbar-nav { padding: 8px 0 10px; }
  #menu .dropdown-menu { border-radius: 12px; }

  #product-list.row > .col { margin-bottom: 12px; }
  .product-thumb:hover { transform: none; }
  .product-thumb .description {
    padding: 14px 12px;
    margin-bottom: 44px;
  }
  .product-thumb .description h4 { font-size: 0.98rem; }
  .product-thumb .button button { line-height: 40px; }

  #product-info .product-image-thumbs .img-thumbnail {
    width: 100%;
    object-fit: cover;
  }
  #product-info .product-buy-group {
    flex-wrap: wrap;
    gap: 8px;
  }
  #product-info .product-buy-group .input-group-text {
    border-radius: 10px;
    min-width: 64px;
    justify-content: center;
  }
  #product-info .product-buy-group .form-control {
    min-width: 84px;
    border-radius: 10px;
  }
  #product-info .product-buy-group .btn {
    width: 100%;
    border-radius: 12px;
  }

  #output-cart .input-group { flex-wrap: nowrap; }
  #output-cart .input-group .form-control { min-width: 62px; }

  .table-responsive > .table td,
  .table-responsive > .table th {
    white-space: normal;
    vertical-align: top;
  }
  .table-responsive .btn {
    white-space: nowrap;
    min-height: 40px;
  }
}

@media (max-width: 575.98px) {
  #top { padding: 6px 0; }
  #top .list-inline-item > a,
  #top .list-inline-item .dropdown > a {
    font-size: 0.82rem;
  }
  #category {
    font-size: 0.9rem;
    line-height: 42px;
  }

  #search .form-control,
  #search .btn,
  #search .btn-lg {
    height: 40px;
  }
  #search .btn, #search .btn-lg { padding: 0 15px; }

  #cart .btn, #cart .btn-lg {
    padding: 10px 14px;
    font-size: 0.86rem;
    letter-spacing: 0.02em;
  }

  #product-category #display-control .col-6,
  #product-search #display-control .col-6 {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  #output-cart .btn,
  #account-order .btn,
  #account-wishlist .btn {
    width: 100%;
    margin-bottom: 6px;
  }
}

