/* ==========================================================================
   beli.ng - Universal Stylesheet (Mobile, Tablet & Desktop Responsive)
   ========================================================================== */

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

/* CSS Variables */
:root {
  --bg-page: #FFFFFF;
  --bg-subtle: #F8F9FA;
  --bg-gray: #F3F4F6;
  --bg-dark: #093A66;
  --border-color: #E5E7EB;
  --border-input: #D0D9E2;
  --text-black: #093A66;
  --text-gray: #525252;
  --text-muted: #5A7B98;
  --text-light: #71717A;
  --green: #16A34A;
  --green-bg: #DCFCE7;
  --blue: #093A66;
  --blue-bg: #E0F2FE;
  --amber: #F59E0B;
  --amber-bg: #FEF3C7;
  --red: #DC2626;
  --red-bg: #FEE2E2;
  --whatsapp: #25D366;
  --font-main: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-page);
  color: var(--text-black);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Responsive Table Wrapper */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1rem;
}

.table-responsive table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}

.table-responsive th, .table-responsive td {
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  font-size: 0.845rem;
  text-align: left;
}

.table-responsive th {
  background-color: var(--bg-gray);
  font-weight: 700;
}

/* Common Buttons */
.btn-black {
  background-color: #093A66;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.65rem 1.25rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  white-space: nowrap;
  transition: opacity 0.15s ease, transform 0.1s ease;
}

.btn-black:hover {
  opacity: 0.9;
}

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

