/* ===== BAJI G - PAKISTANI LADIES FASHION ===== */
/* Pure CSS - No build tools needed */

/* ===== Jameel Noori Nastaleeq Urdu Font ===== */
@font-face {
  font-family: 'JameelNooriNastaleeq';
  src: url('../fonts/JameelNooriNastaleeq.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-cream: #F8F4ED;
  --deep-emerald: #0E3A2F;
  --warm-gold: #B89778;
  --rich-red: #8B2F2F;
  --soft-beige: #EDE4D4;
  --dark-text: #2C2522;
  --light-text: #F5F0E6;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-cream);
  color: var(--dark-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Smooth scrolling for iOS */
@supports (-webkit-touch-callout: none) {
  body {
    -webkit-overflow-scrolling: touch;
  }
}

h1, h2, h3, .logo-main, .hero-title, .section-title, .about-title, .social-title, .cart-title, .checkout-title {
  font-family: 'Playfair Display', serif;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248, 244, 237, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 151, 120, 0.2);
  transition: transform 0.3s ease;
  will-change: transform;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(14, 58, 47, 0.15);
}

.logo-main {
  font-size: 28px;
  color: var(--deep-emerald);
  letter-spacing: 2px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 9px;
  color: var(--warm-gold);
  letter-spacing: 3px;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

/* Dropdown styling */
.nav-links li {
  position: relative;
}

.dropdown-arrow {
  font-size: 10px;
  margin-left: 2px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.nav-links li.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--bg-cream);
  border: 1px solid rgba(184, 151, 120, 0.3);
  box-shadow: 0 10px 30px rgba(14, 58, 47, 0.08);
  border-radius: 8px;
  padding: 12px 0;
  min-width: 180px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1002;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--bg-cream);
  border-top: 1px solid rgba(184, 151, 120, 0.3);
  border-left: 1px solid rgba(184, 151, 120, 0.3);
}

.nav-links li.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--dark-text);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background: rgba(184, 151, 120, 0.1);
  color: var(--deep-emerald);
  padding-left: 24px;
}

.nav-link {
  text-decoration: none;
  color: var(--dark-text);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--warm-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background: var(--warm-gold);
  transition: width 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-search-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid rgba(184, 151, 120, 0.4);
  border-radius: 999px;
  text-decoration: none;
  color: var(--dark-text);
  font-size: 11px;
  letter-spacing: 2px;
  transition: border-color 0.3s;
}

.nav-search-btn:hover {
  border-color: var(--warm-gold);
}

.cart-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(184, 151, 120, 0.3);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-text);
  transition: background 0.3s;
}

.cart-btn:hover {
  background: rgba(184, 151, 120, 0.05);
}

.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--rich-red);
  color: white;
  font-size: 10px;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(184, 151, 120, 0.3);
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--dark-text);
}

/* Mobile Menu */
.mobile-menu {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(248, 244, 237, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1001;
  flex-direction: column;
  padding: 100px 32px 32px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(14, 58, 47, 0.2);
  background: transparent;
  color: var(--deep-emerald);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.mobile-close:hover {
  background: rgba(14, 58, 47, 0.05);
}

.mobile-link {
  color: var(--deep-emerald);
  text-decoration: none;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 1px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(184, 151, 120, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.3s, padding-left 0.3s;
}

.mobile-link:hover {
  color: var(--warm-gold);
  padding-left: 8px;
}

.mobile-cart-btn {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--deep-emerald);
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 12px 0;
  transition: color 0.3s;
}

.mobile-cart-btn:hover {
  color: var(--warm-gold);
}

.mobile-footer {
  margin-top: auto;
  color: rgba(44, 37, 34, 0.6);
  font-size: 10px;
  letter-spacing: 3px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--deep-emerald);
  color: var(--light-text);
  text-align: center;
  padding: 100px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/bg/bg-03.png') center center / cover no-repeat;
  filter: blur(8px);
  transform: scale(1.1);
  opacity: 0.85;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14, 58, 47, 0.65) 0%,
    rgba(14, 58, 47, 0.45) 40%,
    rgba(14, 58, 47, 0.25) 70%,
    rgba(14, 58, 47, 0.55) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid rgba(184, 151, 120, 0.5);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--warm-gold);
  margin-bottom: 24px;
}

.hero-name-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.hero-name-row .hero-title,
.hero-name-row .hero-urdu-name {
  padding: 0 20px;
}

.hero-name-row .hero-title {
  border-right: 1px solid rgba(184, 151, 120, 0.4);
}

.hero-tagline-row .hero-tagline,
.hero-tagline-row .hero-urdu-tagline {
  padding: 0 16px;
}

.hero-tagline-row .hero-tagline {
  border-right: 1px solid rgba(184, 151, 120, 0.4);
}

