/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800;900&family=Inter:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;1,500&family=Outfit:wght@400;500;600;700&display=swap');

/* CSS Reset & Variables */
:root {
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Outfit', sans-serif;
  --text-white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.85);
  --bg-gradient: radial-gradient(circle at 75% 45%, #ff9a00 0%, #ff6a00 35%, #e64a19 70%, #b71c1c 100%);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background-color: #1a0f0d;
  scroll-behavior: smooth;
}

/* Hide scrollbars globally across the website */
html,
body,
.scroll-container {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
.scroll-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

html.purple-bg-html {
  background-color: #694F84 !important;
}

body {
  font-family: var(--font-secondary);
  background: #1a0f0d;
  color: var(--text-white);
  height: 100vh;
  overflow: hidden;
  line-height: 1.5;
}

/* Scroll Container for Snapping */
.scroll-container {
  height: 100vh;
  width: 100%;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  position: relative;
}

/* Full Width Slide Section */
.slide-section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Solid background colors for each product category */
.slide-snacks {
  background: radial-gradient(circle at 75% 45%, #ff9a00 0%, #ff6a00 35%, #e64a19 70%, #b71c1c 100%);
}

.slide-snacks-cat {
  background: #64C75F;
}

.slide-pocket-snacks {
  background: #8437A2;
}

.slide-honeys {
  background: #F8A13A;
}

.slide-pocket-honeys {
  background: #D3245E;
}

.slide-spices {
  background: #39A78F;
}

.slide-fruit-powders {
  background: #F5CA42;
}

.slide-pickles {
  background: #ff6223;
}

.slide-rice {
  background: #b8d451;
}

.slide-essential-spices {
  background: #B72F59;
}

.slide-masala {
  background: #EB3A1C;
}

.slide-whole-spices {
  background: #1B9659;
}

.slide-premium {
  background: #EAA429;
}

.slide-about {
  background: #80619E;
}

/* (alternating grid removed – carousel layout used instead)

/* Header Navbar */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 24px 40px;
  background: transparent;
  transition: var(--transition-smooth);
}

.header-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.logo {
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
}

.logo:hover {
  transform: scale(1.04);
}

/* Glass Search Bar */
.search-bar {
  position: relative;
  flex: 1;
  max-width: 520px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  padding: 6px 6px 6px 22px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.search-bar input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-white);
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  font-weight: 400;
}

.search-bar input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.search-button {
  background: transparent;
  border: none;
  outline: none;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.search-button:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-white);
  transform: scale(1.05);
}

.search-icon {
  width: 18px;
  height: 18px;
  stroke: var(--text-white);
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-white);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: var(--transition-smooth);
  opacity: 0.85;
}

.nav-link:hover {
  opacity: 1;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--text-white);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  opacity: 1;
  font-weight: 600;
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 110;
  padding: 0;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--text-white);
  transition: var(--transition-smooth);
  border-radius: 2px;
  transform-origin: center;
}

/* Hero & Product Slides Grid */
.hero,
.product-slide {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 120px 40px 60px 40px;
  position: relative;
  gap: 40px;
  box-sizing: border-box;
}

/* Dot Navigation Sidebar */
.side-nav-dots {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  flex-direction: column;
  gap: 16px;
  z-index: 100;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  transition: var(--transition-smooth);
  outline: none;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.dot.active {
  background: var(--text-white);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Left Content */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title span {
  display: block;
}

.title-line {
  display: block !important;
}

.title-word {
  display: block;
}

@media (max-width: 1024px) {
  .title-word {
    display: inline !important;
  }
}

.hero-description {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 40px;
  font-weight: 400;
}

/* Right Content (Floating Wrapper) */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
}

.mockup-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 1.03;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -100px;
}

.debris-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
  z-index: 1;
  transform: scale(1.56) translateX(0);
}

.debris-bg.image-a,
.debris-bg.image-b,
.debris-bg.image-d,
.debris-bg.image-f {
  transform: scale(1.3) translateX(0);
}

@media (min-width: 1025px) {
  .debris-bg.image-c,
  .debris-bg.image-e {
    transform: scale(1.45) translateX(0);
  }
  .debris-bg.image-a,
  .debris-bg.image-b,
  .debris-bg.image-d,
  .debris-bg.image-f {
    transform: scale(1.3) translateX(30px);
  }
}


.image-b,
.image-e,
.image-f {
  animation: imageFade 12s infinite ease-in-out;
}

