/**
 * Core Infotech — premium hybrid luxury storefront
 * Dark chrome (header / hero / footer) + light product browsing
 * Complements Bootstrap 5 — load after stylesheet.css
 */

:root {
  --ci-bg-deep: #0b0b0b;
  --ci-bg: #111111;
  --ci-bg-elevated: #161616;
  --ci-card: #1a1a1a;
  --ci-bg-light: #f5f5f5;
  --ci-bg-light-alt: #fafafa;
  --ci-bg-light-muted: #efefef;
  --ci-card-light: #ffffff;
  --ci-card-light-soft: #fafafa;
  --ci-text-dark: #1a1a1a;
  --ci-text-dark-muted: #3d3d3d;
  --ci-text-dark-dim: #6b6b6b;
  --ci-border-light: rgba(0, 0, 0, 0.08);
  --ci-shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
  --ci-shadow-card-hover: 0 12px 32px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(212, 175, 55, 0.28);
  --ci-card-min-height: 23rem;
  --ci-card-image-min: 15.5rem;
  --ci-card-image-flex: 1 1 68%;
  --ci-gold: #d4af37;
  --ci-gold-mid: #c9a227;
  --ci-gold-bright: #e0b84c;
  --ci-gold-link: #9a7b1f;
  --ci-text: #ffffff;
  --ci-text-muted: #d1d1d1;
  --ci-text-dim: #999999;
  --ci-border-gold: rgba(212, 175, 55, 0.18);
  --ci-radius: 14px;
  --ci-radius-lg: 16px;
  --ci-glow-soft: 0 0 28px rgba(212, 175, 55, 0.12);
  --bs-primary: #d4af37;
  --bs-primary-rgb: 212, 175, 55;
  --bs-body-font-family: "Poppins", system-ui, -apple-system, sans-serif;
  --bs-body-color: #3d3d3d;
  --bs-body-bg: #f5f5f5;
  --bs-link-color: #9a7b1f;
  --bs-link-hover-color: #d4af37;
  --bs-link-color-rgb: 154, 123, 31;
  --bs-link-hover-color-rgb: 212, 175, 55;
  --bs-border-color: rgba(0, 0, 0, 0.08);
  --bs-secondary-color: #6b6b6b;
  --bs-tertiary-bg: #fafafa;
  --bs-heading-color: #1a1a1a;
  --ci-header-height: 76px;
  --ci-header-stack-height: 168px;
  --ci-sticky-compact-height: 56px;
  --ci-orange: #d4af37;
  --ci-slate-900: #f3f4f6;
  --ci-footer-bg: #0b0b0b;
}

body {
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  background: var(--ci-bg-light);
  color: var(--ci-text-dark-muted);
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
  font-family: "Rajdhani", "Poppins", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ci-text-dark);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

#container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

#container > main {
  flex: 1 0 auto;
  background: var(--ci-bg-light);
}

/* Override OpenCart default absolute footer + #content padding hack */
#content,
#column-left,
#column-right,
#common-home,
#container > main {
  padding-bottom: 0;
}

footer.ci-footer,
#container > footer {
  position: relative;
  bottom: auto;
  width: 100%;
  flex-shrink: 0;
}

.site-container {
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 1rem;
}

/* ========== Premium header shell (topbar + main + nav) ========== */
.ci-header-shell {
  position: relative;
  z-index: 1040;
  background: #0b0b0b;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
  transition: box-shadow 0.35s ease, background 0.35s ease;
}

.ci-header-spacer {
  display: block;
  height: 0;
  pointer-events: none;
}

.ci-header-spacer--active {
  height: var(--ci-sticky-compact-height);
}

.ci-header-scroll-sentinel {
  display: block;
  width: 100%;
  height: 1px;
  margin: 0;
  padding: 0;
  border: 0;
  visibility: hidden;
  pointer-events: none;
}

/* --- Slim luxury top bar --- */
.ci-topbar {
  background: linear-gradient(90deg, #0a0a0a 0%, #141414 50%, #0a0a0a 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-height: 2.5rem;
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.35s ease, border 0.35s ease;
}

.ci-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  min-height: 2.5rem;
}

.ci-topbar-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
}

.ci-topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ci-topbar-link i {
  color: var(--ci-gold);
  font-size: 0.75rem;
  opacity: 0.9;
}

.ci-topbar-link:hover {
  color: var(--ci-gold);
  text-decoration: none;
}

.ci-topbar-link--muted {
  cursor: default;
}

.ci-topbar-link--muted:hover {
  color: rgba(255, 255, 255, 0.72);
}

.ci-topbar-utils {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.6875rem;
}

.ci-topbar-utils__sep {
  width: 1px;
  height: 0.75rem;
  background: rgba(212, 175, 55, 0.25);
}

.ci-topbar-currency {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.ci-topbar-currency::first-letter {
  color: var(--ci-gold);
}

.ci-topbar-utils__item .dropdown > a,
.ci-topbar-utils__item a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ci-topbar-utils__item .dropdown > a:hover,
.ci-topbar-utils__item a:hover {
  color: var(--ci-gold);
}

/* --- Main header bar --- */
.ci-header {
  background: linear-gradient(180deg, #111111 0%, #0b0b0b 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.14);
  padding: 1.15rem 0 1rem;
  transition: padding 0.35s ease, min-height 0.35s ease, max-height 0.35s ease, border-color 0.35s ease;
}

.ci-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem 2rem;
  transition: gap 0.35s ease;
}

.ci-header-brand {
  flex-shrink: 0;
}

.ci-header-search-wrap {
  min-width: 0;
  max-width: 52rem;
  width: 100%;
  margin-inline: auto;
}

.ci-header-search-mobile {
  margin-top: 0.85rem;
}

.ci-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem 0.5rem;
  flex-shrink: 0;
}

.ci-header-action-wrap {
  position: relative;
}

.ci-header-action {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-width: 3.25rem;
  padding: 0.35rem 0.5rem;
  border: none;
  border-radius: 0.65rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-family: "Rajdhani", sans-serif;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.ci-header-action.dropdown-toggle::after {
  display: none;
}

.ci-header-action__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 1.05rem;
  transition: color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.ci-header-action__label {
  max-width: 5.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.1;
  opacity: 0.85;
}

.ci-header-action:hover,
.ci-header-action:focus,
.ci-header-action.show {
  color: var(--ci-gold);
  background: rgba(212, 175, 55, 0.06);
}

.ci-header-action:hover .ci-header-action__icon,
.ci-header-action:focus .ci-header-action__icon,
.ci-header-action.show .ci-header-action__icon {
  color: var(--ci-gold);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
  background: rgba(212, 175, 55, 0.08);
}

.ci-cart-action::after {
  margin-left: 0;
  vertical-align: middle;
  border-top-color: rgba(255, 255, 255, 0.5);
}

.ci-cart-action.show::after {
  border-top-color: var(--ci-gold);
}

.ci-header-dropdown,
.ci-cart-wrap .dropdown-menu {
  min-width: 280px;
  max-width: min(100vw - 2rem, 380px);
  margin-top: 0.5rem !important;
  padding: 0.5rem;
  border-radius: var(--ci-radius);
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: #141414;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  color: var(--ci-text-muted);
}

.ci-header-dropdown .dropdown-item {
  border-radius: 0.45rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ci-text-muted);
  transition: background 0.2s ease, color 0.2s ease;
}

.ci-header-dropdown .dropdown-item:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--ci-gold);
}

.ci-header-dropdown .dropdown-item i {
  color: var(--ci-gold);
  opacity: 0.85;
}

/* Logo */
.ci-logo-mark,
.ci-logo-link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--ci-text);
}

.ci-logo-icon {
  display: flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--ci-gold);
  font-size: 1.15rem;
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.15);
  transition: width 0.35s ease, height 0.35s ease, font-size 0.35s ease;
}

.ci-logo-text {
  font-size: 1.35rem;
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: font-size 0.35s ease;
}

.ci-logo-accent {
  color: var(--ci-gold);
}

.ci-logo-img {
  max-height: 48px;
  width: auto;
  transition: max-height 0.35s ease;
}

#logo.ci-logo-fallback h1 {
  margin: 0;
  font-size: 1.25rem;
}

