/* Bhoomitra Vaastu - Brand Styles */
:root {
  --cream: #f5f2ea;
  --cream-dark: #ebe4d8;
  --beige: #f0ebe0;
  --brown: #4a2c18;
  --brown-light: #5c3a24;
  --gold: #c9a962;
  --gold-dark: #a68966;
  --text: #3d2314;
  --text-muted: #6b5344;
  --white: #ffffff;
  --footer-bg: #3d2314;
  --logo-bg: #1a1a1a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 700;
}

body,
body * {
  font-weight: 700;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

ul {
  list-style: none;
}

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

/* Top Bar */
.top-bar {
  background: var(--brown);
  color: var(--gold);
  text-align: center;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
}

.top-bar span.diamond {
  color: var(--gold);
  margin: 0 8px;
}

/* Header */
.header {
  background: var(--cream);
  border-bottom: 1px solid rgba(74, 44, 24, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  align-self: stretch;
  background: var(--logo-bg);
  margin: -16px 28px -16px -24px;
  padding: 0 24px 0 24px;
  border-right: none;
  box-shadow: inset -1px 0 0 rgba(201, 169, 98, 0.12);
}

.logo-image-wrap {
  display: block;
  background: var(--logo-bg);
  padding: 0;
  line-height: 0;
}

.footer-logo-wrap {
  background: var(--logo-bg);
  padding: 0;
  border-radius: 4px;
  display: inline-block;
  line-height: 0;
  overflow: hidden;
}

.logo img,
.footer-logo-wrap img,
.site-logo {
  height: auto;
  width: auto;
  max-height: 62px;
  max-width: 200px;
  object-fit: contain;
  object-position: center;
  display: block;
  vertical-align: middle;
}

.footer-logo-wrap img,
.footer-logo-wrap .site-logo {
  max-height: 72px;
  max-width: 220px;
}

.logo-text {
  display: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brown);
}

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

.nav-menu .dropdown {
  position: relative;
}

.nav-menu .dropdown > a::after {
  content: ' ▾';
  font-size: 10px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid rgba(74, 44, 24, 0.15);
  min-width: 200px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: 1px;
}

.dropdown-menu a:hover {
  background: var(--beige);
}

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

.nav-icons button,
.nav-icons .icon-link {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--brown);
  position: relative;
  padding: 4px;
  display: inline-flex;
  align-items: center;
}

.nav-icons svg {
  width: 22px;
  height: 22px;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -8px;
  background: var(--brown);
  color: var(--white);
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--brown);
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
}

/* Hero */
.hero {
  background: var(--cream);
  padding: 60px 0 80px;
}

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

.hero-tagline {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
  font-weight: 700;
}

.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  color: var(--brown);
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-desc {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 32px;
  max-width: 480px;
}

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

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--brown);
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'Lato', sans-serif;
}

.btn-primary {
  background: var(--brown);
  color: var(--white);
}

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

.btn-outline {
  background: transparent;
  color: var(--brown);
}

.btn-outline:hover {
  background: var(--brown);
  color: var(--white);
}

.hero-image {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(74, 44, 24, 0.12);
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.section-divider::before,
.section-divider::after {
  content: '';
  width: 80px;
  height: 1px;
  background: var(--gold);
}

.section-divider .diamond {
  color: var(--gold);
  font-size: 10px;
}

.section-header h2 {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  letter-spacing: 4px;
  color: var(--brown);
  font-weight: 700;
  text-transform: uppercase;
}

.section-header p {
  color: var(--text-muted);
  font-size: 14px;
  font-style: italic;
  margin-top: 8px;
}

/* Services */
.services {
  padding: 80px 0;
  background: var(--cream);
}

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

.service-card {
  background: var(--beige);
  border: 1px solid rgba(74, 44, 24, 0.12);
  border-radius: 4px;
  padding: 36px 24px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(74, 44, 24, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

.service-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--brown);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.service-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold-dark);
  text-transform: uppercase;
}

