/* ========================================
   DENI JEWELLERS — Luxury Jewellery Website
   Custom CSS with Bootstrap 5
   ======================================== */

/* ==================== VARIABLES ==================== */
:root {
  --color-white: #FFFFFF;
  --color-gold: #D4AF37;
  --color-gold-light: #E8C94A;
  --color-gold-dark: #B8941F;
  --color-orange: #E8A75D;
  --color-orange-light: #F0C08A;
  --color-beige: #F8F5F0;
  --color-beige-dark: #EDE8E0;
  --color-dark: #222222;
  --color-dark-light: #444444;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

/* ==================== BASE ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background-color: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ==================== CUSTOM SCROLLBAR ==================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-beige);
}

::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold-dark);
}

/* ==================== UTILITY CLASSES ==================== */
.gold-text {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold {
  color: var(--color-gold) !important;
}

.bg-beige {
  background-color: var(--color-beige) !important;
}

.bg-white-custom {
  background-color: var(--color-white);
}

.gold-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light), var(--color-gold));
  margin: 0 auto;
  border-radius: 2px;
}

.section-padding {
  padding: 80px 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 120px 0;
  }
}

.section-subtitle {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-dark);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes taglineWordReveal {
  0% { opacity: 0; transform: translateY(12px); filter: blur(4px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

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

@keyframes revealImgScale {
  0% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

@keyframes goldPulse {
  0%, 100% { text-shadow: 0 0 0 rgba(212, 175, 55, 0); }
  50% { text-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }
}

.animate-on-load {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== PAGE SYSTEM ==================== */
.page-section {
  display: none;
}

.page-section.active {
  display: block;
}

.page-header-spacer {
  height: 100px;
}

/* ==================== NAVBAR ==================== */
#mainNav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.5s ease;
  padding: 0.8rem 0;
}

/* Transparent navbar on hero pages */
#mainNav.navbar-hero {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

#mainNav.navbar-hero .nav-link {
  color: rgba(255, 255, 255, 0.85);
}

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

#mainNav.navbar-hero .navbar-toggler-icon::before,
#mainNav.navbar-hero .navbar-toggler-icon::after,
#mainNav.navbar-hero .navbar-toggler-icon span {
  background: var(--color-white);
}

#mainNav.scrolled {
  background: rgba(78, 8, 8, 0.88);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow: 0 4px 30px rgba(243, 242, 239, 0.08);
  border-bottom: 1px solid rgba(253, 249, 235, 0.1);
}

#mainNav.navbar-hero.scrolled .nav-link {
  color: var(--color-white);
}

#mainNav.navbar-hero.scrolled .navbar-toggler-icon::before,
#mainNav.navbar-hero.scrolled .navbar-toggler-icon::after,
#mainNav.navbar-hero.scrolled .navbar-toggler-icon span {
  background: var(--color-white);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#mainNav.scrolled .nav-logo {
  height: 60px;
}

@media (max-width: 576px) {
  .nav-logo {
    height: 55px;
    width: auto;
  }
  #mainNav.scrolled .nav-logo {
    height: 45px;
  }
}

.navbar-brand:hover .nav-logo {
  transform: scale(1.05);
}

#mainNav.navbar-hero .nav-logo {
  filter: brightness(1.1);
}

.footer-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
}

/* All Navbar Links White */
.navbar .nav-link {
  color: #ffffff !important;
}

/* Hover & Active State */
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--color-gold) !important;
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.05em;
}

.navbar .nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-dark);
  padding: 0.5rem 0.2rem !important;
  position: relative;
  transition: color 0.3s ease;
}

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

.navbar .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-orange));
  border-radius: 2px;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: none;
  width: 24px;
  height: 24px;
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before { top: 4px; }
.navbar-toggler-icon span { top: 11px; }
.navbar-toggler-icon::after { top: 18px; }

