/* Refined structure helpers */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 10000;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  background: var(--gold, #d4af37);
  color: #0d2a1f;
  border-radius: 8px;
  font-weight: 600;
}
main#main-content {
  display: block;
  outline: none;
}

/* ========================================
   Sadhguru Gems And Jewellers - Premium Website
   Smooth • Responsive • Extraordinary
======================================== */

:root {
  /* ===== Color Theory: Green + Ivory Jewellery Palette =====
     Dominant (60%): Deep forest green backgrounds
     Secondary (30%): Ivory text & soft surfaces
     Accent (10%): Warm gold highlights (near-complement to green)
     Harmony: Analogous greens + warm neutrals + gold
  */
  --bg-dark: #0a1c15;
  --bg-card: #112820;
  --bg-elevated: #18352b;
  --ivory: #f7f2e8;
  --ivory-soft: #ebe4d4;
  --ivory-muted: #c4b9a5;
  --green: #1a7a50;
  --green-light: #2a9d65;
  --green-dark: #0d4a35;
  --green-deep: #061a14;
  --gold: #d4af37;
  --gold-light: #e8c96a;
  --gold-dark: #b8942d;
  --text: #f7f2e8;
  --text-muted: #b8ad98;
  --accent-emerald: #2a9d65;
  --border: rgba(247, 242, 232, 0.11);
  --border-gold: rgba(212, 175, 55, 0.32);
  --border-green: rgba(42, 157, 101, 0.38);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  --radius: 16px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

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

.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 500;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 12px;
  line-height: 1.25;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.gold-text {
  background: linear-gradient(135deg, #e8c96a 0%, #d4af37 45%, #f7f2e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-light), var(--green-dark));
  color: var(--ivory);
  box-shadow: 0 8px 28px rgba(27, 122, 82, 0.4);
  border: 1px solid rgba(245, 240, 230, 0.15);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(27, 122, 82, 0.55);
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: var(--ivory);
}

.btn-outline {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(245, 240, 230, 0.35);
}

.btn-outline:hover {
  background: rgba(245, 240, 230, 0.08);
  border-color: var(--ivory);
  color: var(--ivory);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  padding: 10px 18px;
  font-size: 0.9rem;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
}

.btn-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.btn-icon:hover {
  transform: scale(1.1);
  background: #1ebe57;
}

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s, visibility 0.6s;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  text-align: center;
}

.gem-spin {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(212, 175, 55, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  margin: 0 auto 16px;
  animation: spin 0.9s linear infinite;
}

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

.loader p {
  font-family: var(--font-heading);
  color: var(--gold);
  letter-spacing: 2px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
  background: transparent;
}

.header.scrolled {
  background: rgba(7, 7, 10, 0.92);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
  border-bottom: 1px solid var(--border-gold);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-img {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  border-radius: 8px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-main {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}

.logo-sub {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-list {
  display: flex;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  position: relative;
}

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 18% 35%, rgba(26, 122, 80, 0.38) 0%, transparent 52%),
    radial-gradient(ellipse at 82% 18%, rgba(212, 175, 55, 0.14) 0%, transparent 42%),
    radial-gradient(ellipse at 50% 100%, rgba(13, 74, 53, 0.45) 0%, transparent 48%),
    linear-gradient(165deg, #0a1c15 0%, #061a14 55%, #0d4a35 100%);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, var(--bg-dark));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 0;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid rgba(245, 240, 230, 0.25);
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--ivory-soft);
  margin-bottom: 28px;
  background: rgba(27, 122, 82, 0.25);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid var(--gold);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator span::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-down 1.5s infinite;
}

@keyframes scroll-down {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 22px; }
}

/* Collections */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.collection-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.collection-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow);
}

.collection-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

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

.collection-card:hover .collection-img img {
  transform: scale(1.08);
}

.collection-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.collection-card:hover .collection-overlay {
  opacity: 1;
}

.collection-info {
  padding: 22px;
}

.collection-info h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--text);
}

.collection-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Products */
.filter-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 50px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
}

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

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(212, 175, 55, 0.35);
}

.product-card.hide {
  display: none;
}

.product-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #0d0d12;
}

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

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

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  background: var(--gold);
  color: #0a0a0a;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.product-badge.new {
  background: var(--accent-emerald);
  color: white;
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.product-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1.1rem;
}

