/* ============================================
   Qismat Basmati Rice - PREMIUM LUXURY DESIGN
   Heritage • Crafted by Generations • Tradition
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --qb-forest: #0a1f14;
  --qb-forest-light: #0f2b1a;
  --qb-green: #1a472a;
  --qb-green-soft: #2d5a3d;
  --qb-champagne: #d4af37;
  --qb-champagne-light: #e8c968;
  --qb-champagne-muted: #b8962e;
  --qb-cream: #f8f6f1;
  --qb-cream-dark: #ebe8e0;
  --qb-white: #ffffff;
  --qb-charcoal: #2c2c2c;
  --qb-gray: #5c5c5c;
  --qb-gray-light: #8a8a8a;
  --qb-shadow-soft: 0 2px 40px rgba(10, 31, 20, 0.08);
  --qb-shadow-premium: 0 25px 50px -12px rgba(10, 31, 20, 0.15);
  --qb-shadow-glow: 0 0 60px rgba(212, 175, 55, 0.15);
  --qb-radius: 8px;
  --qb-radius-lg: 16px;
  --qb-radius-xl: 24px;
  --qb-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --qb-transition-fast: all 0.25s ease;
  --qb-header-bg: #f5f3ef;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  color: var(--qb-charcoal);
  font-size: 17px;
  line-height: 1.7;
  background: var(--qb-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--qb-forest);
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; transition: var(--qb-transition); }
a:hover { color: var(--qb-champagne-muted); }
img { max-width: 100%; height: auto; display: block; }

.qb-main { padding: 0; margin: 0; }

/* ========== PREMIUM HEADER ========== */
.qb-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  background: rgba(248, 246, 241, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(10, 31, 20, 0.06);
  transition: var(--qb-transition);
}

.qb-header.scrolled {
  padding: 0.75rem 0;
  box-shadow: var(--qb-shadow-soft);
}

.qb-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
}

.qb-logo img { height: 48px; transition: var(--qb-transition); }
.qb-logo:hover img { opacity: 0.85; }

.qb-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.qb-nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.qb-nav-cta {
  flex-shrink: 0;
}

.qb-nav-close {
  display: none;
}

.qb-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--qb-forest);
  letter-spacing: 0.02em;
  position: relative;
}

.qb-nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--qb-champagne), var(--qb-champagne-light));
  transition: var(--qb-transition);
}

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

.qb-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  background: linear-gradient(135deg, var(--qb-forest) 0%, var(--qb-green) 100%);
  color: white !important;
  border-radius: var(--qb-radius);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 15px rgba(10, 31, 20, 0.2);
}

.qb-btn:hover {
  background: linear-gradient(135deg, var(--qb-green) 0%, var(--qb-green-soft) 100%);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(10, 31, 20, 0.25);
}

.qb-btn::after { display: none !important; }

.qb-btn-gold {
  background: linear-gradient(135deg, var(--qb-champagne) 0%, var(--qb-champagne-light) 100%) !important;
  color: var(--qb-forest) !important;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.qb-btn-gold:hover {
  background: linear-gradient(135deg, var(--qb-champagne-muted) 0%, var(--qb-champagne) 100%) !important;
  color: var(--qb-forest) !important;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.qb-mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--qb-forest);
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: var(--qb-transition);
}

.qb-mobile-toggle i {
  font-size: 1.35rem;
  display: block;
}

.qb-mobile-toggle:hover {
  background: rgba(10, 31, 20, 0.06);
  color: var(--qb-forest);
}

.qb-mobile-cta {
  display: none !important;
}

@media (max-width: 991px) {
  .qb-mobile-toggle { display: flex; }
  .qb-mobile-cta {
    display: inline-flex !important;
    padding: 0.6rem 1.2rem !important;
    font-size: 0.9rem !important;
  }
  .qb-nav-cta { display: none; }
  .qb-nav {
    position: fixed;
    top: 0; left: auto; right: -100%;
    transform: none;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: var(--qb-cream);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    box-shadow: -15px 0 50px rgba(10, 31, 20, 0.1);
    transition: var(--qb-transition);
    z-index: 1001;
  }
  .qb-nav.open { right: 0; }
  .qb-nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0.5rem 1rem 0 auto;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--qb-forest);
    font-size: 1.25rem;
    cursor: pointer;
    border-radius: 8px;
    transition: var(--qb-transition);
  }
  .qb-nav-close:hover {
    background: rgba(10, 31, 20, 0.06);
  }
  .qb-nav-links {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding: 0.5rem 1.5rem 1rem;
  }
  .qb-nav-links a {
    padding: 0.85rem 0;
    width: 100%;
    font-size: 1rem;
    border-bottom: 1px solid rgba(10, 31, 20, 0.08);
  }
  .qb-nav-links a:last-child {
    border-bottom: none;
  }
  .qb-nav.open .qb-nav-cta {
    display: inline-flex;
    margin: 0 1.5rem 1.5rem;
    width: calc(100% - 3rem);
    justify-content: center;
    flex-shrink: 0;
  }
}

