/* ============================================================
   Siddhababa Hardware – Main CSS
   Theme: Clean Modern | Colors: Dark Navy + Red + Amber
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --primary:       #0F172A;   /* dark navy – headings, header bg */
  --primary-mid:   #1E293B;   /* slightly lighter navy */
  --red:           #CC1F1F;   /* brand red */
  --red-hover:     #B01717;   /* darker red on hover */
  --amber:         #F5A623;   /* brand amber/yellow */
  --amber-light:   #FEF3C7;   /* soft amber bg tint */
  --white:         #FFFFFF;
  --off-white:     #F8FAFC;
  --border:        #E2E8F0;
  --text:          #334155;
  --muted:         #64748B;
  --light-muted:   #94A3B8;

  --font-head:     'Inter', 'Outfit', sans-serif;
  --font-body:     'Inter', sans-serif;

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

  --shadow-sm:     0 1px 4px rgba(0,0,0,0.07);
  --shadow-md:     0 4px 18px rgba(0,0,0,0.09);
  --shadow-lg:     0 10px 40px rgba(0,0,0,0.13);

  --transition:    0.25s ease;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { display: block; max-width: 100%; }
ul { list-style: none; padding: 0; margin: 0; }

/* ── Utilities ──────────────────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.text-center { text-align: center; }
.w-full { width: 100%; }
.mb-10 { margin-bottom: 10px; }
.section-pad { padding: 80px 0; }

/* ── Section Labels ─────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-desc {
  color: var(--muted);
  font-size: 16px;
  max-width: 580px;
  margin: 0 auto;
}
.section-head {
  text-align: center;
  margin-bottom: 50px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  padding: 11px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  line-height: 1;
}
.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-dark:hover {
  background: var(--primary-mid);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-red {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
}
.btn-amber {
  background: var(--amber);
  color: var(--primary);
  border-color: var(--amber);
  font-weight: 700;
}
.btn-amber:hover {
  background: #e8981c;
  border-color: #e8981c;
  transform: translateY(-2px);
}
/* legacy aliases for existing PHP template buttons */
.button, input[type="submit"] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  padding: 11px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.accent-btn  { background: var(--amber); color: var(--primary); border-color: var(--amber); font-weight: 700; }
.accent-btn:hover { background: #e8981c; border-color: #e8981c; transform: translateY(-2px); }
.secondary-btn { background: var(--primary); color: var(--white); border-color: var(--primary); }
.secondary-btn:hover { background: var(--primary-mid); transform: translateY(-2px); }
.outline-btn { background: transparent; border-color: var(--border); color: var(--primary); }
.outline-btn:hover { border-color: var(--primary); background: var(--primary); color: var(--white); }

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.text-logo {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.accent-text { color: var(--red); }

/* Nav */
.main-navigation .nav-menu {
  display: flex;
  gap: 32px;
}
.main-navigation .nav-menu a {
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
  padding: 6px 0;
  position: relative;
}
.main-navigation .nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--transition);
}
.main-navigation .nav-menu a:hover,
.main-navigation .nav-menu .current-menu-item > a { color: var(--red); }
.main-navigation .nav-menu a:hover::after,
.main-navigation .nav-menu .current-menu-item > a::after { width: 100%; }

/* Shop Dropdown */
.shop-dropdown { position: relative; }
.shop-dropdown .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  min-width: 240px;
  padding: 10px 0;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
}
.shop-dropdown:hover .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.shop-dropdown .sub-menu li a {
  display: block;
  padding: 9px 20px;
  font-size: 14px;
  color: var(--text);
}
.shop-dropdown .sub-menu li a:hover { color: var(--red); background: var(--off-white); }
.shop-dropdown .sub-menu li a::after { display: none; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-search-wrap { position: relative; }
.search-toggle-btn { background: none; border: none; font-size: 18px; color: var(--text); cursor: pointer; padding: 4px; }
.search-toggle-btn:hover { color: var(--red); }
.header-search-form-container {
  position: absolute;
  right: 0; top: 140%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 10;
  width: 280px;
}
.header-search-form-container.active { opacity: 1; visibility: visible; transform: translateY(0); }
.search-form-header { display: flex; gap: 6px; }
.search-field-header {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
}
.search-submit-header {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* Invoice Badge */
.invoice-cart-badge {
  position: relative;
  font-size: 20px;
  color: var(--text);
  padding: 4px;
  transition: color var(--transition);
}
.invoice-cart-badge:hover { color: var(--red); }
.invoice-cart-count {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--white);
}
.header-cta-btn {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.header-cta-btn:hover { background: var(--red-hover); border-color: var(--red-hover); }

/* Mobile Toggle */
.menu-toggle-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger-bar {
  width: 24px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0; right: -320px;
  width: 300px; height: 100vh;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  padding: 28px 24px;
  transition: right var(--transition);
  overflow-y: auto;
}
.mobile-nav-drawer.open { right: 0; }
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}
.drawer-title { font-weight: 700; font-size: 17px; color: var(--primary); }
.drawer-close-btn { background: none; border: none; font-size: 26px; cursor: pointer; color: var(--primary); }
.mobile-menu li { margin-bottom: 14px; }
.mobile-menu li a { color: var(--text); font-weight: 500; font-size: 16px; display: flex; justify-content: space-between; align-items: center; }
.mobile-menu li a:hover { color: var(--red); }
.mobile-submenu { padding-left: 18px; margin-top: 8px; display: none; }
.mobile-submenu li a { font-size: 14px; }
.drawer-actions { margin-top: 28px; border-top: 1px solid var(--border); padding-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1500; display: none;
}
.drawer-overlay.active { display: block; }

/* ── Hero Slider Section (Inspired by reference, modernized) ── */
.hero-slider-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--primary);
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 7s ease-out;
  transform: scale(1.02);
  z-index: 1;
}
/* Active slide Ken Burns zoom effect */
.swiper-slide-active .hero-slide-bg {
  transform: scale(1.08);
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.45) 100%);
  z-index: 2;
}
.hero-slider-section .swiper-slide {
  display: flex;
  align-items: center;
  position: relative;
}
.hero-glass-card {
  position: relative;
  z-index: 3;
  max-width: 680px;
  padding: 48px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  color: var(--white);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}