.products-cta {
  text-align: center;
  margin-top: 50px;
  padding: 40px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.products-cta p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 18px;
}

.about-features {
  margin: 28px 0;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text);
}

.about-features i {
  color: var(--gold);
}

.about-contact-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}

.about-contact-mini a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 500;
}

.about-contact-mini a:hover {
  color: var(--gold-light);
}

.about-visual {
  position: relative;
}

.about-img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0a0a;
  padding: 20px 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.exp-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.exp-text {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Shipping */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.partner-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 16px;
  text-align: center;
  transition: var(--transition);
}

.partner-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.partner-card i {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.partner-card span {
  font-weight: 600;
  font-size: 0.95rem;
}

.shipping-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Reels */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.reel-card {
  aspect-ratio: 9/14;
  max-height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.reel-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  background: linear-gradient(160deg, #1a1a24 0%, #0d0d12 100%);
}

.reel-placeholder i {
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.reel-placeholder p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.reel-placeholder.feedback {
  background: linear-gradient(160deg, rgba(212,175,55,0.08), var(--bg-card));
}

.reel-placeholder .quote {
  font-style: italic;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 12px;
}

.reel-placeholder .author {
  font-size: 0.8rem;
  color: var(--gold);
}

.reels-cta {
  text-align: center;
}

.reels-cta p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.info-card {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}

.info-card i {
  width: 48px;
  height: 48px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--text);
}

.info-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.info-card a {
  color: var(--gold);
}

.info-card a:hover {
  color: var(--gold-light);
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.15rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
  transform: translateY(-3px);
}

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 24px;
  text-align: center;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23d4af37' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

/* Footer */
.footer {
  background: var(--green-deep);
  border-top: 1px solid var(--border-gold);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 18px;
  color: var(--gold);
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.footer-contact p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--gold);
  margin-top: 3px;
}

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

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

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

.made-with {
  margin-top: 8px;
  font-size: 0.8rem;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7); }
}

/* Responsive */
@media (max-width: 992px) {
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .about-visual {
    order: -1;
  }
  
  .experience-badge {
    left: 20px;
    bottom: 20px;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-card);
    padding: 80px 30px 30px;
    transition: right 0.4s ease;
    border-left: 1px solid var(--border);
    z-index: 999;
  }
  
  .nav.open {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    gap: 4px;
  }
  
  .nav-link {
    display: block;
    padding: 14px 16px;
    font-size: 1.05rem;
  }
  
  .nav-toggle {
    display: flex;
    z-index: 1001;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .btn-whatsapp {
    display: none;
  }
  
  .hero-stats {
    gap: 28px;
  }
  
  .section {
    padding: 70px 0;
  }
  
  .contact-form-wrap {
    padding: 24px;
  }
  
  .floating-whatsapp {
    width: 54px;
    height: 54px;
    bottom: 20px;
    right: 20px;
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.9rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .products-grid,
  .collections-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== PROMO SLIDER ==================== */
.promo-slider {
  padding: 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
}

.slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  height: 340px;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.slide.active .slide-bg {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,7,10,0.85) 0%, rgba(7,7,10,0.4) 60%, rgba(7,7,10,0.2) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  padding: 40px 50px;
  max-width: 600px;
  width: 100%;
}

.slide-badge {
  display: inline-block;
  padding: 5px 14px;
  background: var(--gold);
  color: #0a0a0a;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 14px;
}

.slide-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #fff;
}

.slide-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: var(--gold);
  color: #0a0a0a;
}

.slider-btn.prev { left: 16px; }
.slider-btn.next { right: 16px; }

.slider-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .slider-container { height: 280px; }
  .slide-content { padding: 28px 24px; }
  .slider-btn { width: 36px; height: 36px; font-size: 0.85rem; }
  .slider-btn.prev { left: 8px; }
  .slider-btn.next { right: 8px; }
}

