/* ================================================
   SWARGRANI — Global Design System
   Grace in Every Thread
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Great+Vibes&display=swap');

/* ——— CSS Custom Properties ——— */
:root {
  /* Colors */
  --cream:        #FAF7F2;
  --cream-dark:   #F2EDE4;
  --gold:         #C9A84C;
  --gold-light:   #E8C97E;
  --gold-pale:    #F5E8C0;
  --gold-dark:    #9E7B2A;
  --blush:        #F2D4D0;
  --blush-dark:   #E0B8B3;
  --rose:         #C97C72;
  --rose-dark:    #A55E55;
  --black:        #1A1A1A;
  --charcoal:     #3D3D3D;
  --gray:         #7A7A7A;
  --gray-light:   #D4D4D4;
  --white:        #FFFFFF;

  /* Semantic */
  --bg-primary:   var(--cream);
  --bg-secondary: var(--white);
  --text-primary: var(--black);
  --text-secondary: var(--charcoal);
  --text-muted:   var(--gray);
  --accent:       var(--gold);
  --accent-hover: var(--gold-dark);
  --border:       rgba(201, 168, 76, 0.25);
  --border-dark:  rgba(201, 168, 76, 0.6);
  --shadow-sm:    0 2px 12px rgba(26, 26, 26, 0.06);
  --shadow-md:    0 8px 32px rgba(26, 26, 26, 0.10);
  --shadow-lg:    0 20px 60px rgba(26, 26, 26, 0.14);
  --shadow-gold:  0 8px 32px rgba(201, 168, 76, 0.20);

  /* Glass */
  --glass-bg:     rgba(250, 247, 242, 0.80);
  --glass-border: rgba(201, 168, 76, 0.20);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-script:  'Great Vibes', cursive;

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);
  --transition-fast:   150ms var(--ease-smooth);
  --transition-base:   300ms var(--ease-smooth);
  --transition-slow:   500ms var(--ease-smooth);
  --transition-slower: 800ms var(--ease-smooth);

  /* Layout */
  --container-max: 1400px;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ——— Scrollbar ——— */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: var(--radius-full); }

/* ——— Selection ——— */
::selection { background: var(--gold-pale); color: var(--black); }

/* ================================================
   LAYOUT
   ================================================ */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-xl);
}

@media (max-width: 768px) {
  .container { padding-inline: var(--space-md); }
}

.section {
  padding-block: var(--space-5xl);
}

@media (max-width: 768px) {
  .section { padding-block: var(--space-3xl); }
}

/* ================================================
   ANNOUNCEMENT BAR
   ================================================ */
.announcement-bar {
  background: linear-gradient(90deg, var(--black) 0%, #2a2a2a 50%, var(--black) 100%);
  color: var(--cream);
  text-align: center;
  padding: 10px var(--space-xl);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.announcement-bar::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.08), transparent);
  animation: shimmer-bar 4s infinite;
}

@keyframes shimmer-bar {
  0% { left: -100%; }
  100% { left: 200%; }
}

.announcement-bar a { color: var(--gold-light); text-decoration: underline; }
.announcement-bar .close-bar {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  color: var(--gray-light); cursor: pointer; font-size: 1.1rem; line-height: 1;
  opacity: 0.7; transition: opacity var(--transition-fast);
}
.announcement-bar .close-bar:hover { opacity: 1; }

/* ================================================
   NAVIGATION
   ================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition-base), box-shadow var(--transition-base);
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}

.navbar.scrolled {
  background: rgba(250, 247, 242, 0.98);
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-xl);
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.03em;
  line-height: 1;
  background: linear-gradient(135deg, var(--black) 0%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo-tagline {
  font-family: var(--font-script);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-top: -2px;
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}

.nav-link {
  position: relative;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: var(--space-sm) var(--space-md);
  transition: color var(--transition-base);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 1.5px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width var(--transition-base);
}

.nav-link:hover { color: var(--gold-dark); }
.nav-link:hover::after,
.nav-link.active::after { width: 60%; }
.nav-link.active { color: var(--gold-dark); }

/* Dropdown */
.nav-item { position: relative; }
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-sm);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
  z-index: 100;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%; transform: translateX(-50%);
  width: 12px; height: 12px;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown-link {
  display: block;
  padding: 8px var(--space-md);
  font-size: 0.8125rem;
  color: var(--charcoal);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.nav-dropdown-link:hover {
  background: var(--gold-pale);
  color: var(--gold-dark);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.nav-icon-btn {
  position: relative;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full);
  color: var(--charcoal);
  font-size: 1.125rem;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.nav-icon-btn:hover {
  background: var(--gold-pale);
  color: var(--gold-dark);
  transform: scale(1.05);
}

.nav-badge {
  position: absolute;
  top: 4px; right: 4px;
  min-width: 16px; height: 16px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.625rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
  line-height: 1;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  transition: background var(--transition-fast);
}

.nav-hamburger:hover { background: var(--gold-pale); }
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--charcoal);
  transition: transform var(--transition-base), opacity var(--transition-base);
  transform-origin: center;
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--white);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
  padding: var(--space-2xl) var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.mobile-nav.open { transform: translateX(0); }