@keyframes imageFade {

  0%,
  45% {
    opacity: 0;
  }

  50%,
  95% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* Subtle background accent glow */
.glow-accent {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 243, 224, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  body {
    height: auto;
    overflow-y: auto;
  }

  .scroll-container {
    scroll-snap-type: none !important;
    height: auto !important;
    overflow-y: visible !important;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 60px;
    gap: 16px;
    min-height: auto;
  }

  .site-header {
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
  }

  .header-container {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 0;
  }

  .logo img {
    height: 48px;
  }

  .menu-toggle {
    display: flex;
    flex-shrink: 0 !important;
    width: 26px !important;
  }

  .search-bar {
    order: unset !important;
    flex: none !important;
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    justify-content: center !important;
    overflow: hidden !important;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s !important;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    background: rgba(255, 255, 255, 0.12) !important;
  }

  .search-bar input {
    width: 100% !important;
    opacity: 0 !important;
    padding: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.3s ease !important;
  }

  .search-button {
    width: 44px !important;
    height: 44px !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    background: transparent !important;
  }

  /* Expanded Search Bar state */
  .search-bar.expanded {
    width: calc(100% - 180px) !important; /* expand to left close to logo */
    max-width: 520px !important;
    border-radius: 50px !important;
    padding: 6px 6px 6px 20px !important;
    overflow: visible !important;
  }

  .search-bar.expanded input {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .search-dropdown {
    right: -38px !important;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(234, 27, 54, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 40px;
    gap: 28px;
    transition: var(--transition-smooth);
    z-index: 105;
  }

  .nav-menu.active {
    right: 0;
  }

  .menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-content {
    align-items: center;
    padding: 0 20px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
  }

  .hero-visual {
    justify-content: center;
  }

  .mockup-container {
    max-width: 550px;
    margin: 0 auto;
  }

  .debris-bg,
  .debris-bg.image-a,
  .debris-bg.image-b {
    transform: scale(1.15);
  }

  .debris-bg.image-d,
  .debris-bg.image-f {
    transform: scale(1.2);
  }
}

@media (max-width: 767px) {
  .hero,
  .hero-slide-inner {
    padding: 170px 10px 100px;
    gap: 8px;
  }

  .hero-title {
    font-size: clamp(1.8rem, 8.5vw, 2.8rem);
    margin-bottom: 16px;
  }

  .hero-description {
    margin-bottom: 24px;
    font-size: clamp(0.85rem, 3.8vw, 1rem);
  }

  .mockup-container {
    max-width: 420px;
    margin: 0 auto;
  }

  .debris-bg,
  .debris-bg.image-a,
  .debris-bg.image-b {
    transform: scale(1.3);
  }

  .debris-bg.image-d,
  .debris-bg.image-f {
    transform: scale(1.15);
  }
}

/* ═══════════════════════════════════════════════════
   HERO CAROUSEL STRUCTURE
═══════════════════════════════════════════════════ */
.hero-carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-carousel-track {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 1.2s cubic-bezier(0.76, 0, 0.24, 1);
}

.hero-carousel-slide {
  width: calc(100% / 3);
  height: 100%;
  flex-shrink: 0;
}

/* Horizontal Dot Indicators */
.hero-carousel-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-indicator:hover {
  background: rgba(255, 255, 255, 0.7);
}

.hero-indicator.active {
  background: #ffffff;
  width: 30px;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .hero-carousel-indicators {
    bottom: 20px;
  }
}

/* ═══════════════════════════════════════════════════
   SLIDE 1 – HERO TWO-COLUMN LAYOUT
═══════════════════════════════════════════════════ */
.hero-slide-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 120px 40px 60px;
  gap: 40px;
  box-sizing: border-box;
}

/* ═══════════════════════════════════════════════════
   CATEGORY SLIDES (slides 2–10) – TRANSPARENT 3x2 GRID
   ═══════════════════════════════════════════════════ */
.cat-slide-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 20px 20px;
  box-sizing: border-box;
  gap: 24px;
}

/* ── Clean Header (Title + Description) ── */
.cat-header {
  text-align: left;
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-sizing: border-box;
}

.cat-title {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 64px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-white);
  text-transform: uppercase;
}

.cat-title span {
  display: block;
  white-space: nowrap;
}

.cat-desc {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  font-family: var(--font-secondary);
  max-width: 650px;
}

/* ── Products Grid Container ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1.25fr 1fr;
  max-width: 1200px;
  width: 100%;
  height: 700px;
  box-sizing: border-box;
  gap: 16px;
}

/* First card spans full width (4 columns) and has side-by-side layout */
.products-grid .product-card.banner-card {
  grid-column: span 4;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 24px 40px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: none;
}

.products-grid .product-card.banner-card .card-info {
  flex: 1;
  align-items: flex-start;
  text-align: left;
  gap: 12px;
}

.products-grid .product-card.banner-card .cat-title {
  margin-bottom: 4px;
  color: #ffffff;
}

.products-grid .product-card.banner-card .cat-desc {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
  max-width: 650px;
}

/* Snacks Banner Background Image */
.product-card.banner-card.snacks-banner {
  background-image: url('Assets/Snack Banner.png');
  background-size: cover;
  background-position: center;
  position: relative;
  justify-content: flex-start !important;
}

.snacks-banner .card-info {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  padding: 24px 32px;
  max-width: 750px;
  flex: 0 1 auto;
  margin-left: 0;
}


/* snacks-banner cat-desc color is inherited from global white rules */

/* Pocket Snacks Banner Background Image */
.product-card.banner-card.pocket-snacks-banner {
  background-image: url('Assets/Pocket Snack Banner.png');
  background-size: cover;
  background-position: center;
  position: relative;
  justify-content: flex-start !important;
}

.pocket-snacks-banner .card-info {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  padding: 24px 32px;
  max-width: 750px;
  flex: 0 1 auto;
  margin-left: 0;
}

/* Pocket Honey Banner Background Image */
.product-card.banner-card.pocket-honey-banner {
  background-image: url('Assets/Pocket Honey Banner.png');
  background-size: cover;
  background-position: center;
  position: relative;
  justify-content: flex-start !important;
}

.pocket-honey-banner .card-info {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  padding: 24px 32px;
  max-width: 750px;
  flex: 0 1 auto;
  margin-left: 0;
}

/* Honeys Banner Background Image */
.product-card.banner-card.honeys-banner {
  background-image: url('Assets/Honey Banner.png');
  background-size: cover;
  background-position: center;
  position: relative;
  justify-content: flex-start !important;
}

.honeys-banner .card-info {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  padding: 24px 32px;
  max-width: 750px;
  flex: 0 1 auto;
  margin-left: 0;
}

/* Fruit Powders Banner Background Image */
.product-card.banner-card.fruit-powders-banner {
  background-image: url('Assets/Fruits Banner.png');
  background-size: cover;
  background-position: center;
  position: relative;
  justify-content: flex-start !important;
}

.fruit-powders-banner .card-info {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  padding: 10px 16px 14px;
  max-width: 750px;
  flex: 0 1 auto;
  margin-left: 0;
}

/* Pickle Banner Background Image */
.product-card.banner-card.pickle-banner {
  background-image: url('Assets/Pickle Banner.png');
  background-size: cover;
  background-position: center;
  position: relative;
  justify-content: flex-start !important;
}

.pickle-banner .card-info {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  padding: 24px 32px;
  max-width: 750px;
  flex: 0 1 auto;
  margin-left: 0;
}

/* Rice Banner Background Image */
.product-card.banner-card.rice-banner {
  background-image: url('Assets/Rice Banner.png');
  background-size: cover;
  background-position: center;
  position: relative;
  justify-content: flex-start !important;
}

.rice-banner .card-info {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  padding: 24px 32px;
  max-width: 750px;
  flex: 0 1 auto;
  margin-left: 0;
}