/* ==================== LIGHTBOX ZOOM ==================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 92vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  transition: transform 0.25s ease;
  cursor: grab;
  user-select: none;
  transform-origin: center center;
}

.lightbox-content img:active {
  cursor: grabbing;
}

.lightbox-content video {
  max-width: 92vw;
  max-height: 80vh;
  border-radius: 12px;
  outline: none;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(212,175,55,0.3);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.lightbox-close:hover {
  background: var(--gold);
  color: #0a0a0a;
}

.lightbox-controls {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  z-index: 10;
}

.lightbox-controls button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(212,175,55,0.35);
  color: var(--gold);
  font-size: 1.15rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-controls button:hover {
  background: var(--gold);
  color: #0a0a0a;
  transform: scale(1.08);
}

.lightbox-zoom-level {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  min-width: 50px;
  text-align: center;
  line-height: 48px;
}

/* Make product & collection images clickable */
.product-img img,
.collection-img img,
.about-img {
  cursor: zoom-in;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover .product-img img,
.collection-card:hover .collection-img img {
  transform: scale(1.04);
}

/* ==================== ENQUIRY FLOATING + MODAL ==================== */
.floating-enquire {
  position: fixed;
  bottom: 100px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--green-light), var(--green-dark));
  color: var(--ivory);
  border: 1px solid rgba(245, 240, 230, 0.2);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  z-index: 998;
  box-shadow: 0 8px 25px rgba(27, 122, 82, 0.45);
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.floating-enquire:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.55);
}

.floating-enquire i {
  font-size: 1.15rem;
}

.enquiry-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.enquiry-modal.active {
  display: flex;
  opacity: 1;
}

.enquiry-modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  max-height: 90vh;
  overflow-y: auto;
}

.enquiry-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.enquiry-close:hover {
  background: var(--gold);
  color: #0a0a0a;
}

.enquiry-header {
  text-align: center;
  margin-bottom: 24px;
}

.enquiry-header i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.enquiry-header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.enquiry-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.enquiry-modal-box .form-group {
  margin-bottom: 14px;
}

.enquiry-modal-box input,
.enquiry-modal-box select,
.enquiry-modal-box textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}

.enquiry-modal-box input:focus,
.enquiry-modal-box select:focus,
.enquiry-modal-box textarea:focus {
  border-color: var(--gold);
}

.enquiry-modal-box select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23d4af37' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

@media (max-width: 480px) {
  .floating-enquire {
    bottom: 90px;
    right: 16px;
    padding: 11px 16px;
    font-size: 0.85rem;
  }
  .floating-enquire span {
    display: none;
  }
  .floating-enquire {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    justify-content: center;
    padding: 0;
  }
}

/* ==================== REVIEWS & GOOGLE MAPS ==================== */
.rating-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.rating-box, .google-rating-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.google-rating-box {
  flex-direction: row;
  gap: 20px;
  text-align: left;
}

.rating-score {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.rating-stars {
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: 2px;
}

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

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  transition: var(--transition);
}

.review-card:hover {
  border-color: rgba(212,175,55,0.35);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.review-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
}

.review-comment {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  font-style: italic;
}

.review-date {
  font-size: 0.75rem;
  color: #666;
  margin-top: 12px;
}

.feedback-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  max-width: 600px;
  margin: 0 auto;
}

.feedback-form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 20px;
  text-align: center;
}

.feedback-form-wrap h3 i {
  color: var(--gold);
  margin-right: 8px;
}

.map-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--bg-card);
  border-radius: 16px 16px 0 0;
  border: 1px solid var(--border);
  border-bottom: none;
  flex-wrap: wrap;
  gap: 12px;
}

.map-rating-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.map-container {
  border: none !important;
  box-shadow: var(--shadow);
}

@media (max-width: 700px) {
  .rating-summary {
    grid-template-columns: 1fr;
  }
  .google-rating-box {
    flex-direction: column;
    text-align: center;
  }
  .map-header {
    flex-direction: column;
    text-align: center;
  }
  .map-rating-badge {
    align-items: center;
  }
}

/* ==================== EXPERTS SECTION ==================== */
.experts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.expert-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

.expert-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.expert-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.05));
  border: 1px solid rgba(212,175,55,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--gold);
}

.expert-icon.astro {
  background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(139,92,246,0.05));
  border-color: rgba(139,92,246,0.35);
  color: #a78bfa;
}

.expert-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.expert-card > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.expert-points {
  text-align: left;
  margin: 0 auto 24px;
  max-width: 260px;
}

.expert-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text);
}

.expert-points i {
  color: var(--gold);
  font-size: 0.8rem;
}