.hero-title {
  font-size: clamp(48px, 8vw, 80px);
  line-height: 1;
  letter-spacing: 6px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

.hero-urdu-name {
  font-family: 'JameelNooriNastaleeq', 'Noto Nastaliq Urdu', serif;
  font-size: clamp(40px, 6vw, 72px);
  color: var(--warm-gold);
  line-height: 1.4;
  padding-top: 8px;
}

.hero-tagline-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-tagline {
  font-size: clamp(18px, 3vw, 28px);
  letter-spacing: 0;
  margin: 0;
  color: var(--soft-beige);
}

.hero-urdu-tagline {
  font-family: 'JameelNooriNastaleeq', 'Noto Nastaliq Urdu', serif;
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--warm-gold);
  margin: 0;
  line-height: 1.4;
  padding-top: 6px;
}

.hero-desc {
  font-size: 18px;
  color: rgba(245, 240, 230, 0.8);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--warm-gold);
  color: var(--deep-emerald);
  padding: 16px 36px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background: #A17F5F;
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 999px;
  border: 1px solid rgba(184, 151, 120, 0.7);
  color: var(--light-text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

.btn-add-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 24px;
  border-radius: 999px;
  border: 1px dashed rgba(184, 151, 120, 0.5);
  background: transparent;
  color: var(--warm-gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-add-home:hover {
  background: rgba(184, 151, 120, 0.1);
  border-style: solid;
}

.btn-emerald {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--deep-emerald);
  color: var(--light-text);
  padding: 16px 36px;
  border-radius: 16px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-emerald:hover {
  background: #1A4639;
  transform: translateY(-1px);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(245, 240, 230, 0.7);
  font-size: 10px;
  letter-spacing: 3px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s;
}

.hero-scroll:hover {
  opacity: 1;
}

.hero-scroll-line {
  width: 24px;
  height: 1px;
  background: var(--warm-gold);
}

/* ===== MARQUEE ===== */
.marquee-section {
  background: white;
  padding: 16px 0;
  border-bottom: 1px solid rgba(184, 151, 120, 0.1);
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 16px;
  animation: marquee 35s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-img {
  width: 260px;
  height: 330px;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.marquee-caption {
  text-align: center;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--warm-gold);
  margin-top: 12px;
}

/* ===== SECTIONS COMMON ===== */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  color: var(--warm-gold);
  letter-spacing: 4px;
  font-size: 12px;
  margin-bottom: 8px;
}

.section-label.light {
  color: var(--warm-gold);
}

.section-title {
  font-size: clamp(48px, 8vw, 80px);
  letter-spacing: -2px;
  color: var(--deep-emerald);
  line-height: 1;
}

.section-desc {
  font-size: 18px;
  color: #5C5149;
  max-width: 560px;
  margin: 16px auto 0;
  line-height: 1.7;
}

/* ===== COLLECTIONS ===== */
.collections {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px 100px;
}

/* Stitching Facility Badge */
.stitch-badge-container {
  display: flex;
  justify-content: center;
  margin-top: -16px;
  margin-bottom: 32px;
}

.stitch-facility-badge {
  display: inline-flex;
  align-items: center;
  background: var(--deep-emerald);
  color: var(--warm-gold);
  border: 1px solid var(--warm-gold);
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: goldGlowPulse 2.5s infinite ease-in-out;
  user-select: none;
  cursor: pointer;
  position: relative;
  z-index: 10;
}

@keyframes goldGlowPulse {
  0% {
    box-shadow: 0 0 6px rgba(184, 151, 120, 0.3), inset 0 0 3px rgba(184, 151, 120, 0.1);
  }
  50% {
    box-shadow: 0 0 16px rgba(184, 151, 120, 0.65), inset 0 0 6px rgba(184, 151, 120, 0.3);
  }
  100% {
    box-shadow: 0 0 6px rgba(184, 151, 120, 0.3), inset 0 0 3px rgba(184, 151, 120, 0.1);
  }
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(184, 151, 120, 0.15);
  position: sticky;
  top: 80px;
  background: var(--bg-cream);
  z-index: 100;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.filter-btn {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--warm-gold);
  background: white;
  color: var(--dark-text);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--deep-emerald);
  color: var(--light-text);
  border-color: var(--deep-emerald);
}

.filter-search {
  position: relative;
  flex: 0 0 170px;
}

.filter-search svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--warm-gold);
}