/* Spices Banner Background Image */
.product-card.banner-card.spices-banner {
  background-image: url('Assets/Spice Banner.png');
  background-size: cover;
  background-position: center;
  position: relative;
  justify-content: flex-start !important;
}

.spices-banner .card-info {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  padding: 24px 32px;
  max-width: 750px;
  flex: 0 1 auto;
  margin-left: 0;
}

/* Essential Spices Banner Background Image */
.product-card.banner-card.essential-spices-banner {
  background-image: url('Assets/Essential Spice Banner.png');
  background-size: cover;
  background-position: center;
  position: relative;
  justify-content: flex-start !important;
}

.essential-spices-banner .card-info {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  padding: 24px 32px;
  max-width: 750px;
  flex: 0 1 auto;
  margin-left: 0;
}

/* Whole Spices Banner Background Image */
.product-card.banner-card.whole-spices-banner {
  background-image: url('Assets/Whole Spice Banner.png');
  background-size: cover;
  background-position: center;
  position: relative;
  justify-content: flex-start !important;
}

.whole-spices-banner .card-info {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  padding: 24px 32px;
  max-width: 750px;
  flex: 0 1 auto;
  margin-left: 0;
}

/* Masala Banner Background Image */
.product-card.banner-card.masala-banner {
  background-image: url('Assets/Masala Banner.png');
  background-size: cover;
  background-position: center;
  position: relative;
  justify-content: flex-start !important;
}

.masala-banner .card-info {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  padding: 24px 32px;
  max-width: 750px;
  flex: 0 1 auto;
  margin-left: 0;
}

/* Premium Products Banner Background Image */
.product-card.banner-card.premium-banner {
  background-image: url('Assets/Premium Products Banner.png');
  background-size: cover;
  background-position: center;
  position: relative;
  justify-content: flex-start !important;
}

.premium-banner .card-info {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  padding: 24px 32px;
  max-width: 750px;
  flex: 0 1 auto;
  margin-left: 0;
}