.swiper-slide-active .hero-glass-card {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.2s;
}
.hero-subtitle {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}
.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 16px;
  color: #E2E8F0;
  line-height: 1.65;
  margin-bottom: 32px;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Custom Swiper Controls */
.hero-swiper-button-prev,
.hero-swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition);
}
.hero-swiper-button-prev:hover,
.hero-swiper-button-next:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.hero-swiper-button-prev { left: 30px; }
.hero-swiper-button-next { right: 30px; }

@media (max-width: 991px) {
  .hero-swiper-button-prev,
  .hero-swiper-button-next { display: none; }
}

/* Pagination dots style */
.hero-swiper-pagination.swiper-pagination {
  bottom: 32px !important;
}
.hero-swiper-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4) !important;
  opacity: 1;
  width: 8px;
  height: 8px;
  margin: 0 5px !important;
  transition: all var(--transition);
}
.hero-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--amber) !important;
  width: 24px;
  border-radius: 4px;
}


/* ── About Preview & About Page Modern CSS ───────────────────── */
.about-preview-section { padding: 90px 0; }
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-preview-image-wrap { position: relative; }
.about-preview-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.experience-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--amber);
  color: var(--primary);
  padding: 20px 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
  z-index: 10;
}
.exp-years { font-size: 34px; font-weight: 800; display: block; line-height: 1; }
.exp-text { font-size: 11px; font-weight: 700; text-transform: uppercase; }
.about-preview-text-wrap .section-title { text-align: left; }
.about-preview-bullets { margin: 22px 0; }
.about-preview-bullets li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}
.about-preview-bullets li i { color: var(--red); }

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE — Premium BEM Design
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. Hero ─────────────────────────────────────────────────── */
.ab-hero {
  background: var(--white);
  padding: 100px 0 90px;
  border-bottom: 1px solid var(--border);
}
.ab-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.ab-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.ab-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.ab-hero__eyebrow span:last-child {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
.ab-hero__title {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.ab-hero__title-accent {
  color: var(--red);
}
.ab-hero__desc {
  font-size: 15.5px;
  line-height: 1.75;
  color: #64748B; /* Elegant slate grey */
  margin-bottom: 36px;
}
.ab-hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Right — image card mockup */
.ab-hero__image-wrap {
  position: relative;
}
.ab-hero__img-card {
  position: relative;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}
.ab-hero__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.ab-hero__float-badge {
  position: absolute;
  bottom: 24px;
  left: -28px;
  background: var(--amber);
  color: var(--primary);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
  z-index: 5;
}
.ab-badge-num {
  display: block;
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}
.ab-badge-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}


/* ── 1.5 Features Grid ───────────────────────────────────────── */
.ab-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ab-feature-card {
  background: #FCFCFD; /* Soft white/light gray background card */
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.ab-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
  border-color: var(--border-hover);
}
.ab-feature-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.ab-feature-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  letter-spacing: -0.3px;
}
.ab-feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ab-feature-text {
  font-size: 13.5px;
  line-height: 1.65;
  color: #64748B; /* slate gray readable text */
  margin: 0;
}

/* ── 2. Stats ────────────────────────────────────────────────── */
.ab-stats {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.ab-stats__row {
  display: flex;
  align-items: stretch;
}
.ab-stats__item {
  flex: 1;
  text-align: center;
  padding: 52px 20px;
  position: relative;
}
.ab-stats__item::after {
  content: '';
  position: absolute;
  right: 0; top: 30%; bottom: 30%;
  width: 1px;
  background: var(--border);
}
.ab-stats__item:last-child::after { display: none; }
.ab-stats__num {
  display: block;
  font-size: 52px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -2px;
}
.ab-stats__plus {
  font-size: 36px;
  color: var(--amber);
  font-weight: 800;
}
.ab-stats__label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-top: 8px;
  letter-spacing: 0.5px;
}

/* ── 3. Mission & Vision ─────────────────────────────────────── */
.ab-mv {
  background: var(--off-white);
  padding: 100px 0 110px;
}
.ab-section-head {
  text-align: center;
  margin-bottom: 60px;
}
.ab-section-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -1px;
  margin: 8px 0 14px;
}
.ab-section-desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.ab-mv__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.ab-mv__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 52px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.ab-mv__card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.ab-mv__card:hover::after { transform: scaleX(1); }
.ab-mv__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

