/* ==========================================================================
   EMPIRE WATCHES - LUXURY E-COMMERCE DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,400&display=swap');

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS (EXACT MATCH TO SPECIFICATION)
   -------------------------------------------------------------------------- */
:root {
  /* Brand Palette */
  --ink: #0A0A0A;
  --charcoal: #141414;
  --gold: #C9A227;
  --gold-light: #D4AF37;
  --gold-deep: #A8821A;
  --gold-gradient: linear-gradient(100deg, #D4AF37 0%, #F0D77B 45%, #C9A227 100%);
  --gold-gradient-subtle: linear-gradient(135deg, rgba(212,175,55,0.15) 0%, rgba(201,162,39,0.05) 100%);
  
  /* Status & Accents */
  --sale: #C9873A;
  --muted: #8A8A8A;
  --line: #E6E6E6;
  --surface: #F7F7F7;
  --white: #FFFFFF;
  --star: #E8B33A;
  
  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-ui: 'Inter', system-ui, -apple-system, sans-serif;
  
  /* Layout & Transitions */
  --container-max: 1280px;
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.1);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.15);
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESETS & ACCESSIBILITY
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-ui);
  font-size: 16px;
  color: var(--ink);
  background-color: var(--white);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Focus Visible for Accessibility */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY & RECURRING BRAND ELEMENTS
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6, .heading-display {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }

.subline-tag {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--gold);
}

/* Section Eyebrow: Gold uppercase 12px at letter-spacing .28em between two gold hairlines */
.eyebrow-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.eyebrow-line {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background-color: var(--gold);
}

.eyebrow-text {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold);
}

/* Headline pattern: first word white/dark, second word in gold gradient */
.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Recurring Element: Gold Hairline Divider with Rotated Gold Diamond Centred */
.gold-diamond-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  margin: 40px 0;
}

.gold-diamond-divider::before,
.gold-diamond-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
}

.gold-diamond-divider .diamond {
  width: 8px;
  height: 8px;
  background-color: var(--gold);
  transform: rotate(45deg);
  margin: 0 16px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   4. BUTTONS & BADGES
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all var(--transition-fast);
  border-radius: var(--radius-sm);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--ink);
  color: var(--white);
  border: 1px solid var(--ink);
}

.btn-primary:hover {
  background-color: var(--charcoal);
  border-color: var(--gold);
  color: var(--gold);
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--ink);
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.btn-gold:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline-gold:hover {
  background-color: var(--gold);
  color: var(--ink);
}

.btn-chevron::after {
  content: '›';
  font-size: 1.2rem;
  line-height: 1;
  transition: transform var(--transition-fast);
}

.btn-chevron:hover::after {
  transform: translateX(4px);
}

/* Sale Badge */
.badge-sale {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--sale);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  z-index: 2;
}

/* --------------------------------------------------------------------------
   5. HEADER & ANNOUNCEMENT BAR
   -------------------------------------------------------------------------- */
.header-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--ink);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.announcement-bar {
  background-color: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 0;
  font-size: 0.75rem;
  color: var(--white);
}

.announcement-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.announcement-trust-items {
  display: flex;
  align-items: center;
  gap: 24px;
}

.announcement-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #CCCCCC;
}

.announcement-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
}

.header-main {
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo-brand .brand-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--white);
  line-height: 1;
}

.logo-brand .brand-title span {
  color: var(--gold);
}

.logo-brand .brand-sub {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-top: 4px;
  text-transform: uppercase;
}

/* Navigation Links */
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
  padding: 8px 0;
  position: relative;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-gradient);
}

/* Header Utilities (Search, Cart, Mobile Toggle) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-icon-btn {
  color: var(--white);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  transition: color var(--transition-fast);
}

.header-icon-btn:hover {
  color: var(--gold);
}

.header-icon-btn svg {
  width: 22px;
  height: 22px;
}

.cart-count-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  background-color: var(--gold);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle {
  display: none;
  color: var(--white);
  font-size: 1.5rem;
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  background-color: var(--ink);
  color: var(--white);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(circle at 80% 50%, rgba(201,162,39,0.12) 0%, transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 540px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-description {
  color: #CCCCCC;
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-card {
  position: relative;
  border: 1px solid rgba(201, 162, 39, 0.3);
  padding: 16px;
  background-color: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(10px);
}

.hero-image-card img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;

}

/* --------------------------------------------------------------------------
   7. TRUST STRIP & FEATURED GRID
   -------------------------------------------------------------------------- */