#logo.ci-logo-fallback h1 a {
  text-decoration: none;
  color: inherit;
}

/* --- Premium search --- */
.ci-search-form {
  margin: 0;
  width: 100%;
}

.ci-search-pill {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: #161616;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.ci-search-pill:focus-within {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12), 0 0 28px rgba(212, 175, 55, 0.15);
}

.ci-search-icon {
  display: flex;
  align-items: center;
  padding-left: 1.1rem;
  color: var(--ci-gold);
  opacity: 0.75;
  font-size: 0.95rem;
}

.ci-search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.85rem 0.85rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ci-text);
  outline: none;
  min-width: 0;
  transition: padding 0.35s ease;
}

.ci-search-input::placeholder {
  color: rgba(255, 255, 255, 0.38);
  font-weight: 400;
}

.ci-search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: none;
  border-left: 1px solid rgba(212, 175, 55, 0.2);
  margin: 0;
  padding: 0 1.35rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: "Rajdhani", sans-serif;
  background: linear-gradient(145deg, var(--ci-gold-mid), var(--ci-gold));
  color: #0b0b0b;
  cursor: pointer;
  white-space: nowrap;
  transition: filter 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.ci-search-btn:hover {
  filter: brightness(1.08);
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.12);
}

.ci-search-btn:active {
  transform: scale(0.98);
}

.ci-search-btn__icon {
  display: none;
  font-size: 0.9rem;
}

/* --- Navigation --- */
.ci-nav-wrap {
  background: linear-gradient(90deg, #0b0b0b 0%, #121212 50%, #0b0b0b 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.14);
  max-height: 20rem;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease, border-color 0.35s ease;
}

.ci-menu-navbar {
  padding: 0;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.ci-menu-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 0.55rem;
}

.ci-menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
  color: var(--ci-gold) !important;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ci-menu-nav {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.15rem 0.35rem;
  width: 100%;
}

@media (min-width: 992px) {
  .ci-menu-nav {
    flex-wrap: nowrap;
    justify-content: center;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 2px;
  }

  .ci-menu-nav::-webkit-scrollbar {
    display: none;
  }
}

.ci-menu-navbar .nav-link {
  position: relative;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88) !important;
  padding: 0.65rem 1.1rem !important;
  border-radius: 0;
  background: transparent !important;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.ci-menu-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 0.35rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--ci-gold), var(--ci-gold-bright));
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}

.ci-menu-navbar .nav-link:hover,
.ci-menu-navbar .nav-link:focus,
.ci-menu-navbar .nav-link.show {
  color: var(--ci-gold) !important;
  box-shadow: none !important;
}

.ci-menu-navbar .nav-link:hover::after,
.ci-menu-navbar .nav-link:focus::after,
.ci-menu-navbar .nav-link.show::after {
  transform: scaleX(1);
  opacity: 1;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.45);
}

.ci-menu-navbar .dropdown-menu {
  margin-top: 0.35rem !important;
  border-radius: var(--ci-radius);
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55);
  background: #141414;
  padding: 0.5rem;
}

.ci-menu-navbar .dropdown-item {
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.4rem;
  color: var(--ci-text-muted);
  padding: 0.5rem 0.75rem;
}

.ci-menu-navbar .dropdown-item:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--ci-gold);
}

.ci-menu-navbar .dropdown-divider {
  border-color: rgba(212, 175, 55, 0.15);
}

@media (max-width: 991.98px) {
  .ci-header-inner {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }

  .ci-header-brand {
    grid-column: 1;
    grid-row: 1;
  }

  .ci-header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .ci-header-search-wrap {
    display: none;
  }

  .ci-menu-nav {
    padding-top: 0.5rem;
    flex-direction: column;
    align-items: stretch;
  }

  .ci-menu-navbar .nav-link {
    padding: 0.75rem 0.5rem !important;
  }

  .ci-menu-navbar .nav-link::after {
    left: 0.5rem;
    right: auto;
    width: 2.5rem;
  }
}

@media (min-width: 992px) {
  .ci-header-search-mobile {
    display: none !important;
  }
}

/* ========== Compact sticky header (Newegg-style on scroll) ========== */
.ci-header-shell--scrolled,
body.ci-header-is-compact #ci-header-shell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--ci-sticky-compact-height);
  max-height: var(--ci-sticky-compact-height);
  overflow: hidden;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.ci-header-shell--scrolled .ci-topbar,
.ci-header-shell--scrolled .ci-nav-wrap,
body.ci-header-is-compact .ci-topbar,
body.ci-header-is-compact .ci-nav-wrap {
  display: none !important;
  height: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
}

.ci-header-shell--scrolled .ci-header,
body.ci-header-is-compact .ci-header {
  padding: 0 !important;
  margin: 0;
  min-height: var(--ci-sticky-compact-height);
  max-height: var(--ci-sticky-compact-height);
  height: var(--ci-sticky-compact-height);
  border-bottom: none;
  background: transparent;
  display: flex;
  align-items: center;
}

.ci-header-shell--scrolled .ci-header > .site-container,
body.ci-header-is-compact .ci-header > .site-container {
  width: 100%;
  padding-block: 0;
}

.ci-header-shell--scrolled .ci-header-inner,
body.ci-header-is-compact .ci-header-inner {
  gap: 0.5rem 0.65rem;
  min-height: var(--ci-sticky-compact-height);
  align-items: center;
}

.ci-header-shell--scrolled .ci-header-brand,
body.ci-header-is-compact .ci-header-brand {
  max-width: 7.5rem;
}

.ci-header-shell--scrolled .ci-logo-mark,
.ci-header-shell--scrolled .ci-logo-link,
body.ci-header-is-compact .ci-logo-mark,
body.ci-header-is-compact .ci-logo-link {
  display: flex;
  align-items: center;
}

.ci-header-shell--scrolled .ci-logo-icon,
body.ci-header-is-compact .ci-logo-icon {
  width: 1.75rem;
  height: 1.75rem;
  font-size: 0.8rem;
}

.ci-header-shell--scrolled .ci-logo-text,
body.ci-header-is-compact .ci-logo-text {
  display: none !important;
}

.ci-header-shell--scrolled .ci-logo-img,
body.ci-header-is-compact .ci-logo-img {
  max-height: 26px !important;
  width: auto;
}

.ci-header-shell--scrolled .ci-header-search-wrap,
body.ci-header-is-compact .ci-header-search-wrap {
  max-width: none;
}

.ci-header-shell--scrolled .ci-search-pill,
body.ci-header-is-compact .ci-search-pill {
  border-radius: 0.4rem;
  border-color: rgba(212, 175, 55, 0.22);
  min-height: 2.125rem;
  max-height: 2.125rem;
}

.ci-header-shell--scrolled .ci-search-icon,
body.ci-header-is-compact .ci-search-icon {
  padding-left: 0.55rem;
  font-size: 0.7rem;
}

.ci-header-shell--scrolled .ci-search-input,
body.ci-header-is-compact .ci-search-input {
  padding: 0.28rem 0.4rem;
  font-size: 0.75rem;
  line-height: 1.2;
}

.ci-header-shell--scrolled .ci-search-input::placeholder,
body.ci-header-is-compact .ci-search-input::placeholder {
  font-size: 0.75rem;
}

