:root {
  --obsidian: #0D170D;
  --obsidian-dark: #070E07;
  --obsidian-surface: #0A130A;
  --obsidian-card: #0F1F0F;
  --obsidian-card-hover: #162616;
  --gold: #D4AF37;
  --gold-light: #E8C84A;
  --gold-bright: #F3E5AB;
  --saffron: #FFCA28;
  --parchment: #F5F0E8;
  --parchment-dim: rgba(245, 240, 232, 0.65);
  --parchment-muted: rgba(245, 240, 232, 0.42);
  --border-gold: rgba(212, 175, 55, 0.2);
  --border-gold-bright: rgba(212, 175, 55, 0.5);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--obsidian);
  color: var(--parchment);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Hardware Accelerated AOS Transitions for 60fps Smoothness */
[data-aos] {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform, opacity;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* ========================================================
   TYPOGRAPHY RULES
   - Main section headings remain bold/black
   - Other body text, descriptions & options are light/thin
   ======================================================== */
.font-heading {
  font-family: var(--font-heading);
}

.font-display {
  font-family: var(--font-display);
}

/* Main Headings: Keep Bold & Solid */
h1, h2, .font-heading.font-black, .hero-heading, .main-heading {
  font-family: var(--font-heading);
  font-weight: 900 !important;
  letter-spacing: 0.03em;
}

h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
}

/* Paragraphs & Body Copy: Thin & Refined */
p, .text-parchment-dim, .text-parchment-muted, .section-desc, .lead, li, label, .card-desc {
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

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

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

.text-parchment {
  color: var(--parchment) !important;
}

.text-parchment-dim {
  color: var(--parchment-dim) !important;
}

.text-parchment-muted {
  color: var(--parchment-muted) !important;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1rem;
  display: inline-block;
}

/* ========================================================
   NAVBAR STYLES (Identical to live base44 app)
   ======================================================== */
.site-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  padding: 1.25rem 0;
  background: linear-gradient(to bottom, rgba(13, 23, 13, 0.92), rgba(13, 23, 13, 0.4) 70%, transparent);
  border-bottom: 1px solid transparent;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-navbar.scrolled {
  background: rgba(13, 23, 13, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-gold);
  padding: 0.85rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.site-navbar .navbar-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  line-height: 1;
}

.brand-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.3s ease;
}

.brand-sub {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(212, 175, 55, 0.6);
  margin-top: 4px;
}

.nav-link-custom {
  color: rgba(245, 240, 232, 0.65);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 0.9rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--gold);
}

.nav-cart-btn {
  position: relative;
  background: transparent;
  border: none;
  color: var(--gold);
  padding: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, color 0.25s ease;
}

.nav-cart-btn:hover {
  color: #fff;
  transform: scale(1.1);
}

.cart-badge-count {
  position: absolute;
  top: -2px;
  right: -4px;
  width: 17px;
  height: 17px;
  background-color: var(--gold);
  color: var(--obsidian);
  font-size: 9px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

/* Mobile Offcanvas Nav */
.mobile-nav-offcanvas {
  background-color: rgba(13, 23, 13, 0.98) !important;
  border-right: 1px solid rgba(212, 175, 55, 0.3) !important;
  color: var(--parchment) !important;
  width: 320px !important;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(245, 240, 232, 0.7);
  text-decoration: none;
  padding: 1rem 0;
  display: block;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--gold);
  padding-left: 0.5rem;
}

/* ========================================================
   BUTTON STYLES & STATES
   ======================================================== */
.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  background: transparent;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  user-select: none;
  outline: none;
}

.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--obsidian);
  border-color: var(--gold);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

.btn-gold-outline:active {
  transform: translateY(0);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #070E07;
  background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
  border: 1px solid var(--gold);
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  user-select: none;
  outline: none;
  border-radius: 2px;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 100%);
  color: #070E07;
  border-color: #F3E5AB;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}

.btn-gold:active {
  transform: translateY(0);
}

.btn-saffron-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--parchment);
  border: 1px solid rgba(245, 240, 232, 0.4);
  background: rgba(255, 255, 255, 0.02);
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  user-select: none;
  outline: none;
}

.btn-saffron-outline:hover {
  background: var(--parchment);
  color: var(--obsidian);
  border-color: var(--parchment);
  box-shadow: 0 0 20px rgba(245, 240, 232, 0.25);
  transform: translateY(-2px);
}