.filter-search input {
  width: 100%;
  padding: 10px 12px 10px 36px;
  border-radius: 999px;
  border: 1px solid rgba(184, 151, 120, 0.3);
  background: white;
  font-size: 12px;
  font-family: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.filter-search input:focus {
  outline: none;
  border-color: var(--warm-gold);
  box-shadow: 0 0 0 3px rgba(184, 151, 120, 0.1);
}

.filter-sort {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(184, 151, 120, 0.3);
  background: white;
  font-size: 12px;
  font-family: inherit;
  cursor: pointer;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

.product-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(184, 151, 120, 0.1);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px -15px rgba(0,0,0,0.15);
}

.product-image {
  position: relative;
  aspect-ratio: 3/4; /* Taller aspect ratio to fit portrait dress images better and reduce left/right empty space */
  overflow: hidden;
  background-color: #FCF9F5; /* clean light matching neutral background */
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.15); /* Enlarge by 15% to adjust left & right empty space */
  transition: transform 0.6s ease;
}

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

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 16px;
  background: rgba(255,255,255,0.95);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--deep-emerald);
}

.product-info {
  padding: 24px;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 4px;
}

.product-price {
  color: var(--warm-gold);
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 8px;
}

.product-desc {
  font-size: 13px;
  color: #5C5149;
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.products-note {
  text-align: center;
  margin-top: 32px;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--warm-gold);
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--warm-gold);
  font-size: 16px;
}

/* ===== ABOUT ===== */
.about {
  background: var(--deep-emerald);
  padding: 80px 24px;
  color: var(--light-text);
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-title {
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: -2.5px;
  line-height: 1;
  color: white;
}

.about-body {
  font-size: 17px;
  line-height: 1.8;
  color: #C9B8A4;
}

.about-body p {
  margin-bottom: 16px;
}

.about-body strong {
  color: white;
  font-weight: 600;
}

.about-body .about-signature {
  color: var(--warm-gold);
  margin-top: 24px;
}

.about-features {
  max-width: 1100px;
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature svg {
  color: var(--warm-gold);
  margin-bottom: 16px;
}

.feature-title {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.5px;
  color: white;
  margin-bottom: 4px;
}

.feature-sub {
  font-size: 12px;
  color: var(--warm-gold);
  letter-spacing: 1px;
}

/* ===== CONTACT ===== */
.contact {
  background: linear-gradient(135deg, var(--bg-cream) 0%, #F0E8D8 100%);
  padding: 48px 24px 60px;
}

.contact-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}

.contact-left .section-label {
  margin-bottom: 4px;
  font-size: 10px;
}

.contact-left .section-title {
  margin-bottom: 8px;
  font-size: clamp(32px, 5vw, 52px);
}

.contact-intro {
  font-size: 14px;
  color: #5C5149;
  line-height: 1.5;
  margin-bottom: 24px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--deep-emerald);
  color: var(--warm-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 16px;
  height: 16px;
}

.contact-detail-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--warm-gold);
  margin-bottom: 2px;
}

.contact-detail-value {
  font-size: 13px;
  color: var(--dark-text);
  font-weight: 500;
  line-height: 1.4;
}

.contact-detail-time {
  font-size: 12px;
  color: #7C6B5A;
}

.contact-note {
  font-size: 12px;
  color: var(--warm-gold);
  line-height: 1.5;
  padding-left: 48px;
}

/* Contact Form Card */
.contact-form-card {
  background: white;
  border-radius: 20px;
  padding: 24px 28px;
  box-shadow: 0 12px 40px -10px rgba(0,0,0,0.08);
  border: 2px solid var(--warm-gold);
}

.form-header {
  text-align: center;
  margin-bottom: 16px;
}

.form-header-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--deep-emerald);
  color: var(--warm-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.form-header-icon svg {
  width: 18px;
  height: 18px;
}

.form-header-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--deep-emerald);
  letter-spacing: -0.3px;
  margin-bottom: 2px;
}

.form-header-sub {
  font-size: 12px;
  color: #7C6B5A;
}

.form-group {
  margin-bottom: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--warm-gold);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--warm-gold);
  background: #FAF8F4;
  font-family: inherit;
  font-size: 13px;
  color: var(--dark-text);
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  height: 42px;
}

.form-input:focus {
  outline: none;
  border-color: var(--warm-gold);
  background: white;
  box-shadow: 0 0 0 3px rgba(184, 151, 120, 0.08);
}

.form-input::placeholder {
  color: #B8A99A;
  font-size: 12px;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23B89778' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-textarea {
  resize: none;
  min-height: 70px;
  height: 70px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  padding: 12px 24px;
  font-size: 12px;
}

.form-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  color: #0E7A3F;
  font-size: 12px;
  font-weight: 500;
  margin-top: 10px;
  padding: 8px;
  background: rgba(14, 122, 63, 0.06);
  border-radius: 8px;
}

.form-success.show {
  display: flex;
}

/* ===== SOCIAL ===== */
.social {
  background: var(--dark-text);
  padding: 48px 24px;
  color: var(--light-text);
  text-align: center;
}

.social-header {
  max-width: 600px;
  margin: 0 auto 36px;
}