.ci-header-shell--scrolled .ci-search-btn,
body.ci-header-is-compact .ci-search-btn {
  width: 2.125rem;
  min-width: 2.125rem;
  padding: 0;
  font-size: 0;
  line-height: 1;
  border-left-width: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ci-header-shell--scrolled .ci-search-btn__text,
body.ci-header-is-compact .ci-search-btn__text {
  display: none !important;
}

.ci-header-shell--scrolled .ci-search-btn__icon,
body.ci-header-is-compact .ci-search-btn__icon {
  display: inline-block !important;
  font-size: 0.7rem;
  margin: 0;
}

.ci-header-shell--scrolled .ci-header-action,
body.ci-header-is-compact .ci-header-action {
  flex-direction: row;
  min-width: unset;
  padding: 0.1rem;
  gap: 0;
}

.ci-header-shell--scrolled .ci-header-action__label,
body.ci-header-is-compact .ci-header-action__label {
  display: none !important;
}

.ci-header-shell--scrolled .ci-header-action__icon,
body.ci-header-is-compact .ci-header-action__icon {
  width: 1.75rem;
  height: 1.75rem;
  font-size: 0.85rem;
  border-radius: 0.35rem;
}

.ci-header-shell--scrolled .ci-header-actions,
body.ci-header-is-compact .ci-header-actions {
  gap: 0.1rem;
}

.ci-header-shell--scrolled .ci-header-search-mobile,
body.ci-header-is-compact .ci-header-search-mobile {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

@media (max-width: 991.98px) {
  .ci-header-shell--scrolled .ci-header-inner {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto;
  }

  .ci-header-shell--scrolled .ci-header-brand {
    grid-column: 1;
    grid-row: 1;
  }

  .ci-header-shell--scrolled .ci-header-search-wrap {
    display: block !important;
    grid-column: 2;
    grid-row: 1;
    max-width: none;
  }

  .ci-header-shell--scrolled .ci-header-actions {
    grid-column: 3;
    grid-row: 1;
  }

  .ci-header-shell--scrolled .ci-search-btn__text {
    display: none;
  }
}

/* --- Homepage demo product cards (horizontal sliders) --- */
.ci-home-demo-card {
  cursor: default;
}

.ci-demo-card-inner {
  position: relative;
  display: flex;
  height: 100%;
  min-height: var(--ci-card-min-height);
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--ci-radius);
  border: 1px solid var(--ci-border-light);
  background: #ffffff;
  box-shadow: var(--ci-shadow-card);
  padding: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ci-home-demo-card:hover .ci-demo-card-inner {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(212, 175, 55, 0.2), 0 0 32px rgba(212, 175, 55, 0.1);
}

.ci-demo-discount {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 3;
  border-radius: 9999px;
  background: #3a1515;
  color: #f5d0d0;
  border: 1px solid rgba(212, 175, 55, 0.25);
  font-size: 11px;
  font-weight: 800;
  padding: 0.2rem 0.45rem;
  line-height: 1.2;
}

.ci-demo-card-hit {
  display: flex;
  flex: var(--ci-card-image-flex);
  flex-direction: column;
  min-height: var(--ci-card-image-min);
}

.ci-demo-img-wrap {
  display: flex;
  flex: 1;
  min-height: var(--ci-card-image-min);
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem 1.1rem;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  overflow: hidden;
}

.ci-demo-img-wrap img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.ci-home-demo-card:hover .ci-demo-img-wrap img {
  transform: scale(1.06);
}

/* Dark luxury info panel — compact ~32% */
.ci-demo-body {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  margin-top: 0;
  padding: 0.55rem 0.85rem 0.65rem;
  background: linear-gradient(180deg, #1a1a1a 0%, #161616 45%, #111111 100%);
  border-radius: 0 0 calc(var(--ci-radius) - 1px) calc(var(--ci-radius) - 1px);
}

.ci-demo-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.45), transparent);
  box-shadow: 0 -4px 12px rgba(212, 175, 55, 0.08);
}

.ci-demo-stars {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 0.25rem;
}

.ci-star {
  height: 0.45rem;
  width: 0.45rem;
  border-radius: 9999px;
  background: #3d3d3d;
}

.ci-star.ci-star-on {
  background: var(--ci-gold);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.55);
}

.ci-demo-name {
  margin: 0 0 0.3rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ci-demo-name a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ci-demo-name a:hover {
  color: var(--ci-gold);
}

.ci-demo-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.15rem 0.35rem;
  line-height: 1.1;
}

.ci-demo-price-plain {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #d4af37;
}

.ci-demo-rupee {
  font-size: 0.95rem;
  font-weight: 700;
  padding-top: 0.1rem;
  color: #d4af37;
}

.ci-demo-price {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #d4af37;
}

.ci-demo-original {
  margin-top: 0.05rem;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #888888;
  text-decoration: line-through;
}

.ci-home-slider {
  padding-bottom: 0.5rem;
}

.ci-mega-badge {
  background: rgba(212, 175, 55, 0.15) !important;
  color: var(--ci-gold) !important;
  border: 1px solid var(--ci-border-gold) !important;
}

.ci-section-icon {
  color: var(--ci-gold);
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.25));
}

.ci-icon-ram {
  color: var(--ci-gold);
}

/* --- Footer --- */
.ci-footer {
  background: var(--ci-footer-bg);
  color: var(--ci-text-muted);
  margin-top: auto;
  border-top: 1px solid var(--ci-border-gold);
  position: relative;
  bottom: auto;
}

.ci-footer a {
  color: var(--ci-text-dim);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ci-footer a:hover {
  color: var(--ci-gold);
}

.ci-footer-gold-icon {
  color: var(--ci-gold);
}

.ci-footer-card {
  border-radius: var(--ci-radius-lg);
  border: 1px solid var(--ci-border-gold);
  background: var(--ci-card);
  padding: 1.5rem;
}

.ci-footer h4,
.ci-footer h5 {
  color: var(--ci-gold);
  font-size: 0.8125rem;
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.ci-footer .ci-newsletter-input {
  border-radius: 0.5rem;
  border: 1px solid var(--ci-border-gold);
  background: var(--ci-bg-elevated);
  color: var(--ci-text);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ci-footer .ci-newsletter-input::placeholder {
  color: var(--ci-text-dim);
}

.ci-footer .ci-newsletter-input:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.12);
}

.ci-footer .ci-newsletter-btn {
  border: 1px solid var(--ci-border-gold);
  border-radius: 0.5rem;
  background: transparent;
  color: var(--ci-gold);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.ci-footer .ci-newsletter-btn:hover {
  background: var(--ci-gold);
  color: #0b0b0b;
}

.ci-footer-bottom {
  border-top: 1px solid var(--ci-border-gold);
  padding-top: 1.25rem;
  margin-top: 2rem;
  font-size: 0.75rem;
  color: var(--ci-text-dim);
}

/* --- Home: dark hero + light product zone --- */
.ci-home-wrap {
  background: transparent;
}

.ci-hero-zone {
  background: var(--ci-bg-deep);
  color: var(--ci-text-muted);
  padding-bottom: 0.25rem;
}

.ci-hero-zone h1,
.ci-hero-zone h2,
.ci-hero-zone h3,
.ci-hero-zone h4,
.ci-hero-zone h5,
.ci-hero-zone h6,
.ci-hero-zone .display-1,
.ci-hero-zone .display-2,
.ci-hero-zone .display-3,
.ci-hero-zone .display-4,
.ci-hero-zone .display-5,
.ci-hero-zone .display-6 {
  color: var(--ci-text);
}

.ci-product-zone {
  background: var(--ci-bg-light);
  color: var(--ci-text-dark-muted);
}

.ci-product-zone .section-divider {
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.22), transparent);
}

.ci-hero-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .ci-hero-grid {
    grid-template-columns: 260px 1fr 300px;
    align-items: stretch;
  }
}

.ci-hero-sidebar {
  display: none;
  overflow: hidden;
  border-radius: var(--ci-radius-lg);
  border: 1px solid var(--ci-border-gold);
  background: linear-gradient(180deg, #161616 0%, #111 100%);
  color: var(--ci-text-muted);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

@media (min-width: 992px) {
  .ci-hero-sidebar {
    display: block;
  }
}

.ci-hero-sidebar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  color: var(--ci-text-muted);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  border-left: 3px solid transparent;
}

.ci-hero-sidebar a:hover {
  background: rgba(212, 175, 55, 0.06);
  color: var(--ci-gold);
  border-left-color: rgba(212, 175, 55, 0.5);
}

.ci-hero-main {
  min-height: 280px;
}

.ci-hero-side-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ci-hero-price {
  color: var(--ci-gold);
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
}

.ci-hero-muted {
  color: var(--ci-text-dim);
}

.ci-hero-btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ci-hero-btn--primary {
  background: #0b0b0b !important;
  color: var(--ci-gold) !important;
  border: 1px solid var(--ci-gold) !important;
}

.ci-hero-btn--primary:hover {
  background: var(--ci-gold) !important;
  color: #0b0b0b !important;
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.35);
  transform: translateY(-1px);
}