/* Large faded background letter */
.ab-mv__card--mission::before,
.ab-mv__card--vision::before {
  position: absolute;
  top: -10px; right: 24px;
  font-size: 120px;
  font-weight: 900;
  line-height: 1;
  color: rgba(15,23,42,0.04);
  pointer-events: none;
}
.ab-mv__card--mission::before { content: 'M'; }
.ab-mv__card--vision::before  { content: 'V'; }

.ab-mv__card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.ab-mv__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  flex-shrink: 0;
}
.ab-mv__icon-wrap--amber {
  background: var(--amber);
  color: var(--primary);
}
.ab-mv__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 20px;
}
.ab-mv__tag--amber {
  color: #92670a;
  background: #fef3c7;
  border-color: #fde68a;
}

.ab-mv__card-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
.ab-mv__card-desc {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--text);
  margin: 0 0 32px;
}

.ab-mv__card-footer {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.ab-mv__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 20px;
}
.ab-mv__pill i { color: var(--red); font-size: 11px; }

/* ── 4. CTA ──────────────────────────────────────────────────── */
.ab-cta {
  background: #F8FAFC; /* Clean light gray background matching screenshot requests */
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}
.ab-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.ab-cta__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.ab-cta__heading {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
  margin: 0;
}
.ab-cta__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.ab-cta__ghost-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.ab-cta__ghost-btn:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ab-hero__title { font-size: 46px; }
  .ab-mv__card { padding: 40px; }
  .ab-features-grid { gap: 16px; }
}
@media (max-width: 768px) {
  .ab-hero { padding: 64px 0; }
  .ab-hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .ab-hero__image-wrap { order: -1; }
  .ab-slider-container { max-width: 520px; margin: 0 auto; }
  .ab-hero__title { font-size: 38px; letter-spacing: -1px; }
  .ab-hero__desc { max-width: 100%; }

  .ab-features-grid { grid-template-columns: 1fr; gap: 20px; }

  .ab-stats__row { flex-wrap: wrap; }
  .ab-stats__item { flex: 1 1 50%; border-bottom: 1px solid var(--border); padding: 36px 16px; }
  .ab-stats__item::after { display: none; }
  .ab-stats__num { font-size: 40px; }

  .ab-mv { padding: 72px 0 80px; }
  .ab-mv__grid { grid-template-columns: 1fr; gap: 24px; }
  .ab-section-title { font-size: 32px; }

  .ab-cta { padding: 48px 0; }
  .ab-cta__inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .ab-cta__heading { font-size: 22px; }
}
@media (max-width: 480px) {
  .ab-hero__title { font-size: 30px; letter-spacing: -0.5px; }
  .ab-adv-grid { grid-template-columns: 1fr; gap: 16px; }
  .ab-feature-card { padding: 24px 20px; }
  .ab-mv__card { padding: 32px 24px; }
  .ab-stats__item { flex: 1 1 100%; }
}




/* ── Category Filter Tabs ────────────────────────────────────── */
.category-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.cat-filter-btn {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--muted);
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-head);
}
.cat-filter-btn:hover,
.cat-filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* ── Category Cards ──────────────────────────────────────────── */
.categories-section { background: var(--off-white); padding: 80px 0; }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.category-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.cat-card-img-wrap { height: 180px; overflow: hidden; }
.cat-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.category-card:hover .cat-card-img { transform: scale(1.07); }
.cat-card-content { padding: 20px 22px; }
.cat-card-title { font-size: 17px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.cat-card-count { color: var(--light-muted); font-size: 13px; margin-bottom: 14px; }

/* ── Featured Products Section ───────────────────────────────── */
.featured-products-section { padding: 80px 0; }

/* Product Category Filter in Products Section */
.products-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.prod-filter-btn {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--muted);
  border-radius: 30px;
  padding: 8px 22px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-head);
}
.prod-filter-btn:hover,
.prod-filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* ── Unified Product Card (Home + Shop + Category — identical) ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  /* no border — flush, clean look */
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Full-width image — fills the top, no padding, no border */
.pc-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #F1F5F9;
  flex-shrink: 0;
}
.pc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.product-card:hover .pc-img { transform: scale(1.06); }