.btn-outline {
  background-color: #FFFFFF;
  color: var(--text-black);
  border: 1px solid var(--border-input);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.btn-outline:hover {
  background-color: var(--bg-gray);
  border-color: #B8C5D1;
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-whatsapp:hover {
  background-color: #20BA5A;
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 0.45rem 0.85rem;
  font-size: 0.8125rem;
}

/* ==========================================================================
   Header & Navigation matching Screenshot 792
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #FAFAFA;
  border-bottom: 1px solid var(--border-color);
  height: 60px;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

/* Logo image — responsive sizing */
.brand-logo-img {
  display: block;
  width: auto;
  height: 28px;       /* mobile default */
  max-width: 140px;
  object-fit: contain;
  transition: opacity 0.15s ease;
}

.brand-logo:hover .brand-logo-img {
  opacity: 0.85;
}

@media (min-width: 640px) {
  .brand-logo-img {
    height: 32px;
    max-width: 160px;
  }
}

@media (min-width: 992px) {
  .brand-logo-img {
    height: 36px;
    max-width: 180px;
  }
}

.nav-links-list {
  display: none;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
}

@media (min-width: 992px) {
  .nav-links-list {
    display: flex;
  }
}

.nav-item {
  font-size: 0.845rem;
  font-weight: 600;
  color: #093A66;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.45rem;
  border-radius: 4px;
  transition: background-color 0.15s ease;
}

.nav-item:hover, .nav-item.active {
  background-color: #F3F4F6;
}

.header-right-tools {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.header-search-wrap {
  position: relative;
  display: none;
}

@media (min-width: 640px) {
  .header-search-wrap {
    display: flex;
    align-items: center;
  }
}

.search-input-pill {
  height: 32px;
  width: 130px;
  padding: 0 0.5rem;
  background-color: #FAFAFA;
  border: 1px solid var(--border-input);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.8125rem;
  color: var(--text-black);
  outline: none;
}

.search-input-pill::placeholder {
  color: var(--text-muted);
  font-weight: 600;
}

.search-drop-results {
  position: absolute;
  top: 100%;
  right: 0;
  width: 320px;
  margin-top: 0.35rem;
  background: #FFFFFF;
  border: 1px solid var(--border-input);
  border-radius: 6px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  display: none;
  max-height: 340px;
  overflow-y: auto;
  z-index: 200;
}

.search-drop-results.active {
  display: block;
}

.search-drop-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid #F3F4F6;
  text-decoration: none;
}

.search-drop-item:hover {
  background-color: #F8F9FA;
}

.search-drop-item img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.icon-btn-square {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #FFFFFF;
  border: 1px solid var(--border-input);
  border-radius: 4px;
  color: var(--text-muted);
}

.region-btn-pill {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  height: 32px;
  padding: 0 0.5rem;
  background-color: #FFFFFF;
  border: 1px solid var(--border-input);
  border-radius: 4px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
}

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #FFFFFF;
  border: 1px solid var(--border-input);
  border-radius: 4px;
  font-size: 1.15rem;
  color: var(--text-black);
  cursor: pointer;
}

@media (min-width: 992px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* Enhanced Mobile Navigation Drawer */
.mobile-dropdown-nav {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  border-bottom: 2px solid var(--border-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  padding: 1.25rem 1.5rem;
  display: none;
  flex-direction: column;
  gap: 0.85rem;
  z-index: 999;
}

.mobile-dropdown-nav.open {
  display: flex;
}

.mobile-dropdown-nav a {
  font-size: 1rem;
  font-weight: 700;
  color: #093A66;
  padding: 0.65rem 0.5rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border-bottom: 1px solid #F3F4F6;
}

.mobile-dropdown-nav a:hover {
  background-color: #F8F9FA;
}

/* ==========================================================================
   Homepage Components (Screenshots 792 - 796)
   ========================================================================== */

/* Hero Banner - Fully Responsive on Mobile & Desktop */
.hero-box {
  background-color: #F8F9FA;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin: 1.25rem 0 2.5rem 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .hero-box {
    grid-template-columns: 1.1fr 1fr;
  }
}

.hero-left {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-left {
    padding: 2.5rem 2rem;
  }
}

.hero-title {
  font-size: clamp(1.6rem, 3.5vw, 2.35rem);
  font-weight: 800;
  color: #093A66;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.hero-desc {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.5;
  max-width: 420px;
}

.hero-right {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-color: #E2E8F0;
  position: relative;
  overflow: hidden;
}

.hero-right img, .hero-right svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Value Prop */
.value-prop {
  text-align: center;
  margin: 2.5rem 0 2rem 0;
  padding: 0 0.5rem;
}

.value-prop h2 {
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 800;
  color: #093A66;
  letter-spacing: -0.03em;
}

.value-prop p {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin-top: 0.35rem;
  margin-bottom: 1.25rem;
}

/* 3-Column Category Grid - Mobile & Tablet Responsive */
.cat-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 600px) {
  .cat-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .cat-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cat-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.cat-card:hover {
  border-color: #B8C5D1;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.cat-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-color: #F8F9FA;
  overflow: hidden;
}

.cat-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.cat-card:hover .cat-card-img img {
  transform: scale(1.02);
}

.cat-card-title {
  padding: 0.85rem 1rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #093A66;
}

/* Other Lists Box */
.other-lists-card {
  background-color: #F8F9FA;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.25rem;
  margin: 1.5rem 0 3.5rem 0;
}

@media (min-width: 768px) {
  .other-lists-card {
    padding: 1.5rem;
  }
}

.other-lists-title {
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

/* Top Stories Section */
.top-stories-wrap {
  margin: 3.5rem 0;
}

.top-stories-header {
  text-align: center;
  margin-bottom: 2rem;
}

.top-stories-header h2 {
  font-size: 1.75rem;
  font-weight: 800;
}

.top-stories-header p {
  font-size: 0.9rem;
  color: var(--text-gray);
}

.stories-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 992px) {
  .stories-split {
    grid-template-columns: 1.2fr 1fr;
  }
}

.story-card-big {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden;
}

.story-card-mini {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0.75rem;
  margin-bottom: 1rem;
}

/* Huge Sale Banner (Dark) */
.huge-sale-section {
  background-color: #093A66;
  border-radius: 8px;
  color: #FFFFFF;
  padding: 2rem 1.25rem;
  margin: 3.5rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 992px) {
  .huge-sale-section {
    grid-template-columns: 240px 1fr;
    padding: 3rem 2.5rem;
  }
}

.huge-sale-tag {
  background-color: var(--amber);
  color: #000000;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  width: fit-content;
}

.huge-sale-title {
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 0.5rem;
}

.huge-sale-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .huge-sale-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .huge-sale-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.deal-white-card {
  background-color: #FFFFFF;
  border-radius: 6px;
  padding: 1rem;
  color: var(--text-black);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.deal-white-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
}

.deal-title {
  font-size: 0.875rem;
  font-weight: 700;
}

.deal-specs {
  font-size: 0.75rem;
  color: var(--text-light);
}

.deal-badges {
  display: flex;
  gap: 0.35rem;
}

.badge-pill {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
}

.badge-green {
  background-color: var(--green-bg);
  color: var(--green);
}

.badge-blue {
  background-color: var(--blue-bg);
  color: var(--blue);
}

.deal-pricing {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 0.25rem;
}

.deal-price-val {
  font-size: 1.1rem;
  font-weight: 800;
  font-family: var(--font-mono);
}

.deal-save-val {
  font-size: 0.75rem;
  color: var(--green);
  font-weight: 700;
}

/* ==========================================================================
   Catalogue Page (Screenshot 797) - Responsive on Mobile & Tablet
   ========================================================================== */
.catalog-grid-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
  margin: 1.5rem 0 4rem 0;
}

@media (min-width: 992px) {
  .catalog-grid-2col {
    grid-template-columns: 240px 1fr;
    gap: 2rem;
  }
}

.pill-switcher {
  display: inline-flex;
  background-color: #E5E7EB;
  padding: 3px;
  border-radius: 9999px;
  gap: 2px;
}

.pill-btn {
  padding: 0.35rem 1.15rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-gray);
  cursor: pointer;
}

