:root {
  --accent: #50C878;      /* Emerald Green for Healing */
  --accent-vibrant: #77DD77; /* Vibrant Healing Green */
  --accent-muted: #355E3B;   /* Deep Forest Green */
  --gold: var(--accent); /* Legacy support for existing classes */
  --black: #000000;
  --black-2: #0A0A0A;
  --black-3: #121212;
  --white: #FFFFFF;
  --muted: #B0B0B0; /* Brighter gray for better contrast on black */
  --z-index-mask: 9999;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
  font-family: 'Playfair Display', serif;
}

/* Custom Navigation */
/* .custom-nav {
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(80, 200, 120, 0.1);
  padding: 1.2rem 0;
  transition: all 0.3s ease;
} */ 
.custom-nav {
  background: linear-gradient(
    rgba(10, 10, 10, 0.28) 100%
  );
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  border-bottom: 1px solid rgba(80, 200, 120, 0.25);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 8px 32px rgba(0, 0, 0, 0.35);
}

.navbar-brand {
  letter-spacing: 4px;
  color: var(--white) !important;
  font-size: 1.5rem;
}

.nav-link {
  color: var(--muted) !important;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

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

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

.btn-gold, .btn-pink {
  background-color: var(--accent);
  color: var(--black);
  border: none;
  font-weight: 600;
  padding: 0.75rem 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
  transition: all 0.3s ease;
}

.btn-gold:hover, .btn-pink:hover {
  background-color: var(--accent-vibrant);
  transform: translateY(-2px);
}

.btn-outline-gold, .btn-outline-pink {
  border: 1px solid var(--accent);
  color: var(--accent);
  background-color: transparent;
  padding: 0.75rem 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
}

.btn-outline-gold:hover, .btn-outline-pink:hover {
  background-color: var(--accent);
  color: var(--black);
}

/* Hero Section */
/* Hero Slider & Sacred Backgrounds */
.hero-slider-container {
    /* background-color: #000; */
    min-height: 80vh;
}

.hero-slider-item {
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Animation Utilities */
@keyframes sacred-pulse-float {
    0%, 100% { transform: translate(0, -50%) scale(1); opacity: 0.25; }
    50% { transform: translate(-15px, -52%) scale(1.05); opacity: 0.45; }
}

.carousel-fade .carousel-item {
    transition-duration: 2s;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.9) 100%); */
  z-index: 5;
}

.hero-content {
  position: relative;
  z-index: 20;
  max-width: 800px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  font-weight: 700 !important;
}

.hero-content p.lead {
  font-weight: 400;
  color: #ffffff !important;
  max-width: 600px;
  /* background: rgba(0,0,0,0.5); */
  /* backdrop-filter: blur(10px); */
  padding: 15px 25px;
  border-radius: 8px;
  border-left: 4px solid var(--accent);
}

.hero-content h6 {
    background: rgba(80, 200, 120, 0.15);
    color: var(--accent) !important;
    display: inline-block;
    padding: 6px 18px;
    border-radius: 4px;
    margin-bottom: 1.2rem !important;
    font-weight: 600;
}

/* Product Cards */
.product-card {
  /* background-color: var(--black-2); */
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
  height: 100%;
}

.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(80, 200, 120, 0.15);
  background-color: var(--black-3);
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 12/8; /* Standardized 'Natural Artisan' 3:2 Ratio */
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--accent);
  color: var(--black);
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Limited Edition — distinct gold/dark treatment so it reads as exclusive */
.product-badge.badge-limited {
  background: linear-gradient(135deg, #d4af37, #f6e27a);
  color: #1a1a1a;
  z-index: 2;
}

.limited-edition-banner {
  border: 1px solid rgba(212, 175, 55, 0.6);
  background: rgba(212, 175, 55, 0.08);
  color: #d4af37;
  padding: 8px 16px;
  border-radius: 2px;
}

/* Category Cards */
.category-card {
  position: relative;
  height: 450px;
  overflow: hidden;
  cursor: pointer;
}

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

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

.category-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

/* Forms */
.custom-input input, .custom-input select, .custom-input textarea {
  background-color: var(--black-2) !important;
  border: 1px solid rgba(80, 200, 120, 0.25);
  color: var(--white) !important;
  border-radius: 0;
  padding: 0.8rem 1.2rem;
}

.custom-input input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.15rem rgba(80, 200, 120, 0.1);
}