.ci-hero-btn--secondary {
  background: rgba(0, 0, 0, 0.35) !important;
  color: var(--ci-text) !important;
  border: 1px solid var(--ci-border-gold) !important;
}

.ci-hero-btn--secondary:hover {
  border-color: rgba(212, 175, 55, 0.45) !important;
  color: var(--ci-gold) !important;
  box-shadow: var(--ci-glow-soft);
}

/* --- From Next globals (product / marketing) --- */
.product-card {
  width: 100%;
}

.product-card:not(.ci-home-demo-card):not(.product-thumb):hover {
  transform: translateY(-3px);
}

.product-slide-item {
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 80px) / 6);
  min-width: 0;
  display: flex;
}

.product-slide-item .ci-demo-card-inner {
  width: 100%;
}

.product-slider {
  display: flex;
  align-items: stretch;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 4px;
}

.product-slider::-webkit-scrollbar {
  display: none;
}

.rating-stars {
  color: var(--ci-gold);
  letter-spacing: -1px;
}

.price-text {
  color: var(--ci-gold);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.original-price {
  color: var(--ci-text-dark-dim);
  font-size: 0.75rem;
  text-decoration: line-through;
}

@media (max-width: 1400px) {
  .product-slide-item {
    flex-basis: calc((100% - 64px) / 5);
  }
}

@media (max-width: 1100px) {
  .product-slide-item {
    flex-basis: calc((100% - 48px) / 4);
  }
}

@media (max-width: 800px) {
  .product-slide-item {
    flex-basis: calc((100% - 32px) / 3);
  }
}

@media (max-width: 560px) {
  .product-slide-item {
    flex-basis: calc((100% - 16px) / 2);
  }
}

.cart-btn {
  width: 100%;
  border: 1px solid var(--ci-gold);
  border-radius: var(--ci-radius);
  background: #0b0b0b;
  color: var(--ci-gold);
  cursor: pointer;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.cart-btn:hover {
  background: var(--ci-gold);
  color: #0b0b0b;
  transform: translateY(-2px);
  box-shadow: var(--ci-glow-soft);
}

.banner-slider {
  overflow: hidden;
  border-radius: var(--ci-radius-lg);
  border: 1px solid var(--ci-border-gold);
  background:
    radial-gradient(ellipse 120% 80% at 20% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 45%),
    linear-gradient(145deg, #0b0b0b 0%, #161616 40%, #111111 100%);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.offer-badge {
  display: inline-block;
  margin-bottom: 12px;
  border-radius: 9999px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--ci-gold);
  border: 1px solid var(--ci-border-gold);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.big-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--ci-radius-lg);
  border: 1px solid var(--ci-border-gold);
  background:
    radial-gradient(ellipse 100% 80% at 10% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 55%),
    linear-gradient(120deg, #0b0b0b 0%, #161616 55%, #111 100%);
  color: var(--ci-text);
  padding: 36px 32px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.big-banner h2,
.big-banner .display-6 {
  color: var(--ci-text);
}

.big-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 4px;
  color: var(--ci-text-dark);
  font-size: 1.4rem;
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 0.05em;
}

.section-title span {
  position: relative;
  padding-bottom: 8px;
}

.section-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--ci-gold), rgba(212, 175, 55, 0.15));
}

.ci-product-zone .section-title {
  color: var(--ci-text-dark);
}

.section-divider {
  height: 1px;
  margin: 24px 0;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.22), transparent);
}

.brand-banner {
  display: flex;
  height: 92px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ci-border-light);
  border-radius: var(--ci-radius);
  background: var(--ci-card-light);
  padding: 14px 18px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.brand-banner img {
  max-width: 96%;
  max-height: 96%;
  object-fit: contain;
  transition: transform 0.25s ease, filter 0.25s ease;
  filter: grayscale(0.15) brightness(1.05);
}

.brand-banner:hover {
  border-color: rgba(212, 175, 55, 0.45);
  transform: translateY(-2px);
  box-shadow: var(--ci-shadow-card-hover);
}

.brand-banner:hover img {
  transform: scale(1.04);
  filter: grayscale(0) brightness(1.1);
}

.brand-slider {
  overflow: hidden;
  border-radius: var(--ci-radius-lg);
  border: 1px solid var(--ci-border-light);
  background: var(--ci-card-light);
  padding: 0.75rem;
  box-shadow: var(--ci-shadow-card);
}

.brand-slider-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: brand-marquee 18s linear infinite;
  will-change: transform;
}

.brand-slide-item {
  flex: 0 0 240px;
}

@keyframes brand-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.category-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ci-border-light);
  border-radius: var(--ci-radius);
  background: var(--ci-card-light);
  padding: 16px;
  text-align: center;
  box-shadow: var(--ci-shadow-card);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.category-card:hover {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: var(--ci-shadow-card-hover);
  transform: translateY(-2px);
}

.category-image {
  display: flex;
  width: 80px;
  height: 80px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: var(--ci-radius);
  background: var(--ci-bg-light-muted);
  border: 1px solid var(--ci-border-light);
  font-size: 2.5rem;
}

.side-banner-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ci-border-gold);
  border-radius: var(--ci-radius-lg);
  background: var(--ci-card);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.side-banner-card--accent:hover {
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45), var(--ci-glow-soft);
  transform: translateY(-2px);
}

.side-banner-card.red,
.side-banner-card.green {
  border-color: var(--ci-border-gold);
}

.side-banner-card.red:hover,
.side-banner-card.green:hover {
  border-color: rgba(212, 175, 55, 0.35);
}

.side-banner-content {
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.ci-side-thumb {
  border: 1px solid var(--ci-border-gold);
  background: var(--ci-bg-elevated);
}

.ci-side-pill {
  display: inline-block;
  border-radius: 9999px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--ci-gold);
  border: 1px solid var(--ci-border-gold);
  padding: 0.25rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.ci-side-title {
  color: var(--ci-text);
}

.ci-side-price {
  color: var(--ci-gold);
}

.ci-side-was {
  color: var(--ci-text-dim);
  text-decoration: line-through;
}

.ci-side-cta {
  border: 1px solid var(--ci-border-gold) !important;
  background: var(--ci-bg-deep) !important;
  color: var(--ci-gold) !important;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease !important;
}

.ci-side-cta:hover {
  background: var(--ci-gold) !important;
  color: #0b0b0b !important;
  border-color: var(--ci-gold) !important;
}

.ci-product-zone .ci-trust-strip {
  background: var(--ci-bg-light-muted);
  border-top: 1px solid var(--ci-border-light);
  border-bottom: 1px solid var(--ci-border-light);
}

.ci-trust-item {
  border-radius: var(--ci-radius);
  border: 1px solid var(--ci-border-light);
  background: var(--ci-card-light);
  padding: 1.15rem;
  text-align: center;
  box-shadow: var(--ci-shadow-card);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.ci-trust-item:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: var(--ci-shadow-card-hover);
}

.ci-trust-title {
  color: var(--ci-text-dark);
}

.ci-trust-desc {
  color: var(--ci-text-dark-dim);
}

.ci-trust-icon {
  margin: 0 auto 0.75rem;
  display: flex;
  height: 3rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--ci-bg-light-muted);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--ci-gold);
  font-size: 1.1rem;
}

/* --- Product thumb (Core Infotech card) --- */
.product-thumb.product-card {
  border: 1px solid var(--ci-border-light);
  border-radius: var(--ci-radius);
  background: #ffffff;
  overflow: hidden;
  box-shadow: var(--ci-shadow-card);
  height: 100%;
  min-height: calc(var(--ci-card-min-height) + 2.75rem);
  margin-bottom: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-thumb.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(212, 175, 55, 0.2), 0 0 32px rgba(212, 175, 55, 0.1);
}