/* ========== CINEMATIC HERO - Full Screen Premium ========== */
.qb-hero-slider {
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  position: relative;
  margin: 0;
  overflow: hidden;
}

.qb-hero-slider .swiper-wrapper {
  height: 100%;
}

.qb-hero-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Lighter overlay - image visible, premium feel */
.qb-hero-slider .swiper-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 31, 20, 0.75) 0%, rgba(10, 31, 20, 0.5) 40%, rgba(26, 71, 42, 0.25) 100%);
  z-index: 1;
}

.qb-hero-slider .swiper-slide::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(10, 31, 20, 0.6), transparent);
  z-index: 1;
}

.qb-hero-slider .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
}

.qb-hero-slider .row {
  width: 100%;
  justify-content: flex-start;
}

.qb-hero-content {
  max-width: 700px;
}

.qb-hero-sub {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--qb-champagne-light);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.qb-hero-title {
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.15;
  color: white;
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
}

.qb-hero-title span {
  color: var(--qb-champagne-light);
  font-weight: 600;
  font-style: normal;
  display: inline-block;
  letter-spacing: 0.02em;
}

.qb-hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.qb-btn-outline {
  padding: 0.85rem 1.75rem;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: white;
  border-radius: var(--qb-radius);
  font-weight: 500;
  background: transparent;
}

.qb-btn-outline:hover {
  background: white;
  color: var(--qb-forest);
  border-color: white;
}

.qb-btn-outline.dark {
  border-color: var(--qb-forest);
  color: var(--qb-forest);
}

.qb-btn-outline.dark:hover {
  background: var(--qb-forest);
  color: white !important;
  border-color: var(--qb-forest);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.qb-hero-slider .swiper-button-prev,
.qb-hero-slider .swiper-button-next {
  display: none !important;
}

.qb-hero-slider .swiper-pagination {
  bottom: 3rem !important;
  z-index: 2;
}

.qb-hero-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: var(--qb-transition);
}

.qb-hero-slider .swiper-pagination-bullet-active {
  background: var(--qb-champagne);
  width: 30px;
  border-radius: 5px;
}

/* ========== PREMIUM FEATURES BAR ========== */
.qb-features {
  padding: 0;
  margin-top: -100px;
  position: relative;
  z-index: 10;
}

.qb-features .container {
  background: white;
  border-radius: var(--qb-radius-xl);
  box-shadow: var(--qb-shadow-premium);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.qb-feature-card {
  text-align: center;
  padding: 1.5rem 1rem;
  transition: var(--qb-transition);
  position: relative;
}

@media (min-width: 992px) {
  .qb-feature-card:not(:nth-child(4n))::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--qb-cream-dark), transparent);
  }
}

.qb-feature-card:hover { transform: translateY(-8px); }

.qb-feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--qb-forest) 0%, var(--qb-green) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--qb-champagne);
  font-size: 1.4rem;
  transition: var(--qb-transition);
}

.qb-feature-card:hover .qb-feature-icon {
  box-shadow: 0 10px 30px rgba(10, 31, 20, 0.2);
  transform: scale(1.05);
}

.qb-feature-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.qb-feature-card p {
  font-size: 0.9rem;
  color: var(--qb-gray);
  font-weight: 400;
}

/* ========== QUALITY BY GRADE SECTION ========== */
.qb-quality-tier {
  background: white;
  border-radius: var(--qb-radius-lg);
  overflow: hidden;
  box-shadow: var(--qb-shadow-soft);
  transition: var(--qb-transition);
  height: 100%;
  border: 1px solid rgba(10, 31, 20, 0.06);
}