@media (max-width: 767px) {

  .snacks-banner .card-info,
  .pocket-snacks-banner .card-info,
  .pocket-honey-banner .card-info,
  .honeys-banner .card-info,
  .pickle-banner .card-info,
  .fruit-powders-banner .card-info,
  .rice-banner .card-info,
  .spices-banner .card-info,
  .essential-spices-banner .card-info,
  .whole-spices-banner .card-info,
  .masala-banner .card-info,
  .premium-banner .card-info {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    padding: 12px 16px;
    margin: 0;
    max-width: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* ── Product Card ── */
.product-card {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-sizing: border-box;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

/* Hover effects */
.product-card:not(.banner-card):not(.empty-card) {
  cursor: pointer;
}

@media (min-width: 1025px) {
  .product-card:not(.banner-card):not(.empty-card):hover {
    background-color: #ea1b36;
  }
}

/* ── Card image area ── */
.card-img-wrap {
  position: relative;
  background: #ffffff;
  flex: 1;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.card-img-placeholder {
  width: 90px;
  height: 126px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:not(.empty-card):hover .card-img-placeholder {
  transform: scale(1.08);
}

.card-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.product-card:not(.banner-card):not(.empty-card):hover .card-img {
  transform: scale(1.08);
}

/* Slightly zoom in all category slide product images as they are small inside the cards */
.slide-pocket-snacks .card-img,
.slide-honeys .card-img,
.slide-pocket-honeys .card-img,
.slide-spices .card-img,
.slide-fruit-powders .card-img,
.slide-pickles .card-img,
.slide-rice .card-img,
.slide-essential-spices .card-img,
.slide-masala .card-img,
.slide-whole-spices .card-img {
  transform: scale(1.25);
}

.slide-pocket-snacks .product-card:not(.banner-card):not(.empty-card):hover .card-img,
.slide-honeys .product-card:not(.banner-card):not(.empty-card):hover .card-img,
.slide-pocket-honeys .product-card:not(.banner-card):not(.empty-card):hover .card-img,
.slide-spices .product-card:not(.banner-card):not(.empty-card):hover .card-img,
.slide-fruit-powders .product-card:not(.banner-card):not(.empty-card):hover .card-img,
.slide-pickles .product-card:not(.banner-card):not(.empty-card):hover .card-img,
.slide-rice .product-card:not(.banner-card):not(.empty-card):hover .card-img,
.slide-essential-spices .product-card:not(.banner-card):not(.empty-card):hover .card-img,
.slide-masala .product-card:not(.banner-card):not(.empty-card):hover .card-img,
.slide-whole-spices .product-card:not(.banner-card):not(.empty-card):hover .card-img {
  transform: scale(1.35);
}

/* Sightly zoom out the Premium Products only to keep them clean and proportioned */
.slide-premium .card-img {
  transform: scale(1.05);
}

.slide-premium .product-card:not(.banner-card):not(.empty-card):hover .card-img {
  transform: scale(1.15);
}

/* Extra zoom specifically for Pickles (Bold Flavours. Timeless Recipes.) card images */
.slide-pickles .card-img {
  padding: 2px;
  transform: scale(1.55);
}

.slide-pickles .product-card:not(.banner-card):not(.empty-card):hover .card-img {
  transform: scale(1.65);
}

/* Very slight zoom specifically for Snacks (Every Bite. Real Delight) card images */
.slide-snacks-cat .card-img {
  transform: scale(1.12);
}

.slide-snacks-cat .product-card:not(.banner-card):not(.empty-card):hover .card-img {
  transform: scale(1.22);
}

.badge-new {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #2e7d32;
  color: #fff;
  font-family: var(--font-secondary);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
}

/* ── Card info row ── */
.card-info {
  padding: 10px 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.product-card:not(.banner-card) .card-info {
  background: #ffffff;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  align-items: flex-start;
  text-align: left;
  gap: 4px;
}

.product-card:not(.banner-card) .card-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #ea1b36;
  transition: width 0.3s ease-out;
  z-index: 1;
}

@media (min-width: 1025px) {
  .product-card:not(.banner-card):hover .card-info::before {
    width: 100%;
  }
}

.card-name {
  font-family: var(--font-secondary);
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a0f0d;
  line-height: 1.3;
  text-shadow: none;
  transition: color 0.3s ease;
}

.product-card:not(.banner-card) .card-name {
  position: relative;
  z-index: 2;
}

@media (min-width: 1025px) {
  .product-card:not(.banner-card):hover .card-name {
    color: #ffffff;
  }
}

/* ── Net Wt plain text ── */
.card-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}

.product-card:not(.banner-card) .card-meta {
  justify-content: flex-start;
  width: 100%;
  position: relative;
  z-index: 2;
  gap: 5px;
}

.net-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #5d4037;
  background: rgba(0, 0, 0, 0.04);
  padding: 3px 8px;
  border-radius: 20px 0 0 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-right: none;
  white-space: nowrap;
}

.product-card:not(.banner-card) .net-label {
  color: #5d4037;
  background: transparent;
  padding: 0;
  border-radius: 0;
  border: none;
  transition: color 0.3s ease;
}

@media (min-width: 1025px) {
  .product-card:not(.banner-card):hover .net-label {
    color: #ffffff;
  }
}

.net-val {
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
  background: #3e2723;
  padding: 3px 9px;
  border-radius: 0 20px 20px 0;
  border: 1px solid #3e2723;
  white-space: nowrap;
}

.product-card:not(.banner-card) .net-val {
  color: #1a0f0d;
  background: transparent;
  padding: 0;
  border-radius: 0;
  border: none;
  transition: color 0.3s ease;
}

@media (min-width: 1025px) {
  .product-card:not(.banner-card):hover .net-val {
    color: #ffffff;
  }
}

/* Empty Card to complete grid borders */
.empty-card {
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════
   PRODUCT CARDS HORIZONTAL CAROUSEL
═══════════════════════════════════════════════════ */
.product-cards-carousel-container {
  grid-column: span 4;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.product-cards-carousel-track {
  display: flex;
  gap: 16px;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}

.product-cards-carousel-track::-webkit-scrollbar {
  display: none;
  /* Safari/Chrome */
}

.product-cards-carousel-track .product-card {
  width: calc((100% - 48px) / 4);
  /* Exactly 4 cards visible */
  flex-shrink: 0;
  height: 100%;
}

/* Sibling overrides inside carousel container */
.product-cards-carousel-track .product-card .card-info {
  background: #ffffff;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  align-items: flex-start;
  text-align: left;
}

/* Carousel Navigation Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-cards-carousel-container:hover .carousel-arrow {
  opacity: 1;
  pointer-events: auto;
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.4);
  color: #000000;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.carousel-arrow.prev {
  left: 10px;
}

.carousel-arrow.next {
  right: 10px;
}


/* ═══════════════════════════════════════════════════
   RESPONSIVE LAYOUTS
   ═══════════════════════════════════════════════════ */

/* ── Tablet Medium/Large (<=1240px) ── */
@media (max-width: 1240px) {
  .products-grid {
    width: calc(100% - 40px);
  }

  .cat-header {
    width: calc(100% - 40px);
  }
}

/* ── Tablet Portrait (<=1024px) ── */
@media (max-width: 1024px) {
  .loader-percentage {
    font-size: clamp(3rem, 15vw, 6.5rem) !important;
    right: 20px !important;
    bottom: 20px !important;
  }

  .hero-slide-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 190px;
    padding-bottom: 40px;
    gap: 30px;
  }

  .hero-content {
    align-items: center;
  }

  .slide-section {
    scroll-snap-align: none;
  }

  .slide-snacks {
    height: 100vh;
    scroll-snap-align: none;
  }

  .slide-about {
    height: auto !important;
    scroll-snap-align: none;
  }

  .slide-footer {
    height: auto !important;
    scroll-snap-align: none;
  }

  /* Category slides height and padding on tablet */
  #slide-1,
  #slide-2,
  #slide-3,
  #slide-4,
  #slide-5,
  #slide-6,
  #slide-7,
  #slide-8,
  #slide-9,
  #slide-10,
  #slide-11,
  #slide-12 {
    height: calc((100vh - 140px) / 2);
    scroll-snap-align: none;
  }

  #slide-1 .cat-slide-inner,
  #slide-2 .cat-slide-inner,
  #slide-3 .cat-slide-inner,
  #slide-4 .cat-slide-inner,
  #slide-5 .cat-slide-inner,
  #slide-6 .cat-slide-inner,
  #slide-7 .cat-slide-inner,
  #slide-8 .cat-slide-inner,
  #slide-9 .cat-slide-inner,
  #slide-10 .cat-slide-inner,
  #slide-11 .cat-slide-inner,
  #slide-12 .cat-slide-inner,
  #slide-13 .cat-slide-inner {
    padding: 10px 16px;
    gap: 12px;
  }

  .cat-title {
    font-size: 1.8rem;
  }

  .cat-desc {
    font-size: 0.8rem;
  }

  .cat-header {
    width: calc(100% - 32px);
  }

  .products-grid {
    width: calc(100% - 32px);
    grid-template-columns: repeat(3, 1fr);
    height: calc((100vh - 140px) / 2 - 25px);
    min-height: 310px;
    max-height: 480px;
    gap: 14px;
  }

  .products-grid .product-card.banner-card {
    grid-column: span 3;
    justify-content: flex-start;
    padding: 24px 20px;
  }

  .products-grid .product-card.banner-card .card-info {
    align-items: flex-start;
    text-align: left;
    padding: 10px 16px 14px !important;
  }

  .products-grid .product-card.banner-card .cat-title {
    font-size: 38px;
    line-height: 1.2;
  }

  .card-img-wrap {
    flex: 1;
    height: auto;
  }

  .card-img-placeholder {
    width: 90px;
    height: 126px;
  }
}

/* ── Mobile (<=767px) ── */
@media (max-width: 767px) {
  .loader-logo-container {
    width: min(55vw, 200px) !important;
  }

  #slide-1,
  #slide-2,
  #slide-3,
  #slide-4,
  #slide-5,
  #slide-6,
  #slide-7,
  #slide-8,
  #slide-9,
  #slide-10,
  #slide-11,
  #slide-12 {
    height: auto !important;
    min-height: calc(100vh - 380px) !important;
    min-height: calc(100dvh - 380px) !important;
    scroll-snap-align: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #slide-1 .cat-slide-inner,
  #slide-2 .cat-slide-inner,
  #slide-3 .cat-slide-inner,
  #slide-4 .cat-slide-inner,
  #slide-5 .cat-slide-inner,
  #slide-6 .cat-slide-inner,
  #slide-7 .cat-slide-inner,
  #slide-8 .cat-slide-inner,
  #slide-9 .cat-slide-inner,
  #slide-10 .cat-slide-inner,
  #slide-11 .cat-slide-inner,
  #slide-12 .cat-slide-inner {
    height: auto !important;
    min-height: calc(100vh - 380px) !important;
    min-height: calc(100dvh - 380px) !important;
    padding: clamp(8px, 2vh, 20px) 16px !important;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }

  .hero,
  .hero-slide-inner {
    padding: 100px 10px 60px !important;
    gap: 20px;
  }

  .desktop-tablet-break {
    display: none;
  }

  .products-grid {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 152px 190px;
    height: auto;
    min-height: unset;
    max-height: unset;
    gap: 10px;
  }

  .products-grid .product-card:not(.banner-card) {
    height: 190px;
  }

  .card-img-placeholder {
    width: 65px;
    height: 90px;
    border-radius: 8px;
  }

  .card-img {
    padding: 8px;
  }

  .card-info {
    padding: 8px 10px 12px;
    gap: 6px;
  }

  .card-name {
    font-size: 0.8rem;
  }

  .net-label,
  .net-val {
    font-size: 0.65rem;
  }

  .products-grid .product-card.banner-card {
    grid-column: span 2;
    flex-direction: column;
    gap: 6px;
    padding: 8px 10px 12px;
    height: 152px;
  }

  .products-grid .product-card.banner-card .card-info {
    align-items: flex-start;
    text-align: left;
    gap: 6px;
  }

  .products-grid .product-card.banner-card .cat-title {
    font-size: 26px;
    line-height: 1.2;
  }

  .products-grid .product-card.banner-card .cat-title span {
    display: inline;
  }

  .products-grid .product-card.banner-card .cat-title span:not(:last-child)::after {
    content: " ";
  }

  .products-grid .product-card.banner-card .cat-desc {
    font-size: 0.75rem;
    max-width: 100%;
  }
}

/* ── Small Mobile (<=480px) ── */
@media (max-width: 480px) {

  #slide-1 .cat-slide-inner,
  #slide-2 .cat-slide-inner,
  #slide-3 .cat-slide-inner,
  #slide-4 .cat-slide-inner,
  #slide-5 .cat-slide-inner,
  #slide-6 .cat-slide-inner,
  #slide-7 .cat-slide-inner,
  #slide-8 .cat-slide-inner,
  #slide-9 .cat-slide-inner,
  #slide-10 .cat-slide-inner,
  #slide-11 .cat-slide-inner,
  #slide-12 .cat-slide-inner {
    padding: clamp(6px, 1.5vh, 14px) 10px !important;
  }

  .cat-title {
    font-size: 1.5rem;
  }

  .products-grid {
    gap: 8px;
  }

  .card-img-wrap {
    flex: 1;
    height: auto;
  }

  .card-img-placeholder {
    width: 55px;
    height: 76px;
  }

  .card-info {
    padding: 6px 10px 10px;
  }

  .card-name {
    font-size: 0.72rem;
  }

  .products-grid .product-card.banner-card .cat-desc {
    font-size: 0.68rem;
  }
}