.service-link:hover {
  color: var(--brown);
}

/* Gemstones */
.gemstones {
  padding: 80px 0;
  background: var(--cream-dark);
}

.gemstones-slider {
  position: relative;
  overflow: visible;
}

.gemstones-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  transition: none;
  transform: none !important;
}

.gemstones-track.is-slider {
  display: flex;
  gap: 20px;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  background: var(--white);
  border: 1px solid rgba(74, 44, 24, 0.1);
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}

.gemstones-track.is-slider .product-card {
  flex: 0 0 calc(20% - 16px);
  min-width: 180px;
}

.wishlist-toggle {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(74, 44, 24, 0.15);
  background: rgba(255, 255, 255, 0.95);
  color: var(--gold-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.wishlist-toggle.active,
.wishlist-toggle:hover {
  color: #c0392b;
  border-color: #c0392b;
}

.wishlist-toggle svg {
  width: 18px;
  height: 18px;
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(74, 44, 24, 0.12);
}

.product-image {
  background: linear-gradient(180deg, #faf7f2 0%, #f0ebe0 100%);
  padding: 16px;
  aspect-ratio: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(74, 44, 24, 0.06);
}

.product-image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
}

.product-info {
  padding: 16px 14px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 4px;
}

.product-info h3 {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--brown);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.product-info .benefit {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 8px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-info .price {
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 4px;
}

.product-info .add-to-cart {
  padding: 8px 16px;
  font-size: 10px;
  letter-spacing: 1px;
  background: var(--brown);
  border: 1px solid var(--brown);
  color: var(--white);
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.2s;
  width: 100%;
}

.product-info .add-to-cart:hover {
  background: var(--brown-light);
  border-color: var(--brown-light);
}

.cart-checkout-btn {
  display: block;
  width: 100%;
  text-align: center;
}

.cart-qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.qty-btn {
  width: 24px;
  height: 24px;
  border: 1px solid var(--brown);
  background: transparent;
  color: var(--brown);
  cursor: pointer;
  border-radius: 4px;
  font-weight: 700;
}

.footer-quick-links li {
  margin-bottom: 10px;
}

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

/* Page Layout */
.page-hero {
  background: var(--beige);
  padding: 60px 0 40px;
  text-align: center;
  border-bottom: 1px solid rgba(74, 44, 24, 0.08);
}

.page-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--brown);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

.page-content {
  padding: 60px 0 80px;
}

.content-block {
  max-width: 900px;
  margin: 0 auto 40px;
}

.content-block h2 {
  font-family: 'Cinzel', serif;
  color: var(--brown);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.content-block p,
.content-block li {
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.8;
}

.content-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.info-card {
  background: var(--white);
  border: 1px solid rgba(74, 44, 24, 0.1);
  border-radius: 6px;
  padding: 28px;
}

.info-card h3 {
  font-family: 'Cinzel', serif;
  color: var(--brown);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.products-grid .product-card {
  flex: none;
  min-width: 0;
  width: 100%;
}

/* E-commerce Components */
.breadcrumbs {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.breadcrumbs a {
  color: var(--gold-dark);
}

.breadcrumbs a:hover {
  color: var(--brown);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.category-card {
  background: var(--white);
  border: 1px solid rgba(74, 44, 24, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(74, 44, 24, 0.12);
}

.category-card-image {
  aspect-ratio: 4/3;
  background: var(--beige);
  overflow: hidden;
}

.category-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.category-card-body h3 {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: var(--brown);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.category-card-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
  flex: 1;
}

.category-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold-dark);
  text-transform: uppercase;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid rgba(74, 44, 24, 0.1);
  border-radius: 6px;
}

.shop-toolbar-left,
.shop-toolbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.shop-toolbar label {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brown);
}

.shop-toolbar select {
  padding: 10px 14px;
  border: 1px solid rgba(74, 44, 24, 0.2);
  border-radius: 4px;
  background: var(--cream);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: var(--text);
  min-width: 160px;
}

.product-count {
  font-size: 14px;
  color: var(--text-muted);
}

.promo-strip {
  background: var(--brown);
  color: var(--white);
  padding: 14px 0;
  text-align: center;
  font-size: 13px;
  letter-spacing: 1px;
}

.promo-strip span {
  color: var(--gold);
}

.ecom-features {
  padding: 48px 0;
  background: var(--white);
  border-top: 1px solid rgba(74, 44, 24, 0.08);
  border-bottom: 1px solid rgba(74, 44, 24, 0.08);
}

.ecom-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ecom-feature {
  text-align: center;
  padding: 16px;
}

.ecom-feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  color: var(--gold-dark);
}

.ecom-feature h4 {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  color: var(--brown);
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.ecom-feature p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.section-cta {
  text-align: center;
  margin-top: 32px;
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-page-card {
  background: var(--white);
  border: 1px solid rgba(74, 44, 24, 0.1);
  border-radius: 8px;
  padding: 28px;
}

.service-page-card h3 {
  font-family: 'Cinzel', serif;
  color: var(--brown);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.service-page-card ul {
  margin: 12px 0 0 18px;
  color: var(--text-muted);
  font-size: 14px;
}

.service-page-card li {
  margin-bottom: 6px;
}

@media (max-width: 1024px) {
  .ecom-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .services-page-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ecom-features-grid {
    grid-template-columns: 1fr;
  }

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

.empty-state {
  text-align: center;
  padding: 60px 20px;
  grid-column: 1 / -1;
}

.empty-state h3 {
  font-family: 'Cinzel', serif;
  color: var(--brown);
  margin-bottom: 12px;
}

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

.wishlist-card {
  display: flex;
  gap: 16px;
  background: var(--white);
  border: 1px solid rgba(74, 44, 24, 0.1);
  border-radius: 6px;
  padding: 16px;
}

.wishlist-card img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  background: var(--beige);
  border-radius: 4px;
  padding: 8px;
}

.wishlist-info h3 {
  font-family: 'Cinzel', serif;
  color: var(--brown);
  font-size: 16px;
  margin-bottom: 6px;
}

.btn-sm {
  padding: 8px 14px;
  font-size: 10px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
}

.checkout-form,
.checkout-summary {
  background: var(--white);
  border: 1px solid rgba(74, 44, 24, 0.1);
  border-radius: 6px;
  padding: 28px;
}

.checkout-form h2,
.checkout-summary h2 {
  font-family: 'Cinzel', serif;
  color: var(--brown);
  margin-bottom: 20px;
  letter-spacing: 2px;
  font-size: 20px;
}

.checkout-form .form-group {
  margin-bottom: 16px;
}

.checkout-form label {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 6px;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(74, 44, 24, 0.2);
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  background: var(--cream);
}

.checkout-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(74, 44, 24, 0.08);
}

.checkout-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: var(--beige);
  border-radius: 4px;
  padding: 4px;
}

.checkout-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 700;
  color: var(--brown);
  margin: 20px 0;
  padding-top: 16px;
  border-top: 2px solid rgba(74, 44, 24, 0.1);
}

.checkout-message {
  display: none;
  margin-top: 16px;
  padding: 12px;
  border-radius: 4px;
  font-size: 14px;
}

.checkout-message.error {
  background: rgba(192, 57, 43, 0.1);
  border: 1px solid #c0392b;
  color: #c0392b;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 12px;
  border: 1px solid rgba(74, 44, 24, 0.2);
  border-radius: 4px;
  background: var(--white);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

.success-box {
  text-align: center;
  padding: 80px 20px;
}

.success-box h1 {
  font-family: 'Cinzel', serif;
  color: var(--brown);
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .content-grid-2,
  .checkout-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--brown);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.slider-dots button.active {
  background: var(--brown);
}

/* Trust Bar */
.trust-bar {
  padding: 48px 0;
  background: var(--beige);
  border-top: 1px solid rgba(201, 169, 98, 0.3);
  border-bottom: 1px solid rgba(201, 169, 98, 0.3);
}

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

.trust-item {
  text-align: center;
}

.trust-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  color: var(--gold-dark);
}

.trust-icon svg {
  width: 100%;
  height: 100%;
}

.trust-item p {
  font-size: 12px;
  color: var(--text);
  line-height: 1.5;
  font-weight: 700;
}

/* Footer */
.footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.85);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 48px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-about {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.2s;
}

.social-icons a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--brown);
}