.social-intro-container {
  display: flex;
  gap: 60px;
  text-align: left;
  max-width: 1100px;
  margin: 0 auto 48px;
  padding: 0 24px;
}

.social-intro-en, .social-intro-ur {
  flex: 1;
}

.social-intro-en p, .social-intro-ur p {
  font-size: 14px;
  line-height: 1.8;
  color: #C9B8A4;
  margin-bottom: 20px;
}

.social-intro-ur {
  text-align: right;
  direction: rtl;
  font-family: 'JameelNooriNastaleeq', 'Noto Nastaliq Urdu', serif;
}

.social-ur-title {
  font-family: 'JameelNooriNastaleeq', 'Noto Nastaliq Urdu', serif;
  font-size: 28px;
  color: var(--warm-gold);
  margin-bottom: 20px;
}

.social-ur-signature {
  font-weight: 600;
  color: white !important;
}

.social-title {
  font-size: clamp(36px, 6vw, 56px);
  color: white;
  letter-spacing: -1px;
  margin: 8px 0 12px;
}

.social-header p {
  color: #C9B8A4;
  font-size: 16px;
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
  margin-bottom: 30px;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--light-text);
  text-decoration: none;
  transition: color 0.35s ease;
}

.social-link:hover {
  color: var(--warm-gold);
}

.social-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1.5px solid rgba(184, 151, 120, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: border-color 0.35s ease, transform 0.35s ease;
}

.social-link:hover .social-circle {
  border-color: var(--warm-gold);
  transform: translateY(-4px) scale(1.05);
}

.social-name {
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 13px;
}

.social-handle {
  font-size: 12px;
  color: var(--warm-gold);
  margin-top: 2px;
}

.social-footer {
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(184, 151, 120, 0.5);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--deep-emerald);
  padding: 28px 24px;
  text-align: center;
  color: var(--warm-gold);
  font-size: 11px;
  letter-spacing: 1.5px;
}

/* ===== PRODUCT MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.modal {
  background: white;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  animation: modalEnter 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
}

@keyframes modalEnter {
  from { opacity: 0; transform: translateY(40px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Laptop and smaller screens vertical styling adjustment for modal */
@media (min-width: 769px) and (max-height: 850px) {
  .modal {
    max-height: 85vh;
    max-width: 820px;
  }
  .modal-image {
    min-height: auto;
    height: 100%;
  }
  .modal-details {
    padding: 32px;
  }
  .modal-name {
    font-size: 32px;
  }
  .modal-price {
    font-size: 26px;
    margin-bottom: 12px;
  }
  .modal-desc {
    font-size: 13px;
    margin-bottom: 16px;
    line-height: 1.5;
  }
  .color-swatches {
    margin-bottom: 16px;
  }
  .size-buttons {
    margin-bottom: 16px;
  }
  .modal-actions {
    padding-top: 16px;
  }
  .modal-shipping {
    margin-top: 8px;
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-gold);
}

.modal-body {
  display: flex;
  overflow: auto;
}

.modal-image {
  width: 45%;
  min-height: 500px;
  background: var(--bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.modal-details {
  width: 55%;
  padding: 48px;
  display: flex;
  flex-direction: column;
}

.modal-category {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--warm-gold);
  margin-bottom: 8px;
}

.modal-name {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--deep-emerald);
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 4px;
}

.modal-price {
  font-size: 32px;
  font-weight: 300;
  color: var(--warm-gold);
  margin-bottom: 20px;
}

.modal-desc {
  font-size: 14px;
  color: #524840;
  line-height: 1.7;
  margin-bottom: 24px;
}

.modal-section-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--warm-gold);
  margin-bottom: 10px;
}

.color-swatches {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.color-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
}

.color-swatch:hover,
.color-swatch.active {
  transform: scale(1.15);
  border-color: var(--warm-gold);
}

.size-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.size-btn {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(184, 151, 120, 0.4);
  background: white;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.size-btn:hover,
.size-btn.active {
  background: var(--deep-emerald);
  color: white;
  border-color: var(--deep-emerald);
}

.modal-actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(184, 151, 120, 0.15);
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid rgba(184, 151, 120, 0.3);
  border-radius: 999px;
  overflow: hidden;
}

.qty-control button {
  width: 40px;
  height: 44px;
  border: none;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-text);
}

.qty-control button:hover {
  background: var(--bg-cream);
}

.qty-control span {
  padding: 0 16px;
  font-weight: 500;
  min-width: 40px;
  text-align: center;
}

.modal-add-btn {
  flex: 1;
}

.modal-shipping {
  text-align: center;
  font-size: 10px;
  color: var(--warm-gold);
  margin-top: 12px;
}

/* ===== CART DRAWER ===== */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  justify-content: flex-end;
}

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

