/* ══════════════════════════════════════
   Jabeenz Homepage Styles
   All homepage section styles, navigation,
   overlays, and floating elements
   ══════════════════════════════════════ */

/* ── Announcement Bar ── */
.jbz-announcement-bar {
  background: var(--jbz-primary);
  color: var(--jbz-white);
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  padding: 10px var(--jbz-container-padding);
  position: relative;
  z-index: 901;
  line-height: 1.4;
  max-height: 200px;
  overflow: visible;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
}

.jbz-announcement-bar a {
  color: var(--jbz-white);
  text-decoration: underline;
  font-weight: 700;
}

.jbz-announcement-bar a:hover {
  color: var(--jbz-secondary);
}

.jbz-announcement-bar__close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--jbz-white);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  font-size: 16px;
  opacity: 0.7;
  transition: opacity var(--jbz-transition-fast);
}

.jbz-announcement-bar__close:hover {
  opacity: 1;
}

.jbz-announcement-bar--dismissed {
  max-height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ── Header Enhancements ── */
.jbz-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--jbz-dark);
  transition: transform var(--jbz-transition-base), background var(--jbz-transition-base);
  will-change: transform;
}

.jbz-header--slim .jbz-header__inner {
  height: 56px;
}

.jbz-header--slim .jbz-header__logo a {
  font-size: 22px;
}

.jbz-header--slim .jbz-header__logo img {
  max-height: 36px;
}

.jbz-header--hidden {
  transform: translateY(-100%);
}

.jbz-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
  transition: height var(--jbz-transition-base);
}

.jbz-header__logo a {
  font-family: var(--jbz-font-heading);
  font-size: 28px;
  color: var(--jbz-white);
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  transition: font-size var(--jbz-transition-base);
}

.jbz-header__actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.jbz-header__action-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jbz-white);
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: var(--jbz-radius-md);
  position: relative;
  transition: color var(--jbz-transition-fast), background var(--jbz-transition-fast);
}

.jbz-header__action-btn:hover {
  color: var(--jbz-secondary);
  background: rgba(255, 255, 255, 0.08);
}

.jbz-header__action-btn svg {
  width: 22px;
  height: 22px;
}

.jbz-header__badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #C62828;
  color: var(--jbz-white);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.jbz-header__google-badge {
  transition: background 0.2s ease, border-color 0.2s ease;
  line-height: 1.2;
}
.jbz-header__google-badge:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
}

.jbz-header__hamburger {
  display: none;
}

@media (max-width: 1023px) {
  .jbz-header__hamburger {
    display: flex;
  }
  .jbz-header__google-badge {
    display: none !important;
  }
}

/* ── Desktop Navigation ── */
.jbz-nav {
  display: none;
}

@media (min-width: 1024px) {
  .jbz-nav {
    display: flex;
    flex: 1;
    justify-content: center;
  }
}

.jbz-nav__list {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.jbz-nav__item {
  position: relative;
}

.jbz-nav__item > a {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  color: var(--jbz-white);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--jbz-transition-fast);
  white-space: nowrap;
}

.jbz-nav__item > a:hover,
.jbz-nav__item.is-open > a {
  color: var(--jbz-secondary);
}

.jbz-nav__arrow {
  font-size: 10px;
  margin-left: 4px;
  transition: transform var(--jbz-transition-fast);
}

.jbz-nav__item.is-open .jbz-nav__arrow {
  transform: rotate(180deg);
}

/* ── Mega Menu ── */
.jbz-mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: 100vw;
  max-width: var(--jbz-container-max);
  background: var(--jbz-white);
  box-shadow: var(--jbz-shadow-xl);
  border-radius: 0 0 12px 12px;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 100;
}

.jbz-nav__item--has-mega:hover .jbz-mega-menu,
.jbz-nav__item--has-mega.is-open .jbz-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.jbz-mega-menu__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.jbz-mega-menu__heading {
  font-family: var(--jbz-font-heading);
  font-size: 16px;
  color: var(--jbz-dark);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--jbz-primary);
  font-weight: 700;
}

.jbz-mega-menu__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.jbz-mega-menu__links li a {
  display: block;
  font-size: 14px;
  color: #1f2937 !important;
  padding: 6px 0;
  text-decoration: none;
  transition: color var(--jbz-transition-fast);
}

.jbz-mega-menu__links li a:hover {
  color: var(--jbz-primary);
}

.jbz-mega-menu__featured {
  background: var(--jbz-light);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.jbz-mega-menu__view-all {
  display: inline-block;
  color: var(--jbz-primary);
  font-weight: 600;
  margin-top: 12px;
  font-size: 14px;
  text-decoration: none;
  transition: color var(--jbz-transition-fast);
}

.jbz-mega-menu__view-all:hover {
  color: var(--jbz-primary-hover);
}

/* ── Occasions Mega Menu ── */
.jbz-mega-menu--occasions .jbz-mega-menu__inner {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 24px;
}

.jbz-mega-menu__occasion-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  align-items: flex-end;
  min-height: 220px;
  border: 1px solid rgba(201, 161, 74, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.jbz-mega-menu__occasion-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 26, 46, 0.2);
  border-color: var(--jbz-gold, #C9A14A);
}

.jbz-mega-menu__occasion-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.jbz-mega-menu__occasion-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.jbz-mega-menu__occasion-card.jbz-occasion-mehndi .jbz-mega-menu__occasion-overlay {
  background: linear-gradient(to top, rgba(5, 150, 105, 0.9) 0%, rgba(234, 179, 8, 0.6) 60%, rgba(5, 150, 105, 0.3) 100%);
}

.jbz-mega-menu__occasion-card.jbz-occasion-baraat .jbz-mega-menu__occasion-overlay {
  background: linear-gradient(to top, rgba(180, 30, 20, 0.9) 0%, rgba(229, 45, 39, 0.6) 60%, rgba(245, 166, 35, 0.3) 100%);
}

.jbz-mega-menu__occasion-card.jbz-occasion-walima .jbz-mega-menu__occasion-overlay {
  background: linear-gradient(to top, rgba(168, 85, 160, 0.85) 0%, rgba(253, 246, 227, 0.5) 60%, rgba(240, 171, 252, 0.3) 100%);
}

.jbz-mega-menu__occasion-card.jbz-occasion-nikkah .jbz-mega-menu__occasion-overlay {
  background: linear-gradient(to top, rgba(55, 65, 81, 0.9) 0%, rgba(148, 163, 184, 0.5) 60%, rgba(255, 255, 255, 0.3) 100%);
}

.jbz-mega-menu__occasion-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  width: 100%;
  color: var(--jbz-white);
}

.jbz-mega-menu__occasion-name {
  display: block;
  font-family: var(--jbz-font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.jbz-mega-menu__occasion-desc {
  display: block;
  font-size: 12px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.jbz-mega-menu__occasion-cta {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  border-bottom: 1px solid rgba(201, 161, 74, 0.6);
  padding-bottom: 2px;
}

.jbz-mega-menu__occasion-card:hover .jbz-mega-menu__occasion-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ── Search Overlay ── */
.jbz-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--jbz-transition-base), visibility var(--jbz-transition-base);
}

.jbz-search-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.jbz-search-overlay__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 12vh var(--jbz-container-padding) 2rem;
  position: relative;
  max-height: 100vh;
  overflow-y: auto;
}

.jbz-search-overlay__form {
  position: relative;
}

.jbz-search-overlay__input {
  width: 100%;
  font-size: 24px;
  font-family: var(--jbz-font-body);
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--jbz-white);
  color: var(--jbz-white);
  padding: 16px 0;
  transition: border-color var(--jbz-transition-fast);
}

.jbz-search-overlay__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.jbz-search-overlay__input:focus {
  border-bottom-color: var(--jbz-secondary);
  outline: 2px solid var(--jbz-secondary);
  outline-offset: 4px;
}

.jbz-search-overlay__input:focus:not(:focus-visible) {
  outline: none;
}

.jbz-search-overlay__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jbz-white);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  opacity: 0.7;
  transition: opacity var(--jbz-transition-fast);
}

.jbz-search-overlay__close:hover {
  opacity: 1;
}

.jbz-search-overlay__results {
  margin-top: 24px;
  max-height: 50vh;
  overflow-y: auto;
}

.jbz-search-overlay__result-count {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  font-weight: 600;
}

.jbz-search-overlay__result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  margin-bottom: 4px;
  border-radius: 10px;
  color: var(--jbz-white);
  text-decoration: none;
  transition: background 0.2s ease;
}

.jbz-search-overlay__result-item:hover,
.jbz-search-overlay__result-item:focus {
  background: rgba(255, 255, 255, 0.08);
  color: var(--jbz-white);
  outline: none;
}

.jbz-search-overlay__result-thumb {
  width: 56px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
}

.jbz-search-overlay__result-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.jbz-search-overlay__result-thumb--empty {
  background: rgba(255, 255, 255, 0.06);
}

.jbz-search-overlay__result-info {
  flex: 1;
  min-width: 0;
}

.jbz-search-overlay__result-title {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--jbz-font-heading);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.jbz-search-overlay__result-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-size: 12px;
}

.jbz-search-overlay__result-cat {
  color: rgba(255, 255, 255, 0.5);
}