/* Utils */
.ls-2 { letter-spacing: 2px; }
.ls-4 { letter-spacing: 4px; }
.text-gold { color: var(--accent); }
.text-pink { color: var(--accent); }
.bg-gold { background-color: var(--accent) !important; }
/* Order tracking stepper + timeline */
.track-steps { position: relative; gap: 8px; }
.track-step { flex: 1; text-align: center; position: relative; z-index: 2; }
.track-step:not(:last-child)::after {
    content: ''; position: absolute; top: 21px; left: 50%; width: 100%; height: 2px;
    background: rgba(255, 255, 255, 0.1); z-index: -1;
}
.track-step.line-done:not(:last-child)::after { background: var(--accent); }
.track-step-icon {
    width: 44px; height: 44px; border-radius: 50%; margin: 0 auto;
    border: 2px solid rgba(255, 255, 255, 0.15); 
    /* background: var(--black-2); */
    display: flex; align-items: center; justify-content: center; color: #777; font-weight: 700;
    transition: all .3s ease;
}
.track-step.done .track-step-icon { border-color: var(--accent); background: var(--accent); color: #000; }
.track-step-label { margin-top: 10px; font-size: .72rem; text-transform: uppercase; letter-spacing: 1px; color: #888; }
.track-step.done .track-step-label { color: var(--accent); }
.track-timeline { position: relative; padding-left: 1.5rem; }
.track-timeline-item { position: relative; padding: 0 0 1.25rem 0; border-left: 2px solid rgba(80,200,120,0.15); padding-left: 1.25rem; margin-left: 4px; }
.track-timeline-item:last-child { border-left-color: transparent; padding-bottom: 0; }
.track-timeline-item::before {
    content: ''; position: absolute; left: -7px; top: 4px; width: 12px; height: 12px;
    border-radius: 50%; background: var(--accent);
}
/* Product-detail utility helpers (used by product.php markup) */
.bg-black-3 { background-color: var(--black-3); }
.border-white-05 { border-color: rgba(255, 255, 255, 0.05) !important; }
.border-accent-faded { border-color: rgba(80, 200, 120, 0.25) !important; }
.text-accent { color: var(--accent) !important; }
.leading-loose { line-height: 2; }
.material-circle {
    width: 28px; height: 28px; border-radius: 50%; cursor: pointer;
    border: 2px solid transparent; transition: all 0.3s ease;
}
.material-circle.active { border-color: #fff; box-shadow: 0 0 10px rgba(80, 200, 120, 0.4); }
.shadow-gold { box-shadow: 0 10px 30px rgba(80, 200, 120, 0.15); }
/* Account sidebar nav-pills — on-theme instead of default Bootstrap blue */
#accountTab .nav-link {
    color: #cccccc;
    border-radius: 0;
    border-left: 2px solid transparent;
    transition: all .25s ease;
}
#accountTab .nav-link:hover { color: var(--accent); }
#accountTab .nav-link.active {
    background-color: transparent;
    color: var(--accent);
    border-left-color: var(--accent);
}
/* Legal / custom-page content (admin-authored HTML) on the dark layout */
.legal-content h1, .legal-content h2, .legal-content h3,
.legal-content h4, .legal-content h5, .legal-content h6 {
    color: #ffffff;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.legal-content p, .legal-content li { font-size: 0.9rem; line-height: 1.8; margin-bottom: 1rem; }
.legal-content a { color: var(--accent); }
.legal-content img { max-width: 100%; height: auto; }
/* Dark accordion (FAQ) — accent chevron visible on dark bg, no default blue active state */
.accordion-dark {
    --bs-accordion-bg: transparent;
    --bs-accordion-color: #fff;
    --bs-accordion-border-color: transparent;
    --bs-accordion-btn-color: #fff;
    --bs-accordion-active-bg: transparent;
    --bs-accordion-active-color: var(--accent);
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2350C878'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2350C878'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-dark .accordion-button:not(.collapsed) {
    color: var(--accent);
    box-shadow: none;
}
.social-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1;
    text-decoration: none;
    transition: all .3s ease;
    flex: 0 0 auto;
}
.social-circle:hover {
    background-color: var(--accent);
    color: #000;
}
.border-gold-faded { border-color: rgba(80, 200, 120, 0.1) !important; }
.smallest { font-size: 0.75rem; }
.bg-black-2 {
        background: linear-gradient(25deg, rgb(29, 28, 28), transparent);
    /* background-color: var(--black-2);  */
}
.max-w-600 { max-width: 600px; }
.shadow-text { text-shadow: 2px 2px 10px rgba(0,0,0,0.8); }

/* Custom Badge */
.cart-badge-count {
  font-size: 0.65rem;
  padding: 0.35em 0.65em;
  border-radius: 50%;
}

/* Animations */
@keyframes sacred-float {
  0%, 100% { transform: scale(1); opacity: 0.95; }
  50% { transform: scale(1.05); opacity: 1; }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(80, 200, 120, 0.2); }
  50% { box-shadow: 0 0 25px rgba(80, 200, 120, 0.5); }
}

.pulse-glow {
  animation: pulse-glow 3s infinite ease-in-out;
}

.highlight-link {
  position: relative;
  overflow: hidden;
}

.highlight-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent);
  transition: width 0.4s ease;
}