/* Status badge over image */
.pc-img-wrap .status-badge {
  position: absolute;
  top: 10px; right: 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  z-index: 2;
}
.status-available { background: #DCFCE7; color: #166534; }
.status-out       { background: #FEE2E2; color: #991B1B; }
.status-call      { background: var(--amber-light); color: #92400E; }

/* Card body */
.pc-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
/* Category label */
.pc-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
  display: block;
}
/* Product name */
.pc-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
  margin: 0 0 8px;
}
.pc-name a { color: inherit; }
.pc-name a:hover { color: var(--red); }
/* 2-line clamped description */
.pc-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* Add to Cart */
.pc-add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-head);
  cursor: pointer;
  transition: all var(--transition);
  width: 100%;
  margin-top: auto;
}
.pc-add-btn:hover { background: var(--red); transform: translateY(-1px); }
.pc-add-btn.added { background: #16a34a; }
.pc-add-btn.added:hover { background: #15803d; }

/* Legacy aliases — kept so old templates still work */
.prod-img-wrap { position: relative; width: 100%; aspect-ratio: 4/3; overflow: hidden; background: #F1F5F9; flex-shrink: 0; }
.prod-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.product-card:hover .prod-img-wrap img { transform: scale(1.06); }
.prod-content { padding: 16px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.prod-cat  { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red); margin-bottom: 6px; display: block; }
.prod-title { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 8px; line-height: 1.3; }
.prod-title a { color: inherit; }
.prod-title a:hover { color: var(--red); }
.prod-desc { font-size: 13px; color: var(--muted); line-height: 1.55; margin-bottom: 16px; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.prod-add-btn { display: flex; align-items: center; justify-content: center; gap: 7px; background: var(--primary); color: var(--white); border: none; border-radius: var(--radius-sm); padding: 10px 16px; font-size: 13px; font-weight: 600; font-family: var(--font-head); cursor: pointer; transition: all var(--transition); width: 100%; margin-top: auto; }
.prod-add-btn:hover { background: var(--red); }

/* General status badge (used in prod-img-wrap too) */
.status-badge {
  position: absolute;
  top: 10px; right: 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  z-index: 2;
}

/* ── Why Choose Us ───────────────────────────────────────────── */
.why-choose-us-section {
  background: var(--primary);
  padding: 80px 0;
}
.why-choose-us-section .section-title { color: var(--white); }
.why-choose-us-section .section-desc { color: var(--light-muted); }
.why-choose-us-section .section-label { color: var(--amber); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 50px;
}
.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all var(--transition);
}
.feature-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--red);
  transform: translateY(-4px);
}
.feature-icon-wrap { font-size: 36px; color: var(--amber); margin-bottom: 18px; }
.feature-title { color: var(--white); font-size: 19px; margin-bottom: 10px; }
.feature-desc { color: var(--light-muted); font-size: 14px; line-height: 1.6; }

/* ── Services Grid ───────────────────────────────────────────── */
.services-section { padding: 80px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 50px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-img-wrap { height: 210px; position: relative; overflow: hidden; }
.service-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.service-card:hover .service-img { transform: scale(1.06); }
.service-icon-floating {
  position: absolute;
  bottom: -22px; right: 24px;
  background: var(--red);
  color: var(--white);
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.service-card-body { padding: 30px 26px; }
.service-card-title { font-size: 20px; margin-bottom: 10px; color: var(--primary); }
.service-card-desc { color: var(--muted); font-size: 14px; margin-bottom: 18px; line-height: 1.6; }
.service-more-link { font-weight: 600; font-size: 14px; color: var(--red); display: inline-flex; align-items: center; gap: 5px; }
.service-more-link:hover { gap: 9px; }

/* ── Team Preview ────────────────────────────────────────────── */
.team-preview-section { background: var(--off-white); padding: 80px 0; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 50px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition);
  border: 1px solid var(--border);
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.team-img-wrap { position: relative; height: 300px; overflow: hidden; }
.team-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.team-card:hover .team-img { transform: scale(1.05); }
.team-social-overlay {
  position: absolute;
  bottom: -50px; left: 0;
  width: 100%;
  background: rgba(15,23,42,0.88);
  padding: 10px 0;
  display: flex; justify-content: center; gap: 14px;
  transition: bottom var(--transition);
}
.team-img-wrap:hover .team-social-overlay { bottom: 0; }
.team-social-link { color: var(--white); font-size: 15px; }
.team-social-link:hover { color: var(--amber); }
.team-info { padding: 22px; }
.team-name { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.team-position { color: var(--red); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* ── Testimonials ────────────────────────────────────────────── */
.testimonials-section { background: var(--off-white); padding: 80px 0; }
.testimonial-swiper { padding-bottom: 50px; }
.testimonial-slide-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.testimonial-quote-icon { font-size: 36px; color: #E2E8F0; margin-bottom: 18px; }
.testimonial-text { font-size: 17px; line-height: 1.75; font-style: italic; color: var(--text); margin-bottom: 22px; }
.testimonial-stars { color: var(--amber); margin-bottom: 14px; }
.testimonial-author-name { font-weight: 700; font-size: 17px; color: var(--primary); }
.testimonial-author-company { color: var(--muted); font-size: 13px; }

/* ── Stats Section ───────────────────────────────────────────── */
.stats-section { background: var(--primary); padding: 60px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
}
.stat-item { padding: 20px; }
.stat-number { font-size: 46px; font-weight: 800; color: var(--amber); line-height: 1; margin-bottom: 8px; }
.stat-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--light-muted); }

/* ── Gallery Preview ─────────────────────────────────────────── */
.gallery-preview-section { padding: 80px 0; }
.gallery-item-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
}
.gallery-item-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item-card:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(15,23,42,0.82);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  opacity: 0;
  transition: opacity var(--transition);
  padding: 20px; text-align: center;
  color: var(--white);
}
.gallery-item-card:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-title { font-size: 18px; color: var(--white); margin-bottom: 6px; }
.gallery-item-cat { color: var(--amber); font-size: 12px; text-transform: uppercase; font-weight: 700; }
.gallery-lightbox-icon { font-size: 24px; margin-top: 14px; color: var(--white); }
.gallery-filter-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.filter-tab {
  padding: 8px 20px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 30px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-tab.active, .filter-tab:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.gallery-masonry-grid { position: relative; }
.gallery-grid-sizer, .gallery-item-wrap { width: calc(33.333% - 20px); }
@media (max-width: 991px) { .gallery-grid-sizer, .gallery-item-wrap { width: calc(50% - 15px); } }
@media (max-width: 575px) { .gallery-grid-sizer, .gallery-item-wrap { width: 100%; } }
.gallery-item-wrap { margin-bottom: 28px; float: left; }

/* ── Contact CTA ─────────────────────────────────────────────── */
.contact-cta-section {
  background: #F8FAFC; /* Clean light gray background */
  padding: 90px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.contact-cta-section .section-title {
  color: var(--primary);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0 auto 18px;
  line-height: 1.2;
  text-align: center;
  max-width: 700px;
}
.contact-cta-section .section-label {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
  text-align: center;
}
.contact-cta-desc {
  color: var(--text);
  font-size: 16.5px;
  line-height: 1.8;
  margin: 0 auto 36px;
  max-width: 640px;
  text-align: center;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer { background: var(--primary); color: var(--light-muted); padding-top: 72px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding-bottom: 56px;
}
@media (max-width: 991px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px)  { .footer-grid { grid-template-columns: 1fr; } }
.footer-title { color: var(--white); font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.company-desc { line-height: 1.7; margin-bottom: 22px; font-size: 14px; }
.footer-social-icons { display: flex; gap: 10px; }
.social-icon {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05);
  color: var(--white);
  width: 36px; height: 36px;
  border-radius: 50%;
  transition: all var(--transition);
  font-size: 14px;
}
.social-icon:hover { background: var(--red); color: var(--white); }
.footer-links-list li { margin-bottom: 10px; }
.footer-links-list li a { color: var(--light-muted); font-size: 14px; transition: all var(--transition); }
.footer-links-list li a:hover { color: var(--amber); padding-left: 4px; }
.footer-contact-details li { display: flex; gap: 14px; margin-bottom: 16px; align-items: flex-start; }
.footer-contact-details li i { color: var(--amber); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-details li span { font-size: 14px; }
.footer-copyright-bar { padding: 22px 0; background: rgba(0,0,0,0.18); }
.copyright-container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.copyright-text, .developer-credit { font-size: 13px; margin: 0; }

/* ── Scroll to Top ───────────────────────────────────────────── */
.scroll-to-top-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  background: var(--red);
  color: var(--white);
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  z-index: 999;
  font-size: 16px;
}
.scroll-to-top-btn.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-to-top-btn:hover { background: var(--red-hover); }

/* ── Invoice Page Styles ─────────────────────────────────────── */
.invoice-page-container { padding: 72px 0 90px; }

/* Empty State */
.invoice-empty-state {
  text-align: center;
  padding: 70px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.invoice-empty-icon { font-size: 56px; color: var(--light-muted); margin-bottom: 18px; }
.invoice-empty-text { font-size: 20px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.invoice-empty-sub { color: var(--muted); font-size: 15px; margin-bottom: 28px; }

/* Wizard Steps Bar */
.wizard-bar {
  display: flex;
  align-items: center;
  margin-bottom: 44px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  gap: 10px;
}
.wizard-step {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.wizard-step:hover { background: var(--off-white); }
.step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--border);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.wizard-step.active .step-num { background: var(--primary); color: var(--white); }
.wizard-step.done .step-num { background: #16a34a; color: var(--white); }
.step-label {
  font-weight: 600;
  font-size: 14px;
  color: var(--muted);
  transition: color var(--transition);
}
.wizard-step.active .step-label { color: var(--primary); }
.wizard-step.done .step-label { color: #16a34a; }
.wizard-divider {
  height: 1px;
  flex: 0 0 40px;
  background: var(--border);
}

/* Panel */
.wizard-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px;
  animation: panelIn 0.3s ease;
}
@keyframes panelIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.panel-heading {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.panel-heading i { color: var(--red); }

/* Step 1 - Invoice Items Table */
.invoice-table-wrap { overflow-x: auto; }
.invoice-table {
  width: 100%;
  border-collapse: collapse;
}
.invoice-table th {
  background: var(--off-white);
  padding: 13px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  text-align: left;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}
.invoice-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  font-size: 14px;
}
.invoice-table tr:last-child td { border-bottom: none; }
.invoice-table tr:hover td { background: #FAFBFC; }
.invoice-item-thumb {
  width: 52px; height: 52px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--off-white);
  padding: 4px;
}
.invoice-item-name { font-weight: 700; color: var(--primary); margin-bottom: 3px; }
.invoice-item-cat { font-size: 11px; color: var(--muted); }
.qty-edit-group {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: fit-content;
}
.qty-minus, .qty-plus {
  background: var(--off-white);
  border: none;
  width: 30px; height: 34px;
  font-size: 16px; font-weight: 700;
  cursor: pointer;
  color: var(--text);
  transition: all var(--transition);
}
.qty-minus:hover, .qty-plus:hover { background: var(--border); }
.invoice-table-qty-input {
  width: 48px; height: 34px;
  border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border);
  text-align: center;
  font-size: 14px; font-weight: 600;
  font-family: var(--font-body);
}
.invoice-table-remarks-input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: var(--font-body);
  min-width: 160px;
}
.invoice-table-remarks-input:focus { border-color: var(--primary); outline: none; }
.remove-invoice-item-btn {
  background: none;
  border: none;
  color: var(--light-muted);
  font-size: 17px;
  cursor: pointer;
  padding: 4px;
  transition: color var(--transition);
}
.remove-invoice-item-btn:hover { color: var(--red); }
.reorder-btn {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 28px; height: 28px;
  cursor: pointer;
  font-size: 11px;
  color: var(--muted);
  transition: all var(--transition);
}
.reorder-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.action-cell { display: flex; gap: 6px; align-items: center; justify-content: flex-end; }

/* Step 2 - Form */
.invoice-form-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 30px;
  margin-bottom: 24px;
}
.form-section-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-section-title i { color: var(--red); }
.form-row {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}
.form-row-2 { grid-template-columns: 1fr 1fr; }
.form-row-3 { grid-template-columns: 1fr 1fr 1fr; }
.form-row-21 { grid-template-columns: 2fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
}
.form-group input,
.form-group textarea {
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(15,23,42,0.06); }
.form-group textarea { resize: vertical; }

/* Step 3 - Invoice Preview */
.invoice-preview-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
}
.invoice-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: var(--primary);
  padding: 32px 36px;
  color: var(--white);
  flex-wrap: wrap;
  gap: 20px;
}
.inv-company-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.inv-company-sub { font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 2px; }
.inv-company-tag { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--amber); font-weight: 700; }
.inv-meta-right { text-align: right; }
.inv-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.inv-meta-right p { font-size: 13px; color: rgba(255,255,255,0.75); margin-bottom: 3px; }
.inv-meta-right strong { color: var(--white); }
.invoice-preview-body { padding: 32px 36px; }
.inv-bill-to-block {
  margin-bottom: 28px;
  padding: 18px 22px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  display: inline-block;
  min-width: 260px;
}
.inv-party-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.inv-party-label i { color: var(--red); }
.inv-party-info p { font-size: 13px; color: var(--text); margin-bottom: 5px; }
.inv-party-info strong { color: var(--primary); }
.inv-items-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
}
.inv-items-table thead th {
  background: var(--off-white);
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  text-align: left;
}
.inv-items-table tbody td {
  padding: 13px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.inv-items-table tbody tr:last-child td { border-bottom: none; }
.inv-items-table tbody tr:nth-child(even) td { background: #FAFBFC; }
.inv-prod-name { font-weight: 700; color: var(--primary); }
.inv-qty-cell { text-align: center; font-weight: 700; color: var(--primary); }
.inv-remarks-cell { font-style: italic; color: var(--muted); font-size: 13px; }
.inv-footer-note {
  background: var(--amber-light);
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
  font-size: 13px;
  color: #78350f;
  font-weight: 500;
}
.inv-remarks-note {
  margin-top: 20px;
  padding: 10px 14px;
  border-top: 1px dashed var(--border);
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.6;
}
.inv-remarks-note strong {
  font-style: normal;
  color: var(--primary);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Wizard Nav Buttons */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  gap: 12px;
  flex-wrap: wrap;
}
.wizard-nav-right { display: flex; gap: 12px; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════════
   SHOP PAGE LAYOUT
══════════════════════════════════════════════════════════════ */

/* Page Hero */
.shop-page-hero {
  background: var(--primary);
  padding: 56px 0 48px;
  text-align: center;
}
.shop-page-hero .section-label { color: var(--amber); }
.shop-page-title {
  font-size: 38px;
  font-weight: 800;
  color: var(--white);
  margin: 8px 0 0;
}
.shop-page-desc {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  margin-top: 10px;
}

/* Container + layout */
.shop-container { padding-top: 48px; padding-bottom: 80px; }
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  align-items: start;
}
@media (max-width: 991px) { .shop-layout { grid-template-columns: 1fr; } }

/* ── Sidebar ─────────────────────────────────────────────────── */
.shop-sidebar-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  position: sticky;
  top: 88px;
}
.sidebar-widget { margin-bottom: 28px; }
.sidebar-widget:last-child { margin-bottom: 0; }
.sidebar-widget-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 14px;
}

/* Search */
.sidebar-search-wrap { position: relative; }
.sidebar-search-input {
  width: 100%;
  padding: 10px 38px 10px 13px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text);
  transition: border-color var(--transition);
}
.sidebar-search-input:focus { border-color: var(--primary); outline: none; }
.sidebar-search-btn {
  position: absolute;
  right: 10px; top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
  padding: 0;
}
.sidebar-search-btn:hover { color: var(--red); }