.jbz-search-overlay__result-price {
  color: var(--jbz-secondary, #C9A14A);
  font-weight: 600;
}

.jbz-search-overlay__result-mode {
  color: rgba(255, 255, 255, 0.65);
  font-style: italic;
  font-size: 11px;
}

.jbz-search-overlay__result-arrow {
  color: rgba(255, 255, 255, 0.6);
  font-size: 20px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.jbz-search-overlay__result-item:hover .jbz-search-overlay__result-arrow {
  transform: translateX(3px);
  color: var(--jbz-secondary, #C9A14A);
}

.jbz-search-overlay__view-all {
  display: block;
  text-align: center;
  padding: 14px;
  margin-top: 8px;
  color: var(--jbz-secondary, #C9A14A);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.jbz-search-overlay__view-all:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Browse Categories */
.jbz-search-overlay__browse {
  margin-top: 28px;
}

.jbz-search-overlay__browse-heading {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
  font-weight: 600;
}

.jbz-search-overlay__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.jbz-search-overlay__cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.jbz-search-overlay__cat-chip:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--jbz-secondary, #C9A14A);
  color: var(--jbz-white);
}

.jbz-search-overlay__cat-icon {
  font-size: 14px;
  line-height: 1;
}

/* Recent Searches */
.jbz-search-overlay__recent {
  margin-top: 20px;
}

.jbz-search-overlay__recent-heading {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
  font-weight: 600;
}

.jbz-search-overlay__recent-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.jbz-search-overlay__recent-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  text-decoration: none;
  transition: color var(--jbz-transition-fast);
}

.jbz-search-overlay__recent-list li a:hover {
  color: var(--jbz-white);
}

.jbz-search-overlay__recent-icon {
  font-size: 12px;
  opacity: 0.5;
}

/* Loading / No Results */
.jbz-search-overlay__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 32px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.jbz-search-overlay__spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--jbz-secondary, #C9A14A);
  border-radius: 50%;
  animation: jbz-spin 0.6s linear infinite;
}

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

.jbz-search-overlay__no-results {
  text-align: center;
  padding: 32px 16px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
}

.jbz-search-overlay__no-results p {
  margin: 0 0 8px;
}

.jbz-search-overlay__no-results-hint {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 480px) {
  .jbz-search-overlay__inner {
    padding-top: 8vh;
  }
  .jbz-search-overlay__input {
    font-size: 18px;
  }
  .jbz-search-overlay__cat-chip {
    padding: 7px 12px;
    font-size: 12px;
  }
  .jbz-search-overlay__result-thumb {
    width: 48px;
    height: 60px;
  }
}

/* ── Mobile Drawer ── */
.jbz-mobile-drawer__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 9994;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--jbz-transition-base), visibility var(--jbz-transition-base);
}

.jbz-mobile-drawer__backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.jbz-mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: var(--jbz-dark);
  z-index: 9995;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

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

.jbz-mobile-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.jbz-mobile-drawer__logo {
  font-family: var(--jbz-font-heading);
  color: var(--jbz-white);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.jbz-mobile-drawer__close {
  color: var(--jbz-white);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--jbz-radius-md);
  transition: background var(--jbz-transition-fast);
}

.jbz-mobile-drawer__close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.jbz-mobile-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.jbz-mobile-drawer__list li a {
  display: block;
  padding: 14px 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color var(--jbz-transition-fast), background var(--jbz-transition-fast);
}

.jbz-mobile-drawer__list li a:hover {
  color: var(--jbz-white);
  background: rgba(255, 255, 255, 0.05);
}

/* Accordion */
.jbz-mobile-drawer__accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  text-align: left;
  font-family: var(--jbz-font-body);
  transition: color var(--jbz-transition-fast), background var(--jbz-transition-fast);
}

.jbz-mobile-drawer__accordion-trigger:hover {
  color: var(--jbz-white);
  background: rgba(255, 255, 255, 0.05);
}

.jbz-mobile-drawer__accordion-icon {
  transition: transform var(--jbz-transition-fast);
  font-size: 12px;
}

.jbz-mobile-drawer__accordion-trigger[aria-expanded="true"] .jbz-mobile-drawer__accordion-icon {
  transform: rotate(180deg);
}

.jbz-mobile-drawer__accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 20px;
}

.jbz-mobile-drawer__accordion-panel.is-open {
  max-height: 300px;
}

.jbz-mobile-drawer__accordion-panel a {
  display: block;
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: color var(--jbz-transition-fast);
}

.jbz-mobile-drawer__accordion-panel a:hover {
  color: var(--jbz-secondary);
}

.jbz-mobile-drawer__footer {
  padding: 20px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.jbz-mobile-drawer__footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.jbz-mobile-drawer__footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-decoration: none;
  transition: color var(--jbz-transition-fast);
}

.jbz-mobile-drawer__footer-links a:hover {
  color: var(--jbz-secondary);
}

/* Body scroll lock when drawer is open */
body.jbz-drawer-open {
  overflow: hidden;
}

/* ── Mobile Drawer: Google Reviews Badge ── */
.jbz-mobile-drawer__google-badge {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.jbz-mobile-drawer__google-badge:hover {
  background: rgba(255, 255, 255, 0.1);
}
.jbz-mobile-drawer__google-badge svg {
  flex-shrink: 0;
}
.jbz-mobile-drawer__google-rating {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.jbz-mobile-drawer__google-stars {
  display: inline-flex;
  align-items: center;
  gap: 0;
  line-height: 1;
  flex-shrink: 0;
}
.jbz-mobile-drawer__google-stars svg {
  width: 14px;
  height: 14px;
}
.jbz-mobile-drawer__google-count {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1;
}

/* ══════════════════════════════════════
   Section Headings (shared)
   ══════════════════════════════════════ */
.jbz-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.jbz-section-header h2 {
  font-family: var(--jbz-font-heading);
  font-size: 36px;
  color: var(--jbz-dark);
  font-weight: 700;
  line-height: var(--jbz-line-height-heading);
}

.jbz-section-header p {
  font-size: 16px;
  color: var(--jbz-grey-600);
  max-width: 600px;
  margin: 8px auto 0;
  line-height: var(--jbz-line-height-body);
}

@media (max-width: 767px) {
  .jbz-section-header h2 {
    font-size: 28px;
  }
}

/* ── Full-Width Sections ──
   Sections span the full viewport width.
   Only the inner .jbz-container constrains content.
   ────────────────────────────────────── */
.jbz-hero-slider,
.jbz-section-collections,
.jbz-section-new-arrivals,
.jbz-section-dream-dress,
.jbz-section-bespoke,
.jbz-section-occasions,
.jbz-section-instagram,
.jbz-section-testimonials,
.jbz-section-heritage,
.jbz-section-whatsapp,
.jbz-section-trust-badges,
.jbz-section-blog {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

/* ══════════════════════════════════════
   1. Hero Slider
   ══════════════════════════════════════ */
.jbz-hero-slider {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
}

.jbz-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
}

.jbz-hero-slide__picture {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.jbz-hero-slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.jbz-hero-slide--active {
  opacity: 1;
}

.jbz-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(26, 26, 46, 0.5) 50%, rgba(229, 45, 39, 0.4) 100%);
  z-index: 1;
}

.jbz-hero-content {
  position: relative;
  z-index: 2;
  color: var(--jbz-white);
  max-width: 600px;
  margin-left: 10%;
  padding: 0 var(--jbz-container-padding);
}

.jbz-hero-content h2 {
  font-family: var(--jbz-font-heading);
  font-size: 48px;
  color: var(--jbz-white);
  margin-bottom: 16px;
  line-height: var(--jbz-line-height-heading);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.jbz-hero-content p {
  font-size: 18px;
  margin-bottom: 24px;
  opacity: 0.9;
  line-height: var(--jbz-line-height-body);
}

.jbz-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 50%;
  border: none;
  color: var(--jbz-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--jbz-transition-fast);
}

.jbz-hero-arrow:hover {
  background: var(--jbz-primary);
}

.jbz-hero-arrow--prev {
  left: 20px;
}

.jbz-hero-arrow--next {
  right: 20px;
}

.jbz-hero-arrow svg {
  width: 20px;
  height: 20px;
}

.jbz-hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.jbz-hero-dots__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 18px;
  background-clip: content-box;
  transition: background var(--jbz-transition-fast), transform var(--jbz-transition-fast);
}

.jbz-hero-dots__dot--active {
  background: var(--jbz-white);
  transform: scale(1.2);
}

@media (max-width: 767px) {
  .jbz-hero-slider {
    height: 60vh;
    min-height: 400px;
  }

  .jbz-hero-content h2 {
    font-size: 28px;
  }

  .jbz-hero-content p {
    font-size: 15px;
  }

  .jbz-hero-content {
    margin-left: 0;
    text-align: center;
    max-width: 100%;
  }

  .jbz-hero-arrow {
    display: none;
  }
}

/* Hero Slide Template Classes */
.jbz-hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26, 26, 46, 0.85) 0%, rgba(26, 26, 46, 0.5) 50%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

.jbz-hero-slide__content {
  position: relative;
  z-index: 2;
  color: var(--jbz-white);
  max-width: 700px;
  padding: 0 var(--jbz-container-padding);
  padding-left: 80px;
  display: flex;
  align-items: center;
  height: 100%;
}

.jbz-hero-slide__headline {
  font-family: var(--jbz-font-heading);
  font-size: 52px;
  color: var(--jbz-white);
  margin-bottom: 16px;
  line-height: var(--jbz-line-height-heading);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  font-weight: 700;
}

.jbz-hero-slide__sub-headline {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  line-height: var(--jbz-line-height-body);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.jbz-hero-slide__arch-frame {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  color: var(--jbz-secondary);
}

.jbz-hero-slide__arch-svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .jbz-hero-slide__headline {
    font-size: 32px;
  }

  .jbz-hero-slide__sub-headline {
    font-size: 15px;
  }

  .jbz-hero-slide__content {
    text-align: center;
    padding-left: var(--jbz-container-padding);
    max-width: 100%;
  }

  .jbz-hero-slide__content .jbz-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .jbz-hero-slide__img {
    object-position: center center;
  }
}

/* ── Hero Slide: Dual CTA Wrapper ── */
.jbz-hero-slide__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.jbz-btn--outline-white {
  background: transparent !important;
  border: 2px solid rgba(255, 255, 255, 0.7) !important;
  color: #fff !important;
  padding: 16px 44px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  display: inline-block;
  line-height: 1;
  cursor: pointer;
}