.qb-quality-tier:hover {
  transform: translateY(-8px);
  box-shadow: var(--qb-shadow-premium);
}

.qb-quality-tier__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.qb-quality-tier__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.qb-quality-tier:hover .qb-quality-tier__img img {
  transform: scale(1.05);
}

.qb-quality-tier__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, var(--qb-champagne), var(--qb-champagne-light));
  color: var(--qb-forest);
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px;
}

.qb-quality-tier__content {
  padding: 1.75rem;
}

.qb-quality-tier__content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.qb-quality-tier__spec {
  font-size: 0.9rem;
  color: var(--qb-champagne-muted);
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.qb-quality-tier__content p {
  font-size: 0.95rem;
  color: var(--qb-gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.qb-quality-tier__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--qb-forest);
  font-size: 0.95rem;
}

.qb-quality-tier__link:hover {
  color: var(--qb-champagne-muted);
}

.qb-quality-tier__link i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.qb-quality-tier__link:hover i {
  transform: translateX(4px);
}

/* ========== PERFECT FOR OCCASION SECTION ========== */
.qb-occasion-card {
  background: white;
  border-radius: var(--qb-radius-lg);
  overflow: hidden;
  box-shadow: var(--qb-shadow-soft);
  transition: var(--qb-transition);
  height: 100%;
  border: 1px solid rgba(10, 31, 20, 0.06);
}

.qb-occasion-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--qb-shadow-premium);
}

.qb-occasion-card--featured {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
}

.qb-occasion-card__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.qb-occasion-card__img-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.qb-occasion-card:hover .qb-occasion-card__img-wrap > img {
  transform: scale(1.05);
}

.qb-occasion-card__thumbnails {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 4px;
  padding: 0.5rem;
  background: linear-gradient(to top, rgba(10, 31, 20, 0.8), transparent);
}

.qb-occasion-card__thumbnails img {
  width: 100%;
  flex: 1;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
  opacity: 0.9;
}

.qb-occasion-card__content {
  padding: 1.75rem;
}

.qb-occasion-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--qb-champagne), var(--qb-champagne-light));
  color: var(--qb-forest);
  border-radius: 50%;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.qb-occasion-card__content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.qb-occasion-card__content p {
  font-size: 0.95rem;
  color: var(--qb-gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* ========== HERITAGE ABOUT SECTION ========== */
.qb-section {
  padding: 6rem 0;
}

.qb-section-alt {
  background: white;
  position: relative;
}

.qb-section-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.qb-section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.qb-section-tag {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--qb-champagne-muted);
  margin-bottom: 0.75rem;
}

.qb-section-heading {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--qb-forest);
  line-height: 1.2;
}

.qb-about-img {
  border-radius: var(--qb-radius-xl);
  overflow: hidden;
  box-shadow: var(--qb-shadow-premium);
  position: relative;
}

.qb-about-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 31, 20, 0.3) 100%);
  z-index: 1;
}

.qb-about-img .badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, var(--qb-champagne) 0%, var(--qb-champagne-light) 100%);
  color: var(--qb-forest);
  padding: 1.25rem 2rem;
  font-weight: 700;
  font-size: 1.75rem;
  font-family: 'Cormorant Garamond', serif;
  z-index: 2;
  letter-spacing: 0.03em;
}

.qb-about-content h2 { margin-bottom: 1.5rem; }

.qb-about-content p {
  font-size: 1.05rem;
  color: var(--qb-gray);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.qb-about-list {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0;
}

.qb-about-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--qb-charcoal);
}

.qb-about-list li::before {
  content: '✓';
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--qb-champagne), var(--qb-champagne-light));
  color: var(--qb-forest);
  font-weight: bold;
  font-size: 0.9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ========== PREMIUM PRODUCT CARDS ========== */
.qb-product-card {
  background: white;
  border-radius: var(--qb-radius-lg);
  overflow: hidden;
  box-shadow: var(--qb-shadow-soft);
  transition: var(--qb-transition);
  height: 100%;
  border: 1px solid rgba(10, 31, 20, 0.06);
}

.qb-product-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--qb-shadow-premium);
  border-color: rgba(212, 175, 55, 0.2);
}

.qb-product-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.qb-product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 31, 20, 0.6) 100%);
  opacity: 0;
  transition: var(--qb-transition);
}

