/* ==========================================================
   GLIITY JEWELRIES - COMPONENTS STYLESHEET (RESPONSIVE FRAMING)
   ========================================================== */

/* Hero Section */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 75% 20%, #124442 0%, #082625 60%, #051a19 100%);
  color: var(--text-light);
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--gold-border);
  padding: clamp(32px, 5vw, 64px) 0;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(197, 168, 128, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-kicker-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: 20px;
  background-color: rgba(197, 168, 128, 0.12);
  border: 1px solid rgba(197, 168, 128, 0.3);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(1.55rem, 4.2vw, 3.75rem);
  line-height: 1.16;
  margin-bottom: 18px;
  color: #ffffff;
  overflow-wrap: break-word;
  word-break: normal;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-desc {
  font-size: clamp(0.9375rem, 1.3vw, 1.125rem);
  line-height: 1.7;
  color: var(--text-light-muted);
  max-width: 540px;
  margin-bottom: clamp(24px, 4vw, 36px);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: clamp(24px, 4vw, 42px);
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.hero-feat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-feat-val {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--gold-light);
  font-weight: 600;
}

.hero-feat-lbl {
  font-size: clamp(0.6875rem, 1vw, 0.75rem);
  color: var(--text-light-subtle);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  width: 100%;
}

.hero-card-main {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  border: 1px solid var(--gold-border);
  background-color: var(--bg-dark);
}

.hero-card-main img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hero-card-main:hover img {
  transform: scale(1.03);
}

.hero-float-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: calc(100% - 32px);
  background-color: rgba(7, 31, 30, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--gold-border);
  padding: 12px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.hero-float-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-float-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.hero-float-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-float-sub {
  font-size: 0.6875rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Feature Badges Grid (Trust Bar) */
.trust-strip {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: clamp(16px, 3vw, 24px) 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2.5vw, 24px);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: var(--gold-subtle);
  border: 1px solid rgba(197, 168, 128, 0.3);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-title {
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.trust-sub {
  font-size: 0.6875rem;
  color: var(--text-dark-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Salon Teaser / Landing Banner */
.salon-teaser-section {
  position: relative;
  background-color: var(--bg-dark);
  color: var(--text-light);
  overflow: hidden;
}

.salon-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.salon-visual-stack {
  position: relative;
  width: 100%;
}

.salon-img-primary {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--gold-border);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

/* Properly framed overlay that never hangs past screen boundary */
.salon-badge-overlay {
  position: absolute;
  bottom: 16px;
  right: 16px;
  left: 16px;
  background-color: rgba(12, 54, 53, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--gold-primary);
  border-radius: 8px;
  padding: 14px 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.salon-badge-overlay h5 {
  font-family: var(--font-serif);
  color: var(--gold-light);
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.salon-badge-overlay p {
  font-size: 0.75rem;
  color: var(--text-light-muted);
  margin: 0;
}

.salon-content-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: clamp(20px, 3vw, 32px) 0;
}

.salon-feat-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(197, 168, 128, 0.2);
  border-radius: 8px;
  padding: 16px;
  transition: all var(--transition-fast);
}

.salon-feat-card:hover {
  border-color: var(--gold-primary);
  background-color: var(--gold-subtle);
  transform: translateY(-2px);
}

.salon-feat-card h4 {
  font-size: 0.95rem;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.salon-feat-card p {
  font-size: 0.75rem;
  color: var(--text-light-muted);
}

/* Why Choose Us Cards */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 30px);
}

.why-card {
  background-color: #ffffff;
  border: 1px solid #e8e4dc;
  border-radius: 8px;
  padding: clamp(24px, 4vw, 36px) clamp(18px, 3vw, 28px);
  text-align: center;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px auto;
  border-radius: 50%;
  background: var(--gold-subtle);
  border: 1px solid rgba(197, 168, 128, 0.3);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.why-card p {
  color: var(--text-dark-muted);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* Reviews / Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 30px);
}

.testimonial-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 28px);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: #eab308;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.65;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f0eee6;
  padding-top: 14px;
  gap: 8px;
}

.author-name {
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--text-dark);
}

.author-tag {
  font-size: 0.6875rem;
  color: var(--gold-dark);
  background-color: var(--gold-subtle);
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

/* Editorial Visual Gallery */
.gallery-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.gallery-tab-btn {
  padding: 7px 16px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 20px;
  border: 1px solid rgba(197, 168, 128, 0.3);
  color: var(--text-light-muted);
  background: transparent;
}

.gallery-tab-btn.active, .gallery-tab-btn:hover {
  background: var(--gold-gradient);
  color: var(--bg-dark);
  border-color: transparent;
}

.gallery-editorial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 2vw, 20px);
}