.jbz-btn--outline-white:hover {
  background: #fff !important;
  color: var(--jbz-dark, #1a1a2e) !important;
  border-color: #fff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .jbz-hero-slide__ctas {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .jbz-hero-slide__ctas .jbz-btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .jbz-btn--outline-white {
    padding: 12px 32px;
    font-size: 13px;
  }
}

/* ══════════════════════════════════════
   2. Collections
   ══════════════════════════════════════ */
.jbz-section-collections {
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
  background: var(--jbz-light);
}

.jbz-collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.jbz-collections-grid > * {
  min-width: 0;
}

.jbz-collection-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.jbz-collection-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(201, 161, 74, 0.2), 0 4px 12px rgba(0, 0, 0, 0.08);
}

.jbz-collection-card__image-wrap {
  position: relative;
  overflow: hidden;
  height: 420px;
}

.jbz-collection-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}

.jbz-collection-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.jbz-collection-card__placeholder-text {
  font-family: var(--jbz-font-heading);
  font-size: 28px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.jbz-collection-card:hover .jbz-collection-card__image {
  transform: scale(1.06);
}

.jbz-collection-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.9) 0%, rgba(26, 26, 46, 0.5) 50%, transparent 100%);
  padding: 28px 24px;
  color: var(--jbz-white);
}

.jbz-collection-card__title,
.jbz-collection-card__name {
  font-family: var(--jbz-font-heading);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--jbz-white);
  letter-spacing: 0.01em;
}

.jbz-collection-card__count {
  font-size: 13px;
  opacity: 0.7;
  letter-spacing: 0.02em;
}

@media (max-width: 1023px) {
  .jbz-collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .jbz-collection-card__image-wrap {
    height: 360px;
  }
}

@media (max-width: 767px) {
  .jbz-collections-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .jbz-collection-card__image-wrap {
    height: 280px;
  }
}

/* ══════════════════════════════════════
   3. New Arrivals
   ══════════════════════════════════════ */
.jbz-section-new-arrivals {
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
  background: var(--jbz-light, #F9F7F4);
}

.jbz-new-arrivals__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.jbz-new-arrivals__grid > * {
  min-width: 0;
}

@media (max-width: 1023px) {
  .jbz-new-arrivals__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .jbz-new-arrivals__grid {
    grid-template-columns: 1fr;
  }
}

.jbz-new-arrivals__view-all {
  text-align: center;
  margin-top: 32px;
}

.jbz-product-card {
  border-radius: 12px;
  border: none;
  overflow: hidden;
  background: var(--jbz-white);
  text-decoration: none;
  display: block;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.jbz-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.jbz-product-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.jbz-product-card__image-wrap a {
  display: block;
  width: 100%;
  height: 100%;
}

.jbz-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--jbz-transition-slow);
}

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

.jbz-product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
}

.jbz-product-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
  pointer-events: none;
}

.jbz-product-card:hover .jbz-product-card__overlay {
  opacity: 1;
  pointer-events: auto;
}

.jbz-product-card__quick-actions {
  display: flex;
  gap: 12px;
}

.jbz-product-card__action {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--jbz-white);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  color: var(--jbz-dark);
  text-decoration: none;
  padding: 0;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  transform: translateY(12px);
  opacity: 0;
}

.jbz-product-card__action svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.jbz-product-card:hover .jbz-product-card__action {
  transform: translateY(0);
  opacity: 1;
}

.jbz-product-card:hover .jbz-product-card__action--wishlist { transition-delay: 0s; }
.jbz-product-card:hover .jbz-product-card__action--compare { transition-delay: 0.06s; }
.jbz-product-card:hover .jbz-product-card__action--quickview { transition-delay: 0.12s; }

.jbz-product-card__action:hover {
  transform: scale(1.1) !important;
}

.jbz-product-card__action--wishlist:hover {
  background: #E52D27;
  color: #fff;
}

.jbz-product-card__action--compare:hover {
  background: var(--jbz-secondary, #C9A14A);
  color: var(--jbz-dark);
}

.jbz-product-card__action--quickview:hover {
  background: var(--jbz-dark, #1A1A2E);
  color: #fff;
}

.jbz-product-card__actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.jbz-product-card__content {
  padding: 16px 18px 20px;
}

.jbz-product-card__title {
  font-family: var(--jbz-font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--jbz-dark);
  margin-bottom: 6px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.jbz-product-card__title a {
  color: inherit;
  text-decoration: none;
}

.jbz-product-card__price {
  color: var(--jbz-primary);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 2px;
}

.jbz-product-card__price--enquire {
  color: var(--jbz-grey-600);
  font-weight: 400;
  font-size: 13px;
  font-style: italic;
}

.jbz-product-card__price del {
  color: var(--jbz-grey-500);
  font-weight: 400;
  font-size: 13px;
  margin-left: 8px;
}

.jbz-product-card__actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.jbz-product-card__actions .jbz-btn {
  font-size: 13px;
  padding: 9px 16px;
  border-radius: 50px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.jbz-product-card__actions .jbz-btn--ghost {
  border: 1px solid var(--jbz-grey-200, #e5e7eb);
  background: transparent;
  color: var(--jbz-dark);
}

.jbz-product-card__actions .jbz-btn--ghost:hover {
  border-color: var(--jbz-primary);
  color: var(--jbz-primary);
  background: rgba(229, 45, 39, 0.04);
}

/* ══════════════════════════════════════
   4. Dream Dress (Parallax CTA)
   ══════════════════════════════════════ */
.jbz-section-dream-dress {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.jbz-section-dream-dress .jbz-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.82) 0%, rgba(26, 26, 46, 0.6) 50%, rgba(229, 45, 39, 0.4) 100%);
  z-index: 1;
}

.jbz-section-dream-dress__content {
  position: relative;
  z-index: 2;
  color: var(--jbz-white);
  max-width: 600px;
  padding: 0 var(--jbz-container-padding);
}

.jbz-section-dream-dress__content h2 {
  font-family: var(--jbz-font-heading);
  font-size: 40px;
  color: var(--jbz-white);
  margin-bottom: 16px;
  line-height: var(--jbz-line-height-heading);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.jbz-section-dream-dress__content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 24px;
  line-height: var(--jbz-line-height-body);
}

@media (max-width: 767px) {
  .jbz-section-dream-dress__content h2 {
    font-size: 28px;
  }

  .jbz-section-dream-dress {
    background-attachment: scroll;
    min-height: 400px;
  }
}

/* ══════════════════════════════════════
   5. Bespoke Journey
   ══════════════════════════════════════ */
.jbz-section-bespoke {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: var(--jbz-light);
}

.jbz-bespoke-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.jbz-bespoke-step {
  text-align: center;
  flex: 1;
  position: relative;
}

.jbz-bespoke-step__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--jbz-light);
  border: 2px solid var(--jbz-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--jbz-primary);
  font-size: 24px;
  position: relative;
  z-index: 1;
}

.jbz-bespoke-step__icon svg {
  width: 36px;
  height: 36px;
}

.jbz-bespoke-step__number {
  font-size: 13px;
  color: var(--jbz-grey-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 4px;
}

.jbz-bespoke-step__title {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--jbz-dark);
}

.jbz-bespoke-step__text {
  font-size: 15px;
  color: var(--jbz-grey-600);
  line-height: var(--jbz-line-height-body);
}

/* Connecting lines */
.jbz-bespoke-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(50% + 44px);
  width: calc(100% - 88px);
  height: 2px;
  background: linear-gradient(90deg, var(--jbz-primary), var(--jbz-secondary));
  z-index: 0;
}

@media (max-width: 1023px) {
  .jbz-bespoke-steps {
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
  }

  .jbz-bespoke-step {
    flex: 0 0 calc(33.333% - 22px);
  }

  .jbz-bespoke-step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .jbz-bespoke-steps {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }

  .jbz-bespoke-step {
    flex: none;
    max-width: 280px;
  }
}

.jbz-section-bespoke__header {
  text-align: center;
  margin-bottom: 48px;
}

.jbz-section-bespoke__footer {
  text-align: center;
  margin-top: 40px;
}

/* ══════════════════════════════════════
   6. Occasions
   ══════════════════════════════════════ */
.jbz-section-collections__header,
.jbz-section-occasions__header {
  text-align: center;
  margin-bottom: 36px;
}

.jbz-section-new-arrivals__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
}

.jbz-section-new-arrivals__header .jbz-heading-2 {
  margin: 0;
}

.jbz-section-new-arrivals__header .jbz-new-arrivals__link {
  color: var(--jbz-primary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.jbz-section-new-arrivals__header .jbz-new-arrivals__link:hover {
  color: var(--jbz-primary-hover);
}

.jbz-section-occasions {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: var(--jbz-white);
}

.jbz-occasions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.jbz-occasion-card {
  border-radius: 16px;
  text-align: center;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: var(--jbz-white);
}

.jbz-occasion-card__image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.jbz-occasion-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.jbz-occasion-card__gradient {
  width: 100%;
  height: 100%;
}

.jbz-occasion-card__arch {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.jbz-occasion-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
}

.jbz-occasion-card:hover {
  transform: scale(1.03);
}

.jbz-occasion-card.jbz-occasion-mehndi {
  background: linear-gradient(135deg, #059669, #EAB308);
}

.jbz-occasion-card.jbz-occasion-baraat {
  background: linear-gradient(135deg, #E52D27, #F5A623);
}

.jbz-occasion-card.jbz-occasion-walima {
  background: linear-gradient(135deg, #FDF6E3, #F0ABFC);
  color: var(--jbz-dark);
}

.jbz-occasion-card.jbz-occasion-nikkah {
  background: linear-gradient(135deg, #FFFFFF, #94A3B8);
  color: var(--jbz-dark);
  border: 1px solid var(--jbz-grey-200);
}

.jbz-occasion-card__icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.jbz-occasion-card__name {
  font-family: var(--jbz-font-heading);
  font-size: 26px;
  margin-bottom: 8px;
  font-weight: 700;
  color: inherit;
}

.jbz-occasion-card__desc,
.jbz-occasion-card__description {
  font-size: 15px;
  opacity: 1;
  margin-bottom: 16px;
  line-height: var(--jbz-line-height-body);
}

.jbz-occasion-card__cta {
  font-weight: 600;
  text-decoration: none;
  color: inherit;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 999px;
  display: inline-block;
  transition: background var(--jbz-transition-fast);
}

.jbz-occasion-card__cta:hover {
  background: rgba(255, 255, 255, 0.35);
}

@media (max-width: 1023px) {
  .jbz-occasions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .jbz-occasions-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════
   7. Instagram
   ══════════════════════════════════════ */
.jbz-section-instagram {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: var(--jbz-light);
}

.jbz-instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}

.jbz-instagram-item {
  display: block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 5;
  height: 0;
  padding-bottom: 125%;
}

.jbz-instagram-item__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--jbz-transition-slow);
}

.jbz-instagram-item:hover .jbz-instagram-item__image {
  transform: scale(1.05);
}

.jbz-instagram-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.6);
  opacity: 0;
  transition: opacity var(--jbz-transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jbz-white);
  font-size: 24px;
}

.jbz-instagram-item:hover .jbz-instagram-item__overlay {
  opacity: 1;
}

.jbz-instagram-item__overlay svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 767px) {
  .jbz-instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }
}

