/* ============================================================
   ATGOMART — Complete Stylesheet
   Style: vasaviscale.com inspired — clean white, corporate blue
   ============================================================ */

:root {
  --blue: #990000;
  --blue-d: #7a0000;
  --blue-l: #fff5f5;
  --blue-ll: #fff8f8;
  --navy: #6b0000;
  --orange: #f97316;
  --green: #16a34a;
  --whatsapp: #25d366;
  --danger: #dc2626;
  --gray: #f5f7fa;
  --gray-d: #e8ecf0;
  --muted: #6b7280;
  --border: #e5e7eb;
  --dark: #111827;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.1);
  --radius: 8px;
  --radius-lg: 14px;
}

/* ── Typography ──────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6,
.brand-info strong,
.hero-content h1,
.sec-head h2,
.about-wrap h2,
.nav-link-item,
.stat-num,
.detail-name,
.footer-brand {
  font-family: "Montserrat", sans-serif;
}
.topbar,
.navbar,
.nav-link-item,
.nav-cart {
  font-family: "Montserrat", sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
}
a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.15s;
}
a:hover {
  color: var(--blue-d);
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TOPBAR ───────────────────────────────────────────────── */
.topbar {
  background: var(--navy);
  padding: 9px 24px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  color: #ffffff;
}
.topbar a {
  color: #ffffff;
}
.topbar a:hover {
  color: #ffcccc;
}
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #ffffff;
  background: none;
  border: none;
  padding: 0;
}

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  background: var(--white);
  border-bottom: 3px solid var(--blue);
  position: sticky;
  top: 0;
  z-index: 500;
  box-shadow: 0 2px 12px rgba(26, 86, 219, 0.1);
}
.navbar-inner {
  display: flex;
  align-items: center;
  height: 80px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo {
  width: 46px;
  height: 46px;
  background: #6b0000;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.brand-info strong {
  display: block;
  font-size: 19px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.3px;
  line-height: 1;
}
.brand-info span {
  font-size: 10px;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav-item {
  position: relative;
}
.nav-link-item {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  color: #3d0000;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.2s;
  border-bottom: 3px solid transparent;
  background: none;
}
.nav-link-item:hover {
  color: var(--blue);
  border-bottom-color: var(--blue);
  background: none;
}
.nav-link-item.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
  background: none;
}

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-top: 3px solid var(--blue);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-md);
  z-index: 600;
  padding: 20px;
  width: 680px;
  display: none;
}
.nav-item:hover .dropdown {
  display: block;
}
.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 13.5px;
  color: var(--dark);
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.12s;
}
.dropdown-link:hover {
  background: var(--blue-l);
  color: var(--blue);
}
.dropdown-link i {
  color: var(--blue);
  font-size: 13px;
  width: 14px;
}
.dropdown-all {
  grid-column: 1 / -1;
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 12px;
  justify-content: center;
  font-weight: 700;
  color: var(--blue);
}

.nav-cart {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--blue) !important;
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  margin-left: 12px;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.3px;
  border: 2px solid var(--blue);
  transition: all 0.2s;
}
.nav-cart:hover {
  background: var(--blue);
  color: var(--white) !important;
}
.cart-count {
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  min-width: 20px;
  height: 20px;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 7px 11px;
  font-size: 20px;
  cursor: pointer;
  margin-left: auto;
}

/* Mobile nav open */
.nav-menu.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 74px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 3px solid var(--blue);
  box-shadow: var(--shadow-md);
  padding: 12px 0;
  z-index: 499;
  gap: 0;
  align-items: stretch;
}
.nav-menu.open .dropdown {
  display: block;
  position: static;
  border: none;
  box-shadow: none;
  padding-left: 16px;
  border-top: none;
}

/* ── HERO SLIDER ──────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  height: 560px;
  background: #3d0000;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 660px;
  color: var(--white);
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-content h1 {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -1px;
}
.hero-content h1 span {
  color: #ffd700;
}
.hero-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  margin-bottom: 30px;
  max-width: 500px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Slider controls */
.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.hero-prev:hover,
.hero-next:hover {
  background: rgba(255, 255, 255, 0.25);
}
.hero-prev {
  left: 20px;
}
.hero-next {
  right: 20px;
}

.hero-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.hero-dot.active {
  background: var(--orange);
  transform: scale(1.3);
}

/* ── MARQUEE / SCROLLING TEXT ─────────────────────────────── */
.marquee-strip {
  background: #6b0000;
  overflow: hidden;
  padding: 22px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 13.5px;
  font-weight: 600;
  padding: 0 36px;
  text-decoration: none;
  transition: color 0.2s;
}
.marquee-item:hover {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.marquee-sep {
  color: rgba(255, 255, 255, 0.4);
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── SECTIONS ─────────────────────────────────────────────── */
.section {
  padding: 76px 0;
}
.section-gray {
  background: var(--gray);
}
.section-navy {
  background: var(--navy);
}
.section-blue {
  background: #6b0000;
}

.sec-head {
  text-align: center;
  margin-bottom: 52px;
}
.sec-head .overline {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.sec-head h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
}
.sec-head p {
  font-size: 15px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}
.sec-head .bar {
  width: 52px;
  height: 4px;
  background: #6b0000;
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ── ABOUT SECTION ────────────────────────────────────────── */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-label {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.about-wrap h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.about-wrap p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.82;
  margin-bottom: 16px;
}
.about-list {
  margin: 20px 0;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--dark);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.about-list li:last-child {
  border-bottom: none;
}
.about-list li .tick {
  color: var(--blue);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-img-box {
  position: relative;
}
.about-img-box img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: var(--gray);
}
.about-badge {
  position: absolute;
  bottom: -18px;
  left: 24px;
  background: #6b0000;
  color: var(--white);
  border-radius: 10px;
  padding: 14px 22px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-badge strong {
  font-size: 26px;
  font-weight: 900;
  display: block;
}
.about-badge span {
  font-size: 11px;
  font-weight: 600;
  opacity: 0.85;
}
.about-certify {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cert-tag {
  background: var(--blue-l);
  color: var(--blue);
  border: 1.5px solid #ffb3b3;
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 700;
}

/* ── CATEGORY CARDS ───────────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.cat-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 16px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: all 0.22s;
  text-decoration: none;
  color: var(--dark);
}
.cat-card:hover {
  border-color: var(--blue);
  box-shadow: 0 6px 24px rgba(26, 86, 219, 0.13);
  transform: translateY(-4px);
  color: var(--blue);
}
.cat-icon-wrap {
  width: 68px;
  height: 68px;
  background: var(--blue-l);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  transition: background 0.2s;
}
.cat-card:hover .cat-icon-wrap {
  background: #6b0000;
}
.cat-card strong {
  font-size: 14px;
  font-weight: 700;
}
.cat-card span {
  font-size: 12px;
  color: var(--muted);
}

/* ── PRODUCT CARDS ────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.22s;
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: #ffb3b3;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  z-index: 3;
}
.badge-sale {
  background: #fee2e2;
  color: #991b1b;
}
.badge-featured {
  background: #fef9c3;
  color: #92400e;
  top: 36px;
}

.card-img-wrap {
  background: var(--gray);
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.35s;
}
.product-card:hover .card-img {
  transform: scale(1.06);
}

.card-body {
  padding: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.card-cat {
  font-size: 10.5px;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.card-name {
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--dark);
}
.card-name:hover {
  color: var(--blue);
}
.card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.spec-tag {
  font-size: 11px;
  background: var(--gray);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 8px;
  color: var(--muted);
}
.card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  padding-top: 6px;
}
.price-now {
  font-size: 19px;
  font-weight: 900;
  color: var(--blue);
}
.price-old {
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
}

.card-actions {
  display: flex;
  gap: 8px;
  padding: 0 15px 15px;
}
.card-actions .btn {
  flex: 1;
  font-size: 12.5px;
  padding: 8px 6px;
  text-align: center;
  justify-content: center;
}

/* ── WHY CHOOSE US ────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: all 0.2s;
}
.why-card:hover {
  border-color: var(--blue);
  box-shadow: 0 6px 28px rgba(26, 86, 219, 0.1);
}
.why-icon-box {
  width: 60px;
  height: 60px;
  background: var(--blue-l);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
}
.why-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.75;
}

/* ── STATS COUNTER ────────────────────────────────────────── */
.stats-bar {
  background: #6b0000;
  padding: 52px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {
  color: var(--white);
}
.stat-num {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}
.stat-num .plus {
  color: #fde68a;
}
.stat-lbl {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 22px;
  font-size: 72px;
  line-height: 1;
  color: var(--blue-l);
  font-family: Georgia, serif;
  font-weight: 900;
}
.testi-stars {
  color: #f59e0b;
  font-size: 16px;
  margin-bottom: 12px;
}
.testi-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #6b0000;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
}
.testi-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.testi-place {
  font-size: 12px;
  color: var(--muted);
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--white);
}
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 17px 22px;
  text-align: left;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.15s;
}
.faq-btn:hover {
  background: var(--blue-l);
}
.faq-btn .faq-ic {
  font-size: 20px;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.25s;
  font-weight: 900;
}
.faq-btn.open .faq-ic {
  transform: rotate(45deg);
}
.faq-ans {
  display: none;
  padding: 0 22px 18px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.8;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.faq-ans.open {
  display: block;
}

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.2s;
}
.contact-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
}
.contact-card-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-l);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.contact-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.contact-card p,
.contact-card a {
  font-size: 14px;
  color: var(--muted);
  display: block;
}
.contact-card a:hover {
  color: var(--blue);
}

.contact-form-box {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.contact-form-box h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
}

.map-wrap {
  margin-top: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
}
.map-wrap iframe {
  width: 100%;
  height: 380px;
  display: block;
  border: none;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: #94a3b8;
  padding: 60px 0 0;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
}
.footer-brand {
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer p {
  font-size: 13.5px;
  line-height: 1.8;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col ul li a {
  font-size: 13.5px;
  color: #94a3b8;
}
.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}
.footer-col ul li {
  font-size: 13.5px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.15s;
}
.footer-social a:hover {
  background: #6b0000;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 48px;
  padding: 20px 0;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom strong {
  color: var(--white);
}

/* ── FLOATING BUTTONS ─────────────────────────────────────── */
.float-btns {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}
.float-wa {
  background: var(--whatsapp);
}
.float-call {
  background: #6b0000;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.18s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:disabled,
.btn.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.btn-primary {
  background: #6b0000;
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-d);
  border-color: var(--blue-d);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover {
  background: #6b0000;
  color: var(--white);
}
.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover {
  background: #ea6e0b;
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--blue-l);
}
.btn-danger {
  background: var(--danger);
  color: var(--white);
  border-color: var(--danger);
}
.btn-danger:hover {
  background: #b91c1c;
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}
.btn-whatsapp:hover {
  background: #1da851;
  color: var(--white);
}
.btn-sm {
  padding: 6px 14px;
  font-size: 12.5px;
  border-radius: 5px;
}
.btn-lg {
  padding: 13px 32px;
  font-size: 15px;
}
.btn-block {
  width: 100%;
}

/* ── FORMS ────────────────────────────────────────────────── */
.form-group {
  margin-bottom: 16px;
}
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-size: 14px;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: border-color 0.15s;
}
.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.08);
}
textarea.form-control {
  resize: vertical;
}
.form-row {
  display: flex;
  gap: 16px;
}
.form-row .form-group {
  flex: 1;
}