/* Light product showcase (top ~68%) */
.product-thumb.product-card > .position-relative {
  flex: var(--ci-card-image-flex) !important;
  min-height: var(--ci-card-image-min);
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.product-thumb.product-card .image {
  position: relative;
  text-align: center;
  height: 100%;
  min-height: var(--ci-card-image-min);
  padding: 1.25rem 1rem;
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  overflow: hidden;
}

.product-thumb.product-card .image img {
  max-height: min(17.5rem, 100%);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-thumb.product-card:hover .image img {
  transform: scale(1.06);
}

.ci-sale-badge {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 2;
  background: #2a1515;
  color: #f0d0d0;
  border: 1px solid var(--ci-border-gold);
  font-size: 11px;
  font-weight: 800;
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
}

/* Dark luxury info panel (bottom ~32%) */
.product-thumb.product-card .content {
  position: relative;
  flex: 0 0 auto !important;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #1a1a1a 0%, #161616 45%, #111111 100%);
  border-radius: 0 0 calc(var(--ci-radius) - 1px) calc(var(--ci-radius) - 1px);
}

.product-thumb.product-card .content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.45), transparent);
  box-shadow: 0 -4px 12px rgba(212, 175, 55, 0.08);
  z-index: 1;
}

.product-thumb.product-card .description {
  padding: 0.55rem 0.85rem 0.45rem;
  margin-bottom: 0;
}

.product-thumb.product-card .description h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 0.3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-thumb.product-card .description h4 a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.product-thumb.product-card .description h4 a:hover {
  color: var(--ci-gold);
}

.product-thumb.product-card .description p {
  font-size: 0.6875rem;
  color: #999999;
  margin-bottom: 0.3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-thumb.product-card .price {
  margin-top: 0.15rem;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.15rem 0.35rem;
}

.product-thumb.product-card .price-new {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #d4af37;
}

.product-thumb.product-card .price-old {
  font-size: 0.75rem;
  font-weight: 500;
  color: #888888;
  text-decoration: line-through;
  margin-left: 0;
}

.product-thumb.product-card .price-tax {
  color: #777777 !important;
  width: 100%;
}

.product-thumb.product-card .rating {
  margin-bottom: 0.25rem;
}

.product-thumb.product-card .rating .fa-star {
  color: var(--ci-gold);
}

/* Product card action bar — cart / wishlist / compare */
.ci-card-actions-form {
  margin-top: auto;
  width: 100%;
}

.ci-card-actions {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 0 0 calc(var(--ci-radius) - 1px) calc(var(--ci-radius) - 1px);
  overflow: hidden;
  background: #0a0a0a;
}

.ci-card-action {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.65rem 0.5rem;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: #111111;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.ci-card-action:last-child {
  border-right: none;
}

.ci-card-action--cart {
  background: rgba(212, 175, 55, 0.16);
  color: #d4af37;
}

.ci-card-action--cart:hover {
  background: rgba(212, 175, 55, 0.32);
  color: #e8c252;
  box-shadow: inset 0 0 24px rgba(212, 175, 55, 0.12);
}

.ci-card-action--wishlist:hover,
.ci-card-action--compare:hover {
  background: rgba(212, 175, 55, 0.12);
  color: #d4af37;
}

.ci-demo-body .ci-card-actions-form {
  margin-top: 0.35rem;
}

.ci-demo-body .ci-card-actions {
  border-radius: 0 0 calc(var(--ci-radius) - 1px) calc(var(--ci-radius) - 1px);
  border-top-color: rgba(212, 175, 55, 0.2);
}

.product-thumb.product-card .button.ci-card-actions {
  position: static;
  display: flex;
  border-top: 1px solid rgba(212, 175, 55, 0.22);
  margin-top: auto;
}

.product-thumb.product-card .ci-card-actions .ci-card-action {
  flex: 1;
}

/* List view: light image column + dark content column */
#product-list .product-list .product-thumb.product-card {
  flex-direction: row;
  min-height: 11rem;
}

#product-list .product-list .product-thumb.product-card > .position-relative {
  flex: 0 0 38% !important;
  max-width: 220px;
  min-height: 0;
  border-right: 1px solid rgba(212, 175, 55, 0.12);
}

#product-list .product-list .product-thumb.product-card .image {
  max-width: none;
  min-height: 10rem;
  height: 100%;
  padding: 1rem;
}

#product-list .product-list .product-thumb.product-card .image img {
  max-height: 10rem;
}

#product-list .product-list .product-thumb.product-card .content {
  border-radius: 0 var(--ci-radius) var(--ci-radius) 0;
}

#product-list .product-list .product-thumb.product-card .content::before {
  top: 0;
  bottom: 0;
  left: 0;
  right: auto;
  width: 1px;
  height: auto;
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.45), transparent);
}

/* Breadcrumb polish */
.breadcrumb {
  background: transparent;
  padding: 0.75rem 0;
}

.breadcrumb-item a {
  color: var(--ci-text-dark-dim);
}

.breadcrumb-item a:hover {
  color: var(--ci-gold);
}

.breadcrumb-item.active,
.breadcrumb-item + .breadcrumb-item::before {
  color: var(--ci-text-dark-dim);
}

/* Primary buttons — black + gold luxury */
.btn-primary {
  --bs-btn-bg: #0b0b0b;
  --bs-btn-border-color: var(--ci-gold);
  --bs-btn-color: var(--ci-gold);
  --bs-btn-hover-bg: var(--ci-gold);
  --bs-btn-hover-border-color: var(--ci-gold);
  --bs-btn-hover-color: #0b0b0b;
  --bs-btn-active-bg: var(--ci-gold-mid);
  --bs-btn-active-border-color: var(--ci-gold-mid);
  --bs-btn-active-color: #0b0b0b;
  font-weight: 600;
}

.btn-outline-primary {
  --bs-btn-color: var(--ci-gold);
  --bs-btn-border-color: var(--ci-gold);
  --bs-btn-hover-bg: var(--ci-gold);
  --bs-btn-hover-color: #0b0b0b;
  --bs-btn-hover-border-color: var(--ci-gold);
}

.text-primary {
  color: var(--ci-gold) !important;
}

.bg-primary {
  background-color: var(--ci-gold) !important;
}

.ci-see-more {
  color: var(--ci-text-dark-dim) !important;
}

.ci-see-more:hover {
  color: var(--ci-gold) !important;
}

#content {
  color: var(--ci-text-dark-muted);
}

#content h1,
#content h2,
#content h3 {
  color: var(--ci-text-dark);
}

/* --- Account: login / register --- */
.ci-auth-page {
  flex: 1;
  width: 100%;
  padding-bottom: clamp(3rem, 8vw, 5.5rem);
  margin-bottom: clamp(1.75rem, 5vw, 3.5rem);
}

.ci-auth-page-title {
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ci-text-dark);
  margin-bottom: 0.35rem;
  font-family: "Rajdhani", sans-serif;
}

.ci-auth-lead {
  color: var(--ci-text-dark-dim);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.ci-auth-lead a {
  font-weight: 600;
  color: var(--ci-gold);
  text-decoration: none;
}

.ci-auth-lead a:hover {
  color: var(--ci-gold-bright);
  text-decoration: underline;
}

.ci-auth-card {
  background: var(--ci-card-light);
  border-radius: var(--ci-radius-lg);
  border: 1px solid var(--ci-border-light);
  box-shadow: var(--ci-shadow-card);
  padding: 1.5rem 1.35rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .ci-auth-card {
    padding: 1.75rem 1.75rem;
  }
}

.ci-auth-card--accent-orange {
  border-top: 3px solid var(--ci-gold);
}

.ci-auth-card--accent-blue {
  border-top: 3px solid rgba(212, 175, 55, 0.55);
}

.ci-auth-card--wide {
  max-width: 920px;
  margin-inline: auto;
  height: auto;
}

.ci-auth-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.ci-auth-card__icon--orange {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--ci-border-gold);
  color: var(--ci-gold);
}

.ci-auth-card__icon--blue {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--ci-border-gold);
  color: var(--ci-gold);
}

.ci-auth-card h2 {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ci-text-dark);
  margin-bottom: 0.35rem;
  font-family: "Rajdhani", sans-serif;
}

.ci-auth-card .ci-auth-sub {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ci-text-dark-muted);
  margin-bottom: 0.5rem;
}

