/* ==========================================================================
   ZEENAT JEWELLERY - LUXURY E-COMMERCE STYLESHEET
   Aesthetic: Regal Gold, Midnight Obsidian, Warm Ivory, Crisp Typography
   ========================================================================== */

:root {
  --primary-gold: #c59b27;
  --primary-gold-light: #e6c86e;
  --primary-gold-dark: #9a7615;
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f3e5ab 50%, #aa7c11 100%);
  --gold-subtle: rgba(197, 155, 39, 0.12);
  --gold-border: rgba(197, 155, 39, 0.35);

  --bg-dark: #0f0f12;
  --bg-card-dark: #17171d;
  --text-light: #f8f6f0;
  --text-muted: #a3a099;

  --bg-light: #e9ecf2;
  --bg-white: #f5f7fa;
  --bg-cream: #dfe3ea;
  --text-dark: #1a1a1e;
  --text-subtle: #585c66;
  --border-light: #ccd2de;
  --bg-silver: #e9ecf2;
  --bg-silver-card: #f5f7fa;
  --border-silver: #ccd2de;

  --whatsapp-green: #25d366;
  --whatsapp-dark: #128c7e;

  --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.14);
  --shadow-gold: 0 8px 24px rgba(197, 155, 39, 0.25);

  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden !important;
  max-width: 100% !important;
  width: 100% !important;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden !important;
  max-width: 100% !important;
  width: 100% !important;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button {
  cursor: pointer;
  background: none;
}

ul {
  list-style: none;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6, .serif-font {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary-gold-dark);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.25rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--primary-gold);
  margin: 0.75rem auto 0;
}

.section-title.text-left::after {
  margin: 0.75rem 0 0;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-subtle);
  max-width: 600px;
  margin: 0 auto;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

/* Top Announcement Bar */
.top-bar {
  background-color: var(--bg-dark);
  color: #e2dfd2;
  font-size: 0.75rem;
  padding: 0.32rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(197, 155, 39, 0.25);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-item i {
  color: var(--primary-gold);
}

.top-bar-center {
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Main Header - Sleek, Compact & Non-Sticky */
.main-header {
  position: relative;
  z-index: 100;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.main-header.menu-open,
.main-header:has(.nav-menu.active),
body.mobile-nav-open .main-header {
  position: relative !important;
  z-index: 100000 !important;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0;
}

/* Brand Logo */
.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo-img {
  height: 40px;
  width: auto;
  max-width: 210px;
  display: block;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.03);
}

.brand-name {
  display: none;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.85rem;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 0.35rem 0;
  letter-spacing: 0.3px;
}

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

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

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

/* Circle Type Categories Button */
.nav-categories-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.32rem 1.15rem;
  border-radius: 9999px;
  border: 1.5px solid var(--primary-gold);
  background: #ffffff;
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 1px 4px rgba(197, 155, 39, 0.12);
  text-decoration: none;
}

.nav-categories-btn i {
  color: var(--primary-gold-dark);
  font-size: 0.65rem;
  transition: transform 0.25s ease, color 0.25s ease;
}

.nav-categories-btn:hover,
.nav-item-dropdown:hover .nav-categories-btn,
.nav-categories-btn.active {
  background: var(--primary-gold);
  color: #ffffff;
  border-color: var(--primary-gold);
  box-shadow: 0 3px 10px rgba(197, 155, 39, 0.3);
}

.nav-categories-btn:hover i,
.nav-item-dropdown:hover .nav-categories-btn i,
.nav-categories-btn.active i {
  color: #ffffff;
  transform: rotate(180deg);
}

/* Dropdown Menu */
.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  width: 240px;
  background: var(--bg-white);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--primary-gold);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  padding: 0.75rem 0;
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 110;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 12px;
}

.nav-item-dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.dropdown-item:hover {
  background: var(--gold-subtle);
  color: var(--primary-gold-dark);
  padding-left: 1.5rem;
}