/* ── FLASH ────────────────────────────────────────────────── */
.flash {
  padding: 13px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
}
.flash--success {
  background: #dcfce7;
  color: #166534;
  border-bottom: 2px solid #86efac;
}
.flash--error {
  background: #fee2e2;
  color: #991b1b;
  border-bottom: 2px solid #fca5a5;
}
.flash--info {
  background: #ffe0e0;
  color: #6b0000;
  border-bottom: 2px solid #ff9999;
}
.flash button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: inherit;
  opacity: 0.6;
  line-height: 1;
}

/* ── BREADCRUMB ───────────────────────────────────────────── */
.breadcrumb {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 7px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.breadcrumb a {
  color: var(--muted);
}
.breadcrumb a:hover {
  color: var(--blue);
}

/* ── PAGE HEADER ──────────────────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, #4a0000 0%, #7a0000 100%);
  padding: 44px 0;
  color: var(--white);
}
.page-header h1 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  margin-bottom: 6px;
}
.page-header .breadcrumb {
  color: rgba(255, 255, 255, 0.6);
}
.page-header .breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}

/* ── SHOP LAYOUT ──────────────────────────────────────────── */
.shop-wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 30px;
  align-items: start;
}
.sidebar {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  position: sticky;
  top: 90px;
}
.sidebar-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--navy);
  margin-bottom: 14px;
}
.sidebar-list {
  display: flex;
  flex-direction: column;
}
.sidebar-list li + li {
  border-top: 1px solid var(--border);
}
.sidebar-list a {
  display: block;
  padding: 10px 4px;
  font-size: 13.5px;
  color: var(--dark);
  font-weight: 500;
  transition: all 0.14s;
}
.sidebar-list a:hover,
.sidebar-list a.active {
  color: var(--blue);
  font-weight: 700;
  padding-left: 8px;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 10px;
}
.shop-toolbar p {
  font-size: 14px;
  color: var(--muted);
}
.sort-box select {
  padding: 7px 12px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 13px;
  outline: none;
}

/* ── PRODUCT DETAIL ───────────────────────────────────────── */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}
.detail-img-box {
  background: var(--gray);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.detail-img-box img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.detail-cat {
  font-size: 11px;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}
.detail-name {
  font-size: 27px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
}
.detail-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.detail-spec {
  background: var(--blue-l);
  border: 1px solid #ffb3b3;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.detail-price-box {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.detail-price {
  font-size: 36px;
  font-weight: 900;
  color: var(--blue);
}
.detail-mrp {
  font-size: 19px;
  color: var(--muted);
  text-decoration: line-through;
}
.detail-saving {
  background: #dcfce7;
  color: #166534;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}
.stock-in {
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}
.stock-out {
  color: var(--danger);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}
.qty-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.qty-label {
  font-size: 13px;
  font-weight: 700;
}
.qty-box {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  overflow: hidden;
}
.qty-btn {
  background: var(--gray);
  border: none;
  width: 38px;
  height: 38px;
  font-size: 20px;
  cursor: pointer;
  font-weight: 700;
  color: var(--blue);
  transition: background 0.15s;
}
.qty-btn:hover {
  background: var(--gray-d);
}
.qty-input {
  border: none;
  width: 52px;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  outline: none;
  font-family: inherit;
}
.detail-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.detail-actions .btn {
  flex: 1;
  min-width: 140px;
}
.detail-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.detail-perk {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.detail-desc {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin: 32px 0;
}
.detail-desc h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--navy);
}
.detail-desc p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.85;
}

/* ── CART ─────────────────────────────────────────────────── */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
}
.cart-table {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.cart-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
}
.cart-row:last-child {
  border-bottom: none;
}
.cart-img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  background: var(--gray);
  border-radius: 8px;
  padding: 6px;
  flex-shrink: 0;
}
.cart-info {
  flex: 1;
}
.cart-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}
.cart-info h4 a {
  color: var(--dark);
}
.cart-info .meta {
  font-size: 12px;
  color: var(--muted);
}
.cart-info .unit {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}
.cart-qty {
  flex-shrink: 0;
}
.cart-total {
  font-size: 17px;
  font-weight: 900;
  color: var(--blue);
  min-width: 88px;
  text-align: right;
  flex-shrink: 0;
}
.cart-del {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 17px;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.cart-del:hover {
  color: var(--danger);
}
.cart-foot {
  display: flex;
  justify-content: space-between;
  padding: 16px 22px;
}

.order-box {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 90px;
}
.order-box h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--navy);
}
.order-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
}
.order-total {
  font-size: 17px;
  font-weight: 900;
  border-bottom: none !important;
  padding-top: 14px !important;
  color: var(--navy);
}
.free-ship {
  color: var(--green);
  font-weight: 700;
}
.ship-note {
  font-size: 12px;
  color: var(--blue);
  margin-top: 6px;
}
.pay-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
}

/* ── CHECKOUT ─────────────────────────────────────────────── */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
}
.form-box {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.form-box h2 {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 22px;
}
.oi-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}
.oi-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  background: var(--gray);
  border-radius: 7px;
  flex-shrink: 0;
}
.oi-info {
  flex: 1;
  font-size: 13px;
}
.oi-info p {
  font-weight: 600;
}
.oi-price {
  font-size: 14px;
  font-weight: 800;
  color: var(--blue);
}

/* ── SUCCESS ──────────────────────────────────────────────── */
.success-wrap {
  max-width: 660px;
  margin: 60px auto;
}
.success-box {
  background: var(--white);
  border: 1.5px solid #86efac;
  border-radius: var(--radius-lg);
  padding: 44px;
  text-align: center;
  box-shadow: var(--shadow);
}
.success-ico {
  font-size: 64px;
  margin-bottom: 16px;
}
.success-box h1 {
  font-size: 30px;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 10px;
}
.success-box p {
  font-size: 15px;
  color: var(--muted);
}
.order-num {
  font-size: 19px;
  font-weight: 900;
  color: var(--navy);
  margin: 16px 0 8px;
}
.info-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 16px;
  text-align: left;
}
.info-card h3 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 12px;
}