.expert-card .btn {
  width: 100%;
  justify-content: center;
}

/* Quick expert strip under hero optional */
.expert-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.expert-quick a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: rgba(212,175,55,0.08);
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.expert-quick a:hover {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
}


/* Logo full brand */
.logo-full {
  display: flex;
  align-items: center;
  gap: 0;
}

.logo-full img {
  height: 52px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  border-radius: 8px;
}

.footer .logo-full img {
  height: 56px;
  max-width: 260px;
}

/* Green accent for cards hover */
.collection-card:hover,
.product-card:hover,
.expert-card:hover {
  border-color: rgba(45, 143, 101, 0.45);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--green) !important;
  color: var(--ivory) !important;
  border-color: var(--green-light) !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--green-light) !important;
}

.stat-num,
.price,
.gold-text {
  /* gold-text keeps gradient */
}

.experience-badge {
  background: linear-gradient(135deg, var(--green-light), var(--green-dark)) !important;
  color: #fff !important;
}

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

/* Entrance animation on page load */
.logo-full,
.logo-img {
  animation: logoEntrance 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes logoEntrance {
  0% {
    opacity: 0;
    transform: translateY(-12px) scale(0.92);
    filter: blur(4px);
  }
  60% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* Soft continuous glow pulse (subtle, luxury feel) */
.logo-full img,
.logo-img {
  transition: transform 0.4s ease, filter 0.4s ease, box-shadow 0.4s ease;
  border-radius: 10px;
}

.logo-full:hover img,
.logo-img:hover {
  transform: scale(1.06);
  filter: brightness(1.08) drop-shadow(0 0 12px rgba(45, 143, 101, 0.55))
                    drop-shadow(0 0 4px rgba(212, 175, 55, 0.4));
}

/* Shine sweep effect on hover */
.logo-full {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.logo-full::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 45%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0.15) 55%,
    transparent 100%
  );
  transform: skewX(-18deg);
  pointer-events: none;
  transition: none;
}

.logo-full:hover::after {
  animation: logoShine 0.9s ease forwards;
}

@keyframes logoShine {
  0% { left: -100%; }
  100% { left: 130%; }
}

/* Gentle idle glow (very subtle, always on) */
@keyframes logoIdleGlow {
  0%, 100% {
    filter: drop-shadow(0 0 0 transparent);
  }
  50% {
    filter: drop-shadow(0 0 8px rgba(45, 143, 101, 0.25))
            drop-shadow(0 0 2px rgba(212, 175, 55, 0.15));
  }
}

.logo-full img {
  animation: logoEntrance 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards,
             logoIdleGlow 4s ease-in-out 1.2s infinite;
}

/* Footer logo – slightly calmer */
.footer .logo-full img {
  animation: logoEntrance 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.footer .logo-full:hover img {
  transform: scale(1.04);
  filter: brightness(1.06) drop-shadow(0 0 10px rgba(45, 143, 101, 0.4));
}

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce) {
  .logo-full,
  .logo-full img,
  .logo-img {
    animation: none !important;
  }
  .logo-full::after {
    display: none;
  }
}

/* ==================== CART + AUTH ==================== */
.nav-icon-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1rem;
}
.nav-icon-btn:hover {
  border-color: var(--green-light);
  color: var(--green-light);
}
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold);
  color: #0a0a0a;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9990;
  display: none;
}
.cart-overlay.show { display: block; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 100%;
  max-width: 380px;
  height: 100%;
  background: var(--bg-card);
  border-left: 1px solid var(--border);
  z-index: 9991;
  display: flex;
  flex-direction: column;
  transition: right 0.35s ease;
}
.cart-drawer.open { right: 0; }

.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}
.cart-drawer-header h3 {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}
.cart-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cart-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: 0.9rem; margin-bottom: 4px; }
.cart-item-info .price { color: var(--gold); font-size: 0.9rem; }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
.cart-item-qty button {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  cursor: pointer;
}
.cart-drawer-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
}
.cart-total {
  margin-bottom: 12px;
  font-size: 1.1rem;
}
.btn-full { width: 100%; justify-content: center; }

.add-cart-btn {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.8rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  font-family: inherit;
}
.add-cart-btn:hover {
  background: var(--green-light);
  transform: translateY(-1px);
}