.trust-strip {
  background-color: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(201, 162, 39, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
}

.trust-info h4 {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-info p {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Featured Products & Category Cards */
.section-padding {
  padding: 80px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.product-card {
  background-color: var(--white);
  border: 1px solid var(--line);
  transition: all var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.product-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  background-color: #F9F9F9;
  overflow: hidden;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-details {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-gender-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 4px;
}

.product-title {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-title a:hover {
  color: var(--gold);
}

.rating-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
  font-size: 0.8rem;
}

.rating-stars .star {
  color: var(--star);
}

.rating-count {
  font-size: 0.75rem;
  color: var(--muted);
  margin-left: 4px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
}

.price-current {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sale);
}

.price-compare {
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: line-through;
}

.product-card-actions {
  margin-top: 16px;
}

.btn-card-add {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.75rem;
  border: 1px solid var(--ink);
  background-color: var(--ink);
  color: var(--white);
}

.btn-card-add:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

/* Category Grid Tiles (Men / Women) */
.category-tiles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}

.category-tile {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 40px;
  background-color: var(--ink);
}

.category-tile-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.category-tile:hover .category-tile-bg {
  transform: scale(1.05);
  opacity: 0.85;
}

.category-tile-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.category-tile-content h3 {
  font-size: 2rem;
  margin-bottom: 8px;
}

/* --------------------------------------------------------------------------
   8. TESTIMONIAL BAND (CHARCOAL BACKGROUND)
   -------------------------------------------------------------------------- */
.testimonials-section {
  background-color: var(--charcoal);
  color: var(--white);
  padding: 90px 0;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 162, 39, 0.2);
  padding: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  font-style: italic;
  color: #DDDDDD;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background-color: var(--ink);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-meta h5 {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: none;
}

.testimonial-meta span {
  font-size: 0.75rem;
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   9. SHOP PAGE & FILTER RAIL
   -------------------------------------------------------------------------- */
.page-hero {
  background-color: var(--ink);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 12px;
}

.breadcrumb-nav a:hover {
  color: var(--gold);
}

.shop-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding: 50px 0 90px;
}

.filter-rail {
  background-color: var(--surface);
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: var(--radius-sm);
  align-self: start;
}

.filter-block {
  margin-bottom: 30px;
}

.filter-block:last-child {
  margin-bottom: 0;
}

.filter-title {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 16px;
}

.filter-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: #444;
  cursor: pointer;
}

.filter-item:hover, .filter-item.active {
  color: var(--gold-deep);
  font-weight: 600;
}

.filter-count {
  font-size: 0.75rem;
  color: var(--muted);
}

.price-slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-inputs {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-inputs input {
  width: 100%;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background-color: var(--white);
  font-size: 0.85rem;
}

/* Shop Toolbar */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.sort-select {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background-color: var(--white);
  font-size: 0.875rem;
  cursor: pointer;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 50px;
}

.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.page-btn:hover, .page-btn.active {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   10. PRODUCT DETAIL PAGE
   -------------------------------------------------------------------------- */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 60px 0;
}

.product-gallery {
  display: flex;
  gap: 16px;
}

.gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 90px;
}

.thumb-item {
  width: 90px;
  height: 90px;
  border: 1px solid var(--line);
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.thumb-item.active, .thumb-item:hover {
  border-color: var(--gold);
}

.gallery-main {
  flex: 1;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background-color: #F9F9F9;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-summary {
  display: flex;
  flex-direction: column;
}

.product-meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 12px 0 20px;
}

.qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  width: fit-content;
}

.qty-btn {
  width: 38px;
  height: 38px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface);
}

.qty-input {
  width: 50px;
  text-align: center;
  font-weight: 600;
}

.pdp-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
}

.btn-whatsapp-order {
  background-color: #25D366;
  color: var(--white);
  font-weight: 700;
}

.btn-whatsapp-order:hover {
  background-color: #1EBE5D;
}

/* Tabs Section */
.product-tabs-wrapper {
  margin-top: 60px;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}

.tab-headers {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}

.tab-btn {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-bottom: 14px;
  color: var(--muted);
  position: relative;
}

.tab-btn.active {
  color: var(--ink);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--gold);
}

.tab-content {
  display: none;
  line-height: 1.8;
  color: #444;
}

.tab-content.active {
  display: block;
}

/* Spec Table */
.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th, .spec-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 0.9rem;
}

.spec-table th {
  width: 30%;
  background-color: var(--surface);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   11. CART & CHECKOUT PAGES
   -------------------------------------------------------------------------- */
.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.cart-table th, .cart-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.cart-table th {
  background-color: var(--surface);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cart-item-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-item-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  padding: 50px 0 90px;
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background-color: var(--white);
  font-size: 0.9rem;
}

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

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

.order-summary-card {
  background-color: var(--surface);
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: var(--radius-sm);
}

.payment-options {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-option-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background-color: var(--white);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
}

.payment-details-box {
  padding: 14px;
  background-color: rgba(201, 162, 39, 0.08);
  border-left: 3px solid var(--gold);
  font-size: 0.85rem;
  margin-top: 8px;
}

/* --------------------------------------------------------------------------
   12. FOOTER & FLOATING ACTION BUTTONS
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  margin-top: auto;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-col h4 {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: var(--gold);
  letter-spacing: 0.15em;
}

.footer-col p {
  color: #AAA;
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #BBB;
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--gold);
}

.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background-color: var(--gold);
  color: var(--ink);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  font-size: 0.8rem;
  color: #777;
  text-align: center;
}

/* Floating Action Widgets */
.floating-widgets {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.btn-floating {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-fast);
}

.btn-floating:hover {
  transform: scale(1.1);
}

.btn-whatsapp-float {
  background-color: #25D366;
  color: var(--white);
}

.btn-back-to-top {
  background-color: var(--gold);
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   13. RESPONSIVE BREAKPOINTS (1440 / 1024 / 768 / 390 px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .shop-container {
    grid-template-columns: 240px 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none; /* Handled by mobile drawer */
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .category-tiles-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .shop-container {
    grid-template-columns: 1fr;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .checkout-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr); /* Clean 2-up on mobile screens */
    gap: 12px;
  }

  .product-details {
    padding: 12px;
  }

  .product-title {
    font-size: 0.85rem;
  }

  .price-current {
    font-size: 0.95rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