/* Header Action Icons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.action-btn {
  position: relative;
  color: var(--text-dark);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.action-btn:hover {
  background-color: var(--gold-subtle);
  color: var(--primary-gold-dark);
}

.action-badge {
  position: absolute;
  top: 1px;
  right: 1px;
  background: var(--primary-gold-dark);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--whatsapp-green);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25);
  transition: var(--transition);
}

.header-wa-btn:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-1px);
}

.menu-toggle-btn {
  display: none;
  font-size: 1.35rem;
  color: var(--text-dark);
}

/* Live Search Modal / Bar */
.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 18, 0.75);
  backdrop-filter: blur(8px);
  z-index: 999;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10vh;
}

.search-modal.active {
  display: flex;
  animation: fadeIn 0.25s ease-out;
}

.search-container {
  background: #ffffff;
  width: 90%;
  max-width: 680px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--primary-gold);
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
}

.search-input-wrapper i {
  font-size: 1.25rem;
  color: var(--primary-gold-dark);
  margin-right: 0.85rem;
}

.search-input {
  flex: 1;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.search-close-btn {
  font-size: 1.25rem;
  color: var(--text-subtle);
  padding: 0.25rem;
}

.search-close-btn:hover {
  color: #e02424;
}

.search-results {
  max-height: 380px;
  overflow-y: auto;
  padding: 0.75rem;
}

.search-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
}

.search-item:hover {
  background: var(--gold-subtle);
}

.search-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.search-item-info h4 {
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: var(--text-dark);
}

.search-item-info span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-gold-dark);
}

/* ==========================================================================
   HERO BANNER
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #0e0e11 0%, #1e1b18 50%, #14120f 100%);
  color: #fff;
  padding: 5rem 0 6rem;
  overflow: hidden;
  border-bottom: 1px solid var(--gold-border);
}

.hero-background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.07;
  background-image: radial-gradient(#d4af37 1px, transparent 1px);
  background-size: 24px 24px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.hero-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--primary-gold-light);
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 3.4rem;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.hero-title em {
  font-style: italic;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.05rem;
  color: #c9c5ba;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.btn-gold {
  background: var(--gold-gradient);
  color: #0f0f11;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(197, 155, 39, 0.4);
}

.btn-outline-gold {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid var(--primary-gold);
}

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

.btn-whatsapp-hero {
  background: var(--whatsapp-green);
  color: #fff;
  border: none;
}

.btn-whatsapp-hero:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 3rem auto 0;
  max-width: 650px;
  width: 100%;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-feat-item {
  display: flex;
  flex-direction: column;
}

.hero-feat-number {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--primary-gold-light);
  font-weight: 700;
}

.hero-feat-text {
  font-size: 0.75rem;
  color: #9f9b90;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Showcase Image */
.hero-image-wrapper {
  position: relative;
}

.hero-main-img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--gold-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.hero-main-img-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero-main-img-card:hover img {
  transform: scale(1.04);
}

.hero-floating-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(23, 23, 29, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold-border);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.hero-floating-card i {
  font-size: 1.8rem;
  color: var(--primary-gold);
}

.hero-floating-card h4 {
  font-size: 0.9rem;
  color: #fff;
  font-family: var(--font-sans);
}

.hero-floating-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   CATEGORY SHOWCASE (All 10 Categories)
   ========================================================================== */
.categories-section {
  padding: 5rem 0;
  background: var(--bg-white);
}

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

.category-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

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

.category-img-box {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}

.category-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover .category-img-box img {
  transform: scale(1.1);
}

.category-info {
  padding: 1rem 0.75rem;
  background: #ffffff;
}

.category-name {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
  transition: var(--transition);
}

.category-card:hover .category-name {
  color: var(--primary-gold-dark);
}

.category-count {
  font-size: 0.75rem;
  color: var(--text-subtle);
  letter-spacing: 0.5px;
}

/* ==========================================================================
   PRODUCT CARDS & GRIDS
   ========================================================================== */
.products-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 2.5rem 0 3rem;
}

.filter-tab {
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-full);
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
}