/* Category list */
.sidebar-cat-list { list-style: none; padding: 0; margin: 0; }
.sidebar-cat-list li { margin-bottom: 2px; }
.sidebar-cat-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text);
  transition: all var(--transition);
  cursor: pointer;
}
.sidebar-cat-link:hover { background: var(--off-white); color: var(--red); }
.sidebar-cat-link.active { background: var(--off-white); color: var(--red); font-weight: 700; }
.cat-count {
  background: var(--border);
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 20px;
  min-width: 22px;
  text-align: center;
}
.sidebar-cat-link.active .cat-count { background: #FECACA; color: var(--red); }

/* ── Shop Main ───────────────────────────────────────────────── */
.shop-main { min-width: 0; }

/* Top bar */
.shop-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  margin-bottom: 28px;
}
.shop-count { margin: 0; font-size: 14px; color: var(--muted); }
.shop-count strong { color: var(--primary); }

/* Empty state */
.shop-empty {
  text-align: center;
  padding: 60px 20px;
  background: var(--off-white);
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-lg);
}
.shop-empty i { font-size: 48px; color: var(--light-muted); margin-bottom: 16px; display: block; }
.shop-empty h3 { color: var(--primary); margin-bottom: 6px; font-size: 20px; }
.shop-empty p { color: var(--muted); font-size: 14px; margin: 0; }