.mobile-nav-overlay {
  position: fixed; inset: 0; z-index: 998;
  background: rgba(26,26,26,0.5);
  backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}
.mobile-nav-overlay.open { opacity: 1; visibility: visible; }

.mobile-nav-close {
  position: absolute; top: var(--space-lg); right: var(--space-lg);
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full);
  font-size: 1.25rem; color: var(--charcoal);
  transition: background var(--transition-fast);
}
.mobile-nav-close:hover { background: var(--cream-dark); }

.mobile-nav-link {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--black);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--cream-dark);
}

/* ================================================
   BUTTONS
   ================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::before { opacity: 1; }

/* Primary */
.btn-primary {
  background: linear-gradient(135deg, var(--black) 0%, #2d2d2d 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26, 26, 26, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

/* Gold */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.35);
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

/* Outline Gold */
.btn-outline-gold {
  background: transparent;
  color: var(--gold-dark);
  border: 1.5px solid var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  padding: 10px 20px;
}

.btn-ghost:hover {
  background: var(--cream-dark);
  color: var(--black);
}

/* Sizes */
.btn-sm { padding: 9px 20px; font-size: 0.75rem; }
.btn-lg { padding: 17px 38px; font-size: 0.9375rem; }
.btn-xl { padding: 20px 48px; font-size: 1rem; }
.btn-icon { width: 44px; height: 44px; padding: 0; border-radius: var(--radius-full); }
.btn-full { width: 100%; }

/* ================================================
   SECTION HEADERS
   ================================================ */

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  position: relative;
}

.section-label::before,
.section-label::after {
  content: '—';
  margin: 0 var(--space-sm);
  opacity: 0.5;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: var(--space-md);
}

.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.7;
}

/* ================================================
   PRODUCT CARDS
   ================================================ */

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  position: relative;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.product-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--cream-dark);
}

.product-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slower);
}

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

/* Product Badges */
.product-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
}

.badge-new { background: var(--black); color: var(--white); }
.badge-sale { background: var(--rose); color: var(--white); }
.badge-trending { background: var(--gold); color: var(--black); }
.badge-bestseller { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); color: var(--white); }

/* Product Card Actions */
.product-card-actions {
  position: absolute;
  right: var(--space-md);
  top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  z-index: 2;
  opacity: 0;
  transform: translateX(12px);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.product-card:hover .product-card-actions {
  opacity: 1;
  transform: translateX(0);
}

.product-action-btn {
  width: 36px; height: 36px;
  background: var(--white);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--charcoal);
  box-shadow: var(--shadow-md);
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.product-action-btn:hover {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.1);
}

.product-action-btn.wishlisted {
  background: var(--blush);
  color: var(--rose);
}

/* Quick Add Bar */
.product-quick-add {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(135deg, var(--black) 0%, #2d2d2d 100%);
  color: var(--white);
  text-align: center;
  padding: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.product-card:hover .product-quick-add {
  transform: translateY(0);
}

/* Product Card Body */
.product-card-body {
  padding: var(--space-md) var(--space-md) var(--space-lg);
}

.product-card-category {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-xs);
}

.product-card-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.product-card-rating {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 0.75rem;
}

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

.product-card-price {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

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

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

.price-discount {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--rose);
  background: rgba(201, 124, 114, 0.1);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}

/* Color Swatches */
.product-card-colors {
  display: flex;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
}

.color-swatch {
  width: 18px; height: 18px;
  border-radius: var(--radius-full);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--gray-light);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.color-swatch:hover,
.color-swatch.active {
  transform: scale(1.2);
  box-shadow: 0 0 0 2px var(--gold);
}

/* ================================================
   GRIDS
   ================================================ */

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 1200px) {
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
}

/* ================================================
   FORMS
   ================================================ */

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.03em;
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  font-size: 0.9375rem;
  color: var(--black);
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.form-input::placeholder { color: var(--gray); }

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7A7A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

/* ================================================
   PAGINATION
   ================================================ */

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-3xl);
}