/* ── STATUS BADGES ────────────────────────────────────────── */
.s-badge {
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 800;
  text-transform: capitalize;
}
.s-pending {
  background: #fef9c3;
  color: #92400e;
}
.s-confirmed {
  background: #ffe0e0;
  color: #6b0000;
}
.s-processing {
  background: #ede9fe;
  color: #4c1d95;
}
.s-shipped {
  background: #cffafe;
  color: #155e75;
}
.s-delivered {
  background: #dcfce7;
  color: #166534;
}
.s-cancelled {
  background: #fee2e2;
  color: #991b1b;
}
.s-paid {
  background: #dcfce7;
  color: #166534;
}
.s-failed {
  background: #fee2e2;
  color: #991b1b;
}

/* ── PAGINATION ───────────────────────────────────────────── */
.pagination {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.pagination a,
.pagination span {
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 14px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--dark);
  font-weight: 600;
}
.pagination a:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.pagination span.cur {
  background: #6b0000;
  color: var(--white);
  border-color: var(--blue);
}

/* ── EMPTY STATE ──────────────────────────────────────────── */
.empty {
  text-align: center;
  padding: 80px 20px;
}
.empty .ico {
  font-size: 64px;
  margin-bottom: 16px;
}
.empty h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}
.empty p {
  color: var(--muted);
  margin-bottom: 24px;
}

/* ── ADMIN ────────────────────────────────────────────────── */
.admin-body {
  display: flex;
  min-height: 100vh;
  background: #f1f5f9;
}
.admin-sidebar {
  width: 240px;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  flex-shrink: 0;
}
.sb-brand {
  padding: 20px;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sb-nav {
  flex: 1;
  padding: 12px 0;
}
.sb-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: all 0.15s;
}
.sb-link:hover,
.sb-link.cur {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-left-color: var(--blue);
}
.sb-foot {
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.admin-main {
  flex: 1;
  overflow: auto;
}
.a-topbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 15px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}
.a-topbar h1 {
  font-size: 19px;
  font-weight: 800;
}
.a-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin: 20px 24px;
}
.a-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.a-card-head h2 {
  font-size: 16px;
  font-weight: 800;
}
.a-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 20px 24px 0;
}
.a-stat {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.a-stat-ico {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.a-stat p {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 2px;
}
.a-stat h3 {
  font-size: 21px;
  font-weight: 800;
}
.a-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.tbl-wrap {
  overflow-x: auto;
}
.a-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.a-table th {
  text-align: left;
  padding: 10px 12px;
  background: var(--gray);
  color: var(--muted);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1.5px solid var(--border);
}
.a-table td {
  padding: 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.a-table tr:hover td {
  background: #f8fafc;
}

/* ── AUTH ─────────────────────────────────────────────────── */
.auth-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: var(--gray);
}
.auth-box {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow-md);
}

.main-content {
  min-height: 60vh;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .a-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .a-two-col {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .about-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-img-box img {
    height: 280px;
  }
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .shop-wrap {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 3px solid var(--blue);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
    z-index: 499;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  .nav-menu.open {
    display: flex;
  }
  .dropdown {
    display: block;
    position: static;
    border: none;
    box-shadow: none;
    padding-left: 16px;
    border-top: none;
  }
  .nav-cart {
    margin: 8px 16px;
  }
  .hero {
    height: 360px;
  }
  .hero-content {
    padding: 0 24px;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    display: none;
  }
}
@media (max-width: 500px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    height: 300px;
  }
  .hero-content h1 {
    font-size: 24px;
  }
  .hero-btns {
    flex-direction: column;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .stat-num {
    font-size: 36px;
  }
}

/* Font Awesome icon sizing fixes */
.contact-card-icon i {
  font-size: 20px;
}
.topbar-item i {
  font-size: 12px;
  margin-right: 4px;
}
.footer-social a i {
  font-size: 18px;
}
.float-btn i {
  font-size: 22px;
  color: #fff;
}
.why-icon-box i {
  font-size: 26px;
  color: var(--blue);
}

/* ── ABOUT SECTION (Homepage) ─────────────────────────────── */
.about-section {
  padding: 90px 0;
  background: #fff;
}
.about-section .about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-section .about-img-box {
  position: relative;
}
.about-section .about-img-box img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.about-stats-box {
  position: absolute;
  bottom: -28px;
  left: 28px;
  right: 28px;
  background: var(--blue);
  border-radius: 4px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}
.about-stat-item {
  text-align: center;
  color: #fff;
}
.about-stat-item strong {
  display: block;
  font-size: 28px;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
}
.about-stat-item span {
  font-size: 11px;
  font-weight: 600;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
  display: block;
}
.about-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.25);
}

.about-text-side {
  padding-bottom: 28px;
}
.about-text-side .about-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
  font-family: "Montserrat", sans-serif;
}
.about-text-side h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  color: #1a0000;
  line-height: 1.15;
  margin-bottom: 22px;
  font-family: "Montserrat", sans-serif;
}
.about-text-side h2 span {
  color: var(--blue);
}
.about-lead {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 14px;
  font-weight: 500;
}
.about-body {
  font-size: 14.5px;
  color: #666;
  line-height: 1.85;
  margin-bottom: 30px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 34px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.af-icon {
  width: 42px;
  height: 42px;
  background: #fff5f5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid #ffd0d0;
}
.af-icon i {
  color: var(--blue);
  font-size: 16px;
}
.about-feature strong {
  font-size: 13.5px;
  font-weight: 700;
  color: #1a0000;
  display: block;
  margin-bottom: 3px;
  font-family: "Montserrat", sans-serif;
}
.about-feature p {
  font-size: 12.5px;
  color: #777;
  line-height: 1.5;
  margin: 0;
}
.about-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .about-section .about-wrap {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-section .about-img-box img {
    height: 300px;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
}

/* ── PRODUCT CATEGORIES SECTION ───────────────────────────── */
.pro-cat-section {
  padding: 90px 0;
  background: #f9f9f9;
}
.pro-cat-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}
.pro-cat-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--blue);
  font-family: "Montserrat", sans-serif;
  margin-bottom: 10px;
}
.pro-cat-head h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  color: #1a0000;
  font-family: "Montserrat", sans-serif;
  margin: 0;
  line-height: 1.15;
}
.pro-cat-head h2 span {
  color: var(--blue);
}

.pro-cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.pro-cat-card {
  background: #fff;
  border: 1.5px solid #ebebeb;
  border-radius: 8px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  text-decoration: none;
  color: #1a0000;
  transition: all 0.22s;
  position: relative;
  overflow: hidden;
}
.pro-cat-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.22s;
}
.pro-cat-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 28px rgba(153, 0, 0, 0.12);
  transform: translateY(-4px);
  color: var(--blue);
}
.pro-cat-card:hover::before {
  transform: scaleX(1);
}

.pro-cat-icon {
  width: 60px;
  height: 60px;
  background: #fff5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.22s;
}
.pro-cat-icon i {
  font-size: 22px;
  color: var(--blue);
  transition: all 0.22s;
}
.pro-cat-card:hover .pro-cat-icon {
  background: var(--blue);
}
.pro-cat-card:hover .pro-cat-icon i {
  color: #fff;
}

.pro-cat-info strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  line-height: 1.3;
  margin-bottom: 4px;
}
.pro-cat-info span {
  font-size: 11.5px;
  color: #999;
  font-weight: 500;
}
.pro-cat-arrow {
  display: none;
}

@media (max-width: 1100px) {
  .pro-cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 700px) {
  .pro-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── FEATURED PRODUCTS SECTION ────────────────────────────── */
.pro-featured-section {
  padding: 90px 0;
  background: #fff;
}

.pro-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.pro-product-card {
  background: #fff;
  border: 1.5px solid #ebebeb;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s;
}
.pro-product-card:hover {
  box-shadow: 0 10px 36px rgba(153, 0, 0, 0.12);
  transform: translateY(-5px);
  border-color: #ffd0d0;
}

.pro-badge-sale {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.5px;
}

.pro-card-img-wrap {
  display: block;
  background: #f9f9f9;
  height: 210px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #f0f0f0;
}
.pro-card-img-wrap img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  padding: 18px;
  transition: transform 0.35s;
}
.pro-product-card:hover .pro-card-img-wrap img {
  transform: scale(1.06);
}