.jbz-section-instagram__header {
  text-align: center;
  margin-bottom: 32px;
}

.jbz-section-instagram__icon {
  vertical-align: middle;
  margin-right: 8px;
  color: var(--jbz-primary);
}

.jbz-section-instagram__cta,
.jbz-section-instagram__follow {
  text-align: center;
  margin-top: 24px;
}

/* ══════════════════════════════════════
   8. Testimonials
   ══════════════════════════════════════ */
.jbz-section-testimonials {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: var(--jbz-dark);
  color: var(--jbz-white);
}

.jbz-section-testimonials .jbz-section-header h2 {
  color: var(--jbz-white);
}

.jbz-section-testimonials .jbz-section-header p {
  color: rgba(255, 255, 255, 0.6);
}

.jbz-testimonials-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
}

.jbz-testimonials-carousel__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.jbz-testimonials-carousel__track::-webkit-scrollbar {
  display: none;
}

.jbz-testimonial {
  text-align: center;
  padding: 32px;
  display: block;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  scroll-snap-align: start;
}

.jbz-testimonial.is-active {
  display: block;
}

.jbz-testimonial__stars {
  color: var(--jbz-secondary);
  font-size: 20px;
  margin-bottom: 16px;
  letter-spacing: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.jbz-testimonial blockquote {
  font-family: var(--jbz-font-heading);
  font-style: italic;
  font-size: 18px;
  margin-bottom: 24px;
  line-height: 1.5;
  color: var(--jbz-white);
}

.jbz-testimonial__author {
  font-size: 14px;
  opacity: 0.7;
}

.jbz-testimonial__author strong {
  display: block;
  font-size: 15px;
  opacity: 1;
  margin-bottom: 2px;
}

.jbz-testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.jbz-testimonials-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--jbz-transition-fast);
}

.jbz-testimonials-dot.is-active {
  background: var(--jbz-white);
}

.jbz-testimonial--active {
  display: block;
}

.jbz-testimonial__cite {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-style: normal;
}

.jbz-testimonial__name {
  font-weight: 700;
  color: var(--jbz-white);
}

.jbz-testimonial__location {
  color: rgba(255, 255, 255, 0.6);
}

.jbz-testimonials-carousel__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.jbz-testimonials-carousel__dots {
  display: none;
}

/* Keep original nav styles as fallback for JS-only mode */
.jbz-testimonials-carousel__nav--visible {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  position: relative;
  z-index: 5;
}

.jbz-testimonials-carousel__arrow {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--jbz-white);
  cursor: pointer;
  transition: background var(--jbz-transition-fast), border-color var(--jbz-transition-fast);
  pointer-events: auto;
}

.jbz-testimonials-carousel__arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.jbz-testimonials-carousel__arrow svg {
  pointer-events: none;
}

.jbz-testimonials-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 19px;
  background-clip: content-box;
  transition: background var(--jbz-transition-fast);
}

.jbz-testimonials-carousel__dot--active {
  background: var(--jbz-white);
}

@media (max-width: 1023px) {
  .jbz-testimonial {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 767px) {
  .jbz-testimonials-carousel__track {
    overflow: visible;
    scroll-snap-type: none;
    flex-wrap: wrap;
  }

  .jbz-testimonial {
    flex: 0 0 100%;
  }

  .jbz-testimonial blockquote {
    font-size: 16px;
  }

  .jbz-testimonial {
    padding: 24px 16px;
  }

  /* Re-enable carousel nav on mobile */
  .jbz-testimonials-carousel__nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
  }

  .jbz-testimonials-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
  }

  .jbz-testimonial:not(.jbz-testimonial--active) {
    display: none;
  }
}

/* ══════════════════════════════════════
   9. Heritage
   ══════════════════════════════════════ */
.jbz-section-heritage {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: var(--jbz-light);
}

.jbz-heritage__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.jbz-heritage__image {
  border-radius: 12px;
  height: 500px;
  background-size: cover;
  background-position: center;
  border: 3px solid var(--jbz-secondary);
  overflow: hidden;
}

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

.jbz-heritage__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 48px;
}

.jbz-heritage__tag {
  display: inline-block;
  background: var(--jbz-primary);
  color: var(--jbz-white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: fit-content;
}

.jbz-heritage__content h2 {
  font-family: var(--jbz-font-heading);
  font-size: 36px;
  margin-bottom: 16px;
  color: var(--jbz-dark);
}

.jbz-heritage__content p {
  font-size: 16px;
  color: var(--jbz-grey-600);
  line-height: var(--jbz-line-height-body);
  margin-bottom: 12px;
}

@media (max-width: 767px) {
  .jbz-heritage__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .jbz-heritage__image {
    height: 300px;
  }

  .jbz-heritage__content {
    padding-left: 0;
    padding-top: 0;
  }

  .jbz-heritage__content h2 {
    font-size: 28px;
  }
}

/* Heritage Template Classes */
.jbz-heritage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.jbz-heritage__image-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid var(--jbz-secondary);
}

.jbz-heritage__image--placeholder {
  height: 500px;
}

.jbz-heritage__image-accent {
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 1px solid var(--jbz-secondary);
  border-radius: 16px;
  pointer-events: none;
  opacity: 0.3;
}

@media (max-width: 767px) {
  .jbz-heritage {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .jbz-heritage__image--placeholder {
    height: 300px;
  }
}

/* Section Divider Pattern */
.jbz-divider--pattern {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--jbz-primary), var(--jbz-secondary));
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ══════════════════════════════════════
   10. WhatsApp CTA Section
   Matches Dream Dress premium style.
   ══════════════════════════════════════ */
.jbz-section-whatsapp {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--jbz-dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--jbz-white);
}

.jbz-section-whatsapp__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.88) 0%,
    rgba(18, 140, 126, 0.45) 100%
  );
  z-index: 1;
}

.jbz-section-whatsapp__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--jbz-white);
  max-width: 600px;
  margin: 0 auto;
}

.jbz-section-whatsapp__icon-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: var(--jbz-radius-full);
  background: rgba(37, 211, 102, 0.15);
  border: 2px solid rgba(37, 211, 102, 0.4);
  color: #25D366;
  margin-bottom: 24px;
  animation: jbz-whatsapp-pulse 3s ease-in-out infinite;
}

@keyframes jbz-whatsapp-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.3); }
  50% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
}

.jbz-section-whatsapp__heading {
  font-family: var(--jbz-font-heading);
  font-size: 44px;
  color: var(--jbz-white);
  margin-bottom: 16px;
  line-height: var(--jbz-line-height-heading);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.jbz-section-whatsapp__text {
  max-width: 500px;
  margin: 0 auto 28px;
  font-size: 18px;
  color: var(--jbz-white);
  opacity: 0.92;
  line-height: var(--jbz-line-height-body);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.jbz-section-whatsapp__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(37, 211, 102, 0.9) !important;
  color: var(--jbz-white) !important;
  border: 2px solid rgba(37, 211, 102, 0.6) !important;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--jbz-radius-md);
  cursor: pointer;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: background var(--jbz-transition-fast), transform var(--jbz-transition-fast), box-shadow var(--jbz-transition-fast);
}

.jbz-section-whatsapp__btn:hover {
  background: #25D366 !important;
  color: var(--jbz-white) !important;
  border-color: #25D366 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

@media (max-width: 767px) {
  .jbz-section-whatsapp {
    padding: 60px 0;
    min-height: 320px;
    background-attachment: scroll;
  }

  .jbz-section-whatsapp__heading {
    font-size: 30px;
  }

  .jbz-section-whatsapp__text {
    font-size: 16px;
  }

  .jbz-section-whatsapp__icon-ring {
    width: 60px;
    height: 60px;
  }

  .jbz-section-whatsapp__icon-ring svg {
    width: 32px;
    height: 32px;
  }
}

/* ══════════════════════════════════════
   11. Trust Badges
   ══════════════════════════════════════ */
.jbz-section-trust-badges {
  padding: 48px 0;
  position: relative;
  overflow: hidden;
  background: var(--jbz-white);
}

.jbz-trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.jbz-trust-badge {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.jbz-trust-badge__icon {
  color: var(--jbz-grey-500);
  margin-bottom: 8px;
  font-size: 32px;
}

.jbz-trust-badge__icon svg {
  width: 32px;
  height: 32px;
}

.jbz-trust-badge__text {
  font-size: 13px;
  font-weight: 600;
  color: var(--jbz-dark);
  max-width: 120px;
  line-height: 1.3;
}

@media (max-width: 767px) {
  .jbz-trust-badges {
    gap: 24px;
  }
}

.jbz-trust-badge__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: inherit;
  color: inherit;
  text-decoration: none;
  transition: color var(--jbz-transition-fast), transform var(--jbz-transition-fast);
}

.jbz-trust-badge__link:hover {
  color: var(--jbz-primary);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════
   12. Blog
   ══════════════════════════════════════ */
.jbz-section-blog {
  padding: 64px 0 40px;
  position: relative;
  overflow: hidden;
  background: var(--jbz-light);
}

.jbz-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.jbz-blog-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--jbz-grey-100);
  background: var(--jbz-white);
  text-decoration: none;
  display: block;
  transition: box-shadow var(--jbz-transition-base), transform var(--jbz-transition-base);
}