.highlight-link:hover::after {
  width: 100%;
}

#page-reveal-mask {
    z-index: var(--z-index-mask);
    pointer-events: none;
}

/* Custom Utilities */
.transition-slow { transition: all 1.2s cubic-bezier(0.645, 0.045, 0.355, 1); }
.transition-med { transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }

/* Footer Enhancements */
/* .footer {
  background-color: var(--black) !important;
} */

.footer h5, .footer h6 {
  color: var(--white);
  letter-spacing: 2px;
}

.footer p, .footer .text-muted {
  color: #d1d1d1 !important; /* Even brighter for footer on black */
}

.footer ul.list-unstyled li a {
  color: var(--muted) !important;
  text-decoration: none !important;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 2px 0;
}

.footer ul.list-unstyled li a:hover {
  color: var(--accent) !important;
  padding-left: 5px;
}

.social-link {
  color: var(--muted) !important;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: 1px solid rgba(80, 200, 120, 0.1);
  border-radius: 50%;
}

.social-link:hover {
  color: var(--accent) !important;
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(80, 200, 120, 0.2);
}

.footer-bottom-text {
  color: #666 !important;
}

/* Global Link Fix */
a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

p, .text-muted {
    color: #cccccc !important;
}

h6.text-gold, h6.text-pink {
    font-weight: 600;
}

@media (max-width: 991.98px) {
  .hero-section {
    height: 70vh;
  }
}

/* Pagination Overrides */
.pagination {
    border-radius: 0;
}

.pagination .page-link {
    background-color: transparent;
    border-color: var(--gold-faded);
    color: var(--gold);
    padding: 10px 18px;
    transition: all 0.3s ease;
    border-radius: 0;
}

.pagination .page-link:hover {
    background-color: var(--gold-faded);
    color: #fff;
    border-color: var(--gold);
}

.pagination .page-item.active .page-link {
    background-color: var(--gold) !important;
    border-color: var(--gold) !important;
    color: #000 !important;
    font-weight: 700;
}

.pagination .page-item.disabled .page-link {
    background-color: transparent;
    border-color: rgba(80, 200, 120, 0.1);
    color: rgba(255, 255, 255, 0.3);
}

/* Sacred Backdrop Layer */
.sacred-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.sacred-shape-random {
    position: absolute;
    width: 200px; /* Default size, overridden by JS if needed */
    height: 200px;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    opacity: 0.35; /* Increased base visibility for more presence */
    mix-blend-mode: screen;
    pointer-events: none;
    transition: opacity 1s ease;
}

/* Grid-placed floating field: faint, without the heavy per-shape drop-shadow glow (so many
   animated elements stay light on the GPU), and using a GENTLE drift so shapes never move far
   enough to overlap their neighbours. */
.sacred-shape-subtle {
    opacity: 0.12;
    filter: none !important;
    animation-name: sacred-drift !important;
}

@keyframes sacred-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(0, -8px) scale(1.03); }
}

.sacred-shape-bg {
    position: absolute;
    width: 60%;
    height: 80%;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
    animation: sacred-pulse-float 20s infinite ease-in-out;
}

.glow-orange {
    background-color: #FF8C00 !important;
    filter: drop-shadow(0 0 35px rgba(255, 140, 0, 0.7)) !important;
}

.glow-green {
    background-color: #50C878 !important;
    filter: drop-shadow(0 0 35px rgba(80, 200, 120, 0.7)) !important;
}

.glow-gold {
    background-color: #D4AF37 !important;
    filter: drop-shadow(0 0 35px rgba(212, 175, 55, 0.7)) !important;
}

@keyframes sacred-bg-float {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    33% { transform: translate(20px, -30px) rotate(5deg) scale(1.05); }
    66% { transform: translate(-10px, 15px) rotate(-3deg) scale(0.95); }
}

.float-slow { animation: sacred-bg-float 25s infinite ease-in-out; }
.float-medium { animation: sacred-bg-float 18s infinite ease-in-out; }
.float-fast { animation: sacred-bg-float 12s infinite ease-in-out; }