.pro-card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pro-card-cat {
  font-size: 10.5px;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Montserrat", sans-serif;
  margin: 0;
}
.pro-card-name {
  font-size: 14px;
  font-weight: 700;
  color: #1a0000;
  line-height: 1.4;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  display: block;
}
.pro-card-name:hover {
  color: var(--blue);
}

.pro-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.pro-card-specs span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #666;
  background: #f5f5f5;
  border-radius: 4px;
  padding: 3px 8px;
  font-weight: 500;
}
.pro-card-specs i {
  color: var(--blue);
  font-size: 10px;
}

.pro-card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 8px;
}
.pro-price-now {
  font-size: 20px;
  font-weight: 900;
  color: var(--blue);
  font-family: "Montserrat", sans-serif;
}
.pro-price-old {
  font-size: 13px;
  color: #aaa;
  text-decoration: line-through;
}
.pro-price-save {
  font-size: 11px;
  font-weight: 700;
  color: #16a34a;
  background: #dcfce7;
  padding: 2px 8px;
  border-radius: 4px;
}

.pro-card-actions {
  display: flex;
  gap: 0;
  border-top: 1px solid #f0f0f0;
}
.pro-cart-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 10px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--blue);
  background: #fff5f5;
  border: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  transition: all 0.18s;
  border-right: 1px solid #f0f0f0;
}
.pro-cart-btn:hover {
  background: var(--blue);
  color: #fff;
}
.pro-cart-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pro-buy-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 10px;
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  background: var(--blue);
  border: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  transition: all 0.18s;
}
.pro-buy-btn:hover {
  background: var(--blue-d);
  color: #fff;
}
.pro-buy-btn.disabled {
  opacity: 0.5;
  pointer-events: none;
}

@media (max-width: 1100px) {
  .pro-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .pro-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .pro-products-grid {
    grid-template-columns: 1fr;
  }
}

/* ── WHY CHOOSE US SECTION ────────────────────────────────── */
.pro-why-section {
  background: #1a0000;
  padding: 0;
}
.pro-why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

/* Left side — dark red background */
.pro-why-left {
  background: #1a0000;
  padding: 80px 60px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pro-why-left .pro-cat-label {
  color: rgba(255, 255, 255, 0.5);
}
.pro-why-left h2 {
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 900;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  line-height: 1.15;
  margin-bottom: 18px;
}
.pro-why-left h2 span {
  color: var(--blue);
}
.pro-why-desc {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 36px;
}

.pro-why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}
.pro-why-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.pro-why-num {
  font-size: 13px;
  font-weight: 900;
  color: var(--blue);
  font-family: "Montserrat", sans-serif;
  width: 32px;
  height: 32px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.pro-why-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 3px;
}
.pro-why-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin: 0;
}

/* Right side — grid of cards */
.pro-why-right {
  background: #f9f9f9;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.pro-why-card {
  padding: 36px 30px;
  border-right: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  transition: background 0.2s;
}
.pro-why-card:hover {
  background: #fff5f5;
}
.pro-why-card:nth-child(2n) {
  border-right: none;
}
.pro-why-card:nth-child(5),
.pro-why-card:nth-child(6) {
  border-bottom: none;
}

.pro-why-icon {
  width: 46px;
  height: 46px;
  background: #fff5f5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid #ffd0d0;
}
.pro-why-icon i {
  font-size: 18px;
  color: var(--blue);
}
.pro-why-card strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #1a0000;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 6px;
}
.pro-why-card p {
  font-size: 12.5px;
  color: #777;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 1024px) {
  .pro-why-inner {
    grid-template-columns: 1fr;
  }
  .pro-why-left {
    padding: 60px 40px;
  }
  .pro-why-right {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 700px) {
  .pro-why-right {
    grid-template-columns: 1fr 1fr;
  }
  .pro-why-left {
    padding: 48px 24px;
  }
}

/* ── WHY CHOOSE US — CLEAN VERSION ───────────────────────── */
.pro-why-section {
  padding: 90px 0;
  background: #f9f9f9;
}
.pro-why-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 20px;
}
.pro-why-top-text .pro-cat-label {
  color: var(--blue);
}
.pro-why-top-text h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  color: #1a0000;
  font-family: "Montserrat", sans-serif;
  line-height: 1.15;
  margin-bottom: 10px;
}
.pro-why-top-text h2 span {
  color: var(--blue);
}
.pro-why-top-text p {
  font-size: 15px;
  color: #666;
  max-width: 520px;
  line-height: 1.7;
  margin: 0;
}

.pro-why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pro-why-card {
  background: #fff;
  border: 1.5px solid #ebebeb;
  border-radius: 10px;
  padding: 36px 28px;
  transition: all 0.25s;
  border-top: 4px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.pro-why-card:hover {
  border-top-color: var(--blue);
  box-shadow: 0 8px 32px rgba(153, 0, 0, 0.1);
  transform: translateY(-4px);
}
.pro-why-card-icon {
  width: 56px;
  height: 56px;
  min-height: 56px;
  max-height: 56px;
  background: #fff5f5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1.5px solid #ffd0d0;
  transition: all 0.25s;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
}
.pro-why-card:hover .pro-why-card-icon {
  background: var(--blue);
  border-color: var(--blue);
}
.pro-why-card-icon i {
  font-size: 22px;
  color: var(--blue);
  transition: color 0.25s;
}
.pro-why-card:hover .pro-why-card-icon i {
  color: #fff;
}
.pro-why-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: #1a0000;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 10px;
}
.pro-why-card p {
  font-size: 13.5px;
  color: #777;
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 900px) {
  .pro-why-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .pro-why-cards {
    grid-template-columns: 1fr;
  }
}

/* ── STATS / COUNTER SECTION ──────────────────────────────── */
.pro-stats-section {
  background: var(--blue);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.pro-stats-section::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}
.pro-stats-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.pro-stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  position: relative;
  z-index: 1;
}
.pro-stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  padding: 0 32px;
}
.pro-stat-item:first-child {
  padding-left: 0;
}
.pro-stat-item:last-child {
  padding-right: 0;
}

.pro-stat-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}
.pro-stat-icon i {
  font-size: 26px;
  color: #fff;
}

.pro-stat-content {
  flex: 1;
}
.pro-stat-num {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  margin-bottom: 6px;
}
.pro-stat-num span {
  color: #ffd700;
}
.pro-stat-lbl {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}
.pro-stat-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.pro-stat-divider {
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .pro-stats-grid {
    flex-wrap: wrap;
    gap: 32px;
  }
  .pro-stat-divider {
    display: none;
  }
  .pro-stat-item {
    padding: 0;
    flex: 0 0 calc(50% - 16px);
  }
}
@media (max-width: 500px) {
  .pro-stat-item {
    flex: 0 0 100%;
  }
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.pro-testi-section {
  padding: 90px 0;
  background: #fff;
}
.pro-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pro-testi-card {
  background: #fff;
  border: 1.5px solid #ebebeb;
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.25s;
  position: relative;
}
.pro-testi-card:hover {
  box-shadow: 0 8px 32px rgba(153, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: #ffd0d0;
}
.pro-testi-quote i {
  font-size: 28px;
  color: #ffd0d0;
}
.pro-testi-text {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  flex: 1;
  font-style: italic;
}
.pro-testi-stars {
  display: flex;
  gap: 3px;
}
.pro-testi-stars i {
  color: #f59e0b;
  font-size: 13px;
}
.pro-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid #f0f0f0;
}
.pro-testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  flex-shrink: 0;
}
.pro-testi-author strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #1a0000;
  font-family: "Montserrat", sans-serif;
}
.pro-testi-author span {
  font-size: 12px;
  color: #999;
}

/* ── FAQ SECTION ──────────────────────────────────────────── */
.pro-faq-section {
  padding: 90px 0;
  background: #f9f9f9;
}
.pro-faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.pro-faq-left .pro-cat-label {
  color: var(--blue);
}
.pro-faq-left h2 {
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 900;
  color: #1a0000;
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
  margin-bottom: 12px;
}
.pro-faq-left h2 span {
  color: var(--blue);
}
.pro-faq-sub {
  font-size: 15px;
  color: #777;
  line-height: 1.7;
  margin-bottom: 32px;
}