.jbz-blog-card:hover {
  box-shadow: var(--jbz-shadow-lg);
  transform: translateY(-4px);
}

.jbz-blog-card__image {
  height: 220px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

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

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

.jbz-blog-card__content {
  padding: 20px;
}

.jbz-blog-card__date {
  font-size: 12px;
  color: var(--jbz-grey-600);
  margin-bottom: 8px;
}

.jbz-blog-card__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--jbz-dark);
  line-height: 1.3;
}

.jbz-blog-card__excerpt {
  font-size: 14px;
  color: var(--jbz-grey-600);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: var(--jbz-line-height-body);
}

.jbz-blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.jbz-blog-card .jbz-card__image {
  aspect-ratio: 16 / 10;
  height: auto;
}

.jbz-section-blog__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 32px;
}

.jbz-section-blog__read-more {
  color: var(--jbz-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--jbz-transition-fast);
}

.jbz-section-blog__read-more:hover {
  color: var(--jbz-primary-hover);
}

.jbz-section-blog__cta {
  text-align: center;
  margin-top: 24px;
}

@media (max-width: 767px) {
  .jbz-blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════
   WhatsApp Float
   ══════════════════════════════════════ */
.jbz-whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 990;
  width: 56px;
  height: 56px;
  background: var(--jbz-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jbz-white);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.jbz-whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--jbz-white);
}

.jbz-whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.jbz-whatsapp-float__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--jbz-whatsapp);
  animation: jbz-pulse 2s infinite;
  pointer-events: none;
}

@keyframes jbz-pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.4);
  }
}

@media (max-width: 767px) {
  .jbz-whatsapp-float {
    bottom: 80px;
  }
}

/* ══════════════════════════════════════
   Back to Top
   ══════════════════════════════════════ */
.jbz-back-to-top {
  position: fixed;
  bottom: 24px;
  right: 90px;
  z-index: 990;
  width: 44px;
  height: 44px;
  background: var(--jbz-dark);
  color: var(--jbz-white);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--jbz-transition-base), visibility var(--jbz-transition-base), transform var(--jbz-transition-fast), background var(--jbz-transition-fast);
}

.jbz-back-to-top:hover {
  background: var(--jbz-primary);
}

.jbz-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.jbz-back-to-top svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 767px) {
  .jbz-back-to-top {
    bottom: 80px;
    right: 16px;
    width: 48px;
    height: 48px;
  }
}

/* ══════════════════════════════════════
   Mobile Bottom Tabs
   ══════════════════════════════════════ */
.jbz-bottom-tabs {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--jbz-white);
  border-top: 1px solid var(--jbz-grey-100);
  display: none;
  transition: transform 0.3s ease;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

@media (max-width: 767px) {
  .jbz-bottom-tabs {
    display: flex;
  }
}

.jbz-bottom-tabs--hidden {
  transform: translateY(100%);
}

.jbz-bottom-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  color: var(--jbz-grey-500);
  font-size: 12px;
  text-decoration: none;
  position: relative;
  min-height: 56px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--jbz-font-body);
  transition: color var(--jbz-transition-fast);
}

.jbz-bottom-tab--active {
  color: var(--jbz-primary);
}

.jbz-bottom-tab__icon {
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jbz-bottom-tab__icon svg {
  width: 22px;
  height: 22px;
}

.jbz-bottom-tab__label {
  font-weight: 500;
  font-size: 12px;
}

.jbz-bottom-tab__badge {
  position: absolute;
  top: 4px;
  right: calc(50% - 16px);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--jbz-primary);
  color: var(--jbz-white);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ══════════════════════════════════════
   Scroll Progress Bar
   ══════════════════════════════════════ */
.jbz-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--jbz-primary), var(--jbz-secondary));
  z-index: 9999;
  transition: none;
  pointer-events: none;
}

/* ══════════════════════════════════════
   BEM Class Alignment & UX Polish
   Fixes class mismatches between PHP
   templates and CSS selectors
   ══════════════════════════════════════ */

/* ── Hero Slide (template uses __slide BEM) ── */
.jbz-hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26, 26, 46, 0.88) 0%,
    rgba(26, 26, 46, 0.6) 45%,
    rgba(0, 0, 0, 0.25) 100%
  );
  z-index: 1;
}

.jbz-hero-slide__content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.jbz-hero-slide__headline {
  font-family: var(--jbz-font-heading);
  font-size: 52px;
  color: var(--jbz-white);
  margin-bottom: 16px;
  line-height: var(--jbz-line-height-heading);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
  max-width: 580px;
}

.jbz-hero-slide__sub-headline {
  font-size: 18px;
  color: var(--jbz-white);
  margin-bottom: 28px;
  opacity: 0.92;
  line-height: var(--jbz-line-height-body);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
  max-width: 460px;
}

.jbz-hero-slide__arch-frame {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  color: var(--jbz-secondary);
}

.jbz-hero-slide__arch-svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .jbz-hero-slide__headline {
    font-size: 30px;
    max-width: 100%;
  }
  .jbz-hero-slide__sub-headline {
    font-size: 15px;
    max-width: 100%;
  }
  .jbz-hero-slide__content .jbz-container {
    text-align: center;
  }
}

/* ── Dream Dress CTA (BEM class alignment) ── */
.jbz-section-dream-dress__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.82) 0%,
    rgba(229, 45, 39, 0.45) 100%
  );
  z-index: 1;
}

.jbz-section-dream-dress__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--jbz-white);
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.jbz-section-dream-dress__headline {
  font-family: var(--jbz-font-heading);
  font-size: 44px;
  color: var(--jbz-white);
  margin-bottom: 16px;
  line-height: var(--jbz-line-height-heading);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.jbz-section-dream-dress__subtext {
  font-size: 18px;
  color: var(--jbz-white);
  opacity: 0.92;
  margin-bottom: 28px;
  line-height: var(--jbz-line-height-body);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
  .jbz-section-dream-dress__headline {
    font-size: 30px;
  }
}

/* ── Testimonials (stars fix + BEM alignment) ── */
.jbz-testimonial__stars {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center;
  align-items: center;
  gap: 4px;
  color: var(--jbz-secondary);
  margin-bottom: 24px;
  letter-spacing: 0;
}

.jbz-testimonial__star {
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.jbz-testimonial--active {
  display: block;
}

.jbz-testimonial__quote p {
  font-family: var(--jbz-font-heading);
  font-style: italic;
  font-size: 22px;
  margin-bottom: 24px;
  line-height: 1.5;
  color: var(--jbz-white);
}

.jbz-testimonial__cite {
  display: block;
  font-style: normal;
}

.jbz-testimonial__name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--jbz-white);
  margin-bottom: 4px;
}

.jbz-testimonial__location {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.jbz-testimonials-carousel__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  position: relative;
  z-index: 5;
}

.jbz-testimonials-carousel__arrow {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--jbz-white);
  cursor: pointer;
  transition: background var(--jbz-transition-fast), border-color var(--jbz-transition-fast);
}

.jbz-testimonials-carousel__arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.jbz-testimonials-carousel__dots {
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.jbz-testimonials-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 19px;
  background-clip: content-box;
  transition: background var(--jbz-transition-fast), transform var(--jbz-transition-fast);
}

.jbz-testimonials-carousel__dot--active,
.jbz-testimonials-carousel__dot.is-active {
  background: var(--jbz-white);
  transform: scale(1.2);
}

/* ── Bespoke Section (center button + header) ── */
.jbz-section-bespoke__header {
  text-align: center;
  margin-bottom: 48px;
}

.jbz-section-bespoke__title {
  font-family: var(--jbz-font-heading);
  color: var(--jbz-dark);
}

.jbz-section-bespoke__footer {
  text-align: center;
  margin-top: 48px;
}

/* ── Collection Cards (better placeholders) ── */
.jbz-collection-card__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.jbz-collection-card__placeholder-text {
  font-family: var(--jbz-font-heading);
  font-size: 32px;
  color: var(--jbz-white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.jbz-collection-card__pattern-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.jbz-collection-card__pattern-overlay svg {
  width: 100%;
  height: 100%;
}

/* ── Occasion Section (header + image fill) ── */
.jbz-section-occasions__header {
  text-align: center;
  margin-bottom: 48px;
}

.jbz-section-occasions__title {
  font-family: var(--jbz-font-heading);
  color: var(--jbz-dark);
}

.jbz-section-collections__header {
  text-align: center;
  margin-bottom: 36px;
}

.jbz-section-collections__title {
  font-family: var(--jbz-font-heading);
  color: var(--jbz-dark);
}

/* ── Blog Cards (image-link + header) ── */
.jbz-blog-card__image-link {
  display: block;
}

.jbz-blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--jbz-primary);
  font-weight: 600;
  text-decoration: none;
  margin-top: 12px;
  transition: color var(--jbz-transition-fast);
}

.jbz-blog-card__link:hover {
  color: var(--jbz-primary-hover);
}

.jbz-section-blog__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 32px;
}

.jbz-section-blog__title {
  font-family: var(--jbz-font-heading);
  color: var(--jbz-dark);
}