.ci-auth-card .ci-auth-copy {
  font-size: 0.875rem;
  color: var(--ci-text-dark-dim);
  flex: 1;
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

.ci-auth-card .ci-auth-actions {
  margin-top: auto;
  padding-top: 0.5rem;
}

.ci-auth-form .form-control,
.ci-auth-form .form-select {
  border-radius: 0.65rem;
  border-color: var(--ci-border-light);
  background: var(--ci-bg-light-alt);
  color: var(--ci-text-dark);
  padding: 0.55rem 0.85rem;
}

.ci-auth-form .form-control:focus,
.ci-auth-form .form-select:focus {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.ci-auth-form label.col-form-label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--ci-text-dark-muted);
}

.ci-auth-form .ci-auth-forgot {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ci-gold);
}

.ci-auth-section {
  border: 0;
  padding: 0;
  margin: 0 0 1.75rem;
}

.ci-auth-section:last-of-type {
  margin-bottom: 0;
}

.ci-auth-legend {
  float: none;
  width: 100%;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ci-text-dark);
  margin-bottom: 1rem;
  padding: 0;
  font-family: "Rajdhani", sans-serif;
}

.ci-auth-footer {
  border-top: 1px solid var(--ci-border-gold);
  margin-top: 1.5rem;
  padding-top: 1.25rem;
}

.ci-auth-agree .form-check-label a {
  color: var(--ci-gold);
  font-weight: 600;
  text-decoration: none;
}

.ci-auth-agree .form-check-label a:hover {
  color: var(--ci-gold-bright);
  text-decoration: underline;
}

/* --- Layout: right column modules --- */
.ci-column-right {
  position: relative;
}

@media (min-width: 768px) {
  .ci-column-right-inner {
    position: sticky;
    top: calc(var(--ci-header-stack-height, var(--ci-header-height)) + 1rem);
    max-height: calc(100vh - var(--ci-header-stack-height, var(--ci-header-height)) - 2rem);
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 175, 55, 0.35) transparent;
  }

  .ci-column-right-inner::-webkit-scrollbar {
    width: 6px;
  }

  .ci-column-right-inner::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.35);
    border-radius: 4px;
  }

  .ci-column-right-inner::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.5);
  }
}

.ci-column-right-module {
  margin-bottom: 1.35rem;
}

.ci-column-right-module:last-child {
  margin-bottom: 0;
}

/* Panel shell (account, category, information) */
.ci-sidebar-panel {
  background: var(--ci-card-light);
  border-radius: var(--ci-radius-lg);
  border: 1px solid var(--ci-border-light);
  box-shadow: var(--ci-shadow-card);
  overflow: hidden;
}

.ci-sidebar-panel__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0.8rem 1rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ci-gold);
  background: linear-gradient(180deg, #161616 0%, #111 100%);
  border-bottom: 1px solid var(--ci-border-gold);
  font-family: "Rajdhani", sans-serif;
}

.ci-sidebar-panel__head i {
  opacity: 0.95;
  font-size: 1rem;
}

.ci-sidebar-list .list-group-item {
  border: none;
  border-bottom: 1px solid var(--ci-border-light);
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ci-text-dark-muted);
  background: var(--ci-card-light);
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.ci-sidebar-list .list-group-item:last-child {
  border-bottom: none;
}

.ci-sidebar-list .list-group-item:hover {
  background: rgba(212, 175, 55, 0.06);
  color: var(--ci-gold);
}

.ci-sidebar-list .list-group-item.active {
  background: rgba(212, 175, 55, 0.08);
  color: var(--ci-gold);
  font-weight: 700;
  border-left: 3px solid var(--ci-gold);
  padding-left: calc(1rem - 3px);
}

.ci-sidebar-list .list-group-item.active:hover {
  color: var(--ci-gold-bright);
}

.ci-sidebar-list__child {
  padding-left: 1.35rem !important;
  font-size: 0.8125rem;
}

.ci-sidebar-list__child.active {
  padding-left: calc(1.35rem - 3px) !important;
}

.ci-sidebar-list__logout {
  color: #c9a227;
  font-weight: 600;
}

.ci-sidebar-list__logout:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--ci-gold-bright);
}

.ci-sidebar-linklist li {
  border-bottom: 1px solid var(--ci-border-gold);
}

.ci-sidebar-linklist li:last-child {
  border-bottom: none;
}

.ci-sidebar-linklist a {
  display: block;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ci-text-muted);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.ci-sidebar-linklist a:hover {
  background: rgba(212, 175, 55, 0.06);
  color: var(--ci-gold);
}

/* Product modules (featured, latest, special, bestseller) in sidebar */
.ci-column-right-module > h3 {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ci-text-dim);
  margin: 0 0 0.75rem;
  padding: 0 0.15rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Rajdhani", sans-serif;
}

.ci-column-right-module > h3::before {
  content: "";
  width: 4px;
  height: 1rem;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--ci-gold), var(--ci-gold-mid));
  flex-shrink: 0;
}

.ci-column-right-module > .row {
  background: var(--ci-card-light);
  border-radius: var(--ci-radius-lg);
  border: 1px solid var(--ci-border-light);
  box-shadow: var(--ci-shadow-card);
  padding: 0.75rem;
  margin-inline: 0;
}

.ci-column-right-module > .row > .col {
  padding-inline: 0.35rem;
}

/* Banner carousel in sidebar */
.ci-column-right .carousel {
  border-radius: var(--ci-radius-lg);
  overflow: hidden;
  border: 1px solid var(--ci-border-gold);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.ci-column-right .carousel-control-prev,
.ci-column-right .carousel-control-next {
  width: 2rem;
  opacity: 0.85;
  color: var(--ci-gold);
}

/* Filter / generic cards in sidebar */
.ci-column-right .card {
  border-radius: var(--ci-radius-lg);
  border: 1px solid var(--ci-border-light);
  box-shadow: var(--ci-shadow-card);
  overflow: hidden;
  background: var(--ci-card-light);
  color: var(--ci-text-dark-muted);
}

.ci-column-right .card-header {
  background: linear-gradient(180deg, #161616 0%, #111 100%);
  color: var(--ci-gold);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ci-border-gold);
  border-top: none;
  border-left: none;
  border-right: none;
  padding: 0.75rem 1rem;
  font-family: "Rajdhani", sans-serif;
}

.ci-column-right .card-header i {
  opacity: 0.95;
}

.ci-column-right .card .list-group-item {
  border-color: var(--ci-border-light);
  font-size: 0.875rem;
  background: var(--ci-card-light);
  color: var(--ci-text-dark-muted);
}

.ci-column-right .card-footer {
  background: var(--ci-bg-elevated);
  border-top: 1px solid var(--ci-border-gold);
}

/* Legacy list-groups not yet wrapped (e.g. custom HTML module) */
.ci-column-right .list-group:not(.ci-sidebar-list) {
  border-radius: var(--ci-radius-lg);
  border: 1px solid var(--ci-border-light);
  box-shadow: var(--ci-shadow-card);
  overflow: hidden;
  background: var(--ci-card-light);
}

.ci-column-right .list-group:not(.ci-sidebar-list) .list-group-item {
  border-color: var(--ci-border-light);
  background: var(--ci-card-light);
  color: var(--ci-text-dark-muted);
}

.ci-column-right .list-group:not(.ci-sidebar-list) .list-group-item:hover {
  background: rgba(212, 175, 55, 0.06);
  color: var(--ci-gold);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--ci-bg-light-muted);
}

::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: #c4c4c4;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.text-warning {
  color: var(--ci-gold) !important;
}

.category-card .fw-bold {
  color: var(--ci-text-dark);
}

.category-card .text-secondary {
  color: var(--ci-text-dark-dim) !important;
}

.big-banner .text-white-50 {
  color: var(--ci-text-dim) !important;
}

.ci-menu-toggle span {
  color: rgba(255, 255, 255, 0.9);
}

.ci-footer .border-secondary.border-opacity-25 {
  border-color: var(--ci-border-gold) !important;
}

.ci-footer .bg-dark.bg-opacity-25 {
  background: var(--ci-card) !important;
}

.alert {
  border-radius: var(--ci-radius);
}

.alert-success {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.35);
  color: #bbf7d0;
}

.alert-danger {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.35);
  color: #fecaca;
}