.page-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.page-btn:hover { background: var(--cream-dark); color: var(--black); }
.page-btn.active { background: var(--black); color: var(--white); }

/* ================================================
   TOAST / NOTIFICATION
   ================================================ */

.toast-container {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  pointer-events: none;
}

.toast {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.875rem;
  pointer-events: all;
  animation: slideInToast 400ms var(--ease-bounce);
  border-left: 3px solid var(--gold);
  min-width: 280px;
  max-width: 380px;
}

.toast.success { border-left-color: #4CAF50; }
.toast.error { border-left-color: var(--rose); }
.toast.info { border-left-color: var(--gold); }

.toast-icon { font-size: 1.25rem; flex-shrink: 0; }
.toast-msg { flex: 1; color: var(--black); font-weight: 500; }
.toast-close { color: var(--gray); font-size: 1rem; cursor: pointer; padding: 4px; }
.toast-close:hover { color: var(--black); }

@keyframes slideInToast {
  from { opacity: 0; transform: translateX(100%); }
  to { opacity: 1; transform: translateX(0); }
}

/* ================================================
   MODAL
   ================================================ */

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
}

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

.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: transform var(--transition-base);
}

.modal-backdrop.open .modal { transform: scale(1) translateY(0); }

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xl);
  border-bottom: 1px solid var(--cream-dark);
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

.modal-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full);
  color: var(--charcoal); font-size: 1.1rem;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.modal-close:hover { background: var(--cream-dark); color: var(--black); }
.modal-body { padding: var(--space-xl); }

/* ================================================
   TABS
   ================================================ */

.tabs {
  display: flex;
  border-bottom: 1px solid var(--gray-light);
  gap: 0;
}

.tab-btn {
  padding: var(--space-md) var(--space-lg);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.tab-btn:hover { color: var(--black); }
.tab-btn.active { color: var(--gold-dark); border-color: var(--gold); font-weight: 600; }

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

/* ================================================
   RATING STARS
   ================================================ */

.star-rating { display: flex; gap: 3px; }
.star-rating .star {
  font-size: 1.1rem;
  color: var(--gray-light);
  cursor: pointer;
  transition: color var(--transition-fast), transform var(--transition-fast);
}
.star-rating .star.filled { color: var(--gold); }
.star-rating .star:hover { transform: scale(1.15); }

/* ================================================
   LOADING SKELETON
   ================================================ */

.skeleton {
  background: linear-gradient(90deg, var(--cream-dark) 25%, var(--cream) 50%, var(--cream-dark) 75%);
  background-size: 200% 100%;
  animation: skeleton-load 1.5s infinite;
  border-radius: var(--radius-md);
}

@keyframes skeleton-load {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ================================================
   BREADCRUMB
   ================================================ */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--text-muted); transition: color var(--transition-fast); }
.breadcrumb a:hover { color: var(--gold-dark); }
.breadcrumb-sep { color: var(--gray-light); }
.breadcrumb-current { color: var(--black); font-weight: 500; }

/* ================================================
   FOOTER
   ================================================ */

.footer {
  background: var(--black);
  color: rgba(255,255,255,0.75);
  padding-top: var(--space-5xl);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-brand { margin-bottom: var(--space-2xl); }
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand-tagline {
  font-family: var(--font-script);
  font-size: 1.1rem;
  color: var(--gold);
  display: block;
  margin-top: 4px;
}

.footer-brand-desc {
  margin-top: var(--space-md);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-lg);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-link:hover { color: var(--gold-light); padding-left: 6px; }

.footer-socials {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.footer-social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.footer-social-btn:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

/* Newsletter */
.footer-newsletter-form {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.footer-input {
  flex: 1;
  padding: 11px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.footer-input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.10);
}

.footer-input::placeholder { color: rgba(255,255,255,0.35); }

.footer-newsletter-btn {
  padding: 11px 20px;
  background: var(--gold);
  color: var(--black);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: background var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
}
.footer-newsletter-btn:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-lg) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer-bottom-link {
  color: rgba(255,255,255,0.4);
  font-size: 0.8125rem;
  transition: color var(--transition-fast);
}

.footer-bottom-link:hover { color: var(--gold-light); }

/* ================================================
   CONTACT & TRUST ICONS
   ================================================ */

.trust-badges {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.trust-badge-icon {
  width: 32px; height: 32px;
  background: var(--gold-pale);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--gold-dark);
  flex-shrink: 0;
}

/* ================================================
   ANIMATIONS
   ================================================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-fadeUp { animation: fadeUp 600ms var(--ease-out) both; }
.animate-fadeIn { animation: fadeIn 600ms var(--ease-out) both; }
.animate-scaleIn { animation: scaleIn 400ms var(--ease-bounce) both; }

[data-animate] { opacity: 0; transform: translateY(30px); transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out); }
[data-animate].in-view { opacity: 1; transform: translateY(0); }

/* ================================================
   UTILITIES
   ================================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-gold { color: var(--gold); }
.text-gold-dark { color: var(--gold-dark); }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--white); }
.font-display { font-family: var(--font-display); }
.font-script { font-family: var(--font-script); }
.fw-300 { font-weight: 300; }
.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }
.flex-wrap { flex-wrap: wrap; }

.w-full { width: 100%; }
.h-full { height: 100%; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.position-relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.rounded-full { border-radius: var(--radius-full); }
.rounded-lg { border-radius: var(--radius-lg); }
.hidden { display: none !important; }

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-dark), transparent);
  margin: var(--space-2xl) 0;
}

/* ================================================
   CHAT WIDGET
   ================================================ */

.chat-widget {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-md);
}