.cart-drawer {
  background: white;
  width: 100%;
  max-width: 440px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px -15px rgba(0,0,0,0.2);
  animation: slideIn 0.35s ease;
}

@keyframes slideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.cart-header {
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgba(184, 151, 120, 0.15);
}

.cart-title {
  font-size: 32px;
  letter-spacing: -1px;
  line-height: 1;
}

.cart-subtitle {
  font-size: 11px;
  color: var(--warm-gold);
  letter-spacing: 2px;
  margin-top: 4px;
}

.cart-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-text);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px 32px;
}

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px;
}

.cart-empty svg {
  color: rgba(184, 151, 120, 0.4);
  margin-bottom: 24px;
}

.cart-empty h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.cart-empty p {
  color: var(--warm-gold);
  margin-bottom: 24px;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(184, 151, 120, 0.1);
}

.cart-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 2px;
}

.cart-item-meta {
  font-size: 12px;
  color: var(--warm-gold);
  margin-bottom: 2px;
}

.cart-item-variant {
  font-size: 11px;
  color: #7C6858;
}

.cart-item-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  border: 1px solid rgba(184, 151, 120, 0.2);
  border-radius: 6px;
  overflow: hidden;
}

.cart-item-qty button {
  width: 28px;
  height: 28px;
  border: none;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-text);
}

.cart-item-qty span {
  padding: 0 10px;
  font-size: 13px;
  font-weight: 500;
}

.cart-item-remove {
  color: var(--rich-red);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.cart-item-total {
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  margin-left: 8px;
}

.cart-footer {
  padding: 24px 32px;
  background: var(--bg-cream);
  border-top: 1px solid rgba(184, 151, 120, 0.15);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.cart-note {
  font-size: 11px;
  color: var(--warm-gold);
  margin-bottom: 16px;
}

.cart-continue {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: none;
  color: var(--warm-gold);
  font-size: 11px;
  letter-spacing: 2px;
  cursor: pointer;
  margin-top: 8px;
}

/* ===== CHECKOUT MODAL ===== */
.checkout-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.checkout-modal {
  background: white;
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  padding: 28px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalEnter 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.checkout-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-text);
}

.checkout-title {
  font-size: 40px;
  letter-spacing: -1px;
  line-height: 1;
}

.checkout-subtitle {
  font-size: 11px;
  color: var(--warm-gold);
  letter-spacing: 2px;
  margin: 6px 0 24px;
}

.checkout-summary {
  margin-bottom: 24px;
}

.checkout-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--warm-gold);
  margin-bottom: 4px;
}

.checkout-amount {
  font-size: 28px;
  font-weight: 600;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkout-form input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(184, 151, 120, 0.25);
  font-family: inherit;
  font-size: 13px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.checkout-form input:focus {
  outline: none;
  border-color: var(--warm-gold);
  box-shadow: 0 0 0 3px rgba(184, 151, 120, 0.1);
}

.checkout-note {
  text-align: center;
  font-size: 10px;
  color: var(--warm-gold);
  margin-top: 12px;
}

.checkout-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}

.checkout-success.active {
  display: block;
}