.pro-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pro-faq-item {
  background: #fff;
  border: 1.5px solid #ebebeb;
  border-radius: 8px;
  overflow: hidden;
}
.pro-faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 20px;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1a0000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: all 0.15s;
}
.pro-faq-btn:hover {
  background: #fff5f5;
  color: var(--blue);
}
.pro-faq-btn.open {
  background: var(--blue);
  color: #fff;
}
.pro-faq-icon {
  font-size: 14px;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.pro-faq-btn.open .pro-faq-icon {
  transform: rotate(45deg);
  color: #fff;
}
.pro-faq-ans {
  display: none;
  padding: 0 20px 16px;
  font-size: 13.5px;
  color: #666;
  line-height: 1.8;
  border-top: 1px solid #f0f0f0;
  padding-top: 14px;
}
.pro-faq-ans.open {
  display: block;
}

/* FAQ Right: Image */
.pro-faq-right {
  position: sticky;
  top: 100px;
}
.pro-faq-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.pro-faq-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  background: #eee;
}
.pro-faq-contact-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}
.pro-faq-contact-icon {
  width: 48px;
  height: 48px;
  background: #25d366;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pro-faq-contact-icon i {
  font-size: 24px;
  color: #fff;
}
.pro-faq-contact-card strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1a0000;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 3px;
}
.pro-faq-contact-card p {
  font-size: 12.5px;
  color: #777;
  margin: 0;
}

@media (max-width: 1024px) {
  .pro-testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .pro-testi-grid {
    grid-template-columns: 1fr;
  }
  .pro-faq-wrap {
    grid-template-columns: 1fr;
  }
  .pro-faq-right {
    display: none;
  }
}

/* ── CTA SECTION ──────────────────────────────────────────── */
.pro-cta-section {
  background: linear-gradient(135deg, #3d0000 0%, #6b0000 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.pro-cta-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}
.pro-cta-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.pro-cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 18px;
}
.pro-cta-left h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  line-height: 1.15;
  margin-bottom: 16px;
}
.pro-cta-left p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.pro-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-cta-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 13px 30px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.pro-cta-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 32px;
}
.pro-cta-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.pro-cta-contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.pro-cta-ci {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pro-cta-ci i {
  font-size: 18px;
  color: #fff;
}
.pro-cta-contact-item span {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 3px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.pro-cta-contact-item a,
.pro-cta-contact-item strong {
  font-size: 15px;
  color: #fff;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
}

@media (max-width: 900px) {
  .pro-cta-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ── FOOTER ───────────────────────────────────────────────── */
.pro-footer {
  background: #1a0000;
  color: #bbb;
  border-top: 4px solid var(--blue);
}

.pro-footer-top {
  padding: 70px 0 50px;
}

.pro-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 48px;
}

.pro-footer-logo {
  height: 46px;
  width: auto;
  margin-bottom: 18px;
  display: block;
}
.pro-footer-brand-col p {
  font-size: 13.5px;
  line-height: 1.8;
  color: #aaa;
  margin-bottom: 20px;
}
.pro-footer-social {
  display: flex;
  gap: 10px;
}
.pro-footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  transition: all 0.2s;
}
.pro-footer-social a:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.pro-footer-social i {
  font-size: 16px;
}

.pro-footer-col h4 {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blue);
  display: inline-block;
}
.pro-footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pro-footer-col ul li a {
  font-size: 13.5px;
  color: #aaa;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s;
}
.pro-footer-col ul li a i {
  font-size: 9px;
  color: var(--blue);
}
.pro-footer-col ul li a:hover {
  color: #fff;
  padding-left: 4px;
}

.pro-footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.pro-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: #aaa;
}
.pro-footer-contact-item i {
  color: var(--blue);
  font-size: 14px;
  width: 16px;
  flex-shrink: 0;
}
.pro-footer-contact-item a {
  color: #aaa;
  text-decoration: none;
}
.pro-footer-contact-item a:hover {
  color: #fff;
}

.pro-footer-payment p {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #777;
  margin-bottom: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.pro-footer-pay-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pro-footer-pay-icons span {
  font-size: 12px;
  color: #aaa;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 5px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}
.pro-footer-pay-icons i {
  color: #ccc;
}

.pro-footer-bottom {
  background: var(--blue);
  padding: 18px 0;
}
.pro-footer-bottom-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}
.pro-footer-bottom-wrap strong {
  color: #fff;
}

@media (max-width: 1024px) {
  .pro-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 600px) {
  .pro-footer-grid {
    grid-template-columns: 1fr;
  }
  .pro-footer-bottom-wrap {
    flex-direction: column;
    text-align: center;
  }
}

/* ── ABOUT PAGE — INDUSTRIES ─────────────────────────────── */
.about-ind-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.about-ind-item {
  background: #fff;
  border: 1.5px solid #ebebeb;
  border-radius: 8px;
  padding: 22px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: all 0.2s;
  cursor: default;
}
.about-ind-item:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(153, 0, 0, 0.1);
  transform: translateY(-3px);
}
.about-ind-icon {
  width: 52px;
  height: 52px;
  background: #fff5f5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #ffd0d0;
  transition: all 0.2s;
}
.about-ind-item:hover .about-ind-icon {
  background: var(--blue);
  border-color: var(--blue);
}
.about-ind-icon i {
  font-size: 20px;
  color: var(--blue);
  transition: color 0.2s;
}
.about-ind-item:hover .about-ind-icon i {
  color: #fff;
}
.about-ind-item span {
  font-size: 12.5px;
  font-weight: 700;
  color: #1a0000;
  font-family: "Montserrat", sans-serif;
}

/* ── ABOUT PAGE — WHY LIST ───────────────────────────────── */
.about-why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
}
.about-why-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid #f0f0f0;
}
.about-why-item:last-child {
  border-bottom: none;
}
.about-why-icon {
  width: 44px;
  height: 44px;
  background: #fff5f5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #ffd0d0;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-why-icon i {
  font-size: 17px;
  color: var(--blue);
}
.about-why-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #1a0000;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 4px;
}
.about-why-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* ── PAGE HEADER ─────────────────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, #3d0000 0%, #6b0000 100%);
  padding: 48px 0;
  color: #fff;
}
.page-header h1 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 8px;
}
.page-header .breadcrumb {
  color: rgba(255, 255, 255, 0.6);
  gap: 8px;
}
.page-header .breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}
.page-header .breadcrumb a:hover {
  color: #fff;
}
.page-header .breadcrumb i {
  font-size: 9px;
}

@media (max-width: 1024px) {
  .about-ind-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 700px) {
  .about-ind-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .about-ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── ABOUT PAGE — WHY CHOOSE US (new design) ─────────────── */
.aw-section {
  padding: 90px 0;
  background: #f9f9f9;
}
.aw-head {
  margin-bottom: 52px;
}
.aw-head h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  color: #1a0000;
  font-family: "Montserrat", sans-serif;
  line-height: 1.15;
  margin-bottom: 10px;
}
.aw-head h2 span {
  color: var(--blue);
}
.aw-sub {
  font-size: 15px;
  color: #777;
  max-width: 500px;
  line-height: 1.7;
  margin: 0;
}

.aw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.aw-card {
  background: #fff;
  border-radius: 10px;
  padding: 32px 28px;
  border: 1.5px solid #ebebeb;
  position: relative;
  overflow: hidden;
  transition: all 0.25s;
}
.aw-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.aw-card:hover {
  box-shadow: 0 10px 36px rgba(153, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: #ffd0d0;
}
.aw-card:hover::after {
  transform: scaleX(1);
}

.aw-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.aw-icon {
  width: 54px;
  height: 54px;
  background: #fff5f5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #ffd0d0;
  transition: all 0.25s;
}
.aw-icon i {
  font-size: 22px;
  color: var(--blue);
  transition: color 0.25s;
}
.aw-card:hover .aw-icon {
  background: var(--blue);
  border-color: var(--blue);
}
.aw-card:hover .aw-icon i {
  color: #fff;
}

.aw-num {
  font-size: 38px;
  font-weight: 900;
  color: #f0e0e0;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  transition: color 0.25s;
}
.aw-card:hover .aw-num {
  color: #ffd0d0;
}

.aw-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: #1a0000;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 10px;
}
.aw-card p {
  font-size: 13.5px;
  color: #777;
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 900px) {
  .aw-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .aw-grid {
    grid-template-columns: 1fr;
  }
}

/* ── WHY CHOOSE US — TWO COLUMN 3+3 ─────────────────────── */
.aw-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.aw-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.aw-row-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid #f0f0f0;
}
.aw-col:last-child .aw-row-item {
  border-bottom: 1px solid #f0f0f0;
}
.aw-row-item:last-child {
  border-bottom: none;
}