/* Pagination */
.shop-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.shop-pagination a,
.shop-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--text);
  transition: all var(--transition);
}
.shop-pagination a:hover { border-color: var(--primary); color: var(--primary); background: var(--off-white); }
.shop-pagination .current { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ══════════════════════════════════════════════════════════════
   UNIFIED PRODUCT CARD  (home + shop + taxonomy — all the same)
══════════════════════════════════════════════════════════════ */
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  /* NO border — clean flush card */
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Full-width image at top — no padding, no border */
.pc-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;           /* consistent proportions across all cards */
  overflow: hidden;
  background: #F1F5F9;
}
.pc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;             /* fills the area — no whitespace */
  display: block;
  transition: transform 0.4s ease;
}
.product-card:hover .pc-img { transform: scale(1.06); }

/* Status badge – absolute over image */
.pc-img-wrap .status-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  z-index: 2;
}

/* Card text body */
.pc-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Category label */
.pc-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
  display: block;
}

/* Product name – bold */
.pc-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
  margin: 0 0 8px;
}
.pc-name a { color: inherit; }
.pc-name a:hover { color: var(--red); }

/* Short description – max 2 lines */
.pc-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Add to Cart button */
.pc-add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-head);
  cursor: pointer;
  transition: all var(--transition);
  width: 100%;
  margin-top: auto;
}
.pc-add-btn:hover { background: var(--red); transform: translateY(-1px); }
.pc-add-btn.added { background: #16a34a; }
.pc-add-btn.added:hover { background: #15803d; }

/* ── Legacy WooCommerce overrides (kept for compatibility) ────── */
.woocommerce-products-header {
  text-align: center;
  padding: 56px 0;
  background: var(--primary);
  color: var(--white);
  margin-bottom: 48px;
}
.woocommerce-products-header__title { font-size: 34px; color: var(--white); }
.shop-sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
}
.widget { margin-bottom: 30px; }
.widget-title { font-size: 16px; font-weight: 700; border-bottom: 2px solid var(--red); padding-bottom: 8px; margin-bottom: 16px; color: var(--primary); }
.widget ul li { margin-bottom: 10px; }
.widget ul li a { color: var(--text); font-size: 14px; display: flex; justify-content: space-between; }
.widget ul li a:hover { color: var(--red); }
ul.products { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; list-style: none; padding: 0; margin: 0; }
ul.products li.product { background: var(--white); border-radius: var(--radius-md); overflow: hidden; transition: all var(--transition); display: flex; flex-direction: column; }
ul.products li.product:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.sh-loop-invoice-wrapper { margin-top: 14px; }
.sh-add-to-invoice-btn { width: 100%; }

/* Single Product */
.single-product-container { padding: 56px 0 80px; }
.sh-single-product-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; }
@media (max-width: 768px) { .sh-single-product-grid { grid-template-columns: 1fr; } }
.single-product-images {
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 20px;
  border: 1px solid var(--border);
}
.single-product-images img { width: 100%; }
.single-product-summary { display: flex; flex-direction: column; justify-content: center; }
.product-title-single { font-size: 32px; margin-bottom: 10px; color: var(--primary); }
.product-category-single { color: var(--red); font-weight: 700; font-size: 13px; text-transform: uppercase; margin-bottom: 18px; letter-spacing: 1px; }
.product-description-single { font-size: 15px; line-height: 1.75; color: var(--text); margin-bottom: 28px; }
.sh-single-invoice-wrapper { display: flex; align-items: center; gap: 18px; margin-bottom: 28px; flex-wrap: wrap; }
.qty-controls { display: flex; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.qty-btn { background: var(--off-white); border: none; width: 34px; height: 38px; font-weight: 700; cursor: pointer; }
.qty-btn:hover { background: var(--border); }
.sh-qty-input { width: 50px; border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border); text-align: center; font-weight: 600; font-size: 14px; }
.single-add-invoice { padding: 12px 32px; }
.product-specs-container { margin-top: 48px; border-top: 1px solid var(--border); padding-top: 36px; }
.specs-title { font-size: 22px; margin-bottom: 18px; color: var(--primary); }
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table td { padding: 11px 18px; border-bottom: 1px solid var(--border); font-size: 14px; }
.specs-label { font-weight: 700; color: var(--primary); width: 220px; }
.related-products-section { padding-top: 48px; border-top: 1px solid var(--border); margin-top: 48px; }