/* Pagination Overrides */
.payment-icons i {
    color: var(--gold-faded);
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: default;
}

.payment-icons i:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

/* Premium Checkboxes & Form Controls */
.form-check-input {
    background-color: rgba(255, 255, 255, 0.03) !important;
    border: 1.5px solid rgba(80, 200, 120, 0.3) !important;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-radius: 4px !important;
}

.form-check-input:checked {
    background-color: var(--gold) !important;
    border-color: var(--gold) !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e") !important;
    box-shadow: 0 0 15px rgba(80, 200, 120, 0.4) !important;
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(80, 200, 120, 0.2) !important;
    border-color: var(--gold) !important;
}

.form-check-label {
    cursor: pointer;
    transition: color 0.3s ease;
    padding-left: 8px;
    font-size: 0.95rem;
}

.form-check-input:checked + .form-check-label {
    color: var(--gold);
    font-weight: 500;
}

/* Toggle switches: the generic .form-check-input square radius + checkmark above breaks
   Bootstrap's form-switch, so restore the pill + knob here (dark-theme friendly). */
.form-switch .form-check-input {
    width: 2.6em !important;
    height: 1.35em !important;
    border-radius: 2em !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba(255,255,255,0.6)'/%3e%3c/svg%3e") !important;
    background-position: left center !important;
    background-repeat: no-repeat !important;
}

.form-switch .form-check-input:checked {
    background-position: right center !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ffffff'/%3e%3c/svg%3e") !important;
    background-color: var(--gold) !important;
    border-color: var(--gold) !important;
}

/* Filter inputs/selects on the dark sidebar: visible placeholder + readable text */
.custom-input::placeholder,
.custom-input input::placeholder,
input.custom-input::placeholder {
    color: rgba(255, 255, 255, 0.55) !important;
    opacity: 1;
}

select.custom-input option {
    color: #fff;
    background-color: var(--black-2);
}

/* Filter sidebar: stays fixed in the viewport (below the sticky navbar) as you scroll the
   product grid. Kept compact so the whole panel fits on screen — no internal scrollbar. */
.filter-sticky {
    position: sticky;
    top: 100px;
    z-index: 1;
}

/* Compact the filter groups so the whole panel fits on one screen without scrolling */
.filter-sticky h5 { margin-bottom: 0.85rem !important; }
.filter-sticky .mb-5,
.filter-sticky .mb-4 { margin-bottom: 0.75rem !important; }
.filter-sticky .pb-4 { padding-bottom: 0.6rem !important; }
.filter-sticky .mb-3 { margin-bottom: 0.5rem !important; }
.filter-sticky .form-check { margin-bottom: 0.25rem !important; }
.filter-sticky h6 { margin-bottom: 0.5rem !important; }

/* Precision Product Gallery (3:2 Ratio) */
.product-main-image-container {
    /* background-color: var(--black-2); */
    position: relative;
    aspect-ratio: 12/8;
    overflow: hidden;
    cursor: zoom-in;
}

.product-zoom-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-zoom-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures no gaps/space on top/bottom */
    transition: transform 0.2s ease-out;
}

/* Fixed Gallery Thumbnails */
.thumbnail-image {
    aspect-ratio: 12/8;
    object-fit: cover;
    /* background-color: var(--black-2); */
    transition: border-color 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

.thumbnail-image:hover, .thumbnail-image.active {
    border-color: var(--gold) !important;
    opacity: 1 !important;
}

/* Zoom Overlay (Lens Style) */
.zoom-lens-overlay {
    position: absolute;
    pointer-events: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: 250%; /* 2.5x Zoom */
    display: none;
    z-index: 50;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-main-image-container:hover .zoom-lens-overlay {
    display: block;
    opacity: 1;
}

.product-main-image-container:hover img {
    opacity: 0.3; /* Mute the base image when lens is active */
}

/* Star Ratings & Reviews */
.star-rating {
    color: var(--gold);
    display: flex;
    gap: 4px;
}

.star-rating i {
    font-size: 0.85rem;
}

.review-card {
    /* background-color: var(--black-2); */
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    height: 100%;
    transition: transform 0.3s ease;
}

.review-card:hover {
    border-color: var(--gold-faded);
    transform: translateY(-5px);
}

.verified-badge {
    color: var(--accent);
    background: rgba(80, 200, 120, 0.1);
    border: 1px solid var(--gold-faded);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 600;
}

.review-avatar {
    width: 44px;
    height: 44px;
    background: var(--black-3);
    border: 1px solid var(--gold-faded);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* New Homepage Sections */
.frequency-statement-section {
    /* background-color: var(--black-2); */
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--gold-faded);
    border-bottom: 1px solid var(--gold-faded);
}

.frequency-tagline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 2px;
    color: var(--white);
    line-height: 1.2;
}

.frequency-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background-color: var(--accent);
    opacity: 0.2;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    mask-position: center;
    z-index: 0;
    animation: sacred-pulse-float 15s infinite ease-in-out;
}