.gallery-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  height: auto;
  cursor: pointer;
  border: 1px solid var(--gold-border);
  background-color: var(--bg-dark);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 31, 30, 0.92) 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  transition: opacity var(--transition-base);
}

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

.gallery-caption {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: #ffffff;
}

.gallery-sub {
  font-size: 0.6875rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* FAQ Section */
.faq-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.faq-tab-btn {
  padding: 8px 18px;
  border-radius: 4px;
  border: 1px solid #d5cec2;
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--text-dark);
}

.faq-tab-btn.active {
  background-color: var(--bg-dark);
  color: var(--gold-light);
  border-color: var(--bg-dark);
}

.faq-accordion-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid #e2ddd3;
  border-radius: 6px;
  background-color: #ffffff;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.open {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-sm);
}

.faq-trigger {
  width: 100%;
  padding: 16px 20px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-dark);
  font-weight: 600;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #dcd7cb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--gold-dark);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background-color: var(--gold-primary);
  color: var(--bg-dark);
  border-color: var(--gold-primary);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
  padding: 0 20px;
  color: var(--text-dark-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

.faq-item.open .faq-content {
  padding-bottom: 18px;
}

/* Contact Section & Sheffield Card */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.contact-info-card {
  background-color: var(--bg-dark);
  color: var(--text-light);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-md);
}

.contact-info-card h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  color: var(--gold-light);
  margin-bottom: 10px;
}

.contact-info-card p {
  color: var(--text-light-muted);
  font-size: 0.875rem;
  margin-bottom: 24px;
}

.contact-item-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: var(--gold-subtle);
  border: 1px solid rgba(197, 168, 128, 0.3);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-text h5 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  margin-bottom: 2px;
}

.contact-detail-text a, .contact-detail-text span {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  color: #ffffff;
  font-weight: 500;
}

.contact-form-card {
  background-color: #ffffff;
  border: 1px solid #e2ddd3;
  border-radius: 12px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-sm);
}

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

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #cfc8bd;
  border-radius: 4px;
  background-color: #fdfdfc;
  color: var(--text-dark);
  font-size: 0.875rem;
  transition: border-color var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px var(--gold-subtle);
}

/* Modals & Drawers Base */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 23, 22, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 2.5vw, 24px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background-color: #ffffff;
  border-radius: 10px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
  transform: translateY(20px) scale(0.98);
  transition: all var(--transition-base);
}

.modal-overlay.active .modal-container {
  transform: translateY(0) scale(1);
}

.modal-header {
  padding: 16px 20px;
  border-bottom: 1px solid #eee9e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-dark);
}

.modal-close-btn {
  font-size: 1.4rem;
  color: var(--text-dark-muted);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close-btn:hover {
  color: var(--gold-dark);
}

.modal-body {
  padding: clamp(16px, 3vw, 24px);
}

/* Toast Notification */
.toast-container {
  position: fixed;
  bottom: clamp(20px, 4vw, 30px);
  right: clamp(16px, 3vw, 30px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
  max-width: calc(100% - 32px);
}

.toast {
  background-color: var(--bg-dark);
  color: #ffffff;
  border: 1px solid var(--gold-border);
  padding: 12px 18px;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(120%);
  transition: transform var(--transition-base);
  pointer-events: auto;
}

.toast.show {
  transform: translateX(0);
}

.toast-gold {
  color: var(--gold-light);
}

/* Mobile Slide Navigation Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background-color: var(--bg-dark);
  color: var(--text-light);
  border-right: 1px solid var(--gold-border);
  z-index: 1050;
  transform: translateX(-100%);
  transition: transform var(--transition-base);
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 14px;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin-bottom: 28px;
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

/* Lightbox Modal */
.lightbox-modal {
  max-width: 900px;
  background: transparent;
  box-shadow: none;
}

.lightbox-img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid var(--gold-border);
}

/* ==========================================================
   BREAKPOINTS FOR COMPONENTS (FRAMING & ALIGNMENT)
   ========================================================== */

/* Tablets (768px to 1024px) */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-content {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
  }

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

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

  .hero-features {
    max-width: 520px;
    margin: 0 auto;
  }

  .hero-card-main {
    max-width: 540px;
    margin: 0 auto;
  }

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

  .trust-item {
    background: #fdfaf5;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #f1ede4;
  }

  .salon-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .salon-visual-stack {
    max-width: 540px;
    margin: 0 auto;
  }

  .salon-content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
  }

  .salon-content .section-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .salon-content > div:last-child {
    justify-content: center;
  }

  .why-us-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin: 0 auto;
  }
}