.qb-product-card:hover .qb-product-img::after { opacity: 1; }

.qb-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.qb-product-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.75rem;
  opacity: 0;
  transition: var(--qb-transition);
  z-index: 2;
}

.qb-product-card:hover .qb-product-overlay { opacity: 1; }

.qb-product-overlay .qb-btn { color: white !important; }

/* Product Carousel */
.qb-product-carousel {
  padding: 0.5rem 0 3rem;
  overflow: hidden;
}

.qb-product-carousel .swiper-slide {
  height: auto;
}

.qb-product-carousel .swiper-pagination-bullet {
  background: var(--qb-gray-light);
  opacity: 0.6;
}

.qb-product-carousel .swiper-pagination-bullet-active {
  background: var(--qb-champagne);
  opacity: 1;
}

.qb-product-content {
  padding: 1.75rem;
}

.qb-product-content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.qb-product-content p {
  font-size: 0.95rem;
  color: var(--qb-gray);
  line-height: 1.6;
}

/* ========== INDIAN RICE VARIETIES - Dark Section ========== */
.qb-rice-varieties {
  background: var(--qb-forest);
  padding: 5rem 0;
}

.qb-section-title--light .qb-section-heading {
  color: white;
}

.qb-variety-card {
  background: white;
  border-radius: var(--qb-radius-lg);
  overflow: hidden;
  box-shadow: var(--qb-shadow-premium);
  padding-bottom: 1.5rem;
  transition: var(--qb-transition);
  height: 100%;
}

.qb-variety-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.qb-variety-card__img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.qb-variety-card__img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qb-variety-seal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: var(--qb-green);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.6rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  padding: 0.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.qb-variety-seal i {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.qb-variety-card h3 {
  font-size: 1.1rem;
  margin: 1.25rem 1.25rem 0.5rem;
  color: var(--qb-forest);
}

.qb-variety-agl {
  font-size: 0.9rem;
  color: var(--qb-champagne-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 0 1.25rem 1rem;
}

.qb-variety-btn {
  display: block;
  margin: 0 1.25rem;
  padding: 0.65rem 1.25rem;
  text-align: center;
  border: 2px solid var(--qb-champagne);
  color: var(--qb-champagne-muted);
  border-radius: var(--qb-radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--qb-transition);
}

.qb-variety-btn:hover {
  background: var(--qb-champagne);
  color: var(--qb-forest);
  border-color: var(--qb-champagne);
}

/* ========== WHY CHOOSE US - Split Layout ========== */
.qb-why-choose {
  background: var(--qb-forest);
  padding: 5rem 0;
}

.qb-why-choose__images {
  position: relative;
  min-height: 450px;
}

.qb-why-choose__img {
  position: absolute;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.qb-why-choose__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qb-why-choose__img--1 {
  width: 280px;
  height: 280px;
  top: 0;
  left: 10%;
}

.qb-why-choose__img--2 {
  width: 320px;
  height: 320px;
  bottom: 0;
  right: 5%;
  z-index: 1;
}

.qb-why-choose__content {
  background: white;
  padding: 3rem;
  border-radius: var(--qb-radius-lg);
  border: 1px solid rgba(10, 31, 20, 0.08);
  box-shadow: var(--qb-shadow-premium);
  margin-left: 2rem;
}

.qb-why-choose__content h2 {
  font-size: 2rem;
  color: var(--qb-forest);
  margin-bottom: 2rem;
}

.qb-why-choose__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.qb-why-choose__list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--qb-charcoal);
  line-height: 1.6;
}

.qb-why-choose__list li i {
  color: var(--qb-green);
  font-size: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .qb-why-choose__images {
    min-height: 350px;
    margin-bottom: 2rem;
  }
  .qb-why-choose__img--1 {
    width: 220px;
    height: 220px;
    left: 15%;
    top: 5%;
  }
  .qb-why-choose__img--2 {
    width: 260px;
    height: 260px;
    right: 10%;
    bottom: 5%;
  }
  .qb-why-choose__content {
    margin-left: 0;
  }
}

@media (max-width: 575px) {
  .qb-why-choose__images {
    min-height: 280px;
  }
  .qb-why-choose__img--1 {
    width: 180px;
    height: 180px;
  }
  .qb-why-choose__img--2 {
    width: 200px;
    height: 200px;
  }
}

/* ========== GALLERY SECTION ========== */
#gallery { scroll-margin-top: 100px; }

.qb-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}