/* Responsive updates for product carousel */
@media (max-width: 1024px) {
  .products-grid .product-cards-carousel-container {
    grid-column: span 3;
  }

  .product-cards-carousel-track .product-card {
    width: calc((100% - 48px) / 4);
    /* Exactly 4 cards visible */
  }
}

@media (max-width: 850px) {
  .product-cards-carousel-track .product-card {
    width: calc((100% - 32px) / 3);
    /* Exactly 3 cards visible */
  }
}

@media (max-width: 767px) {
  .products-grid .product-cards-carousel-container {
    grid-column: span 2;
  }

  .product-cards-carousel-track {
    gap: 8px;
  }

  .product-cards-carousel-track .product-card {
    width: calc((100% - 8px) / 2);
    /* Exactly 2 cards visible */
  }

  .carousel-arrow {
    display: none;
  }
}

/* ════════════════════════════════════════════
   ABOUT SECTION
   ════════════════════════════════════════════ */
.slide-about {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1.25fr 1fr;
  height: 700px;
}

.about-banner {
  background: #F0EEE1 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 24px 60px 24px 40px !important;
}

.about-banner .cat-title,
.about-banner .cat-title span,
.about-banner .cat-desc {
  color: #B16910 !important;
}

@media (min-width: 1025px) {
  .about-banner .cat-title {
    font-size: 54px !important;
  }
}

.about-banner-img-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 45%;
  flex-shrink: 0;
}

.about-banner-img {
  max-height: 240px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.about-content-row {
  grid-column: span 4;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  padding: 32px 0;
  align-items: center;
  box-sizing: border-box;
}

.about-text-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.about-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #b8d451;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.about-paragraph {
  font-family: var(--font-secondary);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.about-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.about-img {
  width: 100%;
  height: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 8px;
}

/* Responsive about layout */
@media (max-width: 1024px) {
  .about-grid {
    display: flex !important;
    flex-direction: column;
    height: auto !important;
    max-height: none !important;
    min-height: unset !important;
    gap: 12px;
  }

  .about-content-row {
    grid-column: unset;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    padding: 24px 0;
  }

  .about-heading {
    font-size: 22px;
  }

  .about-paragraph {
    font-size: 0.98rem;
  }

  .about-img {
    max-height: 220px;
  }

  .about-banner {
    padding: 20px 30px !important;
  }

  .about-banner-img {
    max-height: 180px;
  }
}

@media (max-width: 767px) {
  #slide-13 .cat-slide-inner {
    padding-top: 35px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }


  .about-content-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
    box-sizing: border-box;
  }

  .about-heading {
    font-size: 20px !important;
  }

  .about-paragraph {
    font-size: 0.91rem;
  }

  .about-img {
    max-height: 180px;
  }

  .about-grid {
    width: 100% !important;
    padding: 0 24px !important;
    box-sizing: border-box !important;
  }

  .about-banner {
    height: auto !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 20px 0 16px 0 !important;
    box-sizing: border-box !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-radius: 10px !important;
    overflow: hidden !important;
  }

  .about-banner .card-info {
    padding: 0 !important;
    align-items: center !important;
    text-align: center !important;
  }

  .about-banner-img-wrap {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .about-banner-img {
    max-height: 180px !important;
    width: auto !important;
  }
}