/* Offcanvas mobile menu */
#mobileMenu {
  max-width: 300px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.nav-link-mobile {
  display: block;
  padding: 0.8rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-dark);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-link-mobile:hover,
.nav-link-mobile.active {
  color: var(--color-gold);
  background: rgba(212, 175, 55, 0.08);
}

/* ==================== HERO SECTION ==================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Hero Carousel */
.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-carousel .carousel-item {
  height: 100vh;
}

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

.hero-carousel .carousel-indicators {
  bottom: 40px;
  z-index: 5;
}

.hero-carousel .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.5);
  background: transparent;
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0 6px;
}

.hero-carousel .carousel-indicators .active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to right, rgba(34,34,34,0.55), rgba(34,34,34,0.30), rgba(34,34,34,0.05));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.hero-subtitle {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

@media (min-width: 576px) { .hero-title { font-size: 3.5rem; } }
@media (min-width: 768px) { .hero-title { font-size: 4rem; } }
@media (min-width: 992px) { .hero-title { font-size: 4.5rem; } }

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Hero floating circles */
.hero-float-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  animation: float 3s ease-in-out infinite;
  z-index: 4;
}

.hero-circle-1 {
  width: 120px;
  height: 120px;
  top: 150px;
  right: 50px;
}

.hero-circle-2 {
  width: 80px;
  height: 80px;
  bottom: 150px;
  right: 150px;
  animation-delay: 1s;
  border-color: rgba(232, 167, 93, 0.15);
}

/* ==================== BUTTONS ==================== */
.btn-luxury {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-white) !important;
  border: none;
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-luxury:hover::before {
  left: 100%;
}

.btn-luxury:hover {
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-light));
  box-shadow: 0 6px 25px rgba(232, 167, 93, 0.4);
  transform: translateY(-2px);
  color: var(--color-white) !important;
}

.btn-luxury-outline {
  background: transparent;
  color: var(--color-gold) !important;
  border: 2px solid var(--color-gold);
  border-radius: 50px;
  padding: 10px 30px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-luxury-outline:hover {
  background: var(--color-gold);
  color: var(--color-white) !important;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

.btn-hero-outline {
  border-color: rgba(255, 255, 255, 0.6) !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

.btn-hero-outline:hover {
  background: var(--color-white) !important;
  color: var(--color-dark) !important;
  border-color: var(--color-white) !important;
}

.btn-whatsapp {
  border-color: rgba(255,255,255,0.3) !important;
  color: rgba(255,255,255,0.9) !important;
}

.btn-whatsapp:hover {
  background: var(--color-white) !important;
  color: var(--color-dark) !important;
  border-color: var(--color-white) !important;
}

/* ==================== TAGLINE ==================== */
.section-tagline {
  padding: 4rem 0;
  background: var(--color-beige);
  position: relative;
  overflow: hidden;
}

.section-tagline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.06), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}

.tagline-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-dark);
  line-height: 1.6;
  font-style: italic;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .tagline-text { font-size: 2rem; }
}

@media (min-width: 992px) {
  .tagline-text { font-size: 2.3rem; }
}

/* Tagline Word Animation */
.tagline-animate .tagline-word {
  display: inline;
  opacity: 0;
  animation: taglineWordReveal 0.8s ease-out forwards;
}

.tagline-animate {
  animation: goldPulse 4s ease-in-out infinite;
}


/* ==================== METALS SHOWCASE ==================== */
.metals-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 1.2rem;
}

@media (min-width: 768px) {
  .metals-title { font-size: 2.5rem; }
}

.metals-text {
  font-size: 0.92rem;
  color: rgba(68, 68, 68, 0.8);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.metals-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.12);
  position: relative;
}

.metals-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  pointer-events: none;
}

