/* ==========================================================================
   SANIYA CLOTHING STORE (مركز سانيه التجاري فرع الصحافة)
   Theme: Modest Elegance Monochromatic (Desert Sand, Warm Taupe & Soft Beige)
   Compliance: Zanderio Installation Eligibility Criteria (100% Mobile Ready)
   ========================================================================== */

:root {
  /* Single-Color Family: Desert Sand, Warm Taupe, Soft Beige, Deep Espresso Taupe */
  --sand-50: #FDFBF7;
  --sand-100: #F8F4EC;
  --sand-200: #EFE7DA;
  --sand-300: #E2D5C1;
  --taupe-400: #C7B299;
  --taupe-500: #A38B73;
  --taupe-600: #846C55;
  --taupe-700: #634F3D;
  --taupe-800: #46362A;
  --taupe-900: #2B2119;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-arabic: 'Amiri', 'Cairo', serif;

  --shadow-subtle: 0 4px 20px rgba(70, 54, 42, 0.05);
  --shadow-elevated: 0 12px 32px rgba(70, 54, 42, 0.10);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--sand-100);
  color: var(--taupe-900);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Top Utility Announcement Bar */
.top-announcement {
  background-color: var(--taupe-800);
  color: var(--sand-100);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 0.55rem 1rem;
  border-bottom: 1px solid var(--taupe-700);
}

.top-announcement-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-announcement a {
  color: var(--sand-200);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition);
}

.top-announcement a:hover {
  color: var(--sand-50);
  text-decoration: underline;
}

/* Header & Navigation */
.site-header {
  background-color: var(--sand-50);
  border-bottom: 1px solid var(--sand-300);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-subtle);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Brand Logo (English + Arabic Monochromatic) */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--taupe-900);
}

.logo-emblem {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--taupe-800), var(--taupe-600));
  border: 1.5px solid var(--taupe-400);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand-50);
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-title-en {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--taupe-900);
  line-height: 1.15;
}

.logo-title-ar {
  font-family: var(--font-arabic);
  font-size: 0.85rem;
  color: var(--taupe-600);
  font-weight: 600;
  line-height: 1.2;
}

/* Primary Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  color: var(--taupe-800);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.35rem 0;
  position: relative;
  transition: var(--transition);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--taupe-700);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--taupe-600);
}

.nav-link:hover::after {
  width: 100%;
}

/* Header Action Controls (Phone + Cart) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  background-color: var(--sand-200);
  color: var(--taupe-800);
  border: 1px solid var(--sand-300);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.header-phone-btn:hover {
  background-color: var(--sand-300);
  color: var(--taupe-900);
}

.cart-trigger-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.52rem 1rem;
  background-color: var(--taupe-800);
  color: var(--sand-50);
  border: 1px solid var(--taupe-800);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.cart-trigger-btn:hover {
  background-color: var(--taupe-700);
}

.cart-badge {
  background-color: var(--taupe-400);
  color: var(--taupe-900);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  min-width: 20px;
  text-align: center;
}

.mobile-menu-toggle {
  display: none;
  background: var(--sand-200);
  border: 1px solid var(--sand-300);
  color: var(--taupe-800);
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* ==========================================================================
   INTRO-FIRST EDITORIAL HERO (NO MASSIVE HERO BANNER - TEXT BASED ELEGANCE)
   ========================================================================== */
.intro-editorial-section {
  background: linear-gradient(180deg, var(--sand-50) 0%, var(--sand-100) 100%);
  border-bottom: 1px solid var(--sand-300);
  padding: 2.25rem 1.25rem 2rem;
  text-align: center;
}

.intro-container {
  max-width: 860px;
  margin: 0 auto;
}

.intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--sand-200);
  border: 1px solid var(--sand-300);
  color: var(--taupe-700);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.9rem;
}

.intro-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 700;
  color: var(--taupe-900);
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.intro-arabic-sub {
  font-family: var(--font-arabic);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--taupe-600);
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.intro-description {
  font-size: 0.98rem;
  color: var(--taupe-700);
  max-width: 720px;
  margin: 0 auto 1.25rem;
  line-height: 1.65;
}