.aw-row-icon {
  width: 52px;
  height: 52px;
  background: #fff5f5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #ffd0d0;
  flex-shrink: 0;
  margin-top: 4px;
  transition: all 0.2s;
}
.aw-row-icon i {
  font-size: 20px;
  color: var(--blue);
  transition: color 0.2s;
}
.aw-row-item:hover .aw-row-icon {
  background: var(--blue);
  border-color: var(--blue);
}
.aw-row-item:hover .aw-row-icon i {
  color: #fff;
}

.aw-row-text {
  flex: 1;
}
.aw-row-num {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  color: var(--blue);
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.aw-row-text strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #1a0000;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 6px;
}
.aw-row-text p {
  font-size: 13.5px;
  color: #777;
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 768px) {
  .aw-two-col {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ── PRODUCTS LISTING PAGE ────────────────────────────────── */
.plp-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}

/* Sidebar */
.plp-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 90px;
}
.plp-sidebar-box {
  background: #fff;
  border: 1.5px solid #ebebeb;
  border-radius: 10px;
  padding: 20px;
}
.plp-sidebar-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1a0000;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.plp-sidebar-title i {
  color: var(--blue);
  font-size: 13px;
}

.plp-cat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.plp-cat-link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.15s;
}
.plp-cat-link i {
  color: #ccc;
  font-size: 12px;
  transition: color 0.15s;
}
.plp-cat-link:hover {
  background: #fff5f5;
  color: var(--blue);
}
.plp-cat-link:hover i {
  color: var(--blue);
}
.plp-cat-link.active {
  background: var(--blue);
  color: #fff;
  font-weight: 700;
}
.plp-cat-link.active i {
  color: #fff;
}

.plp-sort-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.plp-sort-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #555;
  cursor: pointer;
  padding: 4px 0;
}
.plp-sort-opt input[type="radio"] {
  accent-color: var(--blue);
  width: 15px;
  height: 15px;
}

/* Toolbar */
.plp-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: #fff;
  border: 1.5px solid #ebebeb;
  border-radius: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}
.plp-count {
  font-size: 13.5px;
  color: #666;
  margin: 0;
}
.plp-count strong {
  color: #1a0000;
}
.plp-clear {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.plp-clear:hover {
  color: var(--blue-d);
}

/* Product Grid — 3 columns */
.plp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.plp-card {
  background: #fff;
  border: 1.5px solid #ebebeb;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s;
}
.plp-card:hover {
  box-shadow: 0 8px 28px rgba(153, 0, 0, 0.12);
  transform: translateY(-4px);
  border-color: #ffd0d0;
}

.plp-badge-sale {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
  font-family: "Montserrat", sans-serif;
}

.plp-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  height: 220px;
  overflow: hidden;
  border-bottom: 1px solid #f0f0f0;
}
.plp-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.35s;
}
.plp-card:hover .plp-img-wrap img {
  transform: scale(1.06);
}

.plp-card-body {
  padding: 16px 16px 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.plp-card-cat {
  font-size: 10px;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Montserrat", sans-serif;
}
.plp-card-name {
  font-size: 14.5px;
  font-weight: 700;
  color: #1a0000;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  line-height: 1.4;
  display: block;
}
.plp-card-name:hover {
  color: var(--blue);
}
.plp-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.plp-card-specs span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #777;
  background: #f5f5f5;
  border-radius: 4px;
  padding: 3px 8px;
}
.plp-card-specs i {
  color: var(--blue);
  font-size: 10px;
}
.plp-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  padding-top: 6px;
}
.plp-price {
  font-size: 20px;
  font-weight: 900;
  color: var(--blue);
  font-family: "Montserrat", sans-serif;
}
.plp-mrp {
  font-size: 13px;
  color: #bbb;
  text-decoration: line-through;
}

.plp-card-actions {
  display: flex;
  border-top: 1px solid #f0f0f0;
}
.plp-cart-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 10px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--blue);
  background: #fff5f5;
  border: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  border-right: 1px solid #f0f0f0;
  transition: all 0.18s;
}
.plp-cart-btn:hover {
  background: var(--blue);
  color: #fff;
}
.plp-cart-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.plp-view-btn {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 18px;
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  background: var(--blue);
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  transition: background 0.18s;
}
.plp-view-btn:hover {
  background: var(--blue-d);
  color: #fff;
}

/* Pagination — centered */
.plp-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.plp-page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1.5px solid #ebebeb;
  background: #fff;
  color: #555;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  transition: all 0.18s;
  cursor: pointer;
}
.plp-page-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.plp-page-btn.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

@media (max-width: 1024px) {
  .plp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .plp-wrap {
    grid-template-columns: 1fr;
  }
  .plp-sidebar {
    position: static;
  }
}
@media (max-width: 560px) {
  .plp-grid {
    grid-template-columns: 1fr;
  }
}

/* ── PRODUCT DETAIL PAGE (PDP) ────────────────────────────── */
.pdp-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 48px;
}

/* Image Panel */
.pdp-img-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 90px;
}
.pdp-img-box {
  background: #f9f9f9;
  border: 1.5px solid #ebebeb;
  border-radius: 12px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.pdp-img-box img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  display: block;
}
.pdp-sale-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
}
.pdp-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border: 1.5px solid #ebebeb;
  border-radius: 10px;
  overflow: hidden;
}
.pdp-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 8px;
  text-align: center;
  border-right: 1px solid #f0f0f0;
  font-size: 11px;
  font-weight: 600;
  color: #555;
  font-family: "Montserrat", sans-serif;
}
.pdp-trust-item:last-child {
  border-right: none;
}
.pdp-trust-item i {
  font-size: 18px;
  color: var(--blue);
}

/* Info Panel */
.pdp-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.pdp-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Montserrat", sans-serif;
}
.pdp-cat i {
  font-size: 10px;
}
.pdp-sku {
  font-size: 12px;
  color: #aaa;
  font-weight: 500;
}

.pdp-name {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 900;
  color: #1a0000;
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* Specs Grid */
.pdp-specs-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.pdp-spec-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff5f5;
  border: 1.5px solid #ffd0d0;
  border-radius: 8px;
  padding: 10px 16px;
  flex: 1;
  min-width: 100px;
}
.pdp-spec-box i {
  font-size: 18px;
  color: var(--blue);
  flex-shrink: 0;
}
.pdp-spec-box span {
  display: block;
  font-size: 10px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.pdp-spec-box strong {
  display: block;
  font-size: 13.5px;
  font-weight: 800;
  color: #1a0000;
  font-family: "Montserrat", sans-serif;
}

/* Price */
.pdp-price-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.pdp-price {
  font-size: 36px;
  font-weight: 900;
  color: var(--blue);
  font-family: "Montserrat", sans-serif;
}
.pdp-mrp {
  font-size: 18px;
  color: #bbb;
  text-decoration: line-through;
}
.pdp-save {
  font-size: 12px;
  font-weight: 700;
  color: #16a34a;
  background: #dcfce7;
  padding: 4px 12px;
  border-radius: 20px;
}

/* Stock */
.pdp-stock {
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: "Montserrat", sans-serif;
}
.pdp-stock.in-stock {
  color: #16a34a;
}
.pdp-stock.out-stock {
  color: var(--blue);
}

/* Qty */
.pdp-qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.pdp-qty-label {
  font-size: 13px;
  font-weight: 700;
  color: #1a0000;
  font-family: "Montserrat", sans-serif;
}
.pdp-qty-box {
  display: flex;
  align-items: center;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}
.pdp-qty-box button {
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  border: none;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  color: var(--blue);
  transition: background 0.15s;
}
.pdp-qty-box button:hover {
  background: #e8e8e8;
}
.pdp-qty-box input {
  width: 56px;
  height: 40px;
  border: none;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  outline: none;
  color: #1a0000;
}

/* Action Buttons */
.pdp-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.pdp-cart-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: 8px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  transition: all 0.18s;
}
.pdp-cart-btn:hover {
  background: var(--blue);
  color: #fff;
}
.pdp-buy-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 8px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  transition: all 0.18s;
}
.pdp-buy-btn:hover {
  background: var(--blue-d);
  border-color: var(--blue-d);
  color: #fff;
}

/* WhatsApp Button */
.pdp-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: #25d366;
  border-radius: 8px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 20px;
  transition: background 0.18s;
}
.pdp-wa-btn:hover {
  background: #1da851;
  color: #fff;
}
.pdp-wa-btn i {
  font-size: 18px;
}

/* Delivery Info */
.pdp-delivery-info {
  background: #f9f9f9;
  border: 1.5px solid #ebebeb;
  border-radius: 10px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pdp-di-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}