.metals-img-wrap img {
  display: block;
  width: 100%;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.metals-img-wrap:hover img {
  transform: scale(1.03);
}

.reveal-img {
  overflow: hidden;
}

.reveal-img.visible img {
  animation: revealImgScale 1s ease-out forwards;
}

/* ==================== COLLECTION DESCRIPTION ==================== */
.collection-desc {
  font-size: 0.78rem;
  color: rgba(68, 68, 68, 0.6);
  line-height: 1.5;
  margin-top: 0.3rem;
  margin-bottom: 0;
}

/* ==================== WHY CHOOSE SECTION ==================== */
.why-choose-section {
  background: var(--color-beige);
  position: relative;
  overflow: hidden;
}

.why-choose-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(232, 167, 93, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Trust Badges */
.trust-badge {
  padding: 1.8rem 1.2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.4s ease;
  height: 100%;
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.12);
  transform: translateY(-4px);
}

.trust-badge-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(232, 167, 93, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
  color: var(--color-gold);
  transition: all 0.4s ease;
}

.trust-badge:hover .trust-badge-icon {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-white);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.trust-badge h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.trust-badge p {
  font-size: 0.82rem;
  color: rgba(68, 68, 68, 0.65);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ==================== VALUE CARDS (About Page) ==================== */
.value-card {
  padding: 2.5rem 1.5rem;
  border-radius: 16px;
  background: var(--color-beige);
  border: 1px solid var(--color-beige-dark);
  transition: all 0.5s ease;
  height: 100%;
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1);
  transform: translateY(-6px);
}

.value-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(232, 167, 93, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.8rem;
  color: var(--color-gold);
  transition: all 0.4s ease;
}

.value-card:hover .value-icon {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-white);
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.8rem;
}

.value-card p {
  font-size: 0.88rem;
  color: rgba(68, 68, 68, 0.7);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ==================== COLLECTION CARDS ==================== */
.collection-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  border: 1px solid var(--color-beige-dark);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collection-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.2);
}

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

.collection-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.collection-info {
  padding: 1rem;
  text-align: center;
}

.collection-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-dark);
  margin: 0;
}

/* ==================== PRODUCT CARDS ==================== */
.product-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  border: 1px solid var(--color-beige-dark);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
}

.product-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.product-info {
  padding: 1.2rem;
}

.product-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.product-info p {
  font-size: 0.85rem;
  color: rgba(68, 68, 68, 0.7);
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.view-details-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: letter-spacing 0.3s ease;
}

.product-card:hover .view-details-link {
  letter-spacing: 0.1em;
}

/* ==================== FEATURE CARDS ==================== */
.feature-card {
  padding: 2rem;
  border-radius: 16px;
  background: rgba(248, 245, 240, 0.5);
  border: 1px solid var(--color-beige-dark);
  transition: all 0.5s ease;
  height: 100%;
}

.feature-card:hover {
  background: var(--color-beige);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.08);
  transform: translateY(-5px);
}

.feature-img-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.2rem;
  border: 2px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
  transition: all 0.4s ease;
}

.feature-card:hover .feature-img-wrap {
  border-color: var(--color-gold);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.2);
  transform: scale(1.08);
}

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

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.8rem;
}

.feature-card p {
  font-size: 0.85rem;
  color: rgba(68, 68, 68, 0.7);
  line-height: 1.7;
}

/* ==================== TESTIMONIALS ==================== */
.testimonial-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.12);
}

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

.stars i {
  margin-right: 2px;
}

.testimonial-text {
  font-size: 0.9rem;
  color: rgba(68, 68, 68, 0.8);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author .name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0;
}

.testimonial-author .location {
  font-size: 0.8rem;
  color: rgba(68, 68, 68, 0.6);
  margin-bottom: 0;
}