.intro-meta-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--sand-300);
  font-size: 0.82rem;
  color: var(--taupe-700);
}

.intro-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
}

.intro-meta-item a {
  color: var(--taupe-800);
  font-weight: 700;
  text-decoration: none;
}

/* ==========================================================================
   EXCLUSIVE 6-PRODUCT CATALOG SECTION (NORMAL, UNIFORM IMAGE SIZES)
   ========================================================================== */
.catalog-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.25rem 1.25rem 3.5rem;
  width: 100%;
}

.catalog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--sand-300);
}

.catalog-title-group h2 {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--taupe-900);
}

.catalog-title-group p {
  font-size: 0.88rem;
  color: var(--taupe-600);
}

.catalog-filter-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-pill {
  background-color: var(--sand-50);
  border: 1px solid var(--sand-300);
  color: var(--taupe-700);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-pill.active,
.filter-pill:hover {
  background-color: var(--taupe-800);
  color: var(--sand-50);
  border-color: var(--taupe-800);
}

/* Strictly Aligned 6-Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background-color: var(--sand-50);
  border: 1px solid var(--sand-300);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-subtle);
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-elevated);
  border-color: var(--taupe-400);
}

/* NORMAL, UNIFORMLY CROPPED STANDARD IMAGE CONTAINER */
.product-image-wrap {
  position: relative;
  width: 100%;
  height: 280px; /* Strict normal standard height - prevents oversized mobile scrolling */
  background-color: var(--sand-200);
  overflow: hidden;
  border-bottom: 1px solid var(--sand-200);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform 0.45s ease;
  display: block;
}

.product-card:hover .product-image {
  transform: scale(1.04);
}

.product-category-tag {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  background-color: rgba(253, 251, 247, 0.92);
  color: var(--taupe-800);
  border: 1px solid var(--sand-300);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
}

.quick-view-btn {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  background-color: rgba(253, 251, 247, 0.92);
  color: var(--taupe-800);
  border: 1px solid var(--sand-300);
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.quick-view-btn:hover {
  background-color: var(--taupe-800);
  color: var(--sand-50);
}

.product-body {
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.product-title {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--taupe-900);
  line-height: 1.3;
}

.product-arabic-name {
  font-family: var(--font-arabic);
  font-size: 0.85rem;
  color: var(--taupe-600);
  margin-bottom: 0.45rem;
}

.product-desc {
  font-size: 0.82rem;
  color: var(--taupe-700);
  margin-bottom: 0.85rem;
  line-height: 1.5;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px dashed var(--sand-300);
}

.product-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--taupe-900);
  letter-spacing: 0.01em;
}

.product-vat-note {
  font-size: 0.72rem;
  color: var(--taupe-600);
}

/* Mobile-Friendly Size Selector inside Card */
.size-selector-group {
  margin-bottom: 0.9rem;
}

.size-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--taupe-700);
  margin-bottom: 0.4rem;
}

