/* ══════════════════════════════════════
   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: 8px var(--jbz-container-padding);
  position: relative;
  z-index: 901;
  line-height: 1.4;
}

.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;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

/* ── 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: var(--jbz-primary);
  color: var(--jbz-white);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.jbz-header__hamburger {
  display: none;
}

@media (max-width: 1023px) {
  .jbz-header__hamburger {
    display: flex;
  }
}

/* ── 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: var(--jbz-grey-500);
  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: 8px;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  background-size: cover;
  background-position: center;
}

.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);
}

.jbz-mega-menu__occasion-card {
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  color: var(--jbz-white);
  transition: transform 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

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

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

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

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

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

.jbz-mega-menu__occasion-card h3 {
  font-family: var(--jbz-font-heading);
  font-size: 20px;
  margin-bottom: 8px;
  color: inherit;
}

.jbz-mega-menu__occasion-card p {
  font-size: 13px;
  opacity: 0.85;
}

/* ── 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: 640px;
  margin: 0 auto;
  padding: 20vh var(--jbz-container-padding) 0;
  position: relative;
}

.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;
  outline: none;
  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);
}

.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: 32px;
  max-height: 50vh;
  overflow-y: auto;
}

.jbz-search-overlay__result-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--jbz-white);
  text-decoration: none;
  transition: opacity var(--jbz-transition-fast);
}

.jbz-search-overlay__result-item:hover {
  opacity: 0.8;
  color: var(--jbz-secondary);
}

.jbz-search-overlay__result-thumb {
  width: 48px;
  height: 48px;
  border-radius: var(--jbz-radius-md);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.jbz-search-overlay__result-title {
  font-size: 15px;
  font-weight: 600;
}

.jbz-search-overlay__result-type {
  font-size: 12px;
  opacity: 0.6;
}

.jbz-search-overlay__recent {
  margin-top: 24px;
}

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

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

.jbz-search-overlay__recent-list li a {
  display: block;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.7);
  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__loading {
  text-align: center;
  padding: 24px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.jbz-search-overlay__no-results {
  text-align: center;
  padding: 24px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

/* ── 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;
}

/* ══════════════════════════════════════
   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-500);
  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;
  }
}

/* ══════════════════════════════════════
   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;
  background-size: cover;
  background-position: center;
}

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

.jbz-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.7), rgba(229, 45, 39, 0.3));
  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);
}

.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: 0;
  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;
  }
}

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

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

.jbz-collection-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.jbz-collection-card__image {
  height: 400px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

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

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

.jbz-collection-card__title {
  font-family: var(--jbz-font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--jbz-white);
}

.jbz-collection-card__count {
  font-size: 13px;
  opacity: 0.8;
}

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

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

  .jbz-collection-card__image {
    height: 250px;
  }
}

/* ══════════════════════════════════════
   3. New Arrivals
   ══════════════════════════════════════ */
.jbz-section-new-arrivals {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: var(--jbz-white);
}

.jbz-new-arrivals__slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding-bottom: 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--jbz-grey-300) transparent;
}

.jbz-new-arrivals__slider::-webkit-scrollbar {
  height: 4px;
}

.jbz-new-arrivals__slider::-webkit-scrollbar-track {
  background: transparent;
}

.jbz-new-arrivals__slider::-webkit-scrollbar-thumb {
  background: var(--jbz-grey-300);
  border-radius: 2px;
}

.jbz-product-card {
  min-width: 280px;
  max-width: 280px;
  scroll-snap-align: start;
  border-radius: 12px;
  border: 1px solid var(--jbz-grey-100);
  overflow: hidden;
  background: var(--jbz-white);
  text-decoration: none;
  display: block;
  transition: border-color var(--jbz-transition-base), box-shadow var(--jbz-transition-base);
  flex-shrink: 0;
}

.jbz-product-card:hover {
  border-color: var(--jbz-secondary);
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.15);
}

.jbz-product-card__image {
  height: 350px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

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

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

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

.jbz-product-card__actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity var(--jbz-transition-fast), transform var(--jbz-transition-fast);
}

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

.jbz-product-card__action {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--jbz-white);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: var(--jbz-shadow-md);
  color: var(--jbz-dark);
  transition: color var(--jbz-transition-fast), background var(--jbz-transition-fast);
}

.jbz-product-card__action:hover {
  background: var(--jbz-primary);
  color: var(--jbz-white);
}

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

.jbz-product-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--jbz-dark);
  margin-bottom: 4px;
  line-height: 1.3;
}

.jbz-product-card__price {
  color: var(--jbz-primary);
  font-weight: 700;
  font-size: 15px;
}

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

/* ══════════════════════════════════════
   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.75), rgba(229, 45, 39, 0.35));
  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);
}

.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-white);
}

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

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

.jbz-bespoke-step__icon {
  width: 64px;
  height: 64px;
  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: 28px;
  height: 28px;
}

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

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

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

/* Connecting lines */
.jbz-bespoke-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 32px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: var(--jbz-grey-100);
  z-index: 0;
}

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

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

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

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

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

.jbz-occasion-card {
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: var(--jbz-white);
}

.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: 24px;
  margin-bottom: 8px;
  font-weight: 700;
  color: inherit;
}

.jbz-occasion-card__desc {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 16px;
  line-height: var(--jbz-line-height-body);
}

.jbz-occasion-card__cta {
  font-weight: 600;
  text-decoration: underline;
  color: inherit;
  font-size: 14px;
}

@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-white);
}

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

.jbz-instagram-item {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
}

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

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

.jbz-instagram-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(229, 45, 39, 0.7);
  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);
    grid-template-rows: repeat(4, 1fr);
  }
}

/* ══════════════════════════════════════
   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: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.jbz-testimonial {
  text-align: center;
  padding: 0 40px;
  display: none;
}

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

.jbz-testimonial__stars {
  color: var(--jbz-secondary);
  font-size: 20px;
  margin-bottom: 16px;
  letter-spacing: 4px;
}

.jbz-testimonial blockquote {
  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__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);
}

@media (max-width: 767px) {
  .jbz-testimonial blockquote {
    font-size: 18px;
  }

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

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

.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-light);
  color: var(--jbz-primary);
  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-500);
  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;
  }
}

/* ══════════════════════════════════════
   10. WhatsApp CTA Section
   ══════════════════════════════════════ */
.jbz-section-whatsapp {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  background: var(--jbz-whatsapp);
  color: var(--jbz-white);
  text-align: center;
}

.jbz-section-whatsapp__icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: inline-block;
}

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

.jbz-section-whatsapp h2 {
  font-family: var(--jbz-font-heading);
  font-size: 32px;
  color: var(--jbz-white);
  margin-bottom: 12px;
}

.jbz-section-whatsapp p {
  max-width: 500px;
  margin: 0 auto 24px;
  font-size: 16px;
  opacity: 0.9;
  line-height: var(--jbz-line-height-body);
}

.jbz-section-whatsapp .jbz-btn--whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--jbz-white);
  color: var(--jbz-whatsapp);
  border: none;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--jbz-radius-md);
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--jbz-transition-fast), box-shadow var(--jbz-transition-fast);
}

.jbz-section-whatsapp .jbz-btn--whatsapp-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: var(--jbz-whatsapp);
}

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

.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;
  }
}

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

.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-500);
  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-500);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: var(--jbz-line-height-body);
}

@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;
  transform: rotate(-90deg);
}

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

/* ══════════════════════════════════════
   Mobile Bottom Tabs
   ══════════════════════════════════════ */
.jbz-bottom-tabs {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  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: 10px;
  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;
}

.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: 9px;
  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;
}