/* ==================== CTA SECTION ==================== */
.section-cta {
  padding: 100px 0;
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.cta-glow-1 {
  width: 400px;
  height: 400px;
  background: var(--color-gold);
  top: -100px;
  left: 25%;
  filter: blur(100px);
}

.cta-glow-2 {
  width: 250px;
  height: 250px;
  background: var(--color-orange);
  bottom: -50px;
  right: 25%;
  filter: blur(80px);
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .cta-title { font-size: 3.2rem; }
}

.cta-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* ==================== FOOTER ==================== */
.site-footer {
  background: var(--color-beige);
  border-top: 1px solid var(--color-beige-dark);
  margin-top: auto;
}

.footer-text {
  font-size: 0.85rem;
  color: rgba(68, 68, 68, 0.7);
  line-height: 1.7;
}

.footer-heading {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-dark);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  font-size: 0.85rem;
  color: rgba(68, 68, 68, 0.7);
  transition: color 0.3s ease;
}

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

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  font-size: 0.85rem;
  color: rgba(68, 68, 68, 0.7);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
  gap: 0.3rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1rem;
  transition: all 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid var(--color-beige-dark);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(68, 68, 68, 0.5);
}

/* ==================== COLLECTIONS PAGE ==================== */
.btn-filter {
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--color-beige);
  color: var(--color-dark-light);
  border: none;
  transition: all 0.3s ease;
}

.btn-filter:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--color-gold);
}

.btn-filter.active {
  background: var(--color-gold);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.product-card .product-category-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.3rem;
}

/* ==================== PRODUCT DETAILS ==================== */
.btn-back {
  background: none;
  border: none;
  font-size: 0.9rem;
  color: rgba(68, 68, 68, 0.7);
  cursor: pointer;
  padding: 0;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
}

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

.product-gallery-main {
  background: var(--color-beige);
}

.thumbnail-btn {
  width: 100%;
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  background: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.thumbnail-btn.active {
  border-color: var(--color-gold);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.thumbnail-btn:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.product-category-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.product-detail-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .product-detail-title { font-size: 2.8rem; }
}

.product-detail-description {
  font-size: 0.95rem;
  color: rgba(68, 68, 68, 0.8);
  line-height: 1.8;
}

.product-specs {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--color-beige);
  border-radius: 12px;
}

.spec-diamond {
  color: var(--color-gold);
  font-size: 1.2rem;
  line-height: 1;
}

.spec-label {
  font-size: 0.7rem;
  color: rgba(68, 68, 68, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.2rem;
}

.spec-value {
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 0;
}

/* ==================== ABOUT PAGE ==================== */
.about-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 1.2rem;
}

@media (min-width: 768px) {
  .about-title { font-size: 2.5rem; }
}

.about-text {
  font-size: 0.92rem;
  color: rgba(68, 68, 68, 0.8);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-img-wrap {
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.1);
}

.about-img-wrap img {
  display: block;
}

.stats-section {
  background: var(--color-beige);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

@media (min-width: 768px) {
  .stat-number { font-size: 3rem; }
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(68, 68, 68, 0.6);
}

/* ==================== CONTACT PAGE ==================== */
.contact-heading {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-dark);
}

.contact-text {
  font-size: 0.92rem;
  color: rgba(68, 68, 68, 0.8);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

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

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

.contact-label {
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 0.1rem;
}

.contact-value {
  font-size: 0.9rem;
  color: rgba(68, 68, 68, 0.7);
  margin-bottom: 0;
}

.contact-form-wrap {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 16px;
  padding: 2rem;
}

.luxury-input {
  border: 1px solid var(--color-beige-dark);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  background: var(--color-white);
}

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

.luxury-input::placeholder {
  color: rgba(68, 68, 68, 0.4);
}

.form-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 0.4rem;
}

.map-wrap {
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.05);
  border: 1px solid var(--color-beige-dark);
}

.map-wrap iframe {
  display: block;
}

/* ==================== RESPONSIVE TWEAKS ==================== */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-padding {
    padding: 60px 0;
  }

  .section-cta {
    padding: 60px 0;
  }

  .cta-title {
    font-size: 2rem;
  }

  .product-detail-title {
    font-size: 1.8rem;
  }

  .collection-info h3 {
    font-size: 0.9rem;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-title {
    font-size: 3rem;
  }
}