.checkout-spinner {
  width: 56px;
  height: 56px;
  border: 3px solid var(--warm-gold);
  border-top-color: transparent;
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.checkout-thanks {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 12px;
}

.checkout-success p {
  color: #524840;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {
  .about-container {
    gap: 48px;
  }
  .about-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .contact-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Navbar */
  .nav-links {
    display: none;
  }
  .nav-search-btn {
    display: none;
  }
  .install-btn {
    display: none !important;
  }
  .cart-btn {
    display: none !important;
  }
  .menu-toggle {
    display: flex;
  }
  .nav-container {
    padding: 0 16px;
    height: 64px;
  }
  .logo-main {
    font-size: 22px;
  }
  .logo-sub {
    font-size: 8px;
  }
  .logo-img {
    width: 42px;
    height: 42px;
  }

  /* Hero */
  .hero {
    padding: 80px 16px 140px;
    min-height: auto;
  }
  .hero-badge {
    font-size: 9px;
    padding: 5px 14px;
    letter-spacing: 2px;
  }
  .hero-title {
    font-size: 42px;
    letter-spacing: 3px;
  }
  .hero-urdu-name {
    font-size: 28px;
  }
  .hero-tagline {
    font-size: 18px;
  }
  .hero-urdu-tagline {
    font-size: 20px;
  }
  .hero-desc {
    font-size: 14px;
    margin-bottom: 28px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .btn-gold, .btn-outline {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 14px 28px;
    font-size: 12px;
  }
  .hero-name-row .hero-title,
  .hero-name-row .hero-urdu-name {
    padding: 0 12px;
  }
  .hero-tagline-row .hero-tagline,
  .hero-tagline-row .hero-urdu-tagline {
    padding: 0 10px;
  }

  /* Marquee */
  .marquee-img {
    width: 180px;
    height: 220px;
  }
  .marquee-caption {
    font-size: 9px;
  }
  /* Collections */
  .collections {
    padding: 48px 16px 60px;
  }
  .section-title {
    font-size: 36px;
  }
  .section-desc {
    font-size: 14px;
  }
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    position: static;
    padding: 12px 0;
  }
  .filter-buttons {
    display: flex;
    flex-wrap: wrap;
    overflow-x: visible;
    justify-content: center;
    padding: 6px 0 10px;
    width: 100%;
    gap: 8px;
  }
  .filter-buttons::-webkit-scrollbar {
    display: none;
  }
  .filter-btn {
    padding: 8px 14px;
    font-size: 11px;
    flex-shrink: 0;
    text-align: center;
  }
  .filter-search {
    max-width: none;
    flex: 1 1 auto;
    width: 100%;
  }
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .product-card {
    border-radius: 16px;
  }

  .product-info {
    padding: 16px;
  }
  .product-name {
    font-size: 18px;
  }
  .product-price {
    font-size: 16px;
  }

  /* About */
  .about {
    padding: 48px 16px;
  }
  .about-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-title {
    font-size: 36px;
  }
  .about-body {
    font-size: 14px;
  }
  .about-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
  }
  .feature svg {
    width: 32px;
    height: 32px;
  }
  .feature-title {
    font-size: 14px;
  }
  .feature-sub {
    font-size: 10px;
  }

  /* Contact */
  .contact {
    padding: 40px 16px 48px;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .contact-left .section-title {
    font-size: 32px;
  }
  .contact-intro {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .contact-details {
    gap: 14px;
  }
  .contact-detail-icon {
    width: 32px;
    height: 32px;
  }
  .contact-detail-icon svg {
    width: 14px;
    height: 14px;
  }
  .contact-detail-value {
    font-size: 12px;
  }
  .contact-note {
    padding-left: 44px;
    font-size: 11px;
  }
  .contact-form-card {
    padding: 20px 16px;
    border-radius: 16px;
  }
  .form-header-icon {
    width: 36px;
    height: 36px;
  }
  .form-header-title {
    font-size: 18px;
  }
  .form-group {
    margin-bottom: 10px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .form-row .form-group {
    margin-bottom: 10px;
  }
  .form-input {
    padding: 10px 12px;
    height: 40px;
    font-size: 14px;
  }
  .form-textarea {
    min-height: 70px;
  }
  .form-submit {
    padding: 12px 20px;
  }

  /* Social */
  .social {
    padding: 30px 16px;
  }
  .social-intro-container {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
    padding: 0;
  }
  .social-title {
    font-size: 28px;
  }
  .social-links {
    gap: 24px;
  }
  .social-circle {
    width: 60px;
    height: 60px;
  }
  .social-circle svg {
    width: 24px;
    height: 24px;
  }
  .social-name {
    font-size: 11px;
  }
  .social-handle {
    font-size: 10px;
  }

  /* Footer */
  .footer {
    padding: 20px 16px;
    font-size: 9px;
  }

  /* Modal */
  .modal-overlay {
    padding: 0;
    align-items: flex-end;
  }
  .modal {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 20px 20px 0 0;
  }
  .modal-body {
    flex-direction: column;
  }
  .modal-image {
    width: 100%;
    min-height: 280px;
    max-height: 35vh;
  }
  .modal-details {
    width: 100%;
    padding: 20px;
  }
  .modal-name {
    font-size: 24px;
  }
  .modal-price {
    font-size: 22px;
  }
  .modal-actions {
    flex-direction: column;
    gap: 12px;
  }
  .qty-control {
    width: 100%;
    justify-content: center;
  }
  .modal-add-btn {
    width: 100%;
  }

  /* Cart Drawer */
  .cart-drawer {
    max-width: 100%;
  }
  .cart-header {
    padding: 20px;
  }
  .cart-title {
    font-size: 24px;
  }
  .cart-items {
    padding: 16px 20px;
  }
  .cart-item img {
    width: 64px;
    height: 64px;
  }
  .cart-footer {
    padding: 16px 20px;
  }

  /* Checkout */
  .checkout-overlay {
    padding: 0;
    align-items: flex-end;
  }
  .checkout-modal {
    max-width: 100%;
    border-radius: 20px 20px 0 0;
    padding: 28px 20px;
  }
  .checkout-title {
    font-size: 28px;
  }
  .checkout-amount {
    font-size: 22px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
    letter-spacing: 2px;
  }
  .hero-urdu-name {
    font-size: 24px;
  }
  .hero-tagline {
    font-size: 16px;
  }
  .hero-urdu-tagline {
    font-size: 18px;
  }
  .about-features {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .filter-buttons {
    gap: 6px;
  }
  .filter-btn {
    padding: 6px 12px;
    font-size: 10px;
  }
  .product-image {
    aspect-ratio: 3/4;
  }
  .modal-image {
    min-height: 220px;
  }
  .modal-name {
    font-size: 20px;
  }
  .modal-price {
    font-size: 18px;
  }
  .size-btn {
    padding: 8px 16px;
    font-size: 11px;
  }
  .color-swatch {
    width: 24px;
    height: 24px;
  }
}

/* ===== MOBILE APP IMPROVEMENTS ===== */
/* Touch-friendly buttons */
button, .btn-gold, .btn-emerald, .btn-outline, .filter-btn, .size-btn, .nav-link, .mobile-link, .social-link, .product-card, .cart-btn, .menu-toggle {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* Prevent text selection on UI elements */
.navbar, .filter-bar, .cart-header, .modal-actions, .form-header, .social-links, .footer {
  user-select: none;
  -webkit-user-select: none;
}

/* Smooth momentum scrolling on mobile */
.cart-items, .modal-body, .mobile-menu {
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

/* iOS safe area support */
@supports (padding-top: env(safe-area-inset-top)) {
  .navbar {
    padding-top: env(safe-area-inset-top);
  }
  .hero {
    padding-top: calc(100px + env(safe-area-inset-top));
  }
}

/* Prevent pull-to-refresh on modals/drawers */
.cart-drawer, .modal, .checkout-modal {
  overscroll-behavior: contain;
}

/* Active state for touch feedback */
.product-card:active, .btn-gold:active, .btn-emerald:active, .filter-btn:active, .size-btn:active {
  transform: scale(0.98);
  transition: transform 0.1s;
}

/* Hide scrollbar on mobile for cleaner look */
.cart-items::-webkit-scrollbar, .modal-body::-webkit-scrollbar {
  width: 4px;
}
.cart-items::-webkit-scrollbar-thumb, .modal-body::-webkit-scrollbar-thumb {
  background: rgba(184, 151, 120, 0.3);
  border-radius: 4px;
}

/* Standalone app mode improvements */
@media (display-mode: standalone) {
  .navbar {
    padding-top: env(safe-area-inset-top, 0);
  }
  body {
    padding-top: env(safe-area-inset-top, 0);
  }
}

/* ===== UTILITY CLASSES FOR FOOTER BRANDING ===== */
.flex {
  display: flex;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.gap-2 {
  gap: 8px;
}
.text-xs {
  font-size: 11px;
}
.tracking-\[0\.3em\] {
  letter-spacing: 0.3em;
}
.h-5 {
  height: 20px;
}
.opacity-80 {
  opacity: 0.8;
}

/* ===== PWA INSTALLATION UI STYLES ===== */
.install-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--warm-gold);
  border-radius: 999px;
  background: transparent;
  color: var(--deep-emerald);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.install-btn:hover {
  background: var(--deep-emerald);
  color: var(--light-text);
  border-color: var(--deep-emerald);
}

/* ===== SAJAWAT / CATEGORY CARDS / COMPLETE YOUR LOOK STYLE SET ===== */

/* Category Navigation block */
.category-nav-section {
  padding: 40px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.category-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.category-card {
  position: relative;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--deep-emerald);
  border: 1px solid rgba(184, 151, 120, 0.3);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 20px rgba(14, 58, 47, 0.08);
}

.category-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

/* Fallback colors / treatment overlay matching Baji G */
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 58, 47, 0.95) 20%, rgba(14, 58, 47, 0.4) 70%, rgba(14, 58, 47, 0.1) 100%);
  z-index: 2;
  transition: background 0.4s;
}

.category-card-content {
  position: relative;
  z-index: 3;
  color: var(--light-text);
}

.category-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 2px;
  color: var(--light-text);
}

.category-card-urdu {
  font-family: 'Noto Nastaliq Urdu', 'JameelNooriNastaleeq', serif;
  font-size: 18px;
  color: var(--warm-gold);
  margin-bottom: 8px;
  line-height: 1.5;
}

.category-card-desc {
  font-size: 12px;
  opacity: 0.85;
  line-height: 1.4;
  margin-bottom: 16px;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s;
}

.category-card-cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--warm-gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(14, 58, 47, 0.2);
  border-color: var(--warm-gold);
}

.category-card:hover .category-card-bg {
  transform: scale(1.08);
}

.category-card:hover .category-card-desc {
  transform: translateY(0);
  opacity: 1;
}

.category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(14, 58, 47, 0.98) 30%, rgba(14, 58, 47, 0.5) 80%);
}