.filter-tab:hover, .filter-tab.active {
  background: var(--primary-gold-dark);
  color: #fff;
  border-color: var(--primary-gold-dark);
  box-shadow: 0 4px 14px rgba(197, 155, 39, 0.3);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

/* Single Product Card */
.product-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-gold-light);
}

.product-thumb-container {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #f7f5f0;
}

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

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

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary-gold-dark);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  z-index: 2;
}

.product-badge.bestseller {
  background: #9a7615;
}

.product-badge.new {
  background: #0f0f12;
}

.product-card-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  z-index: 2;
}

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

.card-action-btn {
  width: 36px;
  height: 36px;
  background: #ffffff;
  color: var(--text-dark);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  font-size: 0.95rem;
  transition: var(--transition);
}

.card-action-btn:hover {
  background: var(--primary-gold-dark);
  color: #ffffff;
}

.card-action-btn.active {
  color: #e02424;
}

.product-details {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-gold-dark);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.product-title {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.35;
  font-family: var(--font-serif);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.7rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: #f59e0b;
  margin-bottom: 0.75rem;
}

.product-rating span {
  color: var(--text-subtle);
  margin-left: 0.2rem;
}

.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-top: auto;
  margin-bottom: 1rem;
}

.current-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

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

.product-order-buttons {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
}

.btn-order-wa {
  background: var(--whatsapp-green);
  color: #ffffff;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.btn-order-wa:hover {
  background: var(--whatsapp-dark);
}