.auth-tab.active {
  background: var(--green) !important;
  color: #fff !important;
  border-color: var(--green) !important;
}


/* ===== Rich Green + Ivory polish ===== */
h1, h2, h3, h4 {
  color: var(--ivory);
}

.product-card,
.collection-card,
.expert-card,
.review-card,
.rating-box,
.google-rating-box,
.feedback-form-wrap,
.contact-form,
.map-header {
  background: var(--bg-card);
  border-color: var(--border);
}

.product-card:hover,
.collection-card:hover,
.expert-card:hover {
  border-color: var(--border-green);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(46, 175, 110, 0.15);
}

.price,
.stat-num {
  color: var(--gold-light) !important;
}

.nav-link {
  color: var(--ivory-muted);
}
.nav-link:hover,
.nav-link.active {
  color: var(--ivory) !important;
}

.header.scrolled {
  background: rgba(11, 26, 20, 0.96) !important;
  border-bottom-color: var(--border-gold) !important;
}

.enquiry-modal-box,
.cart-drawer {
  background: var(--bg-card) !important;
  border-color: var(--border-green) !important;
}

.enquiry-modal-box input,
.enquiry-modal-box select,
.enquiry-modal-box textarea,
.cart-item-qty button {
  background: var(--bg-elevated) !important;
  border-color: var(--border) !important;
  color: var(--ivory) !important;
}

.slide-badge {
  background: var(--green) !important;
  color: var(--ivory) !important;
}

.product-badge {
  background: linear-gradient(135deg, var(--green-light), var(--green-dark)) !important;
  color: var(--ivory) !important;
}

.product-badge.new {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: #0c1f18 !important;
}

.add-cart-btn {
  background: var(--green) !important;
  color: var(--ivory) !important;
}
.add-cart-btn:hover {
  background: var(--green-light) !important;
}

.whatsapp-float {
  background: #25D366 !important;
}

.logo-full:hover img {
  filter: brightness(1.08) drop-shadow(0 0 14px rgba(46, 175, 110, 0.5))
          drop-shadow(0 0 4px rgba(245, 240, 230, 0.25)) !important;
}

/* Soft ivory dividers */
.section {
  position: relative;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--green-light);
}

::selection {
  background: rgba(46, 175, 110, 0.4);
  color: var(--ivory);
}


/* ===== Color Theory Applications ===== */

/* 1. Simultaneous contrast: gold prices read brighter on green cards */
.price {
  color: var(--gold-light) !important;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

/* 2. Focal point: primary CTA uses highest chroma green */
.btn-primary {
  background: linear-gradient(145deg, var(--green-light) 0%, var(--green) 50%, var(--green-dark) 100%) !important;
  color: var(--ivory) !important;
  border: 1px solid rgba(247, 242, 232, 0.18) !important;
  box-shadow:
    0 8px 28px rgba(26, 122, 80, 0.4),
    inset 0 1px 0 rgba(247, 242, 232, 0.12) !important;
}

/* 3. Visual hierarchy: outline = lower emphasis (ivory, less chroma) */
.btn-outline {
  color: var(--ivory-soft) !important;
  border-color: rgba(247, 242, 232, 0.28) !important;
}
.btn-outline:hover {
  background: rgba(247, 242, 232, 0.07) !important;
  border-color: var(--ivory) !important;
  color: var(--ivory) !important;
}

/* 4. Analogous hover: shift toward lighter green, not a new hue */
.product-card:hover,
.collection-card:hover,
.expert-card:hover {
  border-color: var(--border-green) !important;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(42, 157, 101, 0.2),
    0 0 40px rgba(26, 122, 80, 0.08) !important;
}

/* 5. Warm accent on cool field — badges */
.product-badge {
  background: linear-gradient(135deg, var(--green-light), var(--green-dark)) !important;
  color: var(--ivory) !important;
}
.product-badge.new,
.slide-badge {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark)) !important;
  color: #0a1c15 !important;
}

/* 6. Accessibility: body text ivory on deep green (high contrast) */
body, p, li, span {
  color: inherit;
}
.section-desc,
.product-meta,
.review-comment {
  color: var(--text-muted) !important;
}