/* Dark chrome: header, nav, footer stay light-on-dark */
.ci-topbar,
.ci-header,
.ci-header-shell,
.ci-footer,
.ci-nav-wrap {
  color: var(--ci-text-muted);
}

.ci-topbar h1,
.ci-topbar h2,
.ci-header h1,
.ci-header h2,
.ci-footer h1,
.ci-footer h2,
.ci-footer h3,
.ci-footer h4,
.ci-footer h5,
.ci-footer h6 {
  color: var(--ci-text);
}

.ci-product-zone > section.site-container:nth-of-type(even) {
  background: var(--ci-bg-light-alt);
}

.ci-product-zone > section.site-container:nth-of-type(odd) {
  background: var(--ci-bg-light);
}

/* ========== Zero blue: tokens + Bootstrap surfaces (loads after bootstrap.css) ========== */
:root,
[data-bs-theme="light"] {
  --bs-indigo: #161616;
  --bs-purple: #1a1a1a;
  --bs-info-rgb: 212, 175, 55;
  --bs-link-hover-color-rgb: 201, 162, 39;
  --bs-body-font-family: "Poppins", system-ui, -apple-system, sans-serif;
  --bs-body-color: #3d3d3d;
  --bs-body-bg: #f5f5f5;
  --bs-heading-color: #1a1a1a;
  --bs-border-color: rgba(0, 0, 0, 0.08);
}

[data-bs-theme="dark"] {
  --bs-link-color: #d4af37;
  --bs-link-hover-color: #e0b84c;
  --bs-link-color-rgb: 212, 175, 55;
  --bs-link-hover-color-rgb: 224, 184, 76;
}

.btn-info,
.btn-info:focus,
.btn-info:hover,
.btn-info:active,
.btn-info.active {
  --bs-btn-color: #0b0b0b;
  --bs-btn-bg: #d4af37;
  --bs-btn-border-color: rgba(212, 175, 55, 0.45);
  --bs-btn-hover-color: #0b0b0b;
  --bs-btn-hover-bg: #e0b84c;
  --bs-btn-hover-border-color: #e0b84c;
  --bs-btn-focus-shadow-rgb: 212, 175, 55;
  --bs-btn-active-color: #0b0b0b;
  --bs-btn-active-bg: #c9a227;
  --bs-btn-active-border-color: #c9a227;
  --bs-btn-disabled-color: rgba(11, 11, 11, 0.55);
  --bs-btn-disabled-bg: rgba(212, 175, 55, 0.35);
  --bs-btn-disabled-border-color: rgba(212, 175, 55, 0.25);
}

.btn-outline-info {
  --bs-btn-color: #d4af37;
  --bs-btn-border-color: rgba(212, 175, 55, 0.45);
  --bs-btn-hover-color: #0b0b0b;
  --bs-btn-hover-bg: #d4af37;
  --bs-btn-hover-border-color: #d4af37;
  --bs-btn-focus-shadow-rgb: 212, 175, 55;
  --bs-btn-active-color: #0b0b0b;
  --bs-btn-active-bg: #c9a227;
  --bs-btn-active-border-color: #c9a227;
}

.text-info {
  color: var(--ci-gold) !important;
}

.bg-info,
.badge.bg-info {
  background-color: #161616 !important;
  color: var(--ci-gold) !important;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.border-primary {
  border-color: rgba(212, 175, 55, 0.45) !important;
}

.pagination .page-item.active .page-link,
.pagination .page-link:hover {
  background-color: #d4af37;
  border-color: rgba(212, 175, 55, 0.45);
  color: #0b0b0b;
}

.pagination .page-link {
  background-color: var(--ci-card-light);
  border-color: var(--ci-border-light);
  color: var(--ci-text-dark-muted);
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: #d4af37 !important;
  color: #0b0b0b !important;
}

.dropdown-menu {
  --bs-dropdown-link-active-bg: rgba(212, 175, 55, 0.15);
  --bs-dropdown-link-active-color: #0b0b0b;
}

.list-group-item.active {
  background-color: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.35);
  color: var(--ci-gold);
}

.progress,
.progress-stacked {
  background-color: #161616;
}

.progress-bar.bg-primary,
.progress-bar {
  background-color: #d4af37;
  color: #0b0b0b;
}

/* ========== Indian GST labels ========== */
.ci-gst-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1a6b36;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 20px;
  padding: 0.2rem 0.65rem;
}

.ci-gst-label i {
  font-size: 0.75rem;
  color: #16a34a;
}

.ci-hsn-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ci-text-dark-dim);
  background: var(--ci-bg-light-muted);
  border: 1px solid var(--ci-border-light);
  border-radius: 4px;
  padding: 0.15rem 0.5rem;
  font-family: monospace;
  letter-spacing: 0.04em;
  margin-left: 0.35rem;
}

/* ========== Global storefront theme (catalog, cart, account, checkout) ========== */
#container > main,
#container > main .container,
#container > main .site-container {
  font-family: var(--bs-body-font-family);
  color: var(--ci-text-dark-muted);
}

#container > main h1,
#container > main h2,
#container > main h3,
#container > main h4,
#container > main h5,
#container > main h6,
#container > main legend,
#container > main .h1,
#container > main .h2,
#container > main .h3 {
  font-family: "Rajdhani", "Poppins", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ci-text-dark);
}

#container > main a:not(.btn):not(.nav-link):not(.page-link):not(.dropdown-item):not(.list-group-item):not(.ci-header-action):not(.ci-topbar-link):not(.ci-logo-link):not(.ci-logo-mark):not(.ci-card-action):not(.ci-hero-btn):not(.ci-side-cta):not(.ci-newsletter-btn) {
  color: var(--ci-gold-link);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

#container > main a:not(.btn):not(.nav-link):not(.page-link):not(.dropdown-item):not(.list-group-item):not(.ci-header-action):not(.ci-topbar-link):not(.ci-logo-link):not(.ci-logo-mark):not(.ci-card-action):not(.ci-hero-btn):not(.ci-side-cta):not(.ci-newsletter-btn):hover {
  color: var(--ci-gold);
}

#container > main .price,
#container > main .price-new {
  color: var(--ci-gold);
  font-weight: 800;
  letter-spacing: -0.02em;
}

#container > main .price-old {
  color: var(--ci-text-dark-dim);
  text-decoration: line-through;
  font-weight: 500;
}

#container > main .price-tax,
#container > main .text-secondary,
#container > main .text-muted {
  color: var(--ci-text-dark-dim) !important;
}

#container > main .rating .fa-star,
#container > main .rating .fa-solid.fa-star,
#container > main .text-warning {
  color: var(--ci-gold) !important;
}

#container > main .rating .fa-regular.fa-star {
  color: rgba(212, 175, 55, 0.35) !important;
}

#container > main .form-control,
#container > main .form-select,
#container > main .input-group-text {
  border-radius: 0.65rem;
  border-color: var(--ci-border-light);
  background: var(--ci-card-light);
  color: var(--ci-text-dark);
  font-family: var(--bs-body-font-family);
  font-size: 0.9375rem;
}

#container > main .form-control:focus,
#container > main .form-select:focus {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

#container > main .input-group-text {
  background: var(--ci-bg-light-muted);
  color: var(--ci-text-dark-muted);
  font-weight: 600;
}

#container > main label,
#container > main .form-label,
#container > main .col-form-label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--ci-text-dark-muted);
}

#container > main .btn-light,
#container > main .btn-outline-light {
  --bs-btn-color: var(--ci-text-dark-muted);
  --bs-btn-bg: var(--ci-card-light);
  --bs-btn-border-color: var(--ci-border-light);
  --bs-btn-hover-color: var(--ci-gold);
  --bs-btn-hover-bg: rgba(212, 175, 55, 0.08);
  --bs-btn-hover-border-color: rgba(212, 175, 55, 0.35);
}

#container > main .btn-secondary {
  --bs-btn-bg: #161616;
  --bs-btn-border-color: rgba(212, 175, 55, 0.25);
  --bs-btn-color: var(--ci-gold);
  --bs-btn-hover-bg: #1a1a1a;
  --bs-btn-hover-border-color: rgba(212, 175, 55, 0.45);
  --bs-btn-hover-color: var(--ci-gold-bright);
}