.btn-add-cart-icon {
  background: var(--bg-cream);
  color: var(--primary-gold-dark);
  border: 1px solid var(--primary-gold);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-add-cart-icon:hover {
  background: var(--primary-gold);
  color: #ffffff;
}

/* ==========================================================================
   PROMOTIONAL / BRIDAL BANNER
   ========================================================================== */
.promo-banner {
  background: linear-gradient(rgba(15, 15, 18, 0.88), rgba(15, 15, 18, 0.88)),
              url('https://images.unsplash.com/photo-1599643478518-a784e5dc4c8f?q=80&w=1600&auto=format&fit=crop') center/cover fixed;
  color: #ffffff;
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.promo-box {
  max-width: 750px;
  margin: 0 auto;
}

.promo-box .section-tag {
  color: var(--primary-gold-light);
}

.promo-box h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.promo-box p {
  color: #d1cdc4;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ==========================================================================
   TRUST / VALUE PROPOSITIONS
   ========================================================================== */
.trust-section {
  padding: 4.5rem 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.trust-card:hover {
  border-color: var(--primary-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.trust-icon-box {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-full);
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  color: var(--primary-gold-dark);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-card h4 {
  font-size: 1.05rem;
  font-family: var(--font-sans);
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.trust-card p {
  font-size: 0.8rem;
  color: var(--text-subtle);
}

/* ==========================================================================
   REVIEWS & TESTIMONIALS
   ========================================================================== */
.reviews-section {
  padding: 5rem 0;
  background: var(--bg-cream);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.review-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: #f59e0b;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-subtle);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.review-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--gold-gradient);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.review-author-info h4 {
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: var(--text-dark);
}

.review-author-info span {
  font-size: 0.75rem;
  color: var(--primary-gold-dark);
}

/* ==========================================================================
   INSTAGRAM / LOOKBOOK
   ========================================================================== */
.lookbook-section {
  padding: 4.5rem 0;
  background: #ffffff;
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.lookbook-item {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

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

.lookbook-item:hover img {
  transform: scale(1.1);
}

.lookbook-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 18, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold-light);
  font-size: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

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

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #0f0f13;
  color: #d8d4c9;
  padding: 5rem 0 2rem;
  border-top: 2px solid var(--gold-border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .brand-name {
  color: #ffffff;
}

.footer-desc {
  font-size: 0.88rem;
  color: #a8a49a;
  line-height: 1.7;
  margin: 1.25rem 0;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d8d4c9;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--primary-gold);
  color: #0f0f12;
  border-color: var(--primary-gold);
}

.footer-title {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  position: relative;
  font-family: var(--font-serif);
}

.footer-title::after {
  content: '';
  display: block;
  width: 35px;
  height: 2px;
  background: var(--primary-gold);
  margin-top: 0.5rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #a8a49a;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a:hover {
  color: var(--primary-gold-light);
  transform: translateX(4px);
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  color: #a8a49a;
}

.footer-contact-list i {
  color: var(--primary-gold);
  margin-top: 0.2rem;
  font-size: 1rem;
}

.footer-wa-card {
  margin-top: 1.25rem;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-wa-card span {
  font-size: 0.8rem;
  color: #e5e5e5;
}

.footer-wa-card strong {
  color: #25d366;
  font-size: 0.95rem;
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #7f7c75;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

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

/* ==========================================================================
   PRODUCT DETAIL / QUICK VIEW MODAL
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 18, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.25s ease-out;
}

.modal-box {
  background: #ffffff;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
  position: relative;
  border: 1px solid var(--border-light);
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  color: var(--text-dark);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0ede6;
  z-index: 10;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: #0f0f12;
  color: #ffffff;
}

.modal-body {
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

/* Gallery in Modal */
.modal-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-main-img {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #f7f5f0;
  border: 1px solid var(--border-light);
}

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

.modal-thumbnails {
  display: flex;
  gap: 0.75rem;
}

.modal-thumb {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: #f5f2eb;
}

.modal-thumb.active {
  border-color: var(--primary-gold-dark);
}

.modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-info-col h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.modal-pricing {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin: 1rem 0 1.25rem;
}

.modal-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-gold-dark);
}

.modal-orig-price {
  font-size: 1.1rem;
  color: var(--text-subtle);
  text-decoration: line-through;
}

.modal-desc {
  font-size: 0.92rem;
  color: var(--text-subtle);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.modal-specs-table {
  width: 100%;
  margin-bottom: 1.5rem;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.modal-specs-table tr {
  border-bottom: 1px solid var(--border-light);
}

.modal-specs-table td {
  padding: 0.5rem 0;
}

.modal-specs-table td:first-child {
  color: var(--text-subtle);
  width: 40%;
  font-weight: 500;
}

.modal-specs-table td:last-child {
  color: var(--text-dark);
  font-weight: 600;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1rem;
}

.modal-quantity {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.qty-btn-group {
  display: flex;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.qty-btn {
  padding: 0.4rem 0.85rem;
  background: var(--bg-cream);
  font-weight: 700;
  font-size: 1rem;
}

.qty-btn:hover {
  background: #e6dfd1;
}

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

.btn-modal-wa {
  background: var(--whatsapp-green);
  color: #ffffff;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
}

.btn-modal-wa:hover {
  background: var(--whatsapp-dark);
}

.btn-modal-cart {
  background: var(--text-dark);
  color: #ffffff;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-modal-cart:hover {
  background: var(--primary-gold-dark);
}

/* ==========================================================================
   CART & WISHLIST DRAWERS
   ========================================================================== */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 18, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1100;
  display: none;
}

.drawer-overlay.active {
  display: block;
  animation: fadeIn 0.2s ease-out;
}

.drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 90vw;
  height: 100%;
  background: #ffffff;
  z-index: 1200;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.drawer.active {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.drawer-header h3 {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.drawer-close {
  font-size: 1.25rem;
  color: var(--text-subtle);
}

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

.drawer-item {
  display: grid;
  grid-template-columns: 65px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-light);
}

.drawer-item-img {
  width: 65px;
  height: 65px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.drawer-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drawer-item-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

.drawer-item-price {
  font-size: 0.85rem;
  color: var(--primary-gold-dark);
  font-weight: 700;
}

.drawer-item-remove {
  color: #a8a49a;
  font-size: 1rem;
  transition: var(--transition);
}

.drawer-item-remove:hover {
  color: #e02424;
}

.drawer-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border-light);
  background: var(--bg-cream);
}

.drawer-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.drawer-subtotal span:last-child {
  color: var(--primary-gold-dark);
}

.btn-drawer-checkout-wa {
  width: 100%;
  background: var(--whatsapp-green);
  color: #ffffff;
  padding: 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-drawer-checkout-wa:hover {
  background: var(--whatsapp-dark);
}

.empty-drawer-msg {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-subtle);
}

.empty-drawer-msg i {
  font-size: 3rem;
  color: var(--border-light);
  margin-bottom: 1rem;
}

/* ==========================================================================
   CHECKOUT DETAILS MODAL (FOR WHATSAPP ORDER)
   ========================================================================== */
.checkout-modal-box {
  background: #ffffff;
  width: 100%;
  max-width: 550px;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  background: #fdfdfd;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-gold);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(197, 155, 39, 0.15);
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-wa-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp-green);
  color: #ffffff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 900;
  transition: var(--transition);
}

.floating-wa-btn:hover {
  transform: scale(1.1);
  background: var(--whatsapp-dark);
}

.floating-wa-tooltip {
  position: absolute;
  right: 70px;
  background: #0f0f12;
  color: #ffffff;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
}

.floating-wa-btn:hover .floating-wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast-container {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background: #0f0f13;
  color: #ffffff;
  border-left: 4px solid var(--primary-gold);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  animation: slideInLeft 0.3s ease-out;
}

/* ==========================================================================
   STATIC PAGES (About, Contact, Policies)
   ========================================================================== */
.page-hero {
  background: linear-gradient(rgba(15, 15, 18, 0.85), rgba(15, 15, 18, 0.85)),
              url('https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?q=80&w=1600&auto=format&fit=crop') center/cover;
  color: #ffffff;
  padding: 4.5rem 0 3.5rem;
  text-align: center;
  border-bottom: 2px solid var(--gold-border);
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #d1cdc4;
}

.breadcrumb a {
  color: var(--primary-gold-light);
}

.page-content-section {
  padding: 5rem 0;
  background: #ffffff;
}

.policy-content-box {
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.8;
  color: var(--text-dark);
}

.policy-content-box h2 {
  font-size: 1.6rem;
  margin: 2rem 0 1rem;
  color: var(--text-dark);
  border-left: 3px solid var(--primary-gold);
  padding-left: 0.75rem;
}

.policy-content-box p {
  margin-bottom: 1.25rem;
  color: var(--text-subtle);
}

.policy-content-box ul {
  list-style: disc;
  margin: 1rem 0 1.5rem 1.75rem;
  color: var(--text-subtle);
}

.policy-content-box li {
  margin-bottom: 0.5rem;
}

/* Contact Page Form & Details */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  margin-top: 2rem;
}

.contact-info-card {
  background: var(--bg-cream);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1px solid var(--primary-gold);
  color: var(--primary-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  font-family: var(--font-sans);
}

.contact-item-text p, .contact-item-text a {
  font-size: 0.9rem;
  color: var(--text-subtle);
}

/* Shop Catalog Layout */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.shop-sidebar {
  background: #ffffff;
  padding: 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  height: fit-content;
}

.sidebar-widget {
  margin-bottom: 2rem;
}

.sidebar-title {
  font-size: 1.1rem;
  font-family: var(--font-serif);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-light);
}

.category-filter-list li {
  margin-bottom: 0.6rem;
}

.category-filter-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 0.88rem;
  color: var(--text-subtle);
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.category-filter-btn:hover, .category-filter-btn.active {
  background: var(--gold-subtle);
  color: var(--primary-gold-dark);
  font-weight: 600;
}

.price-slider-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.price-range-val {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-gold-dark);
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  margin-bottom: 2rem;
}

.shop-sort-select {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}

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

@keyframes slideInLeft {
  from { transform: translateX(-30px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}


/* ==========================================================================
   COLLAPSIBLE LONG DESCRIPTION & SOFT CONTRAST STYLES
   ========================================================================== */
.long-desc-collapsible-wrapper {
  position: relative;
  max-height: 230px;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.long-desc-collapsible-wrapper.expanded {
  max-height: 5000px;
}

.desc-fade-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.95) 80%, #ffffff 100%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.long-desc-collapsible-wrapper.expanded .desc-fade-overlay {
  opacity: 0;
  visibility: hidden;
}

/* Softer Contrast Typography for Detailed Description */
.long-desc-soft-text {
  color: #5c5850 !important;
  font-size: 0.98rem;
  line-height: 1.85;
}

.long-desc-soft-text p {
  color: #5c5850 !important;
  margin-bottom: 1.25rem;
}

.long-desc-soft-text ul {
  color: #5c5850 !important;
}

.btn-read-more-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #fbf9f5;
  border: 1.5px solid var(--primary-gold);
  color: var(--primary-gold-dark);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.65rem 1.6rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(197, 155, 39, 0.15);
  transition: var(--transition);
  margin-top: 1rem;
}

.btn-read-more-toggle:hover {
  background: var(--primary-gold);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(197, 155, 39, 0.3);
}

/* ==========================================================================
   MOBILE NAV OVERLAY & RESPONSIVE DRAWER STYLES (NO BLUR)
   ========================================================================== */
.mobile-nav-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(15, 15, 18, 0.55) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  z-index: 99990 !important;
  display: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mobile-nav-overlay.active {
  display: block !important;
  opacity: 1 !important;
}

.mobile-nav-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 1.25rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav-close-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: #f0ede6;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-nav-close-btn:hover {
  background: #0f0f12;
  color: #ffffff;
}

.nav-dropdown-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  padding: 0.4rem;
  cursor: pointer;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .hero-content {
    margin: 0 auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  .lookbook-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .shop-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .top-bar-left, .top-bar-right {
    display: none;
  }

  .main-header.menu-open,
  body.mobile-nav-open .main-header {
    position: relative !important;
    z-index: 99999 !important;
  }

  .menu-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: #f4efe6;
    color: var(--text-dark);
    font-size: 1.15rem;
    cursor: pointer;
    transition: var(--transition);
  }

  .menu-toggle-btn:hover {
    background: var(--primary-gold);
    color: #fff;
  }

  .mobile-nav-header {
    display: flex;
  }

  .nav-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: #faf8f5;
    transition: var(--transition);
  }

  .nav-menu {
    position: fixed !important;
    top: 0 !important;
    left: -320px !important;
    width: 300px !important;
    max-width: 85vw !important;
    height: 100vh !important;
    background: var(--bg-white) !important;
    box-shadow: 6px 0 32px rgba(0, 0, 0, 0.35) !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 1.5rem 1.25rem !important;
    gap: 0.5rem !important;
    transition: left 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    z-index: 100005 !important;
    pointer-events: auto !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    visibility: visible !important;
    display: flex !important;
  }

  .nav-menu * {
    pointer-events: auto;
  }

  .nav-menu.active {
    left: 0 !important;
    transform: none !important;
  }

  .nav-menu .nav-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid var(--border-light);
    pointer-events: auto !important;
    cursor: pointer;
  }

  .nav-menu .nav-link::after {
    display: none;
  }

  .nav-item-dropdown {
    width: 100%;
  }

  .nav-item-dropdown .dropdown-menu {
    display: none;
    position: static;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--primary-gold);
    padding: 0.5rem 0 0.5rem 1rem;
    margin: 0.25rem 0 0.75rem 0.5rem;
    width: 100%;
    opacity: 1;
    transform: none;
    background: #faf8f5;
    border-radius: var(--radius-sm);
  }

  .nav-item-dropdown.mobile-open .dropdown-menu {
    display: block;
  }

  .nav-item-dropdown.mobile-open .nav-dropdown-toggle i {
    transform: rotate(180deg);
  }

  .dropdown-item {
    padding: 0.5rem 0.75rem;
    font-size: 0.88rem;
    font-weight: 500;
  }
}

/* Active Category Card Highlighting (Shop & Home) */
.category-card.active {
  border-color: var(--primary-gold);
  box-shadow: 0 4px 18px rgba(197, 155, 39, 0.35);
  transform: translateY(-4px);
}
.category-card.active .category-info {
  background: var(--gold-subtle);
}
.category-card.active .category-name {
  color: var(--primary-gold-dark);
  font-weight: 700;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 2.5rem 0 3rem !important;
    overflow: hidden !important;
  }
  .hero-title {
    font-size: 2.1rem !important;
    line-height: 1.25 !important;
  }
  .hero-description {
    font-size: 0.95rem !important;
    margin-bottom: 1.5rem !important;
  }
  .hero-buttons {
    flex-direction: column !important;
    width: 100% !important;
    gap: 0.75rem !important;
  }
  .hero-buttons .btn {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0.85rem 1rem !important;
    font-size: 0.9rem !important;
    white-space: normal !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }
  .hero-features {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.5rem !important;
    width: 100% !important;
  }
  .hero-feat-number {
    font-size: 1.25rem !important;
  }
  .hero-feat-text {
    font-size: 0.65rem !important;
  }

  /* Filter Tabs - Horizontal Swipeable on Mobile */
  .filter-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.35rem 0.2rem 0.75rem;
    gap: 0.5rem;
    margin: 0.5rem 0 1.25rem;
  }
  .filter-tabs::-webkit-scrollbar {
    display: none;
  }
  .filter-tab {
    flex-shrink: 0;
    padding: 0.5rem 1.15rem;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  /* Shop Layout: Products First, Sidebar Below on Mobile */
  .shop-layout {
    display: flex;
    flex-direction: column;
  }
  .shop-layout main {
    order: 1;
    width: 100%;
  }
  .shop-sidebar {
    order: 2;
    margin-top: 2rem;
    width: 100%;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.85rem !important;
    width: 100% !important;
  }

  /* 1 by 1 Product Display on Mobile Screen */
  .products-grid,
  .shop-products-grid {
    grid-template-columns: 1fr !important;
    gap: 1.35rem !important;
    width: 100% !important;
  }
  .product-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .product-thumb-container {
    height: 310px !important;
  }
  .product-details {
    padding: 1.25rem 1.1rem;
  }
  .product-title {
    font-size: 1.05rem;
    height: auto;
    max-height: 3rem;
    line-height: 1.35;
    margin-bottom: 0.4rem;
  }
  .current-price {
    font-size: 1.25rem;
  }
  .original-price {
    font-size: 0.88rem;
  }
  .product-badge {
    top: 10px;
    left: 10px;
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
  }
  .product-card-actions {
    opacity: 1;
    top: 10px;
    right: 10px;
    gap: 0.5rem;
  }
  .card-action-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  .product-order-buttons {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }
  .btn-order-wa {
    font-size: 0.85rem;
    padding: 0.68rem 1rem;
    white-space: nowrap;
    gap: 0.45rem;
    justify-content: center;
  }
  .btn-add-cart-icon {
    width: 42px;
    height: 42px;
    font-size: 0.95rem;
  }

  /* Promo Banner Mobile Fix */
  .promo-banner {
    padding: 3rem 0 !important;
    background-attachment: scroll !important;
    overflow: hidden !important;
  }
  .promo-box {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 0.5rem !important;
  }
  .promo-box h2 {
    font-size: 1.7rem !important;
    line-height: 1.25 !important;
    word-break: break-word !important;
  }
  .promo-box p {
    font-size: 0.92rem !important;
    margin-bottom: 1.5rem !important;
  }
  .promo-box .btn {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0.85rem 1rem !important;
    font-size: 0.9rem !important;
    white-space: normal !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  /* Trust Badges - 1 Column on Mobile to Prevent Overflow */
  .trust-section {
    padding: 2.5rem 0 !important;
    overflow: hidden !important;
  }
  .trust-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.85rem !important;
    width: 100% !important;
  }
  .trust-card {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 1.1rem 1.15rem !important;
    box-sizing: border-box !important;
    gap: 0.85rem !important;
  }
  .trust-icon-box {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    flex-shrink: 0 !important;
    font-size: 1.25rem !important;
  }
  .trust-card h4 {
    font-size: 0.95rem !important;
    margin-bottom: 0.2rem !important;
  }
  .trust-card p {
    font-size: 0.82rem !important;
    line-height: 1.4 !important;
  }

  /* Reviews Section Mobile */
  .reviews-section {
    padding: 2.5rem 0 !important;
    overflow: hidden !important;
  }
  .reviews-grid {
    grid-template-columns: 1fr !important;
    gap: 1.15rem !important;
    width: 100% !important;
  }
  .review-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 1.35rem 1.15rem !important;
  }

  /* Lookbook Section Mobile */
  .lookbook-section {
    padding: 2.5rem 0 !important;
    overflow: hidden !important;
  }
  .lookbook-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.5rem !important;
    width: 100% !important;
  }
  .lookbook-item {
    height: 130px !important;
  }

  /* Footer Mobile */
  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    width: 100% !important;
  }
  .footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
    gap: 0.75rem !important;
  }
  .footer-bottom-links {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
  }

  .brand-logo-img {
    height: 35px;
    max-width: 175px;
  }

  .modal-body {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .single-product-title {
    font-size: 1.8rem;
  }
  .single-current-price {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.85rem !important;
  }

  .hero-title {
    font-size: 1.85rem !important;
  }

  .brand-logo-img {
    height: 30px;
    max-width: 145px;
  }

  /* 1 by 1 Product Display on Mobile Screen */
  .products-grid,
  .shop-products-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  .product-thumb-container {
    height: 285px !important;
  }
  .product-details {
    padding: 1.1rem 0.95rem;
  }
  .product-title {
    font-size: 1rem;
    height: auto;
    line-height: 1.35;
  }
  .current-price {
    font-size: 1.2rem;
  }
  .original-price {
    font-size: 0.85rem;
  }
  .product-badge {
    top: 8px;
    left: 8px;
    font-size: 0.65rem;
    padding: 0.22rem 0.5rem;
  }
  .product-card-actions {
    opacity: 1;
    top: 8px;
    right: 8px;
    gap: 0.4rem;
  }
  .card-action-btn {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }
  .product-order-buttons {
    gap: 0.45rem;
  }
  .btn-order-wa {
    font-size: 0.82rem;
    padding: 0.65rem 0.9rem;
    gap: 0.35rem;
  }
  .btn-add-cart-icon {
    width: 40px;
    height: 40px;
    font-size: 0.88rem;
  }
  .category-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.65rem !important;
  }
  .category-img-box {
    height: 125px;
  }
  .category-name {
    font-size: 0.9rem;
  }

  /* Trust Badges - Mobile Responsive */
  .trust-grid {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }
  .trust-card {
    padding: 0.95rem 1rem !important;
    gap: 0.75rem !important;
  }
  .trust-icon-box {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    font-size: 1.15rem !important;
  }
  .hero-features {
    grid-template-columns: 1fr !important;
    gap: 0.65rem !important;
    text-align: center !important;
  }

  .promo-box h2 {
    font-size: 1.45rem !important;
  }

  .lookbook-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.4rem !important;
  }
  .lookbook-item {
    height: 120px !important;
  }

  .floating-wa-btn {
    bottom: 18px !important;
    right: 18px !important;
    width: 50px !important;
    height: 50px !important;
    font-size: 1.55rem !important;
  }
  .floating-wa-tooltip {
    display: none !important;
  }
}

/* ==========================================================================
   DROPDOWN & SELECT OPTION CONTRAST FIX (WINDOWS & ALL BROWSERS)
   ========================================================================== */
select.form-control,
.admin-select,
select {
  background-color: #181c24 !important;
  color: #ffffff !important;
  border: 1px solid #283040 !important;
}

select.form-control option,
.admin-select option,
select option {
  background-color: #181c24 !important;
  color: #ffffff !important;
  padding: 8px 12px;
}

select.form-control option:hover,
select.form-control option:checked,
select option:checked {
  background-color: #d4af37 !important;
  color: #000000 !important;
}