/* ════════════════════════════════════════════
   FOOTER SLIDE
   ════════════════════════════════════════════ */

.slide-footer {
  background: #ea1b36;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-inner {
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  box-sizing: border-box;
}

/* ── Top row: 4 columns ── */
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Brand column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-logo-img {
  width: auto;
  height: 60px;
  max-width: 150px;
  object-fit: contain;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 1.05rem;
  color: #ffffff;
  line-height: 1.7;
  margin: 0;
}

/* Column titles */
.footer-col-title {
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 22px 0;
  letter-spacing: normal;
  text-transform: none;
}

/* Links list */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  text-decoration: none;
  font-size: 0.95rem;
  color: #ffffff;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-link:hover {
  opacity: 0.8;
}

.footer-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Address */
.footer-address {
  font-style: normal;
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.7;
}

.footer-address strong {
  font-weight: 700;
}

/* ── Bottom bar ── */
.footer-bottom {
  padding-top: 28px;
  font-size: 0.78rem;
  color: #ffffff;
  letter-spacing: 0.04em;
}

/* ── Footer Responsive ── */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-inner {
    position: static;
    height: auto;
    padding: 40px 40px;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 30px;
  }

  .footer-inner {
    padding: 20px 24px 40px;
  }

  .footer-logo {
    font-size: 2rem;
  }
}

/* ════════════════════════════════════════════
   DEDICATED ABOUT PAGE STYLING
   ════════════════════════════════════════════ */

body.about-page {
  height: auto !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  background: radial-gradient(circle at 50% 50%, #926FB5 0%, #80619E 60%, #694F84 100%) !important;
}

body.about-page .site-header {
  background: rgba(128, 97, 158, 0.85) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.about-page-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 160px 40px 60px 40px;
  box-sizing: border-box;
}

.about-main-title {
  font-family: var(--font-secondary);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 500;
  text-align: center;
  text-transform: none;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
  line-height: 1.15;
}

/* Founder Profile */
.about-profile-section {
  margin-bottom: 80px;
}

.about-profile-grid {
  display: grid;
  grid-template-columns: 0.80fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-profile-img-col {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

.about-profile-img {
  width: 100%;
  max-width: 440px;
  height: auto;
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
  border-radius: 32px;
}

.about-profile-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.95rem, 1.3vw, 1.25rem);
  font-weight: 600;
  color: #b8d451;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.about-profile-bio {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.about-profile-bio p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.65;
}

.about-profile-meta-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 28px;
}

.about-meta-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-meta-col .meta-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  font-weight: 500;
}

.about-meta-col .meta-val {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  color: #ffffff;
  font-weight: 600;
}

.about-meta-col .meta-val.highlight-green {
  color: #b8d451;
  font-size: 1.25rem;
  font-weight: 700;
}

/* Our Vision */
.about-vision-section {
  margin-bottom: 100px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 60px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.015em;
  margin-bottom: 40px;
  color: #b8d451;
}

.about-vision-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: flex-start;
}

.about-vision-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-vision-text p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.65;
}

.about-vision-text .highlight-paragraph {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  border-left: 4px solid #b8d451;
  padding-left: 20px;
  margin: 10px 0;
}


.signature-block {
  font-family: 'Outfit', sans-serif;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sig-thank {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}

.sig-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.sig-title {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.sig-company {
  font-size: 0.95rem;
  color: #b8d451;
  font-weight: 500;
}

.about-vision-img-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 140px;
}

.about-vision-img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
}

.img-caption {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  font-style: italic;
}

/* Our Brands */
.about-brands-section {
  margin-bottom: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 60px;
}

.about-brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: center;
  justify-items: center;
}

.brand-img-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 260px;
  aspect-ratio: 4 / 3;
  transition: var(--transition-smooth);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

.brand-img-link:hover {
  transform: scale(1.08);
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

/* About Page Dedicated Footer */
.about-footer-inner {
  background: #ea1b36;
  padding: 80px 40px 30px;
  width: 100%;
  box-sizing: border-box;
}

.about-footer-inner .footer-top {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr 1fr;
  gap: 60px;
}

.about-footer-inner .footer-bottom {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-top: 20px;
}

/* Responsive Styles for About Page */
@media (max-width: 1024px) {
  .about-page-content {
    padding-top: 100px;
    padding-left: 24px;
    padding-right: 24px;
  }
  
  .about-profile-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }
  
  .about-profile-img {
    max-width: 320px;
  }
  
  .about-profile-info-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .about-profile-subtitle {
    margin-bottom: 16px;
  }
  
  .about-profile-meta-row {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
  
  .about-vision-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-vision-img-wrap {
    position: static;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .about-brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-footer-inner .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .about-page-content {
    padding-top: 100px;
    padding-left: 16px;
    padding-right: 16px;
  }
  
  .about-profile-section {
    margin-bottom: 48px;
  }
  
  .about-profile-grid {
    gap: 24px;
  }
  
  .about-profile-img {
    max-width: 220px;
  }
  
  .about-profile-bio {
    gap: 16px;
    margin-bottom: 24px;
  }
  
  .about-profile-meta-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 20px;
  }
  
  .about-vision-section {
    margin-bottom: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 32px;
  }
  
  .section-title {
    margin-bottom: 24px;
  }
  
  .about-vision-content {
    gap: 24px;
  }
  
  .about-vision-text {
    gap: 16px;
  }
  
  .signature-block {
    margin-top: 20px;
  }
  
  .about-brands-section {
    margin-bottom: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 32px;
  }
  
  .pull-quote-block {
    padding: 16px 20px;
  }
  
  .about-brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .about-footer-inner {
    padding: 40px 24px 20px;
  }
  
  .about-footer-inner .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 30px;
  }
}