.gear-detail-section {
    background-color: transparent;
    border-top: 1px solid var(--gold-faded);
    border-bottom: 1px solid var(--gold-faded);
}

.gear-feature-card {
    padding: 3rem;
    border: 1px solid rgba(80, 200, 120, 0.05);
    transition: all 0.4s ease;
    height: 100%;
}

.gear-feature-card:hover {
    background: rgba(80, 200, 120, 0.02);
    border-color: var(--gold-faded);
}

.heritage-timeline {
    position: relative;
    padding: 4rem 0;
}

.heritage-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--gold-faded), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
}

.timeline-marker {
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 15px var(--accent);
}

.timeline-content {
    width: 45%;
    padding: 20px;
    /* background: var(--black-2); */
    border: 1px solid var(--gold-faded);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-year {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}


/* ===== Laravel integration helpers (Home template) ===== */
.hero-bg-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.hero-slider-item .hero-overlay { z-index: 1; }
.hero-slider-item .hero-content { position: relative; z-index: 2; }
.product-image-wrapper .product-wish {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    cursor: pointer;
    transition: all .3s ease;
}
.product-image-wrapper .product-wish:hover { background: var(--gold, #c9a24b); color: #000; }
.product-image-wrapper .product-quickview {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    z-index: 3;
    transition: all .35s ease;
    white-space: nowrap;
}
.product-card:hover .product-image-wrapper .product-quickview {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.product-countdown {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 3;
    font-size: .7rem;
    letter-spacing: .5px;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--gold, #c9a24b);
    border: 1px solid rgba(201, 162, 75, 0.4);
}
.no-caret::after { display: none !important; }

/* ===== Quick View modal (new template) ===== */
.template-quickview .modal-content-quick-view {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}
.template-quickview .qv-muted { color: rgba(255, 255, 255, 0.55) !important; }
.template-quickview .qv-title { color: #fff; }
.template-quickview .qv-price { color: var(--gold, #c9a24b); font-weight: 700; }
.template-quickview .qv-carousel .carousel-inner {
    border: 1px solid rgba(201, 162, 75, 0.25);
    background: #000;
}
.template-quickview .qv-carousel img { object-fit: cover; max-height: 460px; }
.template-quickview .form-select,
.template-quickview .qv-qty .form-control {
    background-color: #000;
    color: #fff;
    border-color: rgba(201, 162, 75, 0.35);
}
.template-quickview .form-select:focus,
.template-quickview .qv-qty .form-control:focus {
    border-color: var(--gold, #c9a24b);
    box-shadow: 0 0 0 .2rem rgba(201, 162, 75, 0.2);
}
.template-quickview .qv-qty .btn-outline-secondary,
.template-quickview .qv-wish {
    color: #fff;
    border-color: rgba(201, 162, 75, 0.35);
}
.template-quickview .qv-qty .btn-outline-secondary:hover,
.template-quickview .qv-wish:hover {
    background: var(--gold, #c9a24b);
    color: #000;
    border-color: var(--gold, #c9a24b);
}
.template-quickview .qv-add-cart {
    background: var(--gold, #c9a24b);
    color: #000;
    font-weight: 600;
    border: none;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.template-quickview .qv-add-cart:hover { filter: brightness(1.1); color: #000; }
.template-quickview .qv-share a { color: var(--gold, #c9a24b); margin-right: .6rem; }

/* ===== Cart page (template) ===== */
.cart-img {
    width: 92px;
    min-width: 92px;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.cart-img img { width: 100%; height: 100%; object-fit: cover; }
.quantity-group-sm .btn {
    border-color: rgba(201, 162, 75, 0.5);
    color: var(--gold, #c9a24b);
    padding: 0 .5rem;
}
.quantity-group-sm .btn:hover { background: var(--gold, #c9a24b); color: #000; }
.quantity-group-sm .form-control { box-shadow: none; }
.table-dark { --bs-table-bg: transparent; }
.template-quickview .form-check-input:checked,
.card .form-check-input:checked { background-color: var(--gold, #c9a24b); border-color: var(--gold, #c9a24b); }