.pdp-di-item:last-child {
  border-bottom: none;
}
.pdp-di-item i {
  font-size: 20px;
  color: var(--blue);
  width: 24px;
  flex-shrink: 0;
}
.pdp-di-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #1a0000;
  font-family: "Montserrat", sans-serif;
}
.pdp-di-item span {
  display: block;
  font-size: 12px;
  color: #888;
}

/* Description */
.pdp-desc-section {
  background: #fff;
  border: 1.5px solid #ebebeb;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 48px;
}
.pdp-desc-tabs {
  background: #f9f9f9;
  border-bottom: 1.5px solid #ebebeb;
  padding: 0 24px;
  display: flex;
}
.pdp-tab {
  padding: 14px 20px;
  font-size: 13.5px;
  font-weight: 700;
  color: #777;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  transition: all 0.15s;
  margin-bottom: -1.5px;
}
.pdp-tab.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}
.pdp-desc-body {
  padding: 28px 28px 24px;
}
.pdp-desc-body p {
  font-size: 15px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 24px;
}
.pdp-spec-table h4 {
  font-size: 15px;
  font-weight: 800;
  color: #1a0000;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 14px;
}
.pdp-spec-table table {
  width: 100%;
  border-collapse: collapse;
  max-width: 500px;
}
.pdp-spec-table td {
  padding: 10px 16px;
  font-size: 13.5px;
  border-bottom: 1px solid #f0f0f0;
}
.pdp-spec-table td:first-child {
  color: #888;
  font-weight: 600;
  width: 40%;
}
.pdp-spec-table td:last-child {
  color: #1a0000;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

/* Related Products */
.pdp-related {
  margin-top: 20px;
}
.pdp-related-head {
  margin-bottom: 28px;
}
.pdp-related-head h2 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 900;
  color: #1a0000;
  font-family: "Montserrat", sans-serif;
}
.pdp-related-head h2 span {
  color: var(--blue);
}

@media (max-width: 900px) {
  .pdp-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .pdp-img-panel {
    position: static;
  }
  .pdp-trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .pdp-specs-grid {
    flex-direction: column;
  }
  .pdp-actions {
    flex-direction: column;
  }
}

/* ── CART PAGE ────────────────────────────────────────────── */

/* Empty State */
.cart-empty {
  text-align: center;
  padding: 100px 20px;
}
.cart-empty-icon {
  width: 100px;
  height: 100px;
  background: #fff5f5;
  border: 2px solid #ffd0d0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.cart-empty-icon i {
  font-size: 40px;
  color: var(--blue);
}
.cart-empty h2 {
  font-size: 28px;
  font-weight: 900;
  color: #1a0000;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 10px;
}
.cart-empty p {
  font-size: 15px;
  color: #777;
  margin-bottom: 28px;
}

/* Layout */
.cart-pg-wrap {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}

/* Left Panel */
.cart-pg-left {
  background: #fff;
  border: 1.5px solid #ebebeb;
  border-radius: 12px;
  overflow: hidden;
}
.cart-pg-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1.5px solid #f0f0f0;
  background: #fafafa;
}
.cart-pg-head h2 {
  font-size: 16px;
  font-weight: 800;
  color: #1a0000;
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-pg-head h2 i {
  color: var(--blue);
}
.cart-pg-head h2 span {
  color: #999;
  font-weight: 600;
  font-size: 14px;
}
.cart-clear-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: #dc2626;
  background: none;
  border: 1.5px solid #fca5a5;
  border-radius: 6px;
  padding: 7px 14px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  transition: all 0.15s;
}
.cart-clear-btn:hover {
  background: #fee2e2;
}

/* Cart Rows */
.cart-pg-items {
  padding: 0 24px;
}
.cart-pg-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid #f5f5f5;
}
.cart-pg-row:last-child {
  border-bottom: none;
}

.cart-pg-img {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  background: #f9f9f9;
  border: 1.5px solid #ebebeb;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-pg-img img {
  width: 100%;
  height: 90px;
  object-fit: contain;
  padding: 8px;
}

.cart-pg-info {
  flex: 1;
  min-width: 0;
}
.cart-pg-name {
  font-size: 14.5px;
  font-weight: 700;
  color: #1a0000;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-pg-name:hover {
  color: var(--blue);
}
.cart-pg-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.cart-pg-meta span {
  font-size: 11.5px;
  color: #999;
  display: flex;
  align-items: center;
  gap: 5px;
}
.cart-pg-meta i {
  color: var(--blue);
  font-size: 10px;
}
.cart-pg-unit-price {
  font-size: 12px;
  color: #aaa;
}

/* Qty Control */
.cart-pg-qty {
  flex-shrink: 0;
}
.cart-qty-box {
  display: flex;
  align-items: center;
  border: 1.5px solid #e0e0e0;
  border-radius: 7px;
  overflow: hidden;
}
.cart-qty-box button {
  width: 34px;
  height: 34px;
  background: #f5f5f5;
  border: none;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  color: var(--blue);
  transition: background 0.15s;
}
.cart-qty-box button:hover {
  background: #ebebeb;
}
.cart-qty-box input {
  width: 44px;
  height: 34px;
  border: none;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  outline: none;
  color: #1a0000;
  pointer-events: none;
}

/* Line Total */
.cart-pg-total {
  font-size: 17px;
  font-weight: 900;
  color: var(--blue);
  font-family: "Montserrat", sans-serif;
  min-width: 90px;
  text-align: right;
  flex-shrink: 0;
}

/* Remove */
.cart-pg-remove {
  background: none;
  border: 1.5px solid #f0f0f0;
  border-radius: 6px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ccc;
  flex-shrink: 0;
  transition: all 0.15s;
}
.cart-pg-remove:hover {
  background: #fee2e2;
  border-color: #fca5a5;
  color: #dc2626;
}

/* Footer */
.cart-pg-footer {
  padding: 16px 24px;
  border-top: 1.5px solid #f0f0f0;
  background: #fafafa;
}

/* Right Panel — Summary */
.cart-pg-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 90px;
}
.cart-summary-box {
  background: #fff;
  border: 1.5px solid #ebebeb;
  border-radius: 12px;
  padding: 24px;
}
.cart-summary-box h3 {
  font-size: 16px;
  font-weight: 800;
  color: #1a0000;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-summary-box h3 i {
  color: var(--blue);
}

.cart-summary-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 4px;
}
.cart-sum-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
  color: #555;
}
.cart-sum-row:last-child {
  border-bottom: none;
}
.cart-ship-note {
  font-size: 12px;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0 10px;
  font-weight: 600;
}
.cart-sum-total {
  display: flex;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 900;
  color: #1a0000;
  font-family: "Montserrat", sans-serif;
  padding: 14px 0;
  border-top: 2px solid #f0f0f0;
  margin-top: 4px;
}
.cart-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  border-radius: 8px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  transition: background 0.18s;
  margin: 16px 0 14px;
}
.cart-checkout-btn:hover {
  background: var(--blue-d);
  color: #fff;
}
.cart-payment-note {
  text-align: center;
  font-size: 12px;
  color: #aaa;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.cart-payment-note i {
  color: var(--blue);
}
.cart-payment-note strong {
  color: #555;
}
.cart-pay-methods {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 4px;
}
.cart-pay-methods span {
  font-size: 11px;
  color: #777;
  background: #f5f5f5;
  border-radius: 4px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}
.cart-pay-methods i {
  color: var(--blue);
  font-size: 11px;
}

/* WhatsApp Help Card */
.cart-wa-help {
  background: #fff;
  border: 1.5px solid #ebebeb;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.2s;
}
.cart-wa-help:hover {
  border-color: #25d366;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.12);
}
.cart-wa-help .fa-brands {
  font-size: 28px;
  color: #25d366;
  flex-shrink: 0;
}
.cart-wa-help strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #1a0000;
  font-family: "Montserrat", sans-serif;
}
.cart-wa-help span {
  font-size: 12px;
  color: #999;
}

@media (max-width: 900px) {
  .cart-pg-wrap {
    grid-template-columns: 1fr;
  }
  .cart-pg-right {
    position: static;
  }
}
@media (max-width: 560px) {
  .cart-pg-row {
    flex-wrap: wrap;
  }
  .cart-pg-img {
    width: 70px;
    height: 70px;
  }
  .cart-pg-info {
    flex: 0 0 calc(100% - 88px);
  }
  .cart-pg-qty,
  .cart-pg-total,
  .cart-pg-remove {
    flex: 1;
  }
}

/* ── CHECKOUT PAGE ────────────────────────────────────────── */