.jbz-section-blog__read-more {
  color: var(--jbz-primary);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color var(--jbz-transition-fast);
}

.jbz-section-blog__read-more:hover {
  color: var(--jbz-primary-hover);
}

.jbz-section-blog__cta {
  text-align: center;
  margin-top: 24px;
}

/* ── Instagram Section (header + CTA) ── */
.jbz-section-instagram__header {
  text-align: center;
  margin-bottom: 32px;
}

.jbz-section-instagram__title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--jbz-font-heading);
  color: var(--jbz-dark);
}

.jbz-section-instagram__icon {
  color: var(--jbz-primary);
  flex-shrink: 0;
}

.jbz-section-instagram__cta,
.jbz-section-instagram__follow {
  text-align: center;
  margin-top: 24px;
}

/* ── Heritage (BEM class alignment) ── */
.jbz-heritage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.jbz-heritage__media {
  position: relative;
}

.jbz-heritage__image-frame {
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid var(--jbz-secondary);
  position: relative;
}

.jbz-heritage__image-frame img,
.jbz-heritage__image-frame .jbz-heritage__image {
  width: 100%;
  display: block;
}

.jbz-heritage__image-frame img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.jbz-heritage__image--placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
}

.jbz-heritage__image-accent {
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  border: 2px solid var(--jbz-secondary);
  border-radius: 12px;
  z-index: -1;
  opacity: 0.35;
}

.jbz-heritage__title {
  font-family: var(--jbz-font-heading);
  font-size: 36px;
  margin-bottom: 16px;
  color: var(--jbz-dark);
}

.jbz-heritage__text {
  font-size: 16px;
  color: var(--jbz-grey-600);
  line-height: var(--jbz-line-height-body);
  margin-bottom: 12px;
}

.jbz-heritage__text--emphasis {
  font-style: italic;
  color: var(--jbz-dark);
  font-size: 17px;
}

.jbz-heritage__cta {
  margin-top: 8px;
}

@media (max-width: 767px) {
  .jbz-heritage {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .jbz-heritage__title {
    font-size: 28px;
  }
}

/* ── Divider Pattern ── */
.jbz-divider--pattern {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--jbz-primary), var(--jbz-secondary));
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ── Testimonials Section (title) ── */
.jbz-section-testimonials__title {
  font-family: var(--jbz-font-heading);
  color: var(--jbz-white);
  text-align: center;
  margin-bottom: 48px;
}

/* ══════════════════════════════════════════════════════
   Footer BEM overrides (duplicated from style.css to
   bypass CDN-cached old style.css)
   ══════════════════════════════════════════════════════ */
.jbz-footer__bismillah {
  text-align: center;
  padding: var(--jbz-space-6) var(--jbz-container-padding);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.jbz-footer__bismillah-text {
  font-size: 24px;
  color: var(--jbz-secondary);
  opacity: 0.7;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

.jbz-footer__heading {
  color: var(--jbz-white);
  font-size: var(--jbz-font-size-lg);
  font-family: var(--jbz-font-heading);
  font-weight: 700;
  margin-bottom: var(--jbz-space-4);
}

.jbz-footer__text {
  font-size: var(--jbz-font-size-sm);
  color: var(--jbz-grey-300);
  line-height: var(--jbz-line-height-body);
  margin-bottom: var(--jbz-space-4);
}

.jbz-footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.jbz-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--jbz-grey-300);
  background: rgba(255, 255, 255, 0.08);
  transition: color var(--jbz-transition-fast), background var(--jbz-transition-fast), transform var(--jbz-transition-fast);
}

.jbz-footer__social-link:hover {
  color: var(--jbz-white);
  background: var(--jbz-primary);
  transform: translateY(-2px);
}

.jbz-footer__social-link svg {
  width: 18px;
  height: 18px;
}

/* Footer: Inline Google Reviews Badge */
.jbz-footer__google-badge {
  display: inline-flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.2;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.jbz-footer__google-badge:hover {
  border-color: var(--jbz-secondary, #D4AF37);
  background: rgba(255, 255, 255, 0.08);
  color: var(--jbz-white, #fff);
  transform: translateY(-1px);
}

.jbz-footer__google-badge svg {
  display: inline-block !important;
  vertical-align: middle;
}

.jbz-footer__google-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.jbz-footer__google-rating {
  font-weight: 700;
  font-size: 16px;
  color: var(--jbz-white, #fff);
  letter-spacing: -0.01em;
}

.jbz-footer__google-stars {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 1px;
  line-height: 1;
  flex-shrink: 0;
}

.jbz-footer__google-stars svg {
  display: inline-block !important;
  width: 14px !important;
  height: 14px !important;
  flex-shrink: 0;
}

.jbz-footer__google-count {
  font-size: 12px;
  opacity: 0.75;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .jbz-footer__grid {
    grid-template-columns: 1.4fr 1fr 1.1fr 1.2fr !important;
    gap: var(--jbz-space-10) !important;
  }
}

.jbz-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.jbz-footer__links li {
  margin-bottom: var(--jbz-space-2);
}

.jbz-footer__links a {
  color: var(--jbz-grey-300);
  font-size: var(--jbz-font-size-sm);
  text-decoration: none;
  transition: color var(--jbz-transition-fast);
}

.jbz-footer__links a:hover {
  color: var(--jbz-secondary);
}

.jbz-footer__address {
  font-style: normal;
  font-size: var(--jbz-font-size-sm);
  color: var(--jbz-grey-300);
  margin-bottom: var(--jbz-space-4);
}

.jbz-footer__address p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--jbz-space-2);
}

.jbz-footer__address a {
  color: var(--jbz-grey-300);
  text-decoration: none;
  transition: color var(--jbz-transition-fast);
}

.jbz-footer__address a:hover {
  color: var(--jbz-secondary);
}

.jbz-footer__address svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--jbz-secondary);
}

.jbz-footer__address-link {
  color: var(--jbz-grey-400);
  text-decoration: none;
  transition: color var(--jbz-transition-fast);
}

.jbz-footer__address-link:hover {
  color: var(--jbz-secondary);
  text-decoration: underline;
}

/* ══════════════════════════════════════════════════════
   UX Polish Fixes — July 2026
   ══════════════════════════════════════════════════════ */

/* ── 1. Dream Dress CTA: more visible button ── */
.jbz-section-dream-dress .jbz-btn.jbz-btn--secondary,
.jbz-section-dream-dress .jbz-btn.jbz-btn--lg,
.jbz-section-dream-dress .jbz-section-dream-dress__cta {
  background: rgba(245, 166, 35, 0.95) !important;
  color: #fff !important;
  border: 2px solid var(--jbz-secondary) !important;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  transition: background var(--jbz-transition-fast), transform var(--jbz-transition-fast);
}
.jbz-section-dream-dress .jbz-btn.jbz-btn--secondary:hover,
.jbz-section-dream-dress .jbz-btn.jbz-btn--lg:hover,
.jbz-section-dream-dress .jbz-section-dream-dress__cta:hover {
  background: var(--jbz-secondary) !important;
  color: #fff !important;
  transform: translateY(-2px);
}
.jbz-section-dream-dress__whatsapp-btn {
    margin-top: var(--jbz-space-3);
}

/* ── 2. WhatsApp CTA section — styles in main section block ── */