.social-icons svg {
  width: 16px;
  height: 16px;
}

.footer h4 {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13px;
}

.contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  border-radius: 2px;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.inquiry-form textarea {
  min-height: 100px;
  resize: vertical;
}

.inquiry-form button {
  display: block;
  margin: 16px auto 0;
  padding: 12px 40px;
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.2s;
}

.inquiry-form button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--brown);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links {
  display: flex;
  gap: 24px;
}

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

.footer-bottom .diamond {
  color: var(--gold);
  font-size: 8px;
}

/* Search Modal */
.search-modal {
  position: fixed;
  inset: 0;
  background: rgba(61, 35, 20, 0.9);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

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

.search-modal-content {
  width: 90%;
  max-width: 600px;
  position: relative;
}

.search-modal input {
  width: 100%;
  padding: 20px 24px;
  font-size: 18px;
  border: 2px solid var(--gold);
  background: var(--white);
  font-family: 'Lato', sans-serif;
  color: var(--brown);
}

.search-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
}

/* Cart Sidebar */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  max-width: 90vw;
  height: 100vh;
  background: var(--white);
  z-index: 2001;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.active {
  right: 0;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(74, 44, 24, 0.1);
  background: var(--brown);
  color: var(--white);
}

.cart-header h3 {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  letter-spacing: 2px;
}