/* 7. Temperature balance: warm gold dividers on cool green footer */
.footer {
  background: linear-gradient(180deg, var(--green-deep) 0%, #04140f 100%) !important;
  border-top: 1px solid var(--border-gold) !important;
}

/* 8. Nav active state = accent hue for wayfinding */
.nav-link:hover,
.nav-link.active {
  color: var(--gold-light) !important;
}

/* 9. Form focus ring — clear affordance without clashing */
input:focus,
select:focus,
textarea:focus {
  border-color: var(--green-light) !important;
  box-shadow: 0 0 0 3px rgba(42, 157, 101, 0.2) !important;
  outline: none !important;
}

/* 10. Selection colour — brand-consistent */
::selection {
  background: rgba(42, 157, 101, 0.45);
  color: var(--ivory);
}

/* ========================================
   BEST-EVER PREMIUM LAYER
   Luxury polish · Motion · Glow
======================================== */

body {
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(26, 122, 80, 0.25), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(212, 175, 55, 0.06), transparent),
    radial-gradient(ellipse 50% 30% at 0% 80%, rgba(42, 157, 101, 0.08), transparent),
    var(--bg-dark);
}

/* Soft grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.header {
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(247, 242, 232, 0.06);
}

.header.scrolled {
  background: rgba(10, 28, 21, 0.92) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.logo img, .nav-logo img {
  filter: drop-shadow(0 0 12px rgba(42, 157, 101, 0.35));
  transition: transform 0.5s ease, filter 0.5s ease;
}
.logo:hover img, .nav-logo:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 18px rgba(212, 175, 55, 0.45));
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.hero h1, .hero .hero-title {
  letter-spacing: 0.02em;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, var(--ivory) 0%, var(--gold-light) 50%, var(--ivory) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerText 8s ease-in-out infinite;
}
@keyframes shimmerText {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--border-gold);
  background: rgba(212, 175, 55, 0.08);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  animation: fadeUp 1s ease both;
}

.btn, .btn-primary, .add-cart-btn {
  position: relative;
  overflow: hidden;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 24px rgba(26, 122, 80, 0.25);
}
.btn-primary::after, .add-cart-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-primary:hover::after, .add-cart-btn:hover::after {
  transform: translateX(100%);
}
.btn-primary:hover, .add-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(42, 157, 101, 0.4);
}

.collection-card, .product-card, .expert-card, .security-card, .partner-card {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.3s ease;
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(24, 53, 43, 0.9), rgba(17, 40, 32, 0.95));
  backdrop-filter: blur(8px);
}
.collection-card:hover, .product-card:hover, .expert-card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: var(--border-gold);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(212, 175, 55, 0.15),
    0 0 40px rgba(42, 157, 101, 0.12);
}

.product-card .product-img, .collection-card .collection-img {
  overflow: hidden;
}
.product-card img, .collection-card img {
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card:hover img, .collection-card:hover img {
  transform: scale(1.08);
}

.section-tag {
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
}
.section-title {
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.filter-btn {
  border-radius: 999px !important;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.filter-btn.active, .filter-btn:hover {
  background: linear-gradient(135deg, var(--green-light), var(--green-dark)) !important;
  border-color: transparent !important;
  color: var(--ivory) !important;
  box-shadow: 0 6px 20px rgba(26, 122, 80, 0.3);
}

.floating-enquire, .float-whatsapp {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(42, 157, 101, 0.4);
  animation: pulseRing 2.5s ease infinite;
}
@keyframes pulseRing {
  0%, 100% { box-shadow: 0 8px 28px rgba(0,0,0,0.4), 0 0 0 0 rgba(42, 157, 101, 0.35); }
  50% { box-shadow: 0 8px 28px rgba(0,0,0,0.4), 0 0 0 12px rgba(42, 157, 101, 0); }
}

.footer {
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  background: linear-gradient(180deg, var(--green-deep), #040f0c);
}

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

.hero-content > * {
  animation: fadeUp 0.9s ease both;
}
.hero-content > *:nth-child(2) { animation-delay: 0.12s; }
.hero-content > *:nth-child(3) { animation-delay: 0.24s; }
.hero-content > *:nth-child(4) { animation-delay: 0.36s; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--green), var(--green-dark));
  border-radius: 10px;
  border: 2px solid var(--bg-dark);
}

::selection {
  background: rgba(42, 157, 101, 0.4);
  color: var(--ivory);
}

/* ========================================
   BEST-EVER RESPONSIVE — ALL DEVICES
   Phone · Tablet · Laptop · Desktop · 4K
======================================== */

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

