/* ---- VARIABLES ---- */
:root {
  --color-primary: #5c181a;
  --color-primary-dark: #360a0c;
  --color-gold: #dcb360;
  --color-gold-light: #foebce;
  --color-text-light: #f5f0eb;
  --color-text-dark: #222;

  --font-display: 'Cinzel', serif;
  --font-body: 'Montserrat', sans-serif;
  --font-italic: 'Playfair Display', serif;

  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; 
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 65px !important;
  }
}

body {
  font-family: var(--font-body);
  background-color: var(--color-primary-dark);
  color: var(--color-text-light);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Vintage Texture Overlay */
.bg-texture {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('../images/bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
  mix-blend-mode: overlay;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 0%, rgba(30, 3, 5, 0.7) 100%);
  pointer-events: none;
  z-index: -1;
}

/* ---- NAVBAR ---- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4rem;
  padding-right: 10rem; /* Give room for the fixed cart button */
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 4, 6, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(220, 179, 96, 0.1);
}

@media (min-width: 1025px) {
  .nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 101;
  flex-direction: column;
  gap: 5px;
  width: 40px;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-text-light);
  transition: var(--transition-smooth);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--color-gold);
}

.nav-brand:hover .nav-brand-text {
  color: var(--color-gold-light);
}

.nav-logo {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-brand:hover .nav-logo {
  transform: scale(1.15) rotate(5deg);
}

.nav-brand-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-text-light);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  transition: var(--transition-smooth);
}

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

.nav-links a:hover::after {
  width: 100%;
}

/* Base Media Queries moved to bottom */

.icon-btn {
  background: none;
  border: none;
  color: var(--color-text-light);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-btn:hover {
  color: var(--color-gold);
  transform: scale(1.1);
}

/* ---- HERO SECTION ---- */
.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  z-index: 5;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-illustration {
  width: 650px;
  max-width: 95vw;
  object-fit: contain;
  margin-bottom: 0;
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.5));
  transition: transform 0.15s ease-out;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 500;
  line-height: 1;
  color: var(--color-gold);
  letter-spacing: 0.08em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.8rem);
  letter-spacing: 0.2em;
  color: var(--color-text-light);
  margin-top: 0.5rem;
  font-weight: 300;
  text-transform: uppercase;
}

/* ---- CTA BAR ---- */
.cta-bar {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-align: center;
  padding: 1rem 3rem;
  width: fit-content;
  min-width: 320px;
  max-width: 90vw;
  margin: -3rem auto 5rem;
  position: relative;
  z-index: 20;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 2px 10px rgba(255, 255, 255, 0.2);
  transition: var(--transition-smooth);
  animation: float-bubble 4s ease-in-out infinite;
}

@keyframes float-bubble {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.cta-bar:hover {
  background: rgba(255, 255, 255, 0.2);
  animation-play-state: paused;
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6), inset 0 2px 15px rgba(255, 255, 255, 0.3);
}

.cta-link {
  font-family: var(--font-body);
  color: var(--color-text-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
}

/* ---- BUNDLES SECTION ---- */
.bundles {
  background: linear-gradient(to bottom, #501316 0%, #3b0d10 100%);
  padding: 6rem 2rem 8rem;
  position: relative;
  z-index: 5;
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  font-weight: 400;
}

.section-description {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 4rem;
  color: rgba(255, 255, 255, 0.9);
  font-style: normal;
  font-weight: 300;
}

.section-description em {
  font-weight: 600;
  font-style: italic;
  font-family: var(--font-display);
}

.product-showcase {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}

.product-image-wrapper {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  background-color: var(--color-primary-dark);
}

.product-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.product-card:hover .product-image-wrapper {
  box-shadow: 0 15px 50px rgba(220, 179, 96, 0.3);
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.product-label {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-text-light);
  margin-top: 1rem;
}

/* ---- FOOTER ---- */
.footer {
  padding: 3rem 2rem;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 5;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-text-light);
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background-color: var(--color-gold);
  color: var(--color-primary-dark);
  transform: translateY(-3px);
}

/* Responsive */
/* Responsive moved to bottom */

/* ---- ORDER NOW SECTION ---- */
.order-now {
  background-color: #1a0506;
  padding-bottom: 8rem;
}

.order-now-title-box {
  background: linear-gradient(rgba(92, 24, 26, 0.8), rgba(54, 10, 12, 0.9)), url('../images/bg.png');
  background-size: cover;
  background-position: center;
  padding: 4rem 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(220, 179, 96, 0.2);
}

.order-now-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 4.5rem);
  letter-spacing: 0.1em;
  color: #f0ebce;
  text-transform: uppercase;
  font-weight: 500;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