/* ════════════════════════════════════════════
   DEDICATED CONTACT PAGE STYLING
   ════════════════════════════════════════════ */

body.contact-page {
  height: auto !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  background: radial-gradient(circle at 50% 50%, #926FB5 0%, #80619E 60%, #694F84 100%) !important;
}

body.contact-page .site-header {
  background: rgba(128, 97, 158, 0.85) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.contact-page-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 160px 40px 60px 40px;
  box-sizing: border-box;
}

.contact-main-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 600;
  text-align: left;
  text-transform: none;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
  line-height: 1.15;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 40px;
}

/* Left Column Info Cards */
.contact-info-card {
  background: #ffffff !important;
  border: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.contact-info-card.align-start {
  align-items: flex-start;
}

.contact-icon-wrap {
  background: transparent !important;
  border-radius: 0 !important;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon {
  width: 32px;
  height: 32px;
  color: #b8d451 !important;
}

.contact-card-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-card-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #6c757d !important;
  letter-spacing: 0.05em;
}

.contact-card-value {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1a0f0d !important;
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.5;
}

.contact-card-value:hover {
  color: #1a0f0d !important;
}

.address-value:hover {
  color: #2b1d1b !important;
}

.address-value {
  font-style: normal;
  color: #2b1d1b !important;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
}

.address-value strong {
  font-weight: 700;
  color: #1a0f0d !important;
}

/* Right Column Form Card */
.contact-form-card {
  background: #ffffff !important;
  border: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-group label,
.textarea-label-row label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a0f0d !important;
}

.required {
  color: #b8d451;
  margin-left: 2px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: #f8f9fa !important;
  border: 1px solid #e9ecef !important;
  border-radius: 8px;
  padding: 14px 16px;
  color: #1a0f0d !important;
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #adb5bd !important;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #b8d451 !important;
  box-shadow: none !important;
  background: #ffffff !important;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
  min-height: 100px;
}

.textarea-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.char-counter {
  font-size: 0.8rem;
  color: #6c757d !important;
  font-weight: 500;
}

.submit-button {
  background: #b8d451;
  border: none;
  color: #1a0f0d;
  font-family: var(--font-secondary);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  width: 100%;
  margin-top: 10px;
}

.submit-button:hover {
  background: #c3dd64;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 212, 81, 0.4);
}

.submit-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(184, 212, 81, 0.2);
}