/* Phones & Small Tablets (< 768px) */
@media (max-width: 768px) {
  .hero-content {
    text-align: center;
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(1.45rem, 5.2vw, 2.1rem);
    line-height: 1.2;
    text-align: center;
  }

  .hero-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9375rem;
  }

  .category-hero-text {
    text-align: center;
    max-width: 100%;
  }

  .category-hero-text h1 {
    font-size: clamp(1.35rem, 4.8vw, 1.85rem);
    text-align: center;
    line-height: 1.22;
  }

  .category-hero-text p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.875rem;
  }

  .why-us-grid, .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .gallery-editorial-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .salon-badge-overlay {
    bottom: 8px;
    left: 8px;
    right: 8px;
    padding: 8px 12px;
  }

  .salon-badge-overlay h5 {
    font-size: 0.875rem;
  }

  .salon-badge-overlay p {
    font-size: 0.625rem;
  }
}

/* Small Phones (< 480px) */
@media (max-width: 480px) {
  .hero-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .hero-feat-item {
    min-width: 0;
    text-align: center;
  }

  .hero-feat-val {
    font-size: 0.875rem;
  }

  .hero-feat-lbl {
    font-size: 0.5625rem;
    line-height: 1.2;
  }

  .salon-content-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .trust-item {
    padding: 8px 10px;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 6px;
  }

  .trust-icon {
    width: 32px;
    height: 32px;
  }

  .trust-title {
    font-size: 0.75rem;
  }

  .trust-sub {
    font-size: 0.625rem;
  }
}

/* ==========================================================
   FLOATING WHATSAPP ENQUIRY WIDGET & SALON CARDS GRID (V3)
   ========================================================== */

.floating-whatsapp-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.floating-whatsapp-widget:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
}

.floating-tooltip {
  position: absolute;
  right: 68px;
  background: var(--bg-dark);
  color: var(--gold-light);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
  border: 1px solid var(--gold-border);
}

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

/* Salon Services Cards Grid in Overview Section */
.salon-services-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.luxury-service-card {
  background: #ffffff;
  border: 1px solid #e5dfd4;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
}

.luxury-service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-md);
}

.luxury-service-card.coming-soon {
  border-style: dashed;
  background: #fdfbf7;
}

.service-card-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-dark);
}

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

.luxury-service-card:hover .service-card-media img {
  transform: scale(1.05);
}

.service-category-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(7, 31, 30, 0.85);
  backdrop-filter: blur(4px);
  color: var(--gold-light);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  border: 1px solid rgba(197, 168, 128, 0.3);
}

.service-tag-pill {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
}

.service-tag-pill.soon {
  background: var(--gold-primary);
  color: var(--bg-dark);
  font-weight: 700;
}

.service-card-body {
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

.service-card-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-dark);
  line-height: 1.3;
}

.service-card-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-dark);
  white-space: nowrap;
}

.service-card-desc {
  font-size: 0.8125rem;
  color: var(--text-dark-muted);
  line-height: 1.5;
  margin-bottom: 14px;
  flex-grow: 1;
}

.service-card-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: var(--text-dark-muted);
  padding: 8px 0;
  border-top: 1px solid #f1ece2;
  border-bottom: 1px solid #f1ece2;
  margin-bottom: 14px;
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.service-card-actions .btn {
  font-size: 0.8125rem;
  padding: 10px 14px;
}

@media (max-width: 768px) {
  .floating-whatsapp-widget {
    bottom: 80px; /* elevated above sticky bottom bar */
    right: 16px;
    width: 50px;
    height: 50px;
  }
}

/* ==========================================================
   MULTI-PAGE NAVIGATION DROPDOWNS & SUBMENUS
   ========================================================== */
.nav-item-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-link-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-link-dropdown-trigger svg {
  transition: transform var(--transition-fast);
}

.nav-item-dropdown:hover .nav-link-dropdown-trigger svg,
.nav-item-dropdown:focus-within .nav-link-dropdown-trigger svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 230px;
  background-color: var(--bg-dark);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  padding: 8px 0;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 9px 20px;
  font-size: 0.875rem;
  color: var(--text-light-muted);
  text-decoration: none;
  transition: all var(--transition-fast);
  font-family: var(--font-sans);
}