.size-guide-link {
  background: none;
  border: none;
  color: var(--taupe-600);
  text-decoration: underline;
  font-size: 0.72rem;
  cursor: pointer;
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.size-btn {
  flex: 1;
  min-width: 38px;
  padding: 0.38rem 0.3rem;
  font-size: 0.75rem;
  font-weight: 600;
  background-color: var(--sand-100);
  color: var(--taupe-800);
  border: 1px solid var(--sand-300);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.size-btn:hover {
  border-color: var(--taupe-600);
}

.size-btn.selected {
  background-color: var(--taupe-800);
  color: var(--sand-50);
  border-color: var(--taupe-800);
}

.card-actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
}

.add-to-bag-btn {
  background-color: var(--taupe-800);
  color: var(--sand-50);
  border: 1px solid var(--taupe-800);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.9rem;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.add-to-bag-btn:hover {
  background-color: var(--taupe-700);
}

.buy-now-btn {
  background-color: var(--sand-200);
  color: var(--taupe-900);
  border: 1px solid var(--sand-300);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.buy-now-btn:hover {
  background-color: var(--taupe-400);
}

/* ==========================================================================
   BOUTIQUE HERITAGE & CRAFTSMANSHIP SECTION
   ========================================================================== */
.heritage-section {
  background-color: var(--sand-50);
  border-top: 1px solid var(--sand-300);
  border-bottom: 1px solid var(--sand-300);
  padding: 3rem 1.25rem;
}

.heritage-container {
  max-width: 1200px;
  margin: 0 auto;
}

.heritage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.heritage-card {
  background-color: var(--sand-100);
  border: 1px solid var(--sand-300);
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.heritage-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--taupe-900);
  margin-bottom: 0.5rem;
}

.heritage-card p {
  font-size: 0.86rem;
  color: var(--taupe-700);
  line-height: 1.6;
}

/* ==========================================================================
   DIRECT PHONE CONCIERGE BANNER (STRICTLY PHONE ONLY - NO WHATSAPP, NO MAPS)
   ========================================================================== */
.concierge-banner {
  max-width: 1200px;
  margin: 2.5rem auto;
  padding: 0 1.25rem;
}

.concierge-box {
  background: linear-gradient(135deg, var(--taupe-800) 0%, var(--taupe-900) 100%);
  color: var(--sand-50);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  border: 1px solid var(--taupe-600);
}

.concierge-text h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
  color: var(--sand-50);
}

.concierge-text p {
  font-size: 0.9rem;
  color: var(--sand-200);
  max-width: 620px;
}

.concierge-call-cta {
  background-color: var(--sand-100);
  color: var(--taupe-900);
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transition: var(--transition);
}

.concierge-call-cta:hover {
  background-color: var(--taupe-400);
  color: var(--taupe-900);
}

/* ==========================================================================
   FLAWLESS FOOTER (VERIFIED SAUDI RETAIL BUSINESS DATA & WORKING LINKS)
   ========================================================================== */
.site-footer {
  background-color: var(--taupe-900);
  color: var(--sand-200);
  margin-top: auto;
  border-top: 3px solid var(--taupe-600);
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.25rem 2rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 2rem;
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--sand-50);
  margin-bottom: 0.9rem;
  letter-spacing: 0.04em;
}

.footer-brand-desc {
  font-size: 0.85rem;
  color: var(--sand-300);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a,
.footer-links button {
  color: var(--sand-200);
  text-decoration: none;
  font-size: 0.85rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  padding: 0;
  transition: var(--transition);
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--taupe-400);
  text-decoration: underline;
}

.footer-contact-card {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(199, 178, 153, 0.22);
  padding: 1rem;
  border-radius: var(--radius-sm);
}

.footer-contact-card p {
  font-size: 0.82rem;
  color: var(--sand-200);
  margin-bottom: 0.5rem;
}

.footer-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--sand-50);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.45rem 0.75rem;
  background-color: var(--taupe-700);
  border-radius: var(--radius-sm);
  margin-top: 0.25rem;
  transition: var(--transition);
}

.footer-phone-link:hover {
  background-color: var(--taupe-600);
}

.footer-bottom {
  border-top: 1px solid rgba(199, 178, 153, 0.15);
  padding: 1.25rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--sand-300);
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.payment-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.payment-badge {
  background-color: rgba(253, 251, 247, 0.1);
  border: 1px solid rgba(199, 178, 153, 0.25);
  color: var(--sand-100);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
}