/* ── 3. Occasion card text: better visibility ── */
.jbz-occasion-card__content {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  padding: 24px 16px 20px;
}
.jbz-occasion-card__name {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.jbz-occasion-card__desc,
.jbz-occasion-card__description {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
.jbz-occasion-card__cta {
  color: var(--jbz-secondary);
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* ── 4. Hero slider arrows: prevent overlap ── */
.jbz-hero-slider__arrow,
.jbz-hero-slide__arrow,
[class*="hero"] .jbz-slider__arrow,
.jbz-hero-slider button[class*="arrow"],
.jbz-hero-slider .slick-arrow,
.jbz-hero-slider__prev,
.jbz-hero-slider__next {
  z-index: 5;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  backdrop-filter: blur(4px);
  transition: background var(--jbz-transition-fast);
}
.jbz-hero-slider__prev,
[class*="hero"] .jbz-slider__arrow:first-child {
  left: 24px;
}
.jbz-hero-slider__next,
[class*="hero"] .jbz-slider__arrow:last-child {
  right: 24px;
}

/* ── 5. Product card actions: clean inline buttons (no image overlay) ── */
.jbz-product-card__actions {
  position: static !important;
  display: flex;
  gap: 8px;
  margin-top: 10px;
  opacity: 1 !important;
  transform: none !important;
  background: none !important;
  padding: 0 !important;
}
.jbz-product-card__actions .jbz-btn {
  padding: 7px 14px;
  font-size: 12px;
  white-space: nowrap;
  border-radius: 4px;
}
.jbz-product-card__actions .jbz-btn--whatsapp {
  background: #128C7E;
  color: #fff;
  font-size: 12px;
}
.jbz-product-card__actions .jbz-btn--ghost {
  border: 1px solid var(--jbz-grey-200);
  color: var(--jbz-dark);
  background: transparent;
  font-size: 12px;
}
.jbz-product-card__actions .jbz-btn--ghost:hover {
  border-color: var(--jbz-primary);
  color: var(--jbz-primary);
}

/* ── 6. Testimonials: grid on desktop, carousel on mobile ── */
.jbz-testimonial {
  display: block;
}

@media (max-width: 767px) {
  .jbz-testimonial {
    display: none;
  }
  .jbz-testimonial--active,
  .jbz-testimonial.is-active {
    display: block !important;
  }
}

/* ── 7. Mega menu — premium redesign ── */
.jbz-mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  width: 780px;
  max-width: calc(100vw - 32px);
  background: #fff;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.06);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 100;
}
.jbz-nav__item--has-mega:hover .jbz-mega-menu,
.jbz-nav__item--has-mega:focus-within .jbz-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.jbz-mega-menu__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 280px;
  gap: 0;
  padding: 32px 36px;
}
.jbz-mega-menu--occasions .jbz-mega-menu__inner {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 24px;
}
.jbz-mega-menu__column {
  padding: 0 20px;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}
.jbz-mega-menu__column:first-child {
  padding-left: 0;
}
.jbz-mega-menu__column:last-of-type {
  border-right: none;
  padding-right: 0;
}
.jbz-mega-menu__heading {
  font-family: var(--jbz-font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--jbz-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-bottom: 10px;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--jbz-secondary);
}
.jbz-mega-menu__links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.jbz-mega-menu__links li {
  margin-bottom: 2px;
}
.jbz-mega-menu__links a {
  display: block;
  color: var(--jbz-grey-600, #4b5563) !important;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color 0.15s ease, background 0.15s ease;
  text-decoration: none;
}
.jbz-mega-menu__links a:hover {
  color: var(--jbz-dark) !important;
  background: var(--jbz-grey-100, #f3f4f6);
}
.jbz-mega-menu__view-all {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 10px;
  color: var(--jbz-secondary) !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.15s ease;
}
.jbz-mega-menu__view-all:hover {
  background: var(--jbz-grey-100, #f3f4f6);
}
.jbz-mega-menu__featured {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  margin-left: 12px;
  align-self: stretch;
}
.jbz-mega-menu__featured-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
}
.jbz-mega-menu__featured-img {
  width: 100%;
  flex: 1;
  min-height: 0;
  border-radius: 0;
  background-size: cover;
  background-position: center;
  object-fit: cover;
}
.jbz-mega-menu__featured-label {
  font-size: 13px;
  font-weight: 800;
  color: var(--jbz-white);
  background: var(--jbz-dark);
  text-align: center;
  padding: 10px 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
  flex-shrink: 0;
}

/* Occasion cards in mega menu — uses styles from main block above (line ~320) */

/* Responsive mega menu: narrower screens */
@media (max-width: 860px) {
  .jbz-mega-menu {
    width: calc(100vw - 24px);
  }
  .jbz-mega-menu__inner {
    grid-template-columns: 1fr 1fr 1fr;
    padding: 24px;
  }
  .jbz-mega-menu__featured {
    display: none;
  }
  .jbz-mega-menu--occasions .jbz-mega-menu__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Occasion card gradient backgrounds */
.jbz-occasion-mehndi {
  background: linear-gradient(135deg, #4CAF50 0%, #FFD700 100%);
}
.jbz-occasion-baraat {
  background: linear-gradient(135deg, #E53935 0%, #FF9800 100%);
}
.jbz-occasion-walima {
  background: linear-gradient(135deg, #F8BBD0 0%, #E1BEE7 100%);
}
.jbz-occasion-walima .jbz-mega-menu__occasion-name,
.jbz-occasion-walima .jbz-mega-menu__occasion-desc,
.jbz-occasion-walima .jbz-mega-menu__occasion-cta {
  color: var(--jbz-dark);
}
.jbz-occasion-nikkah {
  background: linear-gradient(135deg, #E0E0E0 0%, #BDBDBD 100%);
}
.jbz-occasion-nikkah .jbz-mega-menu__occasion-name,
.jbz-occasion-nikkah .jbz-mega-menu__occasion-desc,
.jbz-occasion-nikkah .jbz-mega-menu__occasion-cta {
  color: var(--jbz-dark);
}

/* Nav arrow indicator */
.jbz-nav__arrow {
  font-size: 10px;
  margin-left: 2px;
  opacity: 0.7;
}

/* ── 8. Footer payments & registration (duplicated from style.css to bypass CDN cache) ── */
.jbz-footer__payments {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: var(--jbz-space-4);
  flex-wrap: wrap;
}

.jbz-footer__payments-label {
  font-size: var(--jbz-font-size-sm);
  color: var(--jbz-grey-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.jbz-footer__payment-icons {
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.jbz-footer__payment-icons svg {
  opacity: 0.7;
  transition: opacity var(--jbz-transition-fast);
}

.jbz-footer__payment-icons svg:hover {
  opacity: 1;
}

.jbz-footer__registration {
  text-align: center;
  margin-top: var(--jbz-space-4);
  font-size: 11px;
  color: var(--jbz-grey-500);
  opacity: 0.7;
  line-height: 1.5;
}

.jbz-footer__registration p {
  margin: 0;
}

/* ── Logo image in header ── */
.jbz-header__logo-img {
  max-height: 55px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

/* ══════════════════════════════════════════════════════
   Luxury UX Polish — July 2026 Round 2
   ══════════════════════════════════════════════════════ */

/* ── Announcement bar: dark luxury style ── */
.jbz-announcement-bar {
  background: var(--jbz-dark) !important;
  color: var(--jbz-grey-300) !important;
  border-bottom: 1px solid rgba(245, 166, 35, 0.25);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 48px 10px var(--jbz-container-padding);
  max-height: 200px;
  overflow: visible;
}
.jbz-announcement-bar a {
  color: var(--jbz-secondary) !important;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(245, 166, 35, 0.3);
  transition: border-color var(--jbz-transition-fast);
}
.jbz-announcement-bar a:hover {
  color: var(--jbz-secondary) !important;
  border-bottom-color: var(--jbz-secondary);
}
.jbz-announcement-bar__close {
  color: var(--jbz-grey-400) !important;
  z-index: 10;
  font-size: 20px;
  min-width: 44px;
  min-height: 44px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Hero CTA: elevated luxury button ── */
.jbz-hero-slide__cta.jbz-btn--primary,
.jbz-hero-content .jbz-btn--primary {
  background: linear-gradient(135deg, var(--jbz-primary) 0%, #a01c18 100%) !important;
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  padding: 16px 44px !important;
  font-size: 14px !important;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.jbz-hero-slide__cta.jbz-btn--primary:hover,
.jbz-hero-content .jbz-btn--primary:hover {
  background: linear-gradient(135deg, #c0201c 0%, #8a1814 100%) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

/* ── Hero overlay: deeper luxury gradient ── */
.jbz-hero-slide__overlay {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 40%,
    rgba(0, 0, 0, 0.1) 70%,
    transparent 100%
  ) !important;
}

/* ── Hero headline: sharper typography ── */
.jbz-hero-slide__headline {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
  line-height: 1.1 !important;
}
.jbz-hero-slide__sub-headline {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4) !important;
  letter-spacing: 0.02em;
}

/* ── Heritage section: elevated placeholder ── */
.jbz-heritage__image--placeholder {
  background: linear-gradient(
    135deg,
    #1A1A2E 0%,
    #2C2C44 30%,
    #374151 50%,
    #8B7355 80%,
    #F5A623 100%
  ) !important;
  position: relative;
}
.jbz-heritage__image--placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='none' stroke='rgba(245,166,35,0.08)' stroke-width='1'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

/* ── Heritage: gold accent ring animation ── */
.jbz-heritage__image-accent {
  border-color: var(--jbz-secondary) !important;
  opacity: 0.2;
  transition: opacity 0.5s ease;
}
.jbz-heritage__image-frame:hover .jbz-heritage__image-accent {
  opacity: 0.5;
}

/* ── Section headings: consistent luxury feel ── */
.jbz-section h2,
.jbz-section .jbz-heading-2 {
  font-family: var(--jbz-font-heading);
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ── Bespoke section: refine step icons ── */
.jbz-bespoke-step__icon {
  border: 2px solid var(--jbz-primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.jbz-bespoke-step:hover .jbz-bespoke-step__icon {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(229, 45, 39, 0.15);
}
.jbz-bespoke-step__connector {
  background: linear-gradient(90deg, var(--jbz-secondary), var(--jbz-primary), var(--jbz-secondary)) !important;
  height: 2px !important;
  opacity: 0.6;
}

/* ── Featured collections & product cards: handled in main section above ── */

/* ── Testimonials section: luxury feel ── */
.jbz-testimonials-carousel {
  padding: 60px 0 48px;
}
.jbz-testimonial__quote {
  font-size: 20px;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}
.jbz-testimonial__name {
  font-family: var(--jbz-font-heading);
  font-weight: 700;
  font-size: 16px;
}

/* ── Instagram section: refined ── */
.jbz-section-instagram h2 {
  font-family: var(--jbz-font-heading);
}
.jbz-section-instagram .jbz-instagram__handle {
  color: var(--jbz-secondary);
  font-weight: 600;
}

/* ── Trust badges: refined spacing ── */
.jbz-trust-badges {
  gap: 48px;
}
.jbz-trust-badge__icon {
  transition: transform 0.3s ease;
}
.jbz-trust-badge:hover .jbz-trust-badge__icon {
  transform: scale(1.1);
}

/* ── Blog preview cards: clean hover ── */
.jbz-blog-card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.jbz-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* ── Section divider: gold line between sections ── */
.jbz-section + .jbz-section::before {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--jbz-secondary), transparent);
  margin: 0 auto;
  opacity: 0;
}

/* ── Global: smooth scroll for anchors ── */
html {
  scroll-behavior: smooth;
}

/* ── Mega menu featured link ── */
.jbz-mega-menu__featured-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.jbz-mega-menu__featured-link:hover {
  transform: scale(1.02);
}
.jbz-mega-menu__featured-link:hover .jbz-mega-menu__featured-label {
  background: var(--jbz-primary);
  color: var(--jbz-white);
}

/* ── Mobile refinements ── */
@media (max-width: 767px) {
  .jbz-announcement-bar {
    font-size: 11px;
    padding: 8px 40px 8px var(--jbz-container-padding);
  }
  .jbz-hero-slide__cta.jbz-btn--primary,
  .jbz-hero-content .jbz-btn--primary {
    padding: 12px 32px !important;
    font-size: 13px !important;
  }
  .jbz-testimonial__quote {
    font-size: 17px;
    padding: 0 16px;
  }
}

/* ══════════════════════════════════════════════════════
   Footer Redesign — Professional & Legal
   ══════════════════════════════════════════════════════ */

.jbz-footer__logo {
  margin-bottom: var(--jbz-space-4);
}
.jbz-footer__logo a {
  display: inline-block;
}
.jbz-footer__logo-img {
  max-height: 50px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity var(--jbz-transition-fast);
}
.jbz-footer__logo-img:hover {
  opacity: 1;
}
.jbz-footer__logo .custom-logo {
  max-height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.jbz-footer__bottom {
  margin-top: var(--jbz-space-12) !important;
  padding-top: var(--jbz-space-6) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  text-align: center !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.jbz-footer__bottom-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 20px;
}

.jbz-footer__copyright {
  font-size: 13px !important;
  color: var(--jbz-grey-400) !important;
  margin: 0;
}

.jbz-footer__legal {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 6px !important;
  margin-top: 0 !important;
  font-size: 12px !important;
}
.jbz-footer__legal a {
  color: var(--jbz-grey-400) !important;
  text-decoration: none;
  transition: color var(--jbz-transition-fast);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.jbz-footer__legal a:hover {
  color: var(--jbz-grey-300) !important;
}
.jbz-footer__legal a + a::before {
  content: '\00B7';
  margin-right: 6px;
  color: var(--jbz-grey-600);
}

.jbz-footer__registration {
  text-align: center !important;
  margin-top: 0 !important;
  font-size: 11px !important;
  color: var(--jbz-grey-400) !important;
  opacity: 1 !important;
  line-height: 1.5;
}
.jbz-footer__registration p {
  margin: 0;
}
.jbz-footer__sep {
  margin: 0 6px;
  color: var(--jbz-grey-600);
}

.jbz-footer__payments {
  margin-top: 0 !important;
}

.jbz-footer__tagline {
  display: none !important;
}

.jbz-footer__credit {
  font-size: 11px;
  color: var(--jbz-grey-400);
  margin: 0;
}
.jbz-footer__credit a {
  color: var(--jbz-grey-300);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--jbz-transition-fast);
}
.jbz-footer__credit a:hover {
  color: var(--jbz-white);
}

.jbz-footer__build {
  font-size: 10px;
  color: var(--jbz-grey-400);
  letter-spacing: 0.04em;
  user-select: none;
  margin-left: 6px;
}

@media (max-width: 767px) {
  .jbz-footer__bottom-main {
    flex-direction: column;
    gap: 8px;
  }
  .jbz-footer__registration p {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .jbz-footer__sep {
    display: none;
  }
}

/* ══════════════════════════════════════════════════════
   Product Page — Trust Badges (scoped to product page)
   ══════════════════════════════════════════════════════ */
.jbz-product-trust .jbz-trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 20px;
  background: var(--jbz-grey-100, #F9FAFB);
  border-radius: 8px;
}

.jbz-trust-badges__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--jbz-grey-700, #374151);
}

.jbz-trust-badges__item svg {
  flex-shrink: 0;
  color: var(--jbz-secondary, #C9A14A);
}

@media (max-width: 768px) {
  .jbz-product-trust .jbz-trust-badges {
    grid-template-columns: 1fr;
  }
}

/* ── Homepage Trust Badges: single row ── */
.jbz-section-trust-badges .jbz-trust-badges {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .jbz-section-trust-badges .jbz-trust-badges {
    flex-wrap: wrap;
    gap: 20px 32px;
  }
}

/* ══════════════════════════════════════════════════════
   Product Page — Sticky Bar
   ══════════════════════════════════════════════════════ */
.jbz-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: #fff;
  border-top: 1px solid var(--jbz-grey-200, #E5E7EB);
  box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

.jbz-sticky-bar--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.jbz-sticky-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: var(--jbz-container-max, 1320px);
  margin: 0 auto;
  padding: 12px var(--jbz-container-padding, 1.5rem);
}

.jbz-sticky-bar__product {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.jbz-sticky-bar__thumb {
  width: 48px;
  height: 64px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.jbz-sticky-bar__name {
  font-family: var(--jbz-font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--jbz-dark, #1A1A2E);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.jbz-sticky-bar__price {
  font-size: 14px;
  font-weight: 600;
  color: var(--jbz-dark, #1A1A2E);
  white-space: nowrap;
  flex-shrink: 0;
}

.jbz-sticky-bar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.jbz-sticky-bar__actions .jbz-btn {
  padding: 8px 20px;
  font-size: 14px;
  white-space: nowrap;
}

.jbz-sticky-bar__whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0 !important;
  border-radius: 50%;
}

.jbz-sticky-bar__wa-icon {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .jbz-sticky-bar {
    bottom: 56px;
  }
}

/* ══════════════════════════════════════════════════════
   Trust Bar (below hero) — 4 Equal Cards
   ══════════════════════════════════════════════════════ */

.jbz-trust-bar {
  background: var(--jbz-dark, #1a1a2e);
  color: var(--jbz-white, #fff);
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.jbz-trust-bar__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.jbz-trust-bar__cards > * {
  min-width: 0;
}

.jbz-trust-bar__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 20px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: background var(--jbz-transition-fast, 0.2s ease),
              border-color var(--jbz-transition-fast, 0.2s ease),
              transform var(--jbz-transition-fast, 0.2s ease);
  text-decoration: none;
  color: inherit;
}

.jbz-trust-bar__card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 166, 35, 0.3);
  transform: translateY(-2px);
}

a.jbz-trust-bar__card--link:hover {
  color: var(--jbz-secondary, #D4AF37);
}

.jbz-trust-bar__card-icon {
  color: var(--jbz-secondary, #F5A623);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.1);
  flex-shrink: 0;
}

.jbz-trust-bar__card-icon svg {
  display: block;
}

.jbz-trust-bar__card-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--jbz-white, #fff);
  line-height: 1.3;
}

.jbz-trust-bar__card-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.jbz-trust-bar__card-stars {
  display: flex;
  align-items: center;
  gap: 1px;
  line-height: 1;
}

.jbz-trust-bar__card-stars svg {
  display: block;
}

@media (max-width: 1023px) {
  .jbz-trust-bar__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .jbz-trust-bar {
    padding: 16px 0;
  }
  .jbz-trust-bar__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .jbz-trust-bar__card {
    padding: 14px 10px;
    gap: 6px;
  }
  .jbz-trust-bar__card-icon {
    width: 36px;
    height: 36px;
  }
  .jbz-trust-bar__card-icon svg {
    width: 22px;
    height: 22px;
  }
  .jbz-trust-bar__card-title {
    font-size: 12px;
  }
  .jbz-trust-bar__card-subtitle {
    font-size: 11px;
  }
}

/* Old floating .jbz-footer-reviews removed — badge now inline in footer column 1 */

/* ══════════════════════════════════════════════════════
   Bespoke Steps — Image Icons
   ══════════════════════════════════════════════════════ */

.jbz-bespoke-step__icon {
  width: 120px !important;
  height: 120px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.jbz-bespoke-step__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* ══════════════════════════════════════════════════════
   MOBILE FIX BLOCK — Issues audit 2026-07-10
   ══════════════════════════════════════════════════════ */

@media (max-width: 767px) {

  /* ── Fix #1: Compare bar hidden when empty (JS handles toggle) ── */
  .jbz-compare-bar:not(.jbz-compare-bar--visible) {
    display: none !important;
  }

  /* ── Fix #3: Breadcrumbs — add padding so they don't bleed to edge ── */
  .jbz-breadcrumb {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* ── Fix #4: Breadcrumbs inline on all pages (prevent stacking/orphaned chevron) ── */
  .jbz-breadcrumb__list {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 4px;
    justify-content: flex-start;
    text-align: left;
    font-size: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .jbz-breadcrumb__item {
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* ── Fix #5: Announcement bar text minimum 12px ── */
  .jbz-announcement-bar,
  .jbz-announcement-bar__text,
  .jbz-announcement-bar a,
  .jbz-announcement-bar__link {
    font-size: 12px;
  }

  /* ── Fix #6: Header icons — WCAG 44px touch targets on mobile ── */
  .jbz-header__actions {
    gap: 2px;
  }
  .jbz-header__action-btn {
    width: 44px;
    height: 44px;
  }
  .jbz-header__action-btn svg {
    width: 20px;
    height: 20px;
  }

  /* ── Fix #7: Cart/enquiry badge min 11px ── */
  .jbz-header__badge {
    font-size: 11px;
    min-width: 16px;
    height: 16px;
    line-height: 16px;
  }

  /* ── Fix #8: Trust bar subtitles min 12px ── */
  .jbz-trust-bar__card-subtitle {
    font-size: 12px;
  }

  /* ── Fix #9: Product badges min 11px ── */
  .jbz-badge {
    font-size: 11px;
  }

  /* ── Fix #10: FAQ filter scroll indicator (fade right edge) ── */
  .jbz-faq-page__filters {
    position: relative;
    -webkit-mask-image: linear-gradient(to right, #000 85%, transparent 100%);
    mask-image: linear-gradient(to right, #000 85%, transparent 100%);
  }

  /* ── Fix #11: FAQ filter count badge min 12px ── */
  .jbz-faq-page__filter-count {
    font-size: 12px;
  }

  /* ── Fix #14: Footer copyright min 12px ── */
  .jbz-footer__bottom,
  .jbz-footer__bottom p,
  .jbz-footer__bottom span {
    font-size: 12px;
  }

  /* ── Fix #16: Dream Dress style cards — 2-column grid on mobile ── */
  .jbz-dream-styles__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }
  .jbz-dream-styles__card-body {
    padding: 8px 10px;
  }
  .jbz-dream-styles__card-title {
    font-size: 14px;
  }

  /* ── WhatsApp float: ensure it clears the bottom tab bar ── */
  .jbz-whatsapp-float {
    z-index: 9960;
  }
}