#container > main .btn-success {
  --bs-btn-bg: #1a3d28;
  --bs-btn-border-color: rgba(34, 197, 94, 0.35);
  --bs-btn-color: #bbf7d0;
  --bs-btn-hover-bg: #225a38;
}

#container > main .btn-danger {
  --bs-btn-bg: #3d1515;
  --bs-btn-border-color: rgba(239, 68, 68, 0.35);
  --bs-btn-color: #fecaca;
  --bs-btn-hover-bg: #5a2020;
}

#container > main .nav-tabs {
  border-bottom-color: var(--ci-border-light);
  gap: 0.25rem;
}

#container > main .nav-tabs .nav-link {
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8125rem;
  color: var(--ci-text-dark-dim);
  border-color: transparent;
  border-radius: 0.5rem 0.5rem 0 0;
}

#container > main .nav-tabs .nav-link:hover {
  color: var(--ci-gold);
  border-color: var(--ci-border-light);
  background: rgba(212, 175, 55, 0.06);
}

#container > main .nav-tabs .nav-link.active {
  color: var(--ci-text-dark);
  background: var(--ci-card-light);
  border-color: var(--ci-border-light) var(--ci-border-light) var(--ci-card-light);
  box-shadow: inset 0 2px 0 var(--ci-gold);
}

#container > main .tab-content {
  background: var(--ci-card-light);
  border: 1px solid var(--ci-border-light);
  border-radius: 0 var(--ci-radius) var(--ci-radius) var(--ci-radius);
  padding: 1.25rem;
  box-shadow: var(--ci-shadow-card);
}

#container > main .table {
  --bs-table-bg: var(--ci-card-light);
  --bs-table-color: var(--ci-text-dark-muted);
  --bs-table-border-color: var(--ci-border-light);
  font-size: 0.9375rem;
}

#container > main .table thead th,
#container > main .table thead td {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--ci-text-dark);
  background: var(--ci-bg-light-muted);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

#container > main .table-bordered > :not(caption) > * {
  border-color: var(--ci-border-light);
}

#container > main .img-thumbnail {
  border-radius: var(--ci-radius);
  border-color: var(--ci-border-light);
  background: var(--ci-card-light);
  padding: 0.5rem;
  box-shadow: var(--ci-shadow-card);
}

#container > main .card {
  border-radius: var(--ci-radius-lg);
  border: 1px solid var(--ci-border-light);
  background: var(--ci-card-light);
  color: var(--ci-text-dark-muted);
  box-shadow: var(--ci-shadow-card);
}

#container > main .card-header {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.8125rem;
  color: var(--ci-gold);
  background: linear-gradient(180deg, #161616 0%, #111 100%);
  border-bottom: 1px solid var(--ci-border-gold);
}

#container > main .card-footer {
  background: var(--ci-bg-light-alt);
  border-top: 1px solid var(--ci-border-light);
}

#container > main .accordion-item {
  border-color: var(--ci-border-light);
  background: var(--ci-card-light);
}

#container > main .accordion-button {
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  color: var(--ci-text-dark);
  background: var(--ci-bg-light-alt);
}

#container > main .accordion-button:not(.collapsed) {
  color: var(--ci-gold);
  background: rgba(212, 175, 55, 0.08);
  box-shadow: inset 0 -1px 0 var(--ci-border-light);
}

#container > main .modal-content {
  border-radius: var(--ci-radius-lg);
  border: 1px solid var(--ci-border-gold);
  background: var(--ci-card-light);
  color: var(--ci-text-dark-muted);
}

#container > main .modal-header {
  background: linear-gradient(180deg, #161616 0%, #111 100%);
  color: var(--ci-text);
  border-bottom: 1px solid var(--ci-border-gold);
}

#container > main .modal-header .btn-close {
  filter: invert(1);
}

#container > main .modal-title {
  font-family: "Rajdhani", sans-serif;
  color: var(--ci-gold);
}

#container > main .alert-success {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.35);
  color: #166534;
}

#container > main .alert-danger {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.35);
  color: #991b1b;
}

#container > main .alert-warning {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.35);
  color: var(--ci-text-dark);
}

#container > main .alert-info {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.25);
  color: var(--ci-text-dark-muted);
}

#container > main hr {
  border-color: var(--ci-border-light);
  opacity: 1;
}

/* Product detail page */
#product-info .price-new {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

#product-info #button-cart {
  font-weight: 700;
  letter-spacing: 0.02em;
}

#product-info .list-unstyled li {
  color: var(--ci-text-dark-muted);
  font-size: 0.9375rem;
}

#product-category h3,
#product-search h3,
#product-manufacturer h3 {
  font-family: "Rajdhani", sans-serif;
  color: var(--ci-text-dark);
}

#product-category ul a,
#product-search ul a {
  color: var(--ci-gold-link);
}

#product-category ul a:hover,
#product-search ul a:hover {
  color: var(--ci-gold);
}

#product-list .row > .col {
  margin-bottom: 1.25rem;
}

/* Legacy OpenCart product-thumb (non-card layout) */
#container > main .product-thumb:not(.product-card) {
  border: 1px solid var(--ci-border-light);
  border-radius: var(--ci-radius);
  background: var(--ci-card-light);
  box-shadow: var(--ci-shadow-card);
  overflow: hidden;
}

#container > main .product-thumb:not(.product-card) .description h4 a {
  color: var(--ci-text-dark);
  font-weight: 600;
}

#container > main .product-thumb:not(.product-card) .description h4 a:hover {
  color: var(--ci-gold);
}

#container > main .product-thumb:not(.product-card) .button {
  position: static;
  width: 100%;
  border-top: 1px solid rgba(212, 175, 55, 0.22);
}

#container > main .product-thumb:not(.product-card) .button button {
  background: #111;
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.08);
  line-height: 2.75rem;
}

#container > main .product-thumb:not(.product-card) .button button:hover {
  background: rgba(212, 175, 55, 0.16);
  color: var(--ci-gold);
}

/* Blog / CMS on light zone */
#container > main .blog-thumb {
  border: 1px solid var(--ci-border-light);
  border-radius: var(--ci-radius-lg);
  background: var(--ci-card-light);
  box-shadow: var(--ci-shadow-card);
  padding: 1rem;
}

#container > main .blog-thumb h4 {
  font-family: "Rajdhani", sans-serif;
  color: var(--ci-text-dark);
}

/* Left column — mirror right sidebar */
#column-left.ci-column-left {
  position: relative;
}

@media (min-width: 768px) {
  .ci-column-left-inner {
    position: sticky;
    top: calc(var(--ci-header-stack-height, var(--ci-header-height)) + 1rem);
    max-height: calc(100vh - var(--ci-header-stack-height, var(--ci-header-height)) - 2rem);
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 175, 55, 0.35) transparent;
  }
}

.ci-column-left-module {
  margin-bottom: 1.35rem;
}

.ci-column-left-module:last-child {
  margin-bottom: 0;
}

#column-left .card,
#column-left .ci-sidebar-panel {
  margin-bottom: 0;
}

#column-left .card-header,
#column-left .ci-sidebar-panel__head {
  font-family: "Rajdhani", sans-serif;
}

#column-left .list-group-item {
  color: var(--ci-text-dark-muted);
  background: var(--ci-card-light);
  border-color: var(--ci-border-light);
}

#column-left .list-group-item:hover {
  background: rgba(212, 175, 55, 0.06);
  color: var(--ci-gold);
}

#column-left .list-group-item.active {
  background: rgba(212, 175, 55, 0.08);
  color: var(--ci-gold);
  border-left: 3px solid var(--ci-gold);
}

/* Cart dropdown in header — keep dark chrome */
#cart .dropdown-menu {
  background: var(--ci-card);
  border: 1px solid var(--ci-border-gold);
  border-radius: var(--ci-radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  color: var(--ci-text-muted);
}

#cart .dropdown-menu a {
  color: var(--ci-gold);
}

#cart .dropdown-menu .table {
  --bs-table-color: var(--ci-text-muted);
  --bs-table-bg: transparent;
}

#cart .dropdown-menu .btn-primary {
  width: 100%;
}