/* ==========================================================================
   SLIDE-OVER SHOPPING BAG & INTERNATIONAL SAUDI CHECKOUT DRAWER/MODAL
   ========================================================================== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(43, 33, 25, 0.55);
  backdrop-filter: blur(2px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 460px;
  height: 100vh;
  background-color: var(--sand-50);
  z-index: 210;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: -8px 0 32px rgba(43, 33, 25, 0.2);
}

.cart-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  padding: 1.15rem 1.25rem;
  background-color: var(--sand-100);
  border-bottom: 1px solid var(--sand-300);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-header h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--taupe-900);
}

.close-btn {
  background: var(--sand-200);
  border: 1px solid var(--sand-300);
  color: var(--taupe-800);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.drawer-body {
  padding: 1.25rem;
  overflow-y: auto;
  flex: 1;
}

.cart-item {
  display: flex;
  gap: 0.85rem;
  padding: 0.85rem;
  background-color: var(--sand-100);
  border: 1px solid var(--sand-300);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}

.cart-item-img {
  width: 64px;
  height: 82px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--sand-300);
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
}

.cart-item-title {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--taupe-900);
}

.cart-item-meta {
  font-size: 0.76rem;
  color: var(--taupe-600);
  margin: 0.15rem 0 0.45rem;
}

.cart-qty-controls {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.qty-btn {
  width: 24px;
  height: 24px;
  background-color: var(--sand-50);
  border: 1px solid var(--sand-300);
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  color: var(--taupe-800);
}

.remove-item-btn {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--taupe-600);
  font-size: 0.75rem;
  text-decoration: underline;
  cursor: pointer;
}

/* Checkout Form Inside Drawer */
.checkout-form-section {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--sand-300);
}

.checkout-form-section h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
  color: var(--taupe-900);
}

.form-group {
  margin-bottom: 0.85rem;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--taupe-800);
  margin-bottom: 0.3rem;
}

.form-control {
  width: 100%;
  padding: 0.6rem 0.75rem;
  background-color: var(--sand-50);
  border: 1px solid var(--sand-300);
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  font-family: var(--font-sans);
  color: var(--taupe-900);
}

.form-control:focus {
  outline: none;
  border-color: var(--taupe-700);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.drawer-footer {
  padding: 1.15rem 1.25rem;
  background-color: var(--sand-100);
  border-top: 1px solid var(--sand-300);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--taupe-700);
  margin-bottom: 0.35rem;
}

.summary-line.total {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--taupe-900);
  padding-top: 0.5rem;
  border-top: 1px solid var(--sand-300);
  margin-bottom: 0.85rem;
}

.checkout-submit-btn {
  width: 100%;
  padding: 0.85rem;
  background-color: var(--taupe-800);
  color: var(--sand-50);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.checkout-submit-btn:hover {
  background-color: var(--taupe-700);
}

/* Modals (Quick View, Size Guide, Info Policies, Order Confirmation) */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(43, 33, 25, 0.6);
  backdrop-filter: blur(3px);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  background-color: var(--sand-50);
  border: 1px solid var(--sand-300);
  border-radius: var(--radius-md);
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-elevated);
  padding: 1.5rem;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--sand-300);
  margin-bottom: 1rem;
}

.modal-header h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--taupe-900);
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  margin-top: 0.75rem;
}

.size-table th,
.size-table td {
  border: 1px solid var(--sand-300);
  padding: 0.55rem;
  text-align: center;
}

.size-table th {
  background-color: var(--sand-200);
  color: var(--taupe-900);
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background-color: var(--taupe-900);
  color: var(--sand-50);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 400;
  box-shadow: var(--shadow-elevated);
  border: 1px solid var(--taupe-600);
  transition: transform 0.3s ease;
}

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

/* ==========================================================================
   100% MOBILE RESPONSIVENESS (ZERO HORIZONTAL SCROLLING OR OVERLAP)
   ========================================================================== */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .heritage-grid {
    grid-template-columns: 1fr;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--sand-50);
    border-bottom: 1px solid var(--sand-300);
    flex-direction: column;
    padding: 1rem;
    gap: 0.75rem;
    box-shadow: var(--shadow-elevated);
  }

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

  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-phone-btn span.phone-label-desktop {
    display: none;
  }
}

@media (max-width: 576px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .product-image-wrap {
    height: 260px; /* Compact normal image height for mobile viewports */
  }

  .header-container {
    padding: 0.75rem 0.9rem;
  }

  .logo-title-en {
    font-size: 1.02rem;
  }

  .logo-title-ar {
    font-size: 0.75rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }
}