.submit-button:disabled {
  background: rgba(255, 255, 255, 0.15) !important;
  color: rgba(255, 255, 255, 0.4) !important;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Success Message Box */
.success-message {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(184, 212, 81, 0.15);
  border: 1px solid rgba(184, 212, 81, 0.3);
  color: #b8d451;
  padding: 24px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  animation: contactFadeIn 0.5s ease forwards;
}

.success-message.visible {
  display: flex;
}

.success-icon {
  stroke: #b8d451;
  flex-shrink: 0;
}

@keyframes contactFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Map Section */
.map-section {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  width: 100%;
  border: none;
}

.map-container-wrap {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.office-map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .contact-page-content {
    padding-top: 100px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-form-card {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .contact-page-content {
    padding-top: 100px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .contact-main-title {
    margin-bottom: 30px;
  }
  .contact-grid {
    gap: 24px;
  }
  .form-row {
    flex-direction: column;
    gap: 20px;
  }
  .contact-form-card {
    padding: 24px;
  }
  .contact-info-card {
    padding: 18px;
    gap: 16px;
  }
  .contact-card-value {
    font-size: 1.05rem;
  }
}

/* ── Premium Search Autocomplete Dropdown ── */
.search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  max-height: 320px;
  overflow-y: auto;
  z-index: 99999;
  margin-top: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.search-dropdown::-webkit-scrollbar {
  display: none;
}

/* Dropdown items formatting */
.search-item {
  display: flex;
  align-items: center;
  padding: 12px 18px;
  gap: 14px;
  cursor: pointer;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  box-sizing: border-box;
  text-align: left;
}
.search-item:last-child {
  border-bottom: none;
}
.search-item:hover {
  background: rgba(0, 0, 0, 0.04);
}
.search-item-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.03);
  padding: 2px;
}
.search-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.search-item-name {
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  color: #1a0f0d;
}
.search-item-meta {
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  color: rgba(26, 15, 13, 0.65);
}
.search-no-results {
  padding: 18px;
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  color: rgba(26, 15, 13, 0.5);
}

/* Pulse keyframes for highlighted product card (no scaling on card) */
@keyframes searchHighlightPulse {
  0% {
    box-shadow: 0 0 0 rgba(184, 212, 81, 0);
    border-color: rgba(255,255,255,0.18);
  }
  20% {
    box-shadow: 0 10px 25px rgba(184, 212, 81, 0.45);
    border-color: #b8d451;
    background: rgba(184, 212, 81, 0.08);
  }
  80% {
    box-shadow: 0 10px 25px rgba(184, 212, 81, 0.45);
    border-color: #b8d451;
    background: rgba(184, 212, 81, 0.08);
  }
  100% {
    box-shadow: 0 0 0 rgba(184, 212, 81, 0);
    border-color: rgba(255,255,255,0.18);
  }
}

/* Image zoom keyframes */
@keyframes searchHighlightImageZoom {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.15);
  }
  80% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

.product-card.search-highlight {
  animation: searchHighlightPulse 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  z-index: 10;
}

.product-card.search-highlight .card-img {
  animation: searchHighlightImageZoom 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* ── Form Submit & Success Animations ── */
.submit-button.vanish {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.submit-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-secondary);
  font-size: 1.05rem;
  color: #1a0f0d;
  font-weight: 600;
  margin-top: 10px;
  padding: 16px 32px;
  animation: contactFadeIn 0.3s ease forwards;
}

.spinner {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(26, 15, 13, 0.15);
  border-top: 3px solid #b8d451; /* brand green spinner */
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.success-icon polyline {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: drawCheckmark 0.6s ease-out 0.3s forwards;
}

@keyframes drawCheckmark {
  to {
    stroke-dashoffset: 0;
  }
}

/* ═══════════════════════════════════════════════════
   NETFLIX-STYLE INTRODUCTION LOADER
═══════════════════════════════════════════════════ */
body.loading .scroll-container {
  overflow-y: hidden !important;
}

body.loading .site-header,
body.loading .scroll-container {
  opacity: 0;
  pointer-events: none;
}

body.loaded .site-header,
body.loaded .scroll-container {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
}

#loader-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  background: radial-gradient(circle at 50% 50%, #926FB5 0%, #80619E 60%, #694F84 100%);
  z-index: 10000; /* High z-index to sit on top */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s cubic-bezier(0.76, 0, 0.24, 1),
              visibility 0.35s cubic-bezier(0.76, 0, 0.24, 1),
              transform 0.35s cubic-bezier(0.76, 0, 0.24, 1);
  transform: scale(1);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

#loader-screen.fade-out {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.loader-logo-container {
  position: relative;
  width: min(80vw, 320px);
  height: auto;
  aspect-ratio: 320 / 130;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  animation: loaderLogoAnimation 4.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.loader-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: transparent;
  overflow: hidden;
  box-shadow: none;
}

.loader-progress-fill {
  width: 0%;
  height: 100%;
  background: #b8d451; /* Premium lime-green brand color */
  box-shadow: 0 0 15px #b8d451, 0 0 30px #b8d451;
  transition: width 0.04s linear;
}

.loader-percentage {
  position: absolute;
  right: 32px;
  bottom: 10px; /* Placed right above the bottom progress line */
  font-family: var(--font-secondary); /* Outfit brand style */
  font-size: 150px;
  line-height: 0.85;
  color: var(--text-white);
  font-weight: 700;
  letter-spacing: -0.03em;
  opacity: 0.95;
}

/* Smooth cinematic slow-zoom animation for logo */
@keyframes loaderLogoAnimation {
  0% {
    transform: scale(0.92) translate3d(0, 0, 0);
    opacity: 0;
  }
  10% {
    transform: scale(0.96) translate3d(0, 0, 0);
    opacity: 1;
  }
  90% {
    transform: scale(1.08) translate3d(0, 0, 0);
    opacity: 1;
  }
  100% {
    transform: scale(1.12) translate3d(0, 0, 0);
    opacity: 1;
  }
}

/* ═══════════════════════════════════════════════════
   LAPTOP & SMALL DESKTOP HEIGHTS (max-height: 850px)
   ═══════════════════════════════════════════════════ */
@media (min-width: 1025px) and (max-height: 850px) {
  /* Layout Containment - Avoid stretching too wide */
  .header-container,
  .hero-slide-inner,
  .products-grid,
  .footer-inner {
    max-width: 1200px !important;
    width: 100% !important;
  }

  /* Header & Logo */
  .site-header {
    padding: 16px 40px;
  }
  .logo img {
    height: 50px;
  }

  /* Hero Carousel Slide (Slide 0) */
  .hero-slide-inner {
    padding: 100px 40px 45px;
    gap: 30px;
  }
  .hero-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    margin-bottom: 16px;
  }
  .hero-description {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .debris-bg {
    transform: scale(1.2) translateX(0) !important;
  }
  .debris-bg.image-a,
  .debris-bg.image-b,
  .debris-bg.image-d,
  .debris-bg.image-f {
    transform: scale(1.05) translateX(30px) !important;
  }
  .debris-bg.image-c,
  .debris-bg.image-e {
    transform: scale(1.15) translateX(0) !important;
  }
  .mockup-container {
    margin-left: -60px;
  }

  /* Category Slides (Slides 1-12) */
  .cat-slide-inner {
    padding: 80px 20px 20px;
    gap: 12px;
  }
  .products-grid {
    height: 530px;
    gap: 12px;
  }
  .products-grid .product-card.banner-card {
    padding: 16px 32px;
  }
  .products-grid .product-card.banner-card .cat-title {
    font-size: 44px;
  }
  .products-grid .product-card.banner-card .cat-desc {
    font-size: 16px;
  }
  .product-card:not(.banner-card) .card-name {
    font-size: 0.95rem;
  }

  /* About Grid (Slide 13) */
  .about-grid {
    height: 530px;
  }
  .about-content-row {
    padding: 16px 0;
    gap: 24px;
  }
  .about-heading {
    font-size: 22px;
  }
  .about-paragraph {
    font-size: 0.92rem;
    line-height: 1.5;
  }
  .about-img {
    max-height: 200px;
  }
  .about-banner {
    padding: 16px 40px !important;
  }
  .about-banner-img {
    max-height: 180px;
  }

  /* Footer (Slide 14) */
  .footer-top {
    padding-bottom: 30px;
    gap: 30px;
  }
  .footer-bottom {
    padding-top: 20px;
  }
  .footer-logo-img {
    height: 48px;
  }
  .footer-tagline {
    font-size: 0.95rem;
  }
  .footer-col-title {
    margin-bottom: 12px;
  }
  .footer-links {
    gap: 8px;
  }
}

/* Remove 40px left/right padding when screen is wide enough to contain the 1200px layout centered */
@media (min-width: 1280px) {
  .header-container,
  .hero-slide-inner,
  .footer-inner,
  .about-page-content,
  .contact-page-content,
  .about-footer-inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* Responsive utility classes for line breaks */
.mobile-only {
  display: inline;
}
.desktop-only {
  display: none;
}

@media (min-width: 1025px) {
  .mobile-only {
    display: none;
  }
  .desktop-only {
    display: inline;
  }
}

/* Glassmorphic Up Button */
.scroll-up-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.9);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.3s;
}

.scroll-up-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scroll-up-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px) scale(1.05);
}

.scroll-up-btn:active {
  transform: translateY(0) scale(0.95);
}

@media (max-width: 767px) {
  .scroll-up-btn {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}