/* Touch-friendly targets (min ~44px) */
.btn, .filter-btn, .nav-link, .btn-icon,
.floating-enquire, .nav-toggle {
  min-height: 44px;
  min-width: 44px;
}

/* Safe area for notched phones */
body {
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
.header {
  padding-top: env(safe-area-inset-top);
}
.floating-enquire, .float-whatsapp {
  bottom: calc(24px + env(safe-area-inset-bottom));
  right: calc(20px + env(safe-area-inset-right));
}

/* ---- Large desktops / 4K ---- */
@media (min-width: 1400px) {
  .container { max-width: 1320px; }
  .hero h1, .hero .hero-title { font-size: clamp(2.8rem, 4vw, 4rem); }
  .section { padding: 120px 0; }
}

/* ---- Tablets landscape / small laptops ---- */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }
  .collections-grid,
  .products-grid,
  .experts-grid,
  .security-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px;
  }
  .partners-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .about-grid, .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }
}

/* ---- Tablets portrait / large phones ---- */
@media (max-width: 768px) {
  html { font-size: 15px; }
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 36px; text-align: center; }
  .section-title { font-size: 1.75rem; }
  .section-desc { font-size: 0.95rem; padding: 0 8px; }

  /* Mobile nav drawer enhancement */
  .nav {
    width: min(320px, 86vw) !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: rgba(10, 28, 21, 0.98) !important;
    backdrop-filter: blur(20px);
    padding: 88px 28px 40px !important;
    box-shadow: -12px 0 40px rgba(0,0,0,0.5);
    overflow-y: auto;
  }
  .nav.open {
    right: 0 !important;
  }
  .nav-toggle {
    display: flex !important;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 64px;
    text-align: center;
  }
  .hero h1, .hero .hero-title {
    font-size: clamp(1.75rem, 7vw, 2.4rem);
    line-height: 1.25;
  }
  .hero-badge {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    padding: 6px 14px;
  }
  .hero-btns, .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-btns .btn, .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .collections-grid,
  .products-grid,
  .experts-grid,
  .security-grid,
  .reels-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .partners-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }

  .filter-btns {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .filter-btns::-webkit-scrollbar { display: none; }
  .filter-btn {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 0.85rem;
    padding: 10px 16px;
  }

  .product-card, .collection-card {
    max-width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px;
    text-align: center;
  }

  .cart-drawer, .enquiry-modal-box, .checkout-modal {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 16px 16px 0 0 !important;
  }

  /* Lightbox full width on mobile */
  .lightbox-content, .lb-img {
    max-width: 96vw !important;
    max-height: 70vh !important;
  }

  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* ---- Small phones ---- */
@media (max-width: 480px) {
  html { font-size: 14px; }
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .header .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .logo img, .nav-logo img {
    max-height: 40px;
  }
  .hero {
    padding: 100px 0 48px;
  }
  .hero h1, .hero .hero-title {
    font-size: 1.55rem;
  }
  .section-title { font-size: 1.45rem; }
  .partners-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .floating-enquire {
    width: 52px;
    height: 52px;
    font-size: 1.25rem;
  }
  .btn {
    padding: 12px 18px;
    font-size: 0.9rem;
  }
}

/* ---- Very small / foldable ---- */
@media (max-width: 360px) {
  .hero h1, .hero .hero-title { font-size: 1.35rem; }
  .filter-btn { padding: 8px 12px; font-size: 0.8rem; }
}

/* ---- Landscape phones ---- */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 80px 0 40px;
  }
  .nav {
    padding-top: 64px !important;
  }
}