.pill-btn.active {
  background-color: #093A66;
  color: #FFFFFF;
}

.mobile-filter-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.65rem;
  background: var(--bg-gray);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 992px) {
  .mobile-filter-toggle-btn {
    display: none;
  }
}

.sidebar-filters {
  display: none;
  flex-direction: column;
  gap: 1.25rem;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.sidebar-filters.open {
  display: flex;
}

@media (min-width: 992px) {
  .sidebar-filters {
    display: flex;
    border: none;
    padding: 0;
    margin-bottom: 0;
  }
}

.sidebar-title {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.check-label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8125rem;
  color: var(--text-gray);
  margin-bottom: 0.4rem;
  cursor: pointer;
}

.check-label input {
  accent-color: #093A66;
}

.catalog-card-row {
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.catalog-card-row:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

@media (min-width: 640px) {
  .catalog-card-row {
    grid-template-columns: 140px 1fr;
    gap: 1.25rem;
  }
}

@media (min-width: 992px) {
  .catalog-card-row {
    grid-template-columns: 160px 1fr auto;
    gap: 1.5rem;
  }
}

.catalog-card-img {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F8F9FA;
  border-radius: 6px;
  padding: 0.75rem;
}

.catalog-card-img img {
  max-width: 100%;
  max-height: 120px;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.catalog-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #093A66;
  text-decoration: none;
  display: block;
}

.catalog-card-title:hover {
  text-decoration: underline;
}

.catalog-specs-row {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin: 0.35rem 0;
  line-height: 1.4;
}

.catalog-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.25rem;
}

.tag-badge {
  font-size: 0.75rem;
  background-color: #F3F4F6;
  color: var(--text-gray);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
}

.catalog-links-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #093A66;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.catalog-links-row a {
  text-decoration: none;
}

.catalog-links-row a:hover {
  text-decoration: underline;
}

/* Actions Column & Responsive Layout */
.catalog-actions-col {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  border-top: 1px solid #F3F4F6;
  padding-top: 0.85rem;
}

.catalog-price-badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.catalog-btns-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.catalog-btns-row .btn-black,
.catalog-btns-row .btn-pod {
  flex: 1 1 auto;
  text-align: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .catalog-actions-col {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .catalog-btns-row .btn-black,
  .catalog-btns-row .btn-pod {
    flex: initial;
  }
}

@media (min-width: 992px) {
  .catalog-actions-col {
    grid-column: auto;
    border-top: none;
    padding-top: 0;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
  }
  .catalog-price-badge-row {
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
  }
  .catalog-btns-row {
    justify-content: flex-end;
  }
}

.catalog-price {
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: #093A66;
}

/* Pay on Delivery button style */
.btn-pod {
  background-color: #F8F9FA;
  color: #093A66;
  border: 1.5px solid #093A66;
  font-family: var(--font-main, inherit);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.45rem 0.75rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  white-space: nowrap;
  transition: all 0.15s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-pod:hover {
  background-color: #093A66;
  color: #FFFFFF;
}

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

/* Footer Brand Logo Matching Header */
.footer-brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  background-color: #FFFFFF;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 0.5rem;
  transition: opacity 0.15s ease;
}

.footer-brand-logo:hover {
  opacity: 0.9;
}

.footer-logo-img {
  display: block;
  height: 26px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

/* ==========================================================================
   Product Detail Page (Screenshots 798 - 800)
   ========================================================================== */
.product-detail-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  margin: 1.5rem 0 2.5rem 0;
}

@media (min-width: 992px) {
  .product-detail-hero {
    grid-template-columns: 420px 1fr;
    gap: 2.5rem;
  }
}

.product-detail-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-detail-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #093A66;
}

.product-detail-desc {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0.75rem 0 1.25rem 0;
}

.starts-from-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.starts-price {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-mono);
}

/* 3 Cards Highlights */
.highlights-3cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 600px) {
  .highlights-3cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hl-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1.25rem;
}

.hl-card-icon {
  font-size: 1.35rem;
  color: var(--blue);
  margin-bottom: 0.25rem;
}