/* Sajawat Sections Header details */
.sajawat-section {
  padding: 80px 24px;
  max-width: 1280px;
  margin: 0 auto;
  border-bottom: 1px dashed rgba(184, 151, 120, 0.2);
}

.sajawat-section:last-of-type {
  border-bottom: none;
}

.sajawat-heading-urdu {
  font-family: 'Noto Nastaliq Urdu', 'JameelNooriNastaleeq', serif;
  font-size: 32px;
  color: var(--warm-gold);
  margin-top: 4px;
  margin-bottom: 12px;
}

.sajawat-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.btn-sajawat-explore {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--warm-gold);
  border: 1px solid var(--warm-gold);
  padding: 12px 32px;
  border-radius: 8px;
  transition: all 0.3s;
}

.btn-sajawat-explore:hover {
  background: var(--warm-gold);
  color: var(--deep-emerald);
}

/* Makeup Section Specifics - Soft styling colors inside dark green background */
.makeup-soft-overlay {
  background: radial-gradient(circle at top right, rgba(237, 228, 212, 0.05), transparent), var(--deep-emerald);
}

/* Complete Your Look traditional layout section */
.complete-look-section {
  background-color: var(--deep-emerald);
  color: var(--light-text);
  padding: 80px 24px;
  border-top: 2px solid var(--warm-gold);
  border-bottom: 2px solid var(--warm-gold);
  position: relative;
  overflow: hidden;
}