@media (max-width: 480px) {
  .order-now-title-box {
    padding: 3rem 1rem;
  }
}

.brand-banner {
  background-color: #fff;
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.brand-banner::before,
.brand-banner::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.brand-banner::before {
  top: 0;
}

.brand-banner::after {
  bottom: 0;
}

.ornate-logo-wrapper {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sun-frame {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('../images/lambang.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.banner-logo-text {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: #3b0d10;
  font-weight: 600;
  letter-spacing: 0.1em;
  z-index: 2;
  background: #fff;
  padding: 0 1rem;
}

/* Horizontal Product Cards */
.products-container {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Reduced Desktop "Zoom" Effect */
@media (min-width: 1025px) {
  .products-container {
    max-width: 980px; /* Narrower container for better proportions */
  }
}

.product-detail-card {
  display: flex;
  background: rgba(92, 24, 26, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(220, 179, 96, 0.3);
  border-radius: 20px;
  margin: 1.5rem 3rem 5rem;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
}

.product-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(220, 179, 96, 0.3);
  border-color: var(--color-gold);
  background: rgba(92, 24, 26, 0.5);
}

.product-visual {
  flex: 1;
  min-width: 320px;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.4s ease;
}

.product-detail-card:hover .product-visual,
.product-detail-card:active .product-visual {
  box-shadow: 0 0 40px rgba(220, 179, 96, 0.3);
}

.product-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(26, 5, 6, 0.6));
  pointer-events: none;
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s ease, opacity 0.3s ease;
}

.product-detail-card:hover .product-visual img {
  transform: scale(1.08);
}

.product-info-box {
  flex: 1.3;
  padding: 2.5rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

@media (min-width: 1025px) {
  .product-detail-card {
    margin: 1.5rem 4.5rem 5rem; /* Increased side margins */
  }
  
  .product-info-box {
    padding: 2rem 3rem; /* Reduced internal padding */
    gap: 1.2rem;
  }
  
  .product-card-title {
    font-size: 1.3rem; /* Slightly smaller title */
  }
}

.product-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid rgba(220, 179, 96, 0.2);
  padding-bottom: 0.8rem;
  margin-bottom: 0.5rem;
}

.product-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #f0ebce;
  letter-spacing: 0.1em;
}

.product-card-price {
  font-family: var(--font-italic);
  font-size: 1.25rem;
  color: var(--color-gold);
  font-style: italic;
  font-weight: 500;
  transition: opacity 0.2s ease-in-out;
}

.product-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
}

.fragrance-notes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.note-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.note-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-gold);
  letter-spacing: 0.1em;
}

.note-content {
  font-size: 0.9rem;
  color: var(--color-text-light);
  font-weight: 300;
}

.product-size {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
}

.size-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-right: 1.5rem;
}

/* Custom Size Toggle Switch */
.size-toggle-container {
  display: flex;
  align-items: center;
  background: rgba(20, 4, 6, 0.5);
  border: 1px solid rgba(220, 179, 96, 0.3);
  border-radius: 30px;
  position: relative;
  width: 140px; 
  height: 32px;
  overflow: hidden;
}

.size-option {
  flex: 1;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--color-text-light);
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
  line-height: 32px;
  user-select: none;
}

.size-option.active {
  color: #1a0506;
  font-weight: bold;
}