.hl-card-label {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 600;
}

.hl-card-val {
  font-size: 1.05rem;
  font-weight: 700;
  color: #093A66;
}

/* Pros & Cons Box */
.pros-cons-container {
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1.25rem;
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .pros-cons-container {
    grid-template-columns: 1fr 1fr;
    padding: 1.5rem;
    gap: 2rem;
  }
}

.pro-con-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.pro-item, .con-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-bottom: 0.65rem;
  line-height: 1.4;
}

.pro-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--green-bg);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.con-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--red-bg);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Config Cards (Screenshot 799) */
.config-item-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.config-item-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

/* On mobile: image sits above a row of [specs | price+btns] */
@media (max-width: 767px) {
  .config-item-header {
    grid-template-columns: 1fr;
  }
  /* Force the last child (price + buttons column) to sit beside specs on mobile */
  .config-item-header > div:nth-child(2) {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .config-item-header > div:last-child {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-color);
  }
}

@media (min-width: 768px) {
  .config-item-header {
    grid-template-columns: 120px 1fr auto;
    gap: 1.25rem;
    align-items: center;
  }
}

.accordion-spec-line {
  border-bottom: 1px solid #F3F4F6;
}

.accordion-spec-line summary {
  padding: 0.65rem 0;
  font-size: 0.845rem;
  font-weight: 600;
  color: var(--text-gray);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.accordion-spec-detail {
  padding: 0 0 0.65rem 0;
  font-size: 0.8125rem;
  color: var(--text-light);
}

/* ==========================================================================
   Zero-Cart Direct Checkout & WhatsApp Modal
   ========================================================================== */
.checkout-modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.checkout-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.checkout-modal-box {
  background-color: #FFFFFF;
  border-radius: 8px;
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.modal-header-row {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: #FFFFFF;
  z-index: 10;
}

.modal-body-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}

.form-field-group label {
  font-size: 0.8125rem;
  font-weight: 700;
}

.form-field-group input, .form-field-group select, .form-field-group textarea {
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border-input);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.875rem;
  outline: none;
}

.form-field-group input:focus, .form-field-group select:focus, .form-field-group textarea:focus {
  border-color: #093A66;
}

.bank-details-dark-card {
  background-color: #093A66;
  border-radius: 6px;
  padding: 1rem;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bank-row-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #27272A;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
}

.bank-val-mono {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
}

.copy-button-mini {
  background-color: #3F3F46;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.55rem;
  border-radius: 4px;
}

.copy-button-mini:hover {
  background-color: var(--green);
}

.whatsapp-box-prompt {
  background-color: var(--green-bg);
  border: 1px solid #BBF7D0;
  border-radius: 6px;
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.whatsapp-box-prompt h3 {
  font-size: 0.95rem;
  color: #15803D;
  font-weight: 700;
}

.whatsapp-box-prompt p {
  font-size: 0.8125rem;
  color: #166534;
  line-height: 1.4;
}

.toast-msg {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background-color: #093A66;
  color: #FFFFFF;
  padding: 0.65rem 1.15rem;
  border-radius: 4px;
  font-size: 0.8125rem;
  font-weight: 600;
  z-index: 2000;
  opacity: 0;
  transition: all 0.25s ease;
  pointer-events: none;
}

.toast-msg.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ==========================================================================
   Footer matching Screenshot 796
   ========================================================================== */
.site-footer {
  background-color: #093A66;
  color: #FFFFFF;
  padding: 3.5rem 0 2.5rem 0;
  margin-top: 4rem;
}

.footer-4col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-4col {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }
}

.footer-col h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: #D4D4D8;
}

.footer-col a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.footer-bottom-row {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #A1A1AA;
}

.footer-bottom-row p {
  line-height: 1.5;
  word-break: break-word;
}

@media (min-width: 600px) {
  .footer-bottom-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* Footer social icons row */
.footer-social-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background-color: rgba(255,255,255,0.1);
  color: #FFFFFF;
  font-size: 0.95rem;
  transition: background-color 0.15s ease;
  text-decoration: none;
}

.footer-social-link:hover {
  background-color: rgba(255,255,255,0.22);
  color: #FFFFFF;
}

/* Best Prices header responsive */
.best-prices-header-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.best-prices-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Newsletter form responsive */
.newsletter-form-row-responsive {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 100%;
  max-width: 460px;
  margin-top: 0.5rem;
}

.newsletter-form-row-responsive input {
  flex: 1;
  min-width: 180px;
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--border-input);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.875rem;
  outline: none;
}

.newsletter-form-row-responsive button {
  flex-shrink: 0;
}