.complete-look-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom left, rgba(184, 151, 120, 0.1), transparent 60%);
  pointer-events: none;
}

.complete-look-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.complete-look-title-ur {
  font-family: 'Noto Nastaliq Urdu', 'JameelNooriNastaleeq', serif;
  font-size: 26px;
  color: var(--warm-gold);
  margin: 10px 0 20px;
  line-height: 1.8;
}

.complete-look-desc {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 240, 230, 0.85);
}

.complete-look-desc-ur {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--warm-gold);
  max-width: 750px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.combination-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.flow-step {
  background: rgba(245, 240, 230, 0.05);
  border: 1.5px solid rgba(184, 151, 120, 0.3);
  padding: 24px 32px;
  border-radius: 12px;
  min-width: 180px;
  transition: all 0.3s;
}

.flow-step-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.flow-step-label {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
}

.flow-plus {
  font-size: 28px;
  color: var(--warm-gold);
  font-weight: 300;
}

.flow-step:hover {
  transform: translateY(-5px);
  background: rgba(184, 151, 120, 0.1);
  border-color: var(--warm-gold);
}

/* Mobile Dropdown Sub Menu styles */
.mobile-dropdown-container {
  border-bottom: 1px solid rgba(184, 151, 120, 0.25);
}

.mobile-dropdown-toggle {
  border-bottom: none !important;
}

.mobile-dropdown-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  background: rgba(184, 151, 120, 0.05);
  border-radius: 8px;
  margin: 0 8px 12px;
}

.mobile-dropdown-sub.active {
  max-height: 500px;
  transition: max-height 0.4s ease-in-out;
}

.mobile-dropdown-sub .sub-link {
  font-size: 20px;
  padding: 12px 24px;
  border-bottom: none;
  font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .category-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .combination-flow {
    gap: 12px;
  }
  .flow-step {
    padding: 16px 24px;
    min-width: 140px;
  }
}

@media (max-width: 580px) {
  .category-nav-grid {
    grid-template-columns: 1fr;
  }
  .combination-flow {
    flex-direction: column;
    gap: 8px;
  }
  .flow-plus {
    transform: rotate(90deg);
    margin: 4px 0;
  }
}

/* Floating Install Banner */
.pwa-install-banner {
  display: none !important;
}

.pwa-install-banner.show {
  transform: translateX(-50%) translateY(0);
}

.pwa-banner-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pwa-banner-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(184, 151, 120, 0.3);
  flex-shrink: 0;
}

.pwa-banner-text {
  flex-grow: 1;
}

.pwa-banner-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--warm-gold);
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.pwa-banner-desc {
  font-size: 12px;
  color: rgba(245, 240, 230, 0.85);
  line-height: 1.4;
}

.pwa-banner-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.pwa-install-confirm {
  padding: 10px 20px !important;
  font-size: 11px !important;
  letter-spacing: 1.5px !important;
  border-radius: 999px !important;
  white-space: nowrap;
}

.pwa-install-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s, background 0.3s;
}

.pwa-install-close:hover {
  color: var(--light-text);
  background: rgba(255, 255, 255, 0.1);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .pwa-install-banner {
    bottom: 16px;
    padding: 12px 16px;
  }
  .pwa-banner-content {
    gap: 12px;
    flex-wrap: wrap;
  }
  .pwa-banner-text {
    width: 100%;
    margin-bottom: 8px;
  }
  .pwa-banner-actions {
    width: 100%;
    justify-content: flex-end;
  }
  .pwa-install-confirm {
    flex-grow: 1;
    text-align: center;
    justify-content: center;
  }
}