.size-slider {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  background: var(--color-gold);
  border-radius: 30px;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Product Detail Mobile moved to bottom */

/* ---- ABOUT US SPECIFIC STYLES ---- */
.about-hero {
  height: 30vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: linear-gradient(rgba(92, 24, 26, 0.7), rgba(54, 10, 12, 0.85)), url('../images/bg.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.about-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 0.2em;
  color: #fff;
  z-index: 2;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: fade-in-up 1s ease-out;
}

.about-subtitle-bar {
  background: transparent;
  padding: 2rem 2rem;
  text-align: center;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.about-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 3rem);
  color: #f5f0eb;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #1a0506;
  width: 85%;
  max-width: 900px;
  padding: 4rem 2rem;
  border-radius: 80px;
  border: 1px solid rgba(220, 179, 96, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 2px 10px rgba(255, 255, 255, 0.03);
  margin: 0 auto;
  transition: var(--transition-smooth), border-color 0.4s ease, box-shadow 0.4s ease;
  cursor: default;
}

.about-subtitle:hover {
  transform: scale(1.03) translateY(-5px) !important;
  border-color: var(--color-gold);
  box-shadow: 0 30px 80px rgba(220, 179, 96, 0.2), 0 0 20px rgba(220, 179, 96, 0.1);
  animation-play-state: paused;
}

/* Subtitle responsive moved to bottom */

/* Scroll Reveal / Pop-up Animation - Assertive (Tegas) */
/* Scroll Reveal - Robust Logic */
.reveal-on-scroll {
  opacity: 1; /* Default visible to avoid blank pages */
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: opacity, transform, filter;
}

body.js-enabled .reveal-on-scroll:not(.is-visible) {
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  filter: blur(8px);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  animation: float-bubble 5s ease-in-out infinite 0.8s;
}

.about-logo-banner {
  background-color: #fdfdfd;
  padding: 6rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.ornate-frame {
  position: relative;
  width: 450px;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.frame-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.9;
}

.banner-brand-text {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: #3b0d10;
  font-weight: 700;
  letter-spacing: 0.15em;
  z-index: 2;
  background: #fff;
  padding: 0.5rem 2rem;
}

.about-story {
  background-color: #5c181a;
  padding: 8rem 2rem;
  color: #f5f0eb;
}

/* Story responsive moved to bottom */

.story-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  text-align: center;
}

.story-text {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* Story text responsive moved to bottom */

.story-text strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-gold);
}

.our-scent {
  background-color: #1a0506;
  padding: 8rem 2rem;
  text-align: center;
}

.scent-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start; /* Ensure all cards start at the same top line */
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: 4rem auto 0;
}

.scent-card {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  transition: var(--transition-smooth);
  text-decoration: none;
  color: inherit;
}

/* Scent grid responsive moved to bottom */