/* ---- Prefer reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---- Print ---- */
@media print {
  .header, .floating-enquire, .nav-toggle, .filter-btns { display: none !important; }
  body { background: #fff; color: #000; }
}


/* ===== Astrology Report $25 ===== */
.astrology {
  background: linear-gradient(180deg, rgba(13,74,53,0.25), transparent);
}
.astrology-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: start;
  margin-top: 32px;
}
@media (max-width: 900px) {
  .astrology-grid { grid-template-columns: 1fr; }
}
.astro-price-card {
  background: linear-gradient(160deg, rgba(24,53,43,0.95), rgba(10,28,21,0.98));
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.astro-badge {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light, #e8c96a);
  border: 1px solid rgba(212,175,55,0.4);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.astro-price {
  font-family: var(--font-heading, Cinzel, serif);
  font-size: 3rem;
  color: var(--ivory, #f7f2e8);
  line-height: 1.1;
}
.astro-price small {
  font-size: 1rem;
  color: var(--text-muted, #b8ad98);
  font-family: var(--font-body, inherit);
}
.astro-price-note { color: var(--text-muted); margin: 8px 0 20px; }
.astro-includes { list-style: none; padding: 0; margin: 0 0 20px; }
.astro-includes li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(247,242,232,0.06);
  color: var(--ivory-soft, #ebe4d4);
}
.astro-includes i { color: var(--green-light, #2a9d65); margin-right: 10px; }
.astro-disclaimer { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }
.astrology-form {
  background: var(--bg-card, #112820);
  border: 1px solid var(--border, rgba(247,242,232,0.11));
  border-radius: 20px;
  padding: 28px;
}
.astrology-form h3 { margin-bottom: 20px; font-family: var(--font-heading, Cinzel, serif); }
.astrology-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) {
  .astrology-form .form-row { grid-template-columns: 1fr; }
}
.astrology-form .form-group { margin-bottom: 14px; }
.astrology-form label { display: block; font-size: 0.85rem; margin-bottom: 6px; color: var(--text-muted); }
.astrology-form input,
.astrology-form select,
.astrology-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-dark, #0a1c15);
  color: var(--text, #f7f2e8);
  font: inherit;
}
.astro-total { margin: 12px 0 16px; font-size: 1.05rem; }
.astro-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.form-msg { margin-top: 14px; color: var(--gold-light, #e8c96a); }


.astro-core-elements {
  margin: 20px 0 16px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(42, 157, 101, 0.08);
  border: 1px solid rgba(42, 157, 101, 0.25);
}
.astro-core-elements h4 {
  font-family: var(--font-heading, Cinzel, serif);
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--gold-light, #e8c96a);
}
.astro-core-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}
.astro-core-list li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--ivory-soft, #ebe4d4);
  border-bottom: 1px solid rgba(247,242,232,0.06);
}
.astro-core-list li:last-child { border-bottom: none; }
.astro-core-note {
  font-size: 0.8rem;
  color: var(--text-muted, #b8ad98);
  margin: 0;
  line-height: 1.45;
}

/* Discounted Zone */
.discount-zone { background: linear-gradient(180deg, rgba(13,74,53,.35), transparent); }
.discount-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.discount-card {
  background: var(--card, rgba(255,255,255,.04));
  border: 1px solid rgba(212,175,55,.25);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.discount-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.35); }
.discount-media { position: relative; aspect-ratio: 1; background: #0a2e22; }
.discount-media img, .discount-media video {
  width: 100%; height: 100%; object-fit: cover;
}
.discount-badge {
  position: absolute; top: 12px; left: 12px;
  background: linear-gradient(135deg, #c9a227, #e8d48b);
  color: #0d2a1f; font-weight: 700; font-size: .75rem;
  padding: 4px 10px; border-radius: 999px;
}
.discount-body { padding: 1.1rem 1.25rem 1.35rem; }
.discount-body h3 { font-size: 1.1rem; margin: 0 0 .4rem; color: var(--ivory, #f5f0e6); }
.discount-body p { font-size: .9rem; color: var(--text-muted, #a8b5a8); margin: 0 0 .75rem; line-height: 1.45; }
.discount-prices { display: flex; align-items: baseline; gap: .6rem; flex-wrap: wrap; }
.discount-sale { font-size: 1.25rem; font-weight: 700; color: #7dcea0; }
.discount-orig { text-decoration: line-through; opacity: .6; font-size: .95rem; }
.discount-gallery {
  display: flex; gap: 6px; margin-top: .75rem; overflow-x: auto;
}
.discount-gallery img {
  width: 48px; height: 48px; object-fit: cover; border-radius: 8px; border: 1px solid rgba(255,255,255,.1);
}