.qb-gallery__item {
  position: relative;
  border-radius: var(--qb-radius);
  overflow: hidden;
  box-shadow: var(--qb-shadow-soft);
}

.qb-gallery__item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.qb-gallery__item--wide {
  grid-column: span 2;
}

.qb-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.qb-gallery__item:hover img {
  transform: scale(1.08);
}

.qb-gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 31, 20, 0.85), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: var(--qb-transition);
}

.qb-gallery__item:hover .qb-gallery__overlay {
  opacity: 1;
}

.qb-gallery__overlay span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.05em;
}

@media (max-width: 991px) {
  .qb-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .qb-gallery__item--large {
    grid-column: span 2;
    grid-row: span 2;
  }
  .qb-gallery__item--wide {
    grid-column: span 2;
  }
}

@media (max-width: 575px) {
  .qb-gallery {
    grid-auto-rows: 150px;
  }
}

/* ========== WHY CHOOSE - PREMIUM CARDS ========== */
.qb-why-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--qb-radius-lg);
  box-shadow: var(--qb-shadow-soft);
  height: 100%;
  transition: var(--qb-transition);
  border: 1px solid rgba(10, 31, 20, 0.05);
  position: relative;
  overflow: hidden;
}

.qb-why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--qb-champagne), var(--qb-champagne-light));
  transition: var(--qb-transition);
}

.qb-why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--qb-shadow-premium);
  border-color: rgba(212, 175, 55, 0.15);
}

.qb-why-card:hover::before { height: 100%; }

.qb-why-card .number {
  font-size: 3rem;
  font-family: 'Cormorant Garamond', serif;
  color: var(--qb-champagne);
  font-weight: 700;
  opacity: 0.4;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.qb-why-card h4 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.qb-why-card p {
  font-size: 1rem;
  color: var(--qb-gray);
  line-height: 1.7;
}

/* ========== IMMERSIVE CTA ========== */
.qb-cta {
  background: linear-gradient(135deg, var(--qb-forest) 0%, var(--qb-forest-light) 50%, var(--qb-green) 100%);
  padding: 4rem 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.qb-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.qb-cta .container { position: relative; z-index: 2; }

.qb-cta h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
  font-weight: 600;
}

.qb-cta p {
  opacity: 0.9;
  margin-bottom: 1.75rem;
  font-size: 1.1rem;
}

.qb-cta .qb-btn { background: linear-gradient(135deg, var(--qb-champagne), var(--qb-champagne-light)) !important; color: var(--qb-forest) !important; }
.qb-cta .qb-btn:hover { background: white !important; color: var(--qb-forest) !important; }

/* ========== PAGE HEADER ========== */
.qb-page-header {
  background: linear-gradient(135deg, var(--qb-forest) 0%, var(--qb-forest-light) 50%, var(--qb-green) 100%);
  padding: 7rem 0 4rem;
  margin-top: 70px;
  text-align: center;
  color: white;
  position: relative;
}

.qb-page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

.qb-page-header .container { position: relative; z-index: 2; }

.qb-page-header h1 {
  color: white;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.qb-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.qb-breadcrumb a { color: rgba(255, 255, 255, 0.8); }
.qb-breadcrumb a:hover { color: var(--qb-champagne); }
.qb-breadcrumb span { color: rgba(255, 255, 255, 0.5); }

/* ========== PRODUCT DETAILS ========== */
.qb-product-detail-img {
  border-radius: var(--qb-radius-xl);
  overflow: hidden;
  box-shadow: var(--qb-shadow-premium);
}

.qb-product-detail-img img { width: 100%; }

.qb-product-specs {
  background: var(--qb-cream);
  padding: 2rem;
  border-radius: var(--qb-radius-lg);
  margin: 0 0 1.5rem;
  border: 1px solid rgba(10, 31, 20, 0.06);
}

.qb-product-specs h4 {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--qb-champagne-muted);
  margin-bottom: 1.25rem;
}

.qb-product-specs ul { list-style: none; padding: 0; margin: 0; }
.qb-product-specs li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.qb-product-specs li:last-child { border-bottom: none; }
.qb-product-specs li strong { color: var(--qb-forest); }

/* ========== PREMIUM CONTACT ========== */
.qb-contact-card {
  background: white;
  padding: 2rem;
  border-radius: var(--qb-radius-lg);
  box-shadow: var(--qb-shadow-soft);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  border: 1px solid rgba(10, 31, 20, 0.06);
  transition: var(--qb-transition);
}

.qb-contact-card:hover {
  box-shadow: var(--qb-shadow-premium);
  transform: translateX(5px);
}

.qb-contact-card__content h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--qb-forest);
  margin-bottom: 0.35rem;
}