.scent-img-wrapper {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 1px solid rgba(220, 179, 96, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.scent-img-wrapper img {
  display: block; /* Remove baseline spacing */
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.scent-card:hover .scent-img-wrapper,
.scent-card:active .scent-img-wrapper {
  transform: translateY(-5px);
  border-color: var(--color-gold);
  box-shadow: 0 15px 50px rgba(220, 179, 96, 0.3);
}

.scent-card:hover .scent-img-wrapper img {
  transform: scale(1.1);
}

.scent-label {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin: 0; /* Clear default paragraph margin for perfect alignment */
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- PRODUCT RATING STYLES ---- */
.product-rating {
  display: flex;
  align-items: center;
  gap: 1rem; /* Slightly tighter gap */
  margin: 0.8rem 0;
}

.rating-stars {
  color: var(--color-gold);
  letter-spacing: 2px;
  font-size: 1rem; /* Slightly smaller stars */
}

.view-reviews-link {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--color-gold);
  text-decoration: none;
  background: rgba(220, 179, 96, 0.1);
  padding: 6px 16px;
  border: 1px solid rgba(220, 179, 96, 0.4);
  border-radius: 100px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.view-reviews-link:hover {
  background: var(--color-gold);
  color: #1a0506;
  box-shadow: 0 0 15px rgba(220, 179, 96, 0.3);
}

/* ---- TESTIMONIAL FILTER STYLES ---- */
.testimonial-selector {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3rem;
  margin-bottom: 4rem;
}

.filter-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--color-gold);
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  opacity: 0.8;
}

.filter-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(220, 179, 96, 0.15);
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.filter-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 0.5rem 1.2rem;
  cursor: pointer;
  border-radius: 100px;
  transition: var(--transition-smooth);
  text-transform: uppercase;
}

.filter-btn:hover {
  color: var(--color-gold);
  background: rgba(220, 179, 96, 0.05);
}

.filter-btn.active {
  color: #1a0506;
  background: var(--color-gold);
  box-shadow: 0 4px 15px rgba(220, 179, 96, 0.4);
}

/* Testimonial Card Updates */
.testimonial-card {
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-card.hidden {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
  display: none;
}

.product-badge {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  background: rgba(220, 179, 96, 0.1);
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 0.55rem;
  padding: 0.25rem 0.7rem;
  border: 1px solid rgba(220, 179, 96, 0.2);
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .filter-group {
    padding: 0.5rem 1rem;
    gap: 0.5rem;
    border-radius: 20px;
  }
  
  .filter-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.65rem;
  }
}

/* Ornate frame responsive moved to bottom */

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonial-section {
  padding: 8rem 2rem;
  background-color: var(--color-primary-dark);
  text-align: center;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.testimonial-card {
  background: rgba(20, 4, 6, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(220, 179, 96, 0.15);
  border-radius: 12px;
  padding: 3.5rem 1.75rem 2.5rem;
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: rgba(220, 179, 96, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 0.4rem;
  display: block;
  text-align: center;
}

.testimonial-text {
  font-family: var(--font-italic);
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  flex-grow: 1;
}

.testimonial-author {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--color-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: auto;
}

/* ==========================================================================
   CONSOLIDATED MOBILE OVERRIDES (DEFINITIVE)
   ========================================================================== */

@media (max-width: 768px) {
  /* Navbar Layout - Absolute Ends */
  .navbar {
    padding: 0.6rem 1.2rem !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  
  .nav-brand {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
  }

  .nav-toggle {
    display: flex !important;
    margin: 0 !important;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100% !important;
    background: rgba(20, 4, 6, 0.98) !important;
    flex-direction: column !important;
    padding: 2rem 1.5rem !important;
    gap: 1.5rem !important;
    border-bottom: 1px solid rgba(220, 179, 96, 0.2);
    text-align: center;
    z-index: 1000;
    
    /* Reveal Animation Logic */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex !important;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
  }

  .nav-links li {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
  .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
  .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }

  /* Force Global Reset for Mobile */
  html, body { overflow-x: hidden !important; width: 100% !important; }
  * { box-sizing: border-box !important; }

  /* Product Cards - Ultimate Compactness */
  .product-detail-card {
    flex-direction: column !important;
    margin: 1rem 0.5rem 2.5rem !important;
    border-radius: 12px !important;
    width: auto !important;
  }

  .product-visual {
    width: 100% !important;
    height: 180px !important;
    overflow: hidden !important;
    aspect-ratio: unset !important;
  }

  .product-visual img {
    height: 180px !important;
    width: 100% !important;
    object-fit: cover !important;
  }

  .product-info-box {
    padding: 0.8rem 1rem 1.25rem !important;
    justify-content: flex-start !important;
    gap: 0.5rem !important;
  }

  .product-card-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-bottom: 0.2rem !important;
    margin-bottom: 0 !important;
  }

  .product-card-title { font-size: 1rem !important; margin: 0 !important; }
  .product-card-price { font-size: 0.95rem !important; color: var(--color-gold); margin: 0 !important; }
  .product-description { font-size: 0.75rem !important; line-height: 1.4; opacity: 0.85; margin-top: 0.2rem !important; }

  /* About & Scent Grid Fix */
  .scent-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 12px !important;
    padding: 0 10px !important;
  }

  .scent-card {
    flex: 0 0 calc(50% - 6px) !important;
    width: calc(50% - 6px) !important;
    min-width: 0 !important;
    max-width: 50% !important;
  }

  .scent-img-wrapper { aspect-ratio: 1/1 !important; width: 100% !important; }
  .scent-label { font-size: 0.55rem !important; text-align: center; }

  .about-hero { height: 25vh !important; }
  .about-hero-title { font-size: 2.2rem !important; letter-spacing: 0.1em !important; }
  .about-subtitle-bar { padding: 0.8rem 1rem !important; }

  .about-subtitle { 
    width: 92% !important; 
    padding: 2.5rem 1.5rem !important; 
    font-size: 1.1rem !important;
    border-radius: 30px !important;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.5rem !important; }
  .story-text { font-size: 0.85rem !important; line-height: 1.7 !important; }
  .product-showcase { flex-direction: column !important; }
}