.chat-toggle {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  cursor: pointer;
}

.chat-toggle:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.5);
}

.chat-panel {
  width: 320px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8) translateY(20px);
  transform-origin: bottom right;
  transition: all var(--transition-base);
}

.chat-panel.open {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
}

.chat-header {
  background: linear-gradient(135deg, var(--black) 0%, #2d2d2d 100%);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.chat-avatar {
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}

.chat-info h4 { font-size: 0.875rem; color: var(--white); font-weight: 600; }
.chat-info p { font-size: 0.75rem; color: var(--gold-light); }
.chat-status { width: 8px; height: 8px; background: #4CAF50; border-radius: 50%; margin-left: auto; }

.chat-messages {
  padding: var(--space-md);
  min-height: 200px;
  max-height: 280px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.chat-msg {
  padding: 10px 14px;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  line-height: 1.5;
  max-width: 85%;
}

.chat-msg.bot {
  background: var(--cream-dark);
  color: var(--black);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.chat-msg.user {
  background: var(--gold);
  color: var(--white);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

.chat-input-area {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-md);
  border-top: 1px solid var(--cream-dark);
}

.chat-input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.chat-input:focus { border-color: var(--gold); }

.chat-send {
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.875rem;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.chat-send:hover { background: var(--gold-dark); transform: scale(1.05); }

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

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }
}

@media (max-width: 768px) {
  .nav-menu, .nav-search { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .footer-brand-desc { max-width: 100%; }
  .chat-widget { bottom: var(--space-md); right: var(--space-md); }
  .chat-panel { width: calc(100vw - 32px); }
  .toast-container { bottom: var(--space-md); right: var(--space-md); left: var(--space-md); }
  .toast { min-width: 0; max-width: 100%; }
}

/* ================================================
   STATUS BADGES
   ================================================ */

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0.05em;
}
.status-badge.delivered  { background: rgba(76,175,80,.12);  color: #2E7D32; }
.status-badge.shipped    { background: rgba(33,150,243,.12);  color: #0D47A1; }
.status-badge.processing { background: rgba(255,152,0,.12);   color: #E65100; }
.status-badge.pending    { background: rgba(244,67,54,.12);   color: #B71C1C; }
.status-badge.cancelled  { background: rgba(120,120,120,.12); color: #424242; }

/* ================================================
   TOGGLE SWITCH
   ================================================ */

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--gray-light);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition-base);
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform var(--transition-base);
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.toggle-switch input:checked + .toggle-slider { background: var(--gold); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }

/* ================================================
   SIZE GUIDE TABLE
   ================================================ */

.size-guide-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.size-guide-table thead th {
  background: var(--black);
  color: white;
  padding: 10px 14px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.size-guide-table tbody tr:nth-child(even) { background: var(--cream-dark); }
.size-guide-table tbody td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--charcoal);
}
.size-guide-table tbody td:first-child {
  font-weight: 700;
  color: var(--gold-dark);
}

/* ================================================
   CHECKOUT PROGRESS
   ================================================ */

.checkout-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0 2.5rem;
  gap: 0;
}
.checkout-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}
.step-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gray-light);
  background: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all var(--transition-base);
  position: relative;
  z-index: 2;
}
.checkout-step.active .step-circle {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
  box-shadow: 0 0 0 4px rgba(201,168,76,.2);
}
.checkout-step.done .step-circle {
  background: var(--black);
  border-color: var(--black);
  color: white;
}
.checkout-step.done .step-circle::after { content: '✓'; }
.checkout-step.done .step-num-text { display: none; }
.step-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.checkout-step.active .step-label { color: var(--gold-dark); }
.checkout-step.done .step-label { color: var(--black); }

.step-line {
  width: 80px;
  height: 2px;
  background: var(--gray-light);
  margin: 0 0.5rem;
  margin-bottom: 1.5rem;
  transition: background var(--transition-base);
  position: relative;
  z-index: 1;
}
.step-line.done { background: var(--gold); }

/* ================================================
   PRODUCT DETAIL — STAR RATING INPUT
   ================================================ */

.star-rating {
  display: flex;
  gap: 4px;
  cursor: pointer;
}
.star-rating .star {
  font-size: 1.5rem;
  color: var(--gray-light);
  transition: color var(--transition-fast);
}
.star-rating .star:hover,
.star-rating .star.filled { color: var(--gold); }

/* ================================================
   WISHLIST BUTTON (product detail)
   ================================================ */

.btn-wishlist {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  color: var(--text-muted);
  background: white;
  transition: all var(--transition-base);
  flex-shrink: 0;
  cursor: pointer;
}
.btn-wishlist:hover,
.btn-wishlist.active {
  border-color: var(--rose);
  color: var(--rose);
  background: rgba(201,124,114,.06);
}

/* ================================================
   DELIVERY INFO ROWS
   ================================================ */

.delivery-info {
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.delivery-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}
.delivery-icon {
  width: 36px; height: 36px;
  background: var(--gold-pale);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark);
  font-size: 0.875rem;
  flex-shrink: 0;
}
.delivery-text h4 { font-size: 0.875rem; font-weight: 700; color: var(--black); margin-bottom: 2px; }
.delivery-text p  { font-size: 0.8125rem; color: var(--text-muted); }