.qb-contact-card__content a,
.qb-contact-card__content p {
  color: var(--qb-charcoal);
  font-size: 1rem;
  line-height: 1.6;
}

.qb-contact-card__content a:hover {
  color: var(--qb-champagne-muted);
}

.qb-contact-card .icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--qb-champagne), var(--qb-champagne-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--qb-forest);
  flex-shrink: 0;
  font-size: 1.25rem;
}

/* Contact Form Card - Premium Look */
.qb-contact-form-card {
  background: white;
  padding: 3rem;
  border-radius: var(--qb-radius-lg);
  box-shadow: var(--qb-shadow-premium);
  border: 1px solid rgba(10, 31, 20, 0.06);
  position: relative;
  overflow: hidden;
}

.qb-contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--qb-champagne), var(--qb-champagne-light));
  border-radius: 4px 0 0 4px;
}

.qb-contact-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--qb-forest);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.qb-contact-form input,
.qb-contact-form textarea {
  width: 100%;
  padding: 1rem 1.35rem;
  border: 1px solid rgba(10, 31, 20, 0.12);
  border-radius: var(--qb-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--qb-transition);
  background: var(--qb-cream);
}

.qb-contact-form input::placeholder,
.qb-contact-form textarea::placeholder {
  color: var(--qb-gray-light);
}

.qb-contact-form input:hover,
.qb-contact-form textarea:hover {
  border-color: rgba(10, 31, 20, 0.2);
}

.qb-contact-form input:focus,
.qb-contact-form textarea:focus {
  outline: none;
  border-color: var(--qb-champagne);
  background: white;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}

.qb-contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.qb-contact-form-actions {
  margin-top: 0.5rem;
}

.qb-contact-form-actions .qb-btn {
  min-width: 200px;
}

@media (max-width: 575px) {
  .qb-contact-form-card {
    padding: 2rem 1.5rem;
  }
  .qb-contact-form-actions .qb-btn {
    width: 100%;
    min-width: auto;
  }
}

/* Contact Page - Map Section */
.qb-map-wrap {
  position: relative;
  border-radius: var(--qb-radius-lg);
  overflow: hidden;
  box-shadow: var(--qb-shadow-premium);
}

.qb-map-wrap iframe {
  display: block;
}

.qb-map-overlay {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
}

.qb-map-overlay .qb-btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

@media (max-width: 575px) {
  .qb-map-wrap iframe {
    height: 350px;
  }
  .qb-map-overlay {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    text-align: center;
  }
  .qb-map-overlay .qb-btn {
    width: 100%;
  }
}

/* ========== LUXURY FOOTER ========== */
.qb-footer {
  background: var(--qb-forest);
  color: rgba(255, 255, 255, 0.8);
  padding: 5rem 0 2rem;
  position: relative;
}

.qb-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.qb-footer h4 {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}

.qb-footer a { color: rgba(255, 255, 255, 0.8); }
.qb-footer a:hover { color: var(--qb-champagne); }

.qb-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.qb-footer-social a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  margin-left: 0.5rem;
  transition: var(--qb-transition);
}

.qb-footer-social a:hover {
  background: var(--qb-champagne);
  color: var(--qb-forest) !important;
  transform: translateY(-3px);
}

.qb-scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--qb-champagne), var(--qb-champagne-light));
  color: var(--qb-forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--qb-transition);
  z-index: 999;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.qb-scroll-top.visible { opacity: 1; visibility: visible; }
.qb-scroll-top:hover { transform: scale(1.1); box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5); }