.dropdown-link:hover {
  color: var(--gold-light);
  background-color: rgba(197, 168, 128, 0.12);
  padding-left: 24px;
}

.dropdown-link.active {
  color: var(--gold-light);
  font-weight: 600;
  background-color: rgba(197, 168, 128, 0.08);
}

/* Mobile Drawer Accordions & Navigation Layout */
.mobile-drawer-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
  padding: 12px 0 24px;
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-light);
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--gold-light);
  background-color: rgba(197, 168, 128, 0.12);
}

.mobile-drawer-accordion,
.mobile-nav-group {
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.mobile-drawer-accordion:hover,
.mobile-drawer-accordion.active {
  border-color: rgba(197, 168, 128, 0.35);
}

.mobile-drawer-acc-title,
.mobile-nav-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 14px;
  color: var(--text-light);
  font-size: 1rem;
  font-family: var(--font-serif);
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  background: none;
  border: none;
}

.mobile-drawer-acc-title svg,
.mobile-nav-accordion-header span {
  color: var(--gold-primary);
  font-size: 0.85rem;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.mobile-drawer-accordion.active .mobile-drawer-acc-title svg,
.mobile-drawer-accordion.open .mobile-drawer-acc-title svg,
.mobile-nav-accordion-header.active span,
.mobile-nav-group.active .mobile-nav-accordion-header span {
  transform: rotate(180deg);
}

.mobile-drawer-acc-content,
.mobile-nav-sublinks {
  display: none;
  flex-direction: column;
  padding: 6px 12px 12px;
  background-color: rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-drawer-accordion.active .mobile-drawer-acc-content,
.mobile-drawer-accordion.open .mobile-drawer-acc-content,
.mobile-nav-group.active .mobile-nav-sublinks,
.mobile-nav-sublinks.open {
  display: flex;
}

.mobile-drawer-acc-content a,
.mobile-nav-sublinks a {
  padding: 8px 10px;
  font-size: 0.875rem;
  color: var(--text-light-muted);
  text-decoration: none;
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.mobile-drawer-acc-content a:hover,
.mobile-drawer-acc-content a.active,
.mobile-nav-sublinks a:hover,
.mobile-nav-sublinks a.active {
  color: var(--gold-light);
  background-color: rgba(197, 168, 128, 0.15);
  padding-left: 14px;
}

.mobile-drawer-footer {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Breadcrumbs Component */
.breadcrumbs-bar {
  background-color: #f7f4ee;
  border-bottom: 1px solid #eae4d8;
  padding: 12px 0;
  font-size: 0.8125rem;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-dark-muted);
}

.breadcrumb-list a {
  color: var(--text-dark-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb-list a:hover {
  color: var(--gold-dark);
}

.breadcrumb-list .sep {
  color: #b5aba0;
  font-size: 0.75rem;
}

.breadcrumb-list .current {
  color: var(--text-dark);
  font-weight: 600;
}

/* Category Hub & Banner Section */
.category-hero-banner {
  background: radial-gradient(circle at 80% 20%, #124442 0%, #071f1e 100%);
  color: var(--text-light);
  padding: clamp(36px, 6vw, 64px) 0;
  border-bottom: 1px solid var(--gold-border);
}

.category-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.category-hero-text {
  max-width: 680px;
}

.category-hero-text h1 {
  font-size: clamp(1.65rem, 4vw, 2.75rem);
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 12px;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: manual;
}

.category-hero-text h1 span {
  color: var(--gold-light);
}

.category-hero-text p {
  color: var(--text-light-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.category-subnav-pills {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.category-subnav-pill {
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid rgba(197, 168, 128, 0.3);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-light-muted);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.category-subnav-pill:hover,
.category-subnav-pill.active {
  background: var(--gold-gradient);
  color: var(--bg-dark);
  font-weight: 600;
  border-color: transparent;
  transform: translateY(-2px);
}

/* ==========================================================
   DEDICATED PRODUCT PAGE STYLING (product.html)
   ========================================================== */
.product-single-section {
  padding: clamp(32px, 5vw, 64px) 0;
  background-color: var(--bg-cream);
}

.product-single-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.product-single-gallery {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-gallery-main {
  position: relative;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e7decb;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

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

.product-gallery-main:hover img {
  transform: scale(1.03);
}

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.product-thumb-item {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background-color: #ffffff;
  transition: all var(--transition-fast);
}

.product-thumb-item.active {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 2px rgba(197, 168, 128, 0.3);
}

.product-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Info Box */
.product-single-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-single-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.product-single-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--text-dark);
  line-height: 1.2;
}

.product-single-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.product-single-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.product-single-price-old {
  font-size: 1.25rem;
  color: #999;
  text-decoration: line-through;
}

.product-single-stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: #198754;
  font-weight: 600;
}

.product-single-stock-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #198754;
  animation: pulse 2s infinite;
}

.product-single-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-dark-muted);
}

.product-variations-box {
  background-color: #ffffff;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid #e7decb;
}

.product-variation-title {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
}

.product-variation-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.product-var-option {
  padding: 7px 16px;
  border: 1px solid #dcd4c3;
  border-radius: 4px;
  font-size: 0.85rem;
  background-color: #faf8f4;
  color: var(--text-dark);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.product-var-option.selected {
  border-color: var(--gold-dark);
  background-color: var(--bg-dark);
  color: var(--gold-light);
  font-weight: 600;
}

.product-single-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-qty-add-row {
  display: flex;
  gap: 12px;
}

.product-qty-spinner {
  display: inline-flex;
  align-items: center;
  border: 1px solid #dcd4c3;
  border-radius: 4px;
  background-color: #ffffff;
  overflow: hidden;
}

.product-qty-spinner button {
  width: 38px;
  height: 44px;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.product-qty-spinner button:hover {
  background-color: #f1ece2;
}

.product-qty-spinner input {
  width: 44px;
  height: 44px;
  border: none;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  background: none;
}

.btn-add-cart-large {
  flex-grow: 1;
  height: 46px;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

.btn-buy-now-large {
  height: 46px;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  background-color: var(--bg-dark);
  color: var(--gold-light);
  border: 1px solid var(--gold-border);
}

.btn-buy-now-large:hover {
  background-color: #0d3634;
  color: #ffffff;
}

.btn-whatsapp-order {
  height: 46px;
  background-color: #25D366;
  color: #ffffff;
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 4px;
  text-decoration: none;
  transition: filter var(--transition-fast);
}

.btn-whatsapp-order:hover {
  filter: brightness(1.08);
}

/* Product Guarantees Callout Box */
.product-guarantees-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  background-color: #ffffff;
  border: 1px solid #e7decb;
  border-radius: 8px;
  padding: 16px;
  margin-top: 10px;
}

.product-guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--text-dark);
}

.product-guarantee-item svg {
  color: var(--gold-dark);
  flex-shrink: 0;
}

/* Product Specs Table */
.product-specs-card {
  background-color: #ffffff;
  border: 1px solid #e7decb;
  border-radius: 8px;
  padding: 20px;
  margin-top: 10px;
}

.product-specs-table {
  width: 100%;
  border-collapse: collapse;
}

.product-specs-table tr {
  border-bottom: 1px solid #f1ece2;
}

.product-specs-table tr:last-child {
  border-bottom: none;
}

.product-specs-table th {
  text-align: left;
  padding: 10px 0;
  font-size: 0.8125rem;
  color: var(--text-dark-muted);
  width: 40%;
}

.product-specs-table td {
  padding: 10px 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* Delivery Matrix Box & Table (UK Nationwide & Worldwide) */
.delivery-matrix-box {
  background-color: #ffffff;
  border: 1px solid #e7decb;
  border-radius: 12px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 10px 30px rgba(7, 31, 30, 0.04);
  text-align: center;
}

.delivery-matrix-card {
  background-color: #ffffff;
  border: 1px solid #e7decb;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 24px;
}

.delivery-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0;
  border: 1px solid #e7decb;
  border-radius: 8px;
  background-color: #ffffff;
}

.delivery-table,
.delivery-matrix-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  text-align: left;
}

.delivery-table th,
.delivery-matrix-table th {
  background-color: var(--bg-dark);
  color: var(--gold-light);
  padding: 14px 18px;
  font-family: var(--font-serif);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.delivery-table td,
.delivery-matrix-table td {
  padding: 14px 18px;
  border-bottom: 1px solid #f1ece2;
  font-size: 0.875rem;
  color: var(--text-dark);
  background-color: #ffffff;
}

.delivery-table tbody tr:nth-child(even) td,
.delivery-matrix-table tbody tr:nth-child(even) td {
  background-color: #faf8f4;
}

.delivery-table tr:last-child td,
.delivery-matrix-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 900px) {
  .product-single-grid {
    grid-template-columns: 1fr;
  }
  .product-single-gallery {
    position: static;
  }
}

/* ==========================================================
   DEFINITIVE RESPONSIVE OVERRIDES (MOBILE & TABLET VIEWPORTS)
   ========================================================== */
@media (max-width: 768px) {
  .hero-content {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-title {
    font-size: clamp(1.4rem, 5.2vw, 1.95rem) !important;
    line-height: 1.22 !important;
    text-align: center;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .hero-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9375rem;
    max-width: 100%;
  }

  .category-hero-text {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
  }

  .category-hero-text h1 {
    font-size: clamp(1.3rem, 4.6vw, 1.75rem) !important;
    text-align: center;
    line-height: 1.25 !important;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .category-hero-text p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.875rem;
    max-width: 100%;
  }

  .hero-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    max-width: 100%;
  }

  .hero-feat-item {
    min-width: 0;
    text-align: center;
  }

  .hero-feat-val {
    font-size: clamp(0.85rem, 2.5vw, 1.05rem);
  }

  .hero-feat-lbl {
    font-size: clamp(0.55rem, 1.8vw, 0.65rem);
    line-height: 1.2;
    white-space: normal;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .category-subnav-pills {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.55rem !important;
  }

  .category-hero-text h1 {
    font-size: 1.45rem !important;
  }

  .category-pills-wrap {
    padding: 0 4px 8px;
  }
}

/* ============================================================
   GLOBAL CART SLIDE DRAWER & SECURE CHECKOUT MODAL
   Guaranteed off-canvas & hidden by default
   ============================================================ */

/* 1. Cart Drawer Overlay */
.cart-drawer-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background-color: rgba(5, 23, 22, 0.7) !important;
  backdrop-filter: blur(4px) !important;
  z-index: 99990 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease, visibility 0.3s ease !important;
}

.cart-drawer-overlay.open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.cart-drawer {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  width: min(440px, 100vw) !important;
  height: 100vh !important;
  background-color: #ffffff !important;
  z-index: 99995 !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.25) !important;
  transform: translateX(100%) !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.cart-drawer-overlay.open .cart-drawer {
  transform: translateX(0) !important;
}

.cart-header,
.cart-drawer-header {
  padding: 18px 20px;
  background-color: var(--bg-dark, #071f1e);
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--gold-border, rgba(197, 160, 89, 0.3));
}

.cart-header h3,
.cart-drawer-title {
  font-family: var(--font-serif, "Cinzel", serif);
  font-size: 1.15rem;
  color: #ffffff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-close-btn {
  background: none;
  border: none;
  color: var(--text-light-muted, #a3b8b5);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}

.cart-close-btn:hover {
  color: #ffffff;
}

.shipping-progress-banner,
.shipping-goal-wrap {
  background-color: var(--bg-cream-soft, #fcfbf7);
  padding: 12px 20px;
  border-bottom: 1px solid #eee8dc;
}

.shipping-progress-text,
.shipping-goal-text {
  font-size: 0.8125rem;
  color: var(--text-dark, #1c2625);
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}

.shipping-bar-track {
  width: 100%;
  height: 6px;
  background-color: #e2ddd3;
  border-radius: 3px;
  overflow: hidden;
}

.shipping-bar-fill {
  height: 100%;
  background: var(--gold-gradient, linear-gradient(135deg, #d4af37 0%, #aa820a 100%));
  transition: width 0.3s ease;
}

.cart-items-wrap,
.cart-items-list {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-empty-state {
  text-align: center;
  padding: 48px 16px;
  color: var(--text-dark-muted, #64748b);
}

.cart-item-card {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0eee6;
}

.cart-item-img {
  width: 64px;
  height: 64px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid #e8e4dc;
}

.cart-item-info h4 {
  font-family: var(--font-serif, "Cinzel", serif);
  font-size: 0.875rem;
  color: var(--text-dark, #1c2625);
  margin: 0 0 2px;
  line-height: 1.3;
}

.cart-item-variant {
  font-size: 0.75rem;
  color: var(--text-dark-muted, #64748b);
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark, #1c2625);
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.qty-counter {
  display: inline-flex;
  align-items: center;
  border: 1px solid #dcd5c9;
  border-radius: 4px;
  overflow: hidden;
  height: 30px;
}

.qty-btn {
  width: 26px;
  height: 30px;
  background: #f8f6f0;
  border: none;
  font-size: 0.95rem;
  color: var(--text-dark, #1c2625);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-input {
  width: 28px;
  height: 30px;
  border: none;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark, #1c2625);
  background: #ffffff;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #b91c1c;
  font-size: 0.75rem;
  cursor: pointer;
  padding: 2px 4px;
}

.cart-footer,
.cart-drawer-footer {
  padding: 16px 20px;
  background-color: #fdfdfc;
  border-top: 1px solid #ede8de;
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  font-family: var(--font-serif, "Cinzel", serif);
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-dark, #1c2625);
}

.cart-notice,
.shipping-note {
  font-size: 0.75rem;
  color: var(--text-dark-muted, #64748b);
  margin-bottom: 12px;
  line-height: 1.4;
}

/* 2. Secure Checkout Modal Overlay - NEVER DISPLAYED STATICALLY */
.checkout-modal-overlay {
  display: none !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(5, 23, 22, 0.8) !important;
  backdrop-filter: blur(6px) !important;
  z-index: 100000 !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 16px !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
}

.checkout-modal-overlay.active {
  display: flex !important;
}

/* Product Quick View Modal Overlay - NEVER DISPLAYED STATICALLY */
.product-modal-overlay {
  display: none !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(5, 23, 22, 0.8) !important;
  backdrop-filter: blur(6px) !important;
  z-index: 99995 !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 16px !important;
  overflow-y: auto !important;
}

.product-modal-overlay.active {
  display: flex !important;
}

.product-modal-card {
  background: #ffffff;
  border-radius: 8px;
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--gold-border, rgba(197, 160, 89, 0.4));
  margin: auto;
}

.product-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-dark, #1e293b);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  padding: 4px;
}

.checkout-modal-card {
  background: #ffffff;
  border-radius: 8px;
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--gold-border, rgba(197, 160, 89, 0.4));
  margin: auto;
}

.checkout-modal-header {
  padding: 18px 24px;
  background: var(--bg-dark, #071f1e);
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--gold-primary, #c5a059);
}

.checkout-modal-header h2 {
  font-family: var(--font-serif, "Cinzel", serif);
  font-size: 1.25rem;
  color: #ffffff;
  margin: 0;
}

.checkout-modal-close {
  background: none;
  border: none;
  color: var(--text-light-muted, #a3b8b5);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}

.checkout-modal-close:hover {
  color: #ffffff;
}

.checkout-modal-body {
  padding: 24px;
}

.checkout-form-section {
  margin-bottom: 22px;
}

.form-sec-title {
  font-family: var(--font-serif, "Cinzel", serif);
  font-size: 1rem;
  color: var(--text-dark, #1c2625);
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid #ede8de;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark, #1c2625);
  margin-bottom: 4px;
}

.form-group input {
  height: 42px;
  padding: 8px 12px;
  border: 1px solid #dcd5c9;
  border-radius: 6px;
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--text-dark, #1c2625);
  background: #ffffff;
}

.form-group input:focus {
  outline: none;
  border-color: var(--gold-primary, #c5a059);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

.delivery-options-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.delivery-option-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #dcd5c9;
  border-radius: 6px;
  cursor: pointer;
  background: #ffffff;
  transition: all 0.2s;
}

.delivery-option-card.active,
.delivery-option-card:hover {
  border-color: var(--gold-primary, #c5a059);
  background: #fdfbf7;
}

.delivery-option-card input[type="radio"] {
  accent-color: var(--gold-primary, #c5a059);
  width: 18px;
  height: 18px;
}

.delivery-option-card .d-info {
  flex: 1;
}

.delivery-option-card .d-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark, #1c2625);
}

.delivery-option-card .d-desc {
  display: block;
  font-size: 0.75rem;
  color: var(--text-dark-muted, #64748b);
}

.delivery-option-card .d-cost {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold-dark, #9e7929);
}

.payment-method-selector {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.pay-method-tab {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid #dcd5c9;
  border-radius: 6px;
  background: #ffffff;
  color: var(--text-dark, #1c2625);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.pay-method-tab.active {
  border-color: var(--gold-primary, #c5a059);
  background: #fcf8f0;
  color: var(--gold-dark, #9e7929);
}

.pay-panel {
  display: none;
}

.pay-panel.active {
  display: block;
}

.stripe-box {
  margin-bottom: 16px;
}

.stripe-card-field {
  padding: 12px;
  border: 1px solid #dcd5c9;
  border-radius: 6px;
  background: #ffffff;
  min-height: 44px;
}

.stripe-error-text {
  color: #dc2626;
  font-size: 0.8125rem;
  margin-top: 6px;
}

.btn-pay-now {
  width: 100%;
  height: 46px;
  font-weight: 700;
  font-size: 0.95rem;
}

.btn-whatsapp-checkout {
  width: 100%;
  height: 46px;
  background-color: #25d366;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.2s;
}

.btn-whatsapp-checkout:hover {
  background-color: #1ebe5d;
}

@media (max-width: 600px) {
  .checkout-modal-body {
    padding: 16px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .payment-method-selector {
    flex-direction: column;
  }
}

/* --- ITEM ADDED TO BAG NEXT-STEP MODAL --- */
.cart-added-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 31, 30, 0.72);
  backdrop-filter: blur(4px);
  z-index: 10500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.cart-added-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-added-modal-card {
  background: #ffffff;
  width: min(520px, 94vw);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
  border: 1px solid var(--gold-border, #e5dfd4);
  position: relative;
  transform: translateY(12px) scale(0.97);
  transition: transform 0.25s ease;
}

.cart-added-modal-overlay.active .cart-added-modal-card {
  transform: translateY(0) scale(1);
}

.cart-added-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--text-dark-muted, #71717a);
  cursor: pointer;
  transition: color 0.2s;
}

.cart-added-close:hover {
  color: var(--bg-dark, #071f1e);
}

.cart-added-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.cart-added-check-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #eef7ee;
  color: #2e7d32;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
  border: 1px solid #c8e6c9;
}

.cart-added-heading {
  font-family: var(--font-serif, 'Cinzel', serif);
  font-size: 1.25rem;
  margin: 0 0 2px 0;
  color: var(--bg-dark, #071f1e);
}

.cart-added-subheading {
  font-size: 0.8125rem;
  color: var(--text-dark-muted, #64748b);
  margin: 0;
}

.cart-added-item-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: #faf8f5;
  border: 1px solid #ede8de;
  border-radius: 10px;
  margin-bottom: 18px;
}

.cart-added-img {
  width: 68px;
  height: 68px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #dcd5c9;
  flex-shrink: 0;
}

.cart-added-meta {
  flex: 1;
  min-width: 0;
}

.cart-added-prod-title {
  font-family: var(--font-sans, 'Montserrat', sans-serif);
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: var(--bg-dark, #071f1e);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-added-details-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-dark-muted, #64748b);
  margin-bottom: 4px;
}

.cart-added-pill {
  background: #eae5dc;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  color: var(--bg-dark, #071f1e);
}

.cart-added-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-dark, #9e7929);
}

.cart-added-shipping-track {
  background: #ffffff;
  border: 1px solid #e8e3d8;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 20px;
}

.cart-added-shipping-text {
  font-size: 0.8125rem;
  color: var(--bg-dark, #071f1e);
  margin-bottom: 6px;
  line-height: 1.4;
}

.cart-added-bar {
  height: 6px;
  background: #e5dfd4;
  border-radius: 999px;
  overflow: hidden;
}

.cart-added-bar-fill {
  height: 100%;
  background: var(--gold-primary, #c5a059);
  transition: width 0.4s ease;
}

.cart-added-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-added-checkout {
  width: 100%;
  height: 48px;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(197, 160, 89, 0.4);
  animation: pulseGold 2s infinite ease-in-out;
}

@keyframes pulseGold {
  0% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(197, 160, 89, 0); }
  100% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0); }
}

.cart-added-aux-btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.btn-text-dismiss {
  background: none;
  border: none;
  font-size: 0.8125rem;
  color: var(--text-dark-muted, #71717a);
  text-decoration: underline;
  cursor: pointer;
  padding: 6px 10px;
}

.btn-text-dismiss:hover {
  color: var(--bg-dark, #071f1e);
}

/* Cart Drawer Next-Step Guide Box */
.cart-step-guide {
  background: #fdfbf7;
  border: 1px dashed var(--gold-primary, #c5a059);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-step-guide .step-badge {
  background: var(--gold-primary, #c5a059);
  color: #071f1e;
  font-size: 0.6875rem;
  font-weight: 800;
  padding: 3px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.cart-step-guide p {
  margin: 0;
  font-size: 0.78125rem;
  color: #071f1e;
  line-height: 1.35;
}

.btn-checkout {
  position: relative;
  overflow: hidden;
  animation: pulseGold 2.5s infinite ease-in-out;
}