/* ================================================
   FABRIC TABLE (product detail)
   ================================================ */

.fabric-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.fabric-table tr { border-bottom: 1px solid var(--cream-dark); }
.fabric-table td { padding: 10px 0; color: var(--charcoal); }
.fabric-table td:first-child { font-weight: 600; color: var(--black); width: 140px; padding-right: 1rem; }

/* ================================================
   PAYMENT OPTIONS (checkout)
   ================================================ */

.payment-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.payment-option {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.payment-option:hover { border-color: var(--gold); background: var(--gold-pale); }
.payment-option.active { border-color: var(--gold); background: var(--gold-pale); box-shadow: 0 0 0 3px rgba(201,168,76,.15); }
.payment-option-icon { font-size: 1.5rem; width: 32px; text-align: center; flex-shrink: 0; }
.payment-option-text h4 { font-size: 0.875rem; font-weight: 600; }
.payment-option-text p  { font-size: 0.75rem; color: var(--text-muted); }

/* ================================================
   UTILITY — DISPLAY HELPERS
   ================================================ */

.d-none { display: none !important; }
@media (min-width: 768px) { .d-md-block { display: block !important; } }

/* ================================================
   GIFT WRAP CARD
   ================================================ */

.gift-wrap-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, var(--gold-pale), var(--cream-dark));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-dark);
}
.gift-wrap-icon { font-size: 2rem; flex-shrink: 0; }
.gift-wrap-info { flex: 1; }
.gift-wrap-info h4 { font-size: 0.9375rem; font-weight: 700; }
.gift-wrap-info p  { font-size: 0.8125rem; color: var(--text-muted); }
.gift-wrap-toggle { margin-left: auto; }

/* ================================================
   GRID HELPERS
   ================================================ */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .grid-3 { grid-template-columns: 1fr; } }

/* ================================================
   NEWSLETTER SECTION
   ================================================ */

.newsletter-section {
  background: linear-gradient(135deg, var(--black) 0%, #1a1208 100%);
}
.newsletter-inner {
  text-align: center;
  padding: var(--space-2xl) 0;
  max-width: 600px;
  margin: 0 auto;
}
.newsletter-label { color: var(--gold-light); margin-bottom: 1rem; }
.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.newsletter-desc { color: rgba(255,255,255,.6); margin-bottom: 2rem; font-size: 1rem; }
.newsletter-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto 1rem;
  gap: 0;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 1.5px solid rgba(201,168,76,.35);
}
.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255,255,255,.07);
  color: white;
  font-size: 0.9rem;
  border: none;
  outline: none;
}
.newsletter-input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-submit {
  padding: 14px 24px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: background var(--transition-fast);
}
.newsletter-submit:hover { background: var(--gold-light); }
.newsletter-note { font-size: 0.75rem; color: rgba(255,255,255,.35); }