.btn-saffron-outline:active {
  transform: translateY(0);
}

/* Category & Tag Filter Buttons */
.btn-filter {
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--parchment-dim);
  padding: 0.65rem 1.4rem;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  outline: none;
}

.btn-filter:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

.btn-filter.active {
  background: var(--gold) !important;
  color: var(--obsidian) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Product Card Inline Counter Controls */
.card-qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: rgba(13, 23, 13, 0.9);
}

.card-qty-control button {
  background: transparent;
  border: none;
  color: var(--gold);
  padding: 0.35rem 0.65rem;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.card-qty-control button:hover {
  background: var(--gold);
  color: var(--obsidian);
}

.card-qty-control .qty-value {
  padding: 0 0.6rem;
  font-size: 12px;
  font-weight: 500;
  color: var(--parchment);
}

/* ========================================================
   ORNAMENTAL & CARDS
   ======================================================== */
.divider-diamonds {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.5rem auto;
}

.divider-diamonds .line {
  height: 1px;
  flex: 1;
  background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.divider-diamonds .diamond {
  width: 5px;
  height: 5px;
  background-color: var(--gold);
  transform: rotate(45deg);
}

.divider-diamonds .diamond.main {
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  background-color: transparent;
}

.luxury-card {
  background-color: var(--obsidian-card);
  border: 1px solid var(--border-gold);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.luxury-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 175, 55, 0.15);
}

.luxury-card .card-img-wrapper {
  overflow: hidden;
  position: relative;
}

.luxury-card img {
  transition: transform 0.8s ease, filter 0.5s ease;
}

.luxury-card:hover img {
  transform: scale(1.06);
}

/* Form Inputs */
.gold-input {
  background-color: rgba(13, 23, 13, 0.8);
  border: 1px solid var(--border-gold);
  border-radius: 0;
  color: var(--parchment);
  font-weight: 300;
  padding: 0.85rem 1.2rem;
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  width: 100%;
}

.gold-input:focus {
  background-color: rgba(15, 31, 15, 0.95);
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
  color: var(--parchment);
  outline: none;
}

.gold-input::placeholder {
  color: var(--parchment-muted);
  font-weight: 300;
}

/* Gallery Masonry */
.gallery-grid {
  column-count: 3;
  column-gap: 1rem;
}

@media (max-width: 991px) {
  .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 575px) {
  .gallery-grid {
    column-count: 1;
  }
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  background-color: var(--obsidian-card);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.8) saturate(0.9);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.95) saturate(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(7, 14, 7, 0.92));
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Offcanvas Cart */
.cart-offcanvas {
  background-color: var(--obsidian) !important;
  border-left: 1px solid var(--border-gold-bright) !important;
  color: var(--parchment) !important;
  width: 420px !important;
  max-width: 100vw !important;
}

.cart-offcanvas .offcanvas-header {
  border-bottom: 1px solid var(--border-gold);
  padding: 1.5rem;
}

.cart-offcanvas .offcanvas-body {
  padding: 1.5rem;
}

.cart-item-row {
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

/* Floating WhatsApp widget */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1040;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  padding: 0.75rem 1.4rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
  color: #fff;
}

/* Scroll indicator animation */
@keyframes floatDown {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(8px); opacity: 1; }
}

.scroll-line {
  width: 1px;
  height: 35px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0.5rem auto 0;
  animation: floatDown 2s infinite ease-in-out;
}

/* Toast notification */
.az-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(13, 23, 13, 0.95);
  border: 1px solid var(--gold);
  color: var(--parchment);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 1060;
  opacity: 0;
  transition: all 0.35s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7), 0 0 15px rgba(212, 175, 55, 0.3);
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--obsidian-dark);
}