/* Progress Steps */
.co-steps-bar {
  background: #fff;
  border-bottom: 1.5px solid #ebebeb;
  padding: 20px 0;
}
.co-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.co-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.co-step-ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f0f0f0;
  border: 2px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 15px;
  transition: all 0.2s;
}
.co-step span {
  font-size: 11px;
  font-weight: 700;
  color: #bbb;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.co-step.done .co-step-ico {
  background: #dcfce7;
  border-color: #16a34a;
  color: #16a34a;
}
.co-step.done span {
  color: #16a34a;
}
.co-step.active .co-step-ico {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.co-step.active span {
  color: var(--blue);
}
.co-step-line {
  flex: 1;
  height: 2px;
  background: #e0e0e0;
  margin: 0 8px;
  margin-bottom: 18px;
  max-width: 80px;
}
.co-step-line.done {
  background: #16a34a;
}

/* Layout */
.co-wrap {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: start;
}

/* Section Box */
.co-section-box {
  background: #fff;
  border: 1.5px solid #ebebeb;
  border-radius: 12px;
  padding: 28px;
}
.co-section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1.5px solid #f0f0f0;
}
.co-section-num {
  width: 32px;
  height: 32px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  flex-shrink: 0;
}
.co-section-head h2 {
  font-size: 17px;
  font-weight: 800;
  color: #1a0000;
  font-family: "Montserrat", sans-serif;
  margin: 0;
}

/* Form Fields */
.co-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.co-form-grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.co-field {
  margin-bottom: 16px;
}
.co-field label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 700;
  color: #444;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.co-field label i {
  color: var(--blue);
  font-size: 12px;
}
.co-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  color: #1a0000;
  background: #fff;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
  outline: none;
}
.co-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(153, 0, 0, 0.08);
}
.co-input::placeholder {
  color: #ccc;
}
select.co-input {
  cursor: pointer;
}
textarea.co-input {
  resize: vertical;
  line-height: 1.6;
}

/* Pay Button */
.co-pay-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  background: var(--blue);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  margin-top: 8px;
  transition: background 0.18s;
  letter-spacing: 0.3px;
}
.co-pay-btn:hover {
  background: var(--blue-d);
}
.co-secure-note {
  text-align: center;
  font-size: 12px;
  color: #aaa;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.co-secure-note i {
  color: #16a34a;
}
.co-secure-note strong {
  color: #555;
}

/* Right Summary */
.co-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 90px;
}
.co-summary-box {
  background: #fff;
  border: 1.5px solid #ebebeb;
  border-radius: 12px;
  overflow: hidden;
}
.co-summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: #fafafa;
  border-bottom: 1.5px solid #f0f0f0;
}
.co-summary-head h3 {
  font-size: 15px;
  font-weight: 800;
  color: #1a0000;
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.co-summary-head h3 i {
  color: var(--blue);
}
.co-edit-cart {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}

.co-items-list {
  padding: 12px 20px;
  border-bottom: 1.5px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 280px;
  overflow-y: auto;
}
.co-item-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.co-item-img {
  position: relative;
  width: 52px;
  height: 52px;
  background: #f9f9f9;
  border: 1.5px solid #ebebeb;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.co-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}
.co-item-qty {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
}
.co-item-info {
  flex: 1;
  min-width: 0;
}
.co-item-info p {
  font-size: 12.5px;
  font-weight: 600;
  color: #1a0000;
  margin: 0 0 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.co-item-info small {
  font-size: 11px;
  color: #aaa;
}
.co-item-price {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--blue);
  font-family: "Montserrat", sans-serif;
  flex-shrink: 0;
}

.co-summary-calcs {
  padding: 14px 20px;
  border-bottom: 1.5px solid #f0f0f0;
}
.co-calc-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: #666;
  padding: 5px 0;
}
.co-ship-tip {
  font-size: 11.5px;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-weight: 600;
}
.co-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 900;
  color: #1a0000;
  font-family: "Montserrat", sans-serif;
  padding: 16px 20px;
  border-bottom: 1.5px solid #f0f0f0;
}
.co-pay-info {
  padding: 14px 20px;
  text-align: center;
}
.co-pay-info p {
  font-size: 11.5px;
  color: #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 8px;
}
.co-pay-info i {
  color: var(--blue);
}
.co-pay-icons {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.co-pay-icons span {
  font-size: 11px;
  color: #666;
  background: #f5f5f5;
  border-radius: 4px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}
.co-pay-icons i {
  color: var(--blue);
  font-size: 11px;
}

.co-wa-card {
  background: #fff;
  border: 1.5px solid #ebebeb;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.2s;
}
.co-wa-card:hover {
  border-color: #25d366;
}
.co-wa-card .fa-brands {
  font-size: 28px;
  color: #25d366;
  flex-shrink: 0;
}
.co-wa-card strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #1a0000;
  font-family: "Montserrat", sans-serif;
}
.co-wa-card span {
  font-size: 12px;
  color: #999;
}

@media (max-width: 900px) {
  .co-wrap {
    grid-template-columns: 1fr;
  }
  .co-right {
    position: static;
  }
  .co-form-grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .co-form-grid {
    grid-template-columns: 1fr;
  }
  .co-form-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* ── CONTACT PAGE ─────────────────────────────────────────── */

/* Info Strip */
.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0;
}
.contact-strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
  flex: 1;
  min-width: 160px;
}
.contact-strip-icon {
  width: 44px;
  height: 44px;
  background: #fff5f5;
  border: 1.5px solid #ffd0d0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-strip-icon i {
  font-size: 18px;
  color: var(--blue);
}
.contact-strip-item strong {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: #1a0000;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.contact-strip-item span {
  font-size: 13px;
  color: #777;
  display: block;
}
.contact-strip-item a {
  font-size: 13px;
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  display: block;
}
.contact-strip-item a:hover {
  color: var(--blue-d);
}
.contact-strip-divider {
  width: 1px;
  height: 48px;
  background: #ebebeb;
  flex-shrink: 0;
}

/* Main Layout */
.contact-main-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
}

/* Form Panel */
.contact-form-panel {
}
.contact-form {
  display: flex;
  flex-direction: column;
}

/* Success State */
.contact-success {
  text-align: center;
  padding: 48px 24px;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: 12px;
}
.contact-success-icon {
  width: 72px;
  height: 72px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.contact-success-icon i {
  font-size: 32px;
  color: #16a34a;
}
.contact-success h3 {
  font-size: 20px;
  font-weight: 800;
  color: #166534;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 8px;
}
.contact-success p {
  font-size: 14px;
  color: #4ade80;
}

/* Info Panel */
.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}
.contact-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-card-item {
  background: #fff;
  border: 1.5px solid #ebebeb;
  border-radius: 10px;
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.2s;
}
.contact-card-item:hover {
  box-shadow: 0 4px 18px rgba(153, 0, 0, 0.1);
  transform: translateY(-2px);
}
.contact-card-ic {
  width: 46px;
  height: 46px;
  background: #fff5f5;
  border: 1.5px solid #ffd0d0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-ic i {
  font-size: 19px;
  color: var(--blue);
}
.contact-card-item strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #1a0000;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 4px;
}
.contact-card-item a {
  display: block;
  font-size: 14px;
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 3px;
}
.contact-card-item span {
  display: block;
  font-size: 12px;
  color: #aaa;
}

/* Map */
.contact-map-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid #ebebeb;
  flex: 1;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}
.contact-map-wrap iframe {
  width: 100%;
  flex: 1;
  min-height: 220px;
  border: none;
  display: block;
}

@media (max-width: 1024px) {
  .contact-strip-item {
    padding: 18px 16px;
    min-width: 120px;
  }
}
@media (max-width: 900px) {
  .contact-main-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact-strip {
    gap: 0;
  }
  .contact-strip-divider {
    display: none;
  }
  .contact-strip-item {
    flex: 0 0 50%;
    border-bottom: 1px solid #ebebeb;
  }
}
@media (max-width: 560px) {
  .contact-strip-item {
    flex: 0 0 100%;
  }
}

/* ── PRODUCT VARIANTS ─────────────────────────────────────── */
.pdp-variants {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pdp-variant-group {
}
.pdp-variant-label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 10px;
}
.pdp-variant-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pdp-vbtn {
  padding: 8px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 7px;
  background: #fff;
  font-size: 13.5px;
  font-weight: 600;
  color: #444;
  cursor: pointer;
  transition: all 0.15s;
  font-family: "Montserrat", sans-serif;
}
.pdp-vbtn:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: #fff5f5;
}
.pdp-vbtn.active {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
  font-weight: 700;
}