.cart-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

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

.cart-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 40px 0;
}

.cart-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(74, 44, 24, 0.08);
}

.cart-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: var(--beige);
  border-radius: 4px;
  padding: 4px;
}

.cart-item-info h4 {
  font-size: 13px;
  font-family: 'Cinzel', serif;
  color: var(--brown);
}

.cart-item-info p {
  font-size: 14px;
  color: var(--gold-dark);
  font-weight: 700;
}

.cart-item-remove {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 18px;
}

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(74, 44, 24, 0.1);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--brown);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2000;
  display: none;
}

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

.form-success {
  background: rgba(201, 169, 98, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 12px;
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  display: none;
}

/* Responsive */
@media (max-width: 1200px) {
  .gemstones-track:not(.is-slider) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

  .gemstones-track:not(.is-slider) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gemstones-track.is-slider .product-card {
    flex: 0 0 calc(33.333% - 14px);
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .logo {
    margin: -12px 16px -12px -24px;
    padding: 0 16px 0 24px;
  }

  .logo img,
  .footer-logo-wrap img,
  .site-logo {
    max-height: 50px;
    max-width: 160px;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 24px;
    transition: left 0.3s;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    padding-left: 16px;
    background: transparent;
  }

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

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-image {
    order: -1;
  }

  .gemstones-track:not(.is-slider) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gemstones-track.is-slider .product-card {
    flex: 0 0 calc(50% - 10px);
  }

  .logo {
    margin: -12px 12px -12px -24px;
    padding: 0 12px 0 24px;
  }

  .logo img,
  .site-logo {
    max-height: 44px;
    max-width: 140px;
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .gemstones-track:not(.is-slider) {
    grid-template-columns: 1fr;
  }

  .gemstones-track.is-slider .product-card {
    flex: 0 0 100%;
  }

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

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