/* ── Animations ──────────────────────────────────────────────── */
.sh-animate { opacity: 0; transition: opacity 0.6s ease, transform 0.6s ease; }
.sh-animate.animated { opacity: 1 !important; transform: none !important; }
.slide-up    { transform: translateY(30px); }
.slide-left  { transform: translateX(-30px); }
.slide-right { transform: translateX(30px); }
.scale-up    { transform: scale(0.95); }
.fade-in     { transform: none; }
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.fade-in-panel { animation: panelIn 0.35s ease; }
.pulse-element { animation: pulseBtn 0.3s ease; }
@keyframes pulseBtn {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.04); }
  100% { transform: scale(1); }
}

/* ── Misc ─────────────────────────────────────────────────────── */
.pdf-hidden-layout { display: none !important; }
.recent-view-card img { transition: transform var(--transition); }
.recent-view-card:hover img { transform: scale(1.05); }


/* ── Promo Categories Section ────────────────────────────────── */
.promo-categories-section {
  padding: 72px 0 36px;
  background: var(--white);
}
.promo-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.promo-card {
  background: #F0F2F5; /* Cold light gray background, matching screenshot */
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.promo-card-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 12px;
  z-index: 2;
}
.promo-card-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.promo-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 170px;
}
.promo-btn {
  background: var(--primary);
  color: var(--white) !important;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600;
  line-height: 1.5;
  transition: background var(--transition), transform var(--transition);
}
.promo-btn:hover {
  background: var(--red);
  color: var(--white) !important;
  transform: translateY(-1px);
}
.promo-card-img-wrap {
  width: 130px;
  height: 130px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.promo-card-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform var(--transition);
}
.promo-card:hover .promo-card-img {
  transform: scale(1.06);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 991px) {
  .promo-categories-grid { grid-template-columns: 1fr; gap: 20px; }
  .promo-card { padding: 36px 32px; }
  .menu-toggle-btn { display: flex; }
  .main-navigation { display: none; }
  .header-cta-btn  { display: none; }
  .hero-glass-card { padding: 36px; max-width: 580px; margin: 0 auto; text-align: center; }
  .hero-buttons { justify-content: center; }
  .hero-title { font-size: 36px; }
  .about-preview-grid { grid-template-columns: 1fr; gap: 36px; }
  .experience-badge { bottom: -16px; right: 16px; }
  .section-title { font-size: 28px; }
  
  /* About Page grids */
  .about-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-mv-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-ceo-grid { grid-template-columns: 1fr; gap: 32px; }
  .ceo-message-wrap { border-left: none; border-top: 4px solid var(--amber); padding-left: 0; padding-top: 24px; }
  .about-goals-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .hero-title { font-size: 28px; }
  .hero-desc  { font-size: 14px; }
  .hero-glass-card { padding: 28px 24px; max-width: 100%; }
  .form-row-2  { grid-template-columns: 1fr; }
  .form-row-3  { grid-template-columns: 1fr; }
  .form-row-21 { grid-template-columns: 1fr; }
  .inv-bill-to-block { min-width: 100%; }
  .invoice-preview-header { flex-direction: column; }
  .inv-meta-right { text-align: left; }
  .wizard-bar { flex-direction: column; align-items: flex-start; gap: 6px; }
  .wizard-divider { display: none; }
  .wizard-panel { padding: 24px 20px; }
  .invoice-preview-body { padding: 22px 20px; }
  .invoice-preview-header { padding: 24px 20px; }
}
@media (max-width: 575px) {
  .container { padding: 0 16px; }
  .section-pad { padding: 56px 0; }
  .hero-slider-section { min-height: 500px; height: 90vh; }
  .hero-buttons { flex-direction: column; gap: 10px; }
  .categories-grid { grid-template-columns: 1fr; }
  .products-grid   { grid-template-columns: 1fr; }
  .features-grid   { grid-template-columns: 1fr; }
  .services-grid   { grid-template-columns: 1fr; }
  .team-grid       { grid-template-columns: 1fr 1fr; }
  .stats-grid      { grid-template-columns: 1fr 1fr; }
  .wizard-nav-right { gap: 8px; }
  .inv-items-table { font-size: 13px; }
  .inv-items-table thead th, .inv-items-table tbody td { padding: 10px 12px; }
  .invoice-table th, .invoice-table td { padding: 11px 12px; }
  .about-award-box { padding: 28px 20px; }
}

/* ── Print Styles ────────────────────────────────────────────── */
@media print {
  #sh-masthead, .mobile-nav-drawer, .drawer-overlay,
  .site-footer, .scroll-to-top-btn, .wizard-bar,
  .wizard-nav, .invoice-actions-panel, .invoice-empty-state { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  .invoice-page-container { padding: 0 !important; }
  .wizard-panel { border: none !important; box-shadow: none !important; padding: 0 !important; }
  .invoice-preview-card { border: 1px solid #ccc !important; }
  .invoice-preview-header { background: #0F172A !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .invoice-table-qty-input { display: none; }
  .invoice-qty-edit-cell::after { content: attr(data-print-value); font-weight: bold; }
  .qty-edit-group input { border: none; font-weight: bold; }
  .remove-invoice-item-btn, .reorder-btn, .action-cell { display: none !important; }
}