/* Page transition */
.page-section {
  animation: fadeIn 0.4s ease-out;
}

/* Product card in collections grid */
.collections-product-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  border: 1px solid var(--color-beige-dark);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
}

.collections-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
}

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

.collections-product-card .product-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.collections-product-card .product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collections-product-card .product-info {
  padding: 1.2rem;
}

.collections-product-card .product-category-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.3rem;
}

.collections-product-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.collections-product-card p {
  font-size: 0.85rem;
  color: rgba(68, 68, 68, 0.7);
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.collections-product-card .view-details-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ==================== FLOATING WHATSAPP BUTTON ==================== */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.floating-whatsapp:hover {
  animation: none;
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.floating-whatsapp .whatsapp-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-dark);
  color: var(--color-white);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  font-family: var(--font-body);
}

.floating-whatsapp .whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent var(--color-dark);
}

.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
}

/* Pulse animation for WhatsApp button */
@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.floating-whatsapp {
  animation: whatsappPulse 2s infinite;
}

@media (max-width: 575.98px) {
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
    font-size: 1.5rem;
  }
  .floating-whatsapp .whatsapp-tooltip {
    display: none;
  }
}

/* ==================== BLOG PAGES ==================== */
.blog-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  border: 1px solid var(--color-beige-dark);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
}

.blog-card-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card:hover .blog-card-img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.blog-card-excerpt {
  font-size: 0.9rem;
  color: rgba(68, 68, 68, 0.7);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--color-beige-dark);
}

.blog-card-date {
  font-size: 0.8rem;
  color: rgba(68, 68, 68, 0.5);
}

.blog-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: letter-spacing 0.3s ease;
}

.blog-card:hover .blog-card-link {
  letter-spacing: 0.1em;
}

/* Blog Article Page */
.blog-article-header {
  padding-top: 120px;
  padding-bottom: 40px;
  background: var(--color-beige);
  position: relative;
  overflow: hidden;
}

.blog-article-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.06), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}

.blog-article-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.8rem;
  display: inline-block;
}

.blog-article-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .blog-article-title {
    font-size: 3rem;
  }
}

.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(68, 68, 68, 0.6);
}

.blog-article-meta i {
  color: var(--color-gold);
  margin-right: 0.3rem;
}

.blog-article-featured-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.1);
}

.blog-article-featured-img img {
  display: block;
  width: 100%;
}

.blog-article-content {
  padding: 60px 0;
}

.blog-article-content h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .blog-article-content h2 {
    font-size: 2rem;
  }
}

.blog-article-content h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.blog-article-content p {
  font-size: 1rem;
  color: rgba(68, 68, 68, 0.85);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.blog-article-content ul {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
}

.blog-article-content ul li {
  font-size: 1rem;
  color: rgba(68, 68, 68, 0.85);
  line-height: 1.9;
  margin-bottom: 0.5rem;
}

.blog-article-content blockquote {
  border-left: 4px solid var(--color-gold);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: var(--color-beige);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(68, 68, 68, 0.8);
}

.blog-article-content .comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-beige-dark);
  margin: 2rem 0;
}

.blog-article-content .comparison-table th {
  background: var(--color-gold);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 1rem 1.2rem;
  text-align: left;
  letter-spacing: 0.05em;
}

.blog-article-content .comparison-table td {
  padding: 0.9rem 1.2rem;
  font-size: 0.9rem;
  color: rgba(68, 68, 68, 0.85);
  border-bottom: 1px solid var(--color-beige-dark);
  background: var(--color-white);
}

.blog-article-content .comparison-table tr:last-child td {
  border-bottom: none;
}

.blog-article-content .comparison-table tr:hover td {
  background: var(--color-beige);
}

.blog-cta-box {
  background: var(--color-beige);
  border: 1px solid var(--color-beige-dark);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
}

.blog-cta-box h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.8rem;
}

.blog-cta-box p {
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}