/* ========== BLINKIT DELIVERY ANIMATION ========== */
/* STANDBY (no .sliding): "Available on Blinkit" above scooter, left corner, waving */
/* SLIDING (.sliding): "Order Now on Blinkit" flag + smoke, moves left to right */
.qb-blinkit-banner {
  position: fixed;
  bottom: 2rem;
  left: 0;
  z-index: 998;
  text-decoration: none;
  opacity: 0;
  transform: translateX(-100%);
  animation: qb-blinkit-slide-in 2s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s forwards,
             qb-blinkit-sweep 10s cubic-bezier(0.25, 0.46, 0.45, 0.94) 3.2s infinite;
  transform-origin: left center;
}

.qb-blinkit-inner {
  display: flex;
  align-items: flex-end;
  gap: 0;
  position: relative;
  padding-left: 0;
}

/* Scooter wrap - text on head, scooter below */
.qb-blinkit-scooter-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.qb-blinkit-scooter-row {
  display: flex;
  align-items: center;
  gap: 0;
}

/* ===== STANDBY: "Available on Blinkit" on head ===== */
.qb-blinkit-idle-text {
  display: block;
  background: linear-gradient(135deg, #FFE11B 0%, #FFC107 100%);
  color: #1a1a1a;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 8px;
  white-space: nowrap;
  margin-bottom: 0.35rem;
  box-shadow: 0 4px 15px rgba(255, 225, 27, 0.5);
  animation: qb-blinkit-idle-bob 0.6s ease-in-out infinite;
}

.qb-blinkit-banner.sliding .qb-blinkit-idle-text {
  display: none !important;
}

/* ===== SLIDING: "Order Now on Blinkit" on head (same position as Available) ===== */
.qb-blinkit-order-text {
  display: none !important;
  background: linear-gradient(135deg, #FFE11B 0%, #FFC107 100%);
  color: #1a1a1a;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 8px;
  white-space: nowrap;
  margin-bottom: 0.35rem;
  box-shadow: 0 4px 15px rgba(255, 225, 27, 0.5);
  animation: qb-blinkit-flag-wave 1.5s ease-in-out infinite;
}

.qb-blinkit-banner.sliding .qb-blinkit-order-text {
  display: block !important;
}

/* Smoke - cylinder side, only when sliding */
.qb-blinkit-smoke {
  display: none;
  width: 55px;
  height: 40px;
  margin-right: -25px;
  background: radial-gradient(ellipse 70% 80% at 70% 50%, rgba(140, 140, 140, 0.75) 0%, rgba(160, 160, 160, 0.45) 40%, rgba(180, 180, 180, 0.2) 65%, transparent 85%);
  filter: blur(5px);
  animation: qb-blinkit-smoke-puff 1.2s ease-in-out infinite;
}

.qb-blinkit-banner.sliding .qb-blinkit-smoke {
  display: block;
}

/* Scooter - bigger, transparent background */
.qb-blinkit-scooter {
  width: 140px;
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: qb-blinkit-scooter-bob 0.6s ease-in-out infinite;
}

.qb-blinkit-scooter img {
  width: 130px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.2));
}

@keyframes qb-blinkit-scooter-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes qb-blinkit-idle-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes qb-blinkit-smoke-puff {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.1); }
}

/* Slower slide: 60% idle (6s), 40% slide (4s) */
@keyframes qb-blinkit-sweep {
  0%, 60% { transform: translateX(0); }
  100% { transform: translateX(calc(100vw - 100%)); }
}

.qb-blinkit-banner:hover {
  animation-play-state: paused;
}

@keyframes qb-blinkit-slide-in {
  0% { transform: translateX(-100%); opacity: 0; }
  70% { opacity: 1; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes qb-blinkit-flag-wave {
  0%, 100% { transform: skewY(0deg) rotate(-2deg); }
  25% { transform: skewY(3deg) rotate(2deg); }
  50% { transform: skewY(-2deg) rotate(-1deg); }
  75% { transform: skewY(2deg) rotate(1deg); }
}

@media (max-width: 575px) {
  .qb-blinkit-banner { bottom: 1rem; }
  .qb-blinkit-idle-text { font-size: 0.7rem; padding: 0.4rem 0.8rem; }
  .qb-blinkit-order-text { font-size: 0.7rem; padding: 0.4rem 0.8rem; }
  .qb-blinkit-scooter { width: 100px; height: 70px; }
  .qb-blinkit-scooter img { width: 95px; }
  .qb-blinkit-smoke { width: 50px; height: 32px; }
}