::-webkit-scrollbar-thumb {
  background: #243b24;
  border: 1px solid var(--border-gold);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ========================================================
   PAGINATION STYLES (Luxury Gold & Obsidian Theme)
   ======================================================== */
.pagination-wrapper {
  width: 100%;
}

.pagination-wrapper nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding: 1.1rem 1.6rem;
  background-color: var(--obsidian-card);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Counter & Results Text ("Showing 1 to 12 of 24 results") */
.pagination-wrapper p,
.pagination-wrapper .text-muted {
  color: var(--parchment-dim) !important;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.04em;
  margin: 0;
  line-height: 1.5;
}

.pagination-wrapper p span,
.pagination-wrapper .fw-semibold {
  color: var(--gold) !important;
  font-weight: 600 !important;
}

/* Pagination List Container */
.pagination {
  --bs-pagination-bg: rgba(10, 19, 10, 0.9);
  --bs-pagination-border-color: var(--border-gold);
  --bs-pagination-color: var(--parchment);
  --bs-pagination-hover-bg: rgba(212, 175, 55, 0.14);
  --bs-pagination-hover-border-color: var(--gold);
  --bs-pagination-hover-color: var(--gold);
  --bs-pagination-focus-bg: rgba(212, 175, 55, 0.14);
  --bs-pagination-focus-color: var(--gold);
  --bs-pagination-focus-box-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
  --bs-pagination-active-bg: var(--gold);
  --bs-pagination-active-border-color: var(--gold);
  --bs-pagination-active-color: var(--obsidian);
  --bs-pagination-disabled-bg: rgba(13, 23, 13, 0.4);
  --bs-pagination-disabled-border-color: rgba(212, 175, 55, 0.1);
  --bs-pagination-disabled-color: var(--parchment-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination .page-item {
  display: inline-flex;
}

/* Pagination Links & Buttons */
.pagination .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 0.85rem;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  background-color: rgba(10, 19, 10, 0.85) !important;
  color: var(--parchment) !important;
  border: 1px solid var(--border-gold) !important;
  border-radius: 3px !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: none;
  line-height: 1;
}

/* Hover State */
.pagination .page-item:not(.active):not(.disabled) .page-link:hover {
  background-color: rgba(212, 175, 55, 0.15) !important;
  color: var(--gold) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
  transform: translateY(-2px);
}

/* Active Current Page */
.pagination .page-item.active .page-link {
  background-color: var(--gold) !important;
  color: var(--obsidian) !important;
  border-color: var(--gold) !important;
  font-weight: 700 !important;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.45) !important;
  cursor: default;
  transform: none;
}

/* Disabled State (Previous / Next when inactive) */
.pagination .page-item.disabled .page-link {
  background-color: rgba(13, 23, 13, 0.4) !important;
  color: var(--parchment-muted) !important;
  border-color: rgba(212, 175, 55, 0.08) !important;
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Focus Outline */
.pagination .page-link:focus {
  outline: none;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.35) !important;
}

/* Responsive Mobile Layout for Pagination */
@media (max-width: 575.98px) {
  .pagination-wrapper nav {
    justify-content: center;
    padding: 1rem;
    gap: 1rem;
  }
  .pagination-wrapper .d-sm-none {
    width: 100%;
  }
  .pagination-wrapper .d-sm-none .pagination {
    width: 100%;
    justify-content: space-between;
  }
}

/* ========================================================
   MOBILE RESPONSIVENESS — Full Site
   Only layout, spacing, sizing. No color changes.
   ======================================================== */

/* ── Navbar ─────────────────────────────────────────────── */
@media (max-width: 767.98px) {
  .site-navbar {
    padding: 0.75rem 0;
  }

  .brand-title {
    font-size: 1.05rem;
  }

  .brand-sub {
    font-size: 8px;
  }

  .nav-cart-btn {
    padding: 4px;
  }
}

/* ── Buttons – stack full-width on xs ───────────────────── */
@media (max-width: 575.98px) {
  .btn-gold-outline,
  .btn-saffron-outline {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.2rem;
  }
}

/* ── Hero inner border frame ────────────────────────────── */
@media (max-width: 575.98px) {
  .position-absolute.m-3.m-md-5 {
    margin: 0.5rem !important;
  }

  .scroll-line {
    display: none;
  }
}

/* ── Highlights strip – 2-per-row on xs ─────────────────── */
@media (max-width: 575.98px) {
  section .col-6.col-md-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* ── Our Story image ────────────────────────────────────── */
@media (max-width: 767.98px) {
  .d-none.d-sm-block.pointer-events-none {
    display: none !important;
  }
}

@media (max-width: 575.98px) {
  .col-lg-6 img[style*="height: 420px"] {
    height: 220px !important;
  }

  section .p-5 {
    padding: 1.75rem 1.25rem !important;
  }
}

/* ── Product card image heights ─────────────────────────── */
@media (max-width: 575.98px) {
  .luxury-card .card-img-wrapper {
    height: 200px !important;
  }

  .btn-filter {
    padding: 0.5rem 0.9rem;
    font-size: 9px;
    letter-spacing: 0.15em;
  }
}

/* ── Cart Offcanvas – full width on xs ──────────────────── */
@media (max-width: 575.98px) {
  .cart-offcanvas {
    width: 100vw !important;
  }

  .mobile-nav-offcanvas {
    width: 85vw !important;
    max-width: 320px !important;
  }
}

/* ── Floating WhatsApp ──────────────────────────────────── */
@media (max-width: 767.98px) {
  .floating-whatsapp {
    bottom: 1rem;
    right: 1rem;
    padding: 0.6rem 1rem;
    font-size: 11px;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 400px) {
  /* Icon-only on very small screens */
  .floating-whatsapp .whatsapp-label {
    display: none;
  }
  .floating-whatsapp {
    padding: 0.65rem;
    border-radius: 50%;
  }
  .floating-whatsapp i {
    font-size: 1.35rem;
    margin: 0;
  }
}

/* ── Toast ──────────────────────────────────────────────── */
@media (max-width: 575.98px) {
  .az-toast {
    width: 90vw;
    text-align: center;
    font-size: 11px;
  }
}

/* ── Gallery ────────────────────────────────────────────── */
@media (max-width: 575.98px) {
  .gallery-grid {
    column-count: 1;
    column-gap: 0.75rem;
  }
}

/* ── Footer – stack columns on mobile ───────────────────── */
@media (max-width: 767.98px) {
  footer .row.g-4 .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ── Checkout – stack layout columns ───────────────────── */
@media (max-width: 991.98px) {
  #checkoutMainContainer > .col-lg-7,
  #checkoutMainContainer > .col-lg-5 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  section[style*="padding-top: 140px"] {
    padding-top: 100px !important;
  }
}

/* ── Rows – tighten gutters on xs ───────────────────────── */
@media (max-width: 575.98px) {
  .row.g-4 {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
  }

  .row.g-5 {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 2rem;
  }
}

/* ── Pagination – smaller touch targets ─────────────────── */
@media (max-width: 575.98px) {
  .pagination .page-link {
    min-width: 32px;
    height: 32px;
    font-size: 11px;
    padding: 0 0.6rem;
  }
}

/* ========================================================
   LUXURY HALAL THEME ALERT / DIALOG MODAL
   ======================================================== */
.az-alert-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(7, 14, 7, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
}

.az-alert-backdrop.az-alert-active {
  opacity: 1;
  visibility: visible;
}

.az-alert-container {
  width: 100%;
  max-width: 480px;
  transform: scale(0.92) translateY(16px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.az-alert-backdrop.az-alert-active .az-alert-container {
  transform: scale(1) translateY(0);
}

.az-alert-card {
  position: relative;
  background-color: var(--obsidian-card, #0F1F0F);
  border: 1px solid var(--gold, #D4AF37);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 35px rgba(212, 175, 55, 0.25);
  border-radius: 8px;
  overflow: hidden;
  padding: 2.5rem 2rem 2rem;
  text-align: center;
}

.az-alert-shimmer-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #D4AF37, #F3E5AB, #D4AF37, transparent);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.az-alert-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  background: transparent;
  border: none;
  color: var(--parchment-muted, rgba(245, 240, 232, 0.42));
  font-size: 16px;
  cursor: pointer;
  padding: 6px;
  line-height: 1;
  transition: color 0.2s ease, transform 0.2s ease;
}

.az-alert-close-btn:hover {
  color: var(--gold, #D4AF37);
  transform: scale(1.15);
}

.az-alert-icon-wrapper {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.az-alert-icon-wrapper i {
  font-size: 32px;
  line-height: 1;
}

.az-alert-icon-warning {
  background: rgba(255, 202, 40, 0.12);
  border-color: rgba(255, 202, 40, 0.4);
  color: #FFCA28;
}

.az-alert-icon-error {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.4);
  color: #ef4444;
}

.az-alert-icon-success {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.4);
  color: #22c55e;
}

.az-alert-icon-info {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.4);
  color: #D4AF37;
}

.az-alert-message {
  color: var(--parchment, #F5F0E8);
  font-family: var(--font-body);
}

.az-alert-message strong {
  color: var(--gold, #D4AF37);
  font-weight: 600;
}
