/* =============================================
   GLOBAL OVERFLOW FIX
   ============================================= */
html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

* {
  box-sizing: border-box;
}
/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --primary: #0A84FF;
  --secondary: #0066ff;
  --bg: #ffffff;
  --card: #f5f5f5;
  --text: #000000;
  --text-secondary: #555;
}


/* =============================================
   RESET & BASE
   ============================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(160deg, #e8f0ff 0%, #f0f6ff 50%, #ddeeff 100%);
  color: var(--text);
  overflow-x: hidden;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}


/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoPop {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes floatLogo {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}


/* =============================================
   HEADER
   ============================================= */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.nav-left a {
  color: var(white);
  margin-right: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav-left a:hover {
  color: var(--primary);
}

.brand-right {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1px;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
}

.logo img {
  height: 50px;
  object-fit: contain;
}

nav a {
  color: white;
  margin-left: 30px;
  text-decoration: none;
  transition: 0.3s;
}

nav a:hover {
  color: var(--primary);
}


/* =============================================
   HERO
   ============================================= */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
    url("images/bbgg.jpg.jpeg");
  background-size: cover;
  background-position: center;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  gap: 40px;
  animation: heroFade 1.5s ease forwards;
}

.hero-text {
  flex: 1;
  animation: fadeUp 1s ease forwards;
}

.hero h1 {
  font-size: 60px;
  color: white !important;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
}

.hero h1 span,
.hero span {
  color: var(--primary);
}

.hero p {
  margin: 20px 0 30px;
  color: var(--text-secondary);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 240px;
  max-width: 100%;
  display: block;
  opacity: 1;
  animation: floatLogo 4s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(10, 132, 255, 0.5));
}

.hero-logo {
  width: 220px;
  margin-bottom: 20px;
  opacity: 0;
  transform: scale(0.8);
  animation: logoPop 1.2s ease forwards;
}


/* =============================================
   BUTTON
   ============================================= */
.btn {
  background: var(--primary);
  padding: 15px 35px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.btn:hover {
  background: var(--secondary);
  transform: scale(1.05);
}


/* =============================================
   SECTIONS
   ============================================= */
.section-title {
  text-align: center;
  padding: 120px 20px 60px;
}


/* =============================================
   CATEGORIES
   ============================================= */
.categories {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 40px 20px 120px;
  background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.93)),
    url("https://images.unsplash.com/photo-1583454110551-21f2fa2afe61");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-radius: 20px;
  margin: 40px 20px;
}

.category-card {
  background: #000000;
  width: 260px;
  border-radius: 18px;
  padding: 40px 20px;
  text-align: center;
  transition: 0.3s;
  color: var(white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(10, 132, 255, 0.2);
}

.category-title {
  font-size: 20px;
  margin-bottom: 20px;
  color:white
}


/* =============================================
   STATS
   ============================================= */
.stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 100px 20px;
  background: #ffffff;
  text-align: center;
}

.stat h2 {
  font-size: 45px;
  color: var(--primary);
}


/* =============================================
   PREMIUM BANNER
   ============================================= */
.premium-banner {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
}


/* =============================================
   ABOUT
   ============================================= */
.about {
  padding: 120px 40px;
  background: linear-gradient(160deg, #f0f6ff, #e8f0ff);
}

.about-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.about-image-wrap {
  position: relative;
  flex-shrink: 0;
}

.about-image-wrap img {
  width: 380px;
  height: 460px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: 0 30px 70px rgba(10, 132, 255, 0.15);
}

.about-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--primary);
  color: white;
  font-size: 14px;
  font-weight: 800;
  padding: 14px 20px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(10, 132, 255, 0.4);
  letter-spacing: 1px;
}

.about-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(10, 132, 255, 0.1);
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.about-text h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  color: #0d0d0d;
  margin-bottom: 22px;
}

.about-text p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 480px;
}

.about-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.pill {
  background: white;
  color: #111;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 30px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border: 1px solid rgba(10,132,255,0.1);
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .about-image-wrap img {
    width: 100%;
    height: 320px;
  }

  .about-text h2 {
    font-size: 30px;
  }

  .about-pills {
    justify-content: center;
  }

  .about-text p {
    max-width: 100%;
  }
}


/* =============================================
   CONTACT
   ============================================= */
.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 60px 20px;
  min-height: 60vh;
  text-align: center;
  background: linear-gradient(to bottom, #ffffff, #f7f9fc);
}

.contact h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.contact p {
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.contact .btn {
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(10, 132, 255, 0.2);
}


/* =============================================
   CATEGORY PAGE STYLE
   ============================================= */
.page-header {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: rgb(0, 0, 0);
  text-align: center;
  padding: 140px 20px 60px;
}

.page-header h1 {
  font-size: 42px;
  font-weight: 800;
  color: white;
}

.page-header p {
  margin-top: 10px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
}


/* =============================================
   PRODUCTS GRID
   ============================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  padding: 40px;
  max-width: 1400px;
  margin: 30px auto;
  background: linear-gradient(160deg, #e8f0ff 0%, #f0f6ff 50%, #ddeeff 100%);
  border-radius: 24px;
}

.product-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 12px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(10, 132, 255, 0.1);
  border: 1.5px solid rgba(10, 132, 255, 0.15);
  color: var(--text);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(10, 132, 255, 0.3);
  border-color: var(--primary);
}

.product-image {
  width: 100%;
  height: 140px;
  margin-bottom: 8px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card h3 {
  font-size: 13px;
  margin-bottom: 4px;
}

.product-card p {
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.price {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.order-btn {
  padding: 6px 12px;
  font-size: 11px;
  background: var(--primary);
  color: white;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
}

.order-btn:hover {
  background: var(--secondary);
}

.flavor-select {
  width: 100%;
  padding: 6px;
  margin: 8px 0;
  border-radius: 6px;
  border: none;
  background: #1a1a1a;
  color: white;
  font-size: 12px;
}


/* =============================================
   WHATSAPP BUTTON
   ============================================= */
.whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: var(--primary);
  color: white;
  padding: 14px 16px;
  border-radius: 50%;
}


/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .product-image {
    height: 120px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    justify-content: center;
    margin-top: 20px;
  }

  .hero-image img {
    width: 180px;
  }
}
header {
  transition: 0.4s ease;
}

header.scrolled {
  background: rgba(0, 0, 0, 0.85) !important;
  backdrop-filter: blur(12px);
}

.nav-left a {
  position: relative;
}

.nav-left a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--primary);
  transition: 0.3s;
}

.nav-left a:hover::after {
  width: 100%;
}
.hero {
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(10,132,255,0.15), transparent 70%);
  top: 0;
  left: 0;
  pointer-events: none;
}
.btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(10,132,255,0.3);
}

.btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(10,132,255,0.5);
}
.category-card {
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(10,132,255,0.4), transparent);
  opacity: 0;
  transition: 0.4s;
  pointer-events: none;
}

.category-card:hover::before {
  opacity: 1;
}

.category-card:hover {
  transform: translateY(-12px) scale(1.03);
}
.stats {
  background: linear-gradient(to right, #f8fbff, #eef5ff) !important;
}

.stat h2 {
  font-size: 50px;
}
.whatsapp {
  background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
  box-shadow: 0 10px 30px rgba(10,132,255,0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(10,132,255,0.6);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(10,132,255,0);
  }
}
.category-title {
  color: white;
  text-shadow: 0 4px 15px rgba(0,0,0,0.6);
  font-weight: 700;
}
.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 20px;
  background: linear-gradient(160deg, #eef5ff, #ffffff);
}

.contact-box {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.contact-box h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-box p {
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.contact-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #1ebe5d);
}

.call-btn {
  background: linear-gradient(135deg, #0A84FF, #0066ff);
}
.stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 120px 20px;
  background: linear-gradient(135deg, #a7ccff, #111a2e);
  text-align: center;
  flex-wrap: wrap;
}
.stat-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 40px 60px;
  border-radius: 20px;
  transition: 0.3s;
  min-width: 220px;
}

.stat-box:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 50px rgba(10,132,255,0.3);
}

.stat-box h2 {
  font-size: 50px;
  color: var(--primary);
  margin-bottom: 10px;
}

.stat-box p {
  color: #111a2e;
  font-size: 15px;
}
.cart-icon {
    cursor: pointer;
    font-size: 20px;
    position: relative;
}

#cart-count {
    background: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
}

.cart-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100vh; /* FULL HEIGHT FIX */
    background: #111;
    color: white;
    padding: 20px;
    transition: 0.4s;
    z-index: 2000; /* HIGHER THAN HEADER */
    overflow-y: auto;
}

.cart-panel.active {
    right: 0; /* show */
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#close-cart {
    cursor: pointer;
}

.cart-item {
    margin: 15px 0;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cart-footer {
    margin-top: 30px;
}
.product-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 8px;
}

.cart-btn {
    padding: 6px 12px;
    font-size: 11px;
    background: #222;
    color: white;
    border-radius: 6px;
    border: 1px solid #555;
    cursor: pointer;
    transition: 0.3s;
}

.cart-btn:hover {
    background: var(--primary);
}
.search-box {
    margin-left: 20px;
}

.search-box input {
    padding: 10px 14px;
    border-radius: 10px;
    border: 1.5px solid #ddd;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    width: 180px;
    transition: 0.3s;
}

.search-box input:focus {
    border-color: #0A84FF;
    width: 220px;
}
/* PRODUCT DESCRIPTION TOGGLE */
.desc-toggle {
    background: none;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 10px;
    font-family: 'Montserrat', sans-serif;
    color: #777;
    cursor: pointer;
    margin: 4px 0 6px;
    transition: 0.2s;
}

.desc-toggle:hover {
    border-color: #0A84FF;
    color: #0A84FF;
}

.desc-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.3s;
    opacity: 0;
    text-align: left;
}

.desc-panel.open {
    max-height: 200px;
    opacity: 1;
}

.desc-panel p {
    font-size: 11px;
    color: #555;
    line-height: 1.6;
    background: #f5f8ff;
    border-left: 2px solid #0A84FF;
    border-radius: 0 6px 6px 0;
    padding: 8px 10px;
    margin-bottom: 6px;
}

.desc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 6px;
}

.dtag {
    font-size: 10px;
    background: #e8f0ff;
    color: #185FA5;
    border-radius: 20px;
    padding: 2px 8px;
    font-weight: 600;
}
.product-card {
    display: flex;
    flex-direction: column;
}

.desc-panel {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
}

.desc-panel.open {
    max-height: 300px;
    opacity: 1;
    margin-top: 10px;
}
.products-grid {
  align-items: start;
}
.product-image.slider {
    position: relative;
    overflow: hidden;
}

.slide {
    width: 100%;
    height: 140px;
    object-fit: contain;
    display: none;
}

.slide.active {
    display: block;
}

/* ARROWS */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    font-size: 18px;
    padding: 6px 10px;
    cursor: pointer;
    border-radius: 6px;
    z-index: 2;
}

.arrow.left {
    left: 5px;
}

.arrow.right {
    right: 5px;
}

.arrow:hover {
    background: var(--primary);
}
.new-modal {
    padding: 30px;
    border-radius: 18px;
    animation: fadeUp 0.35s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* HEADER */
.modal-header h2 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 4px;
}

.modal-header p {
    color: #666;
    font-size: 13px;
    margin-bottom: 20px;
}

/* QUANTITY */
.quantity-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.quantity-box button {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: none;
    background: #f1f1f1;
    font-size: 18px;
    cursor: pointer;
    transition: 0.2s;
}

.quantity-box button:hover {
    background: #0A84FF;
    color: #fff;
}

#quantity {
    font-weight: 700;
    font-size: 16px;
}

/* FORM */
.new-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
}

.new-form input,
.new-form textarea {
    padding: 13px;
    border-radius: 10px;
    border: 1.5px solid #e0e0e0;
    background: #fafafa;
    font-family: 'Montserrat';
}

.new-form input:focus,
.new-form textarea:focus {
    border-color: #0A84FF;
    background: #fff;
}

/* BUTTON */
.new-btn {
    width: 100%;
    font-size: 15px;
}
.order-review {
    margin-top: 20px;
    background: #f5f8ff;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #dbe6ff;
}

.review-box p {
    font-size: 13px;
    margin-bottom: 6px;
}
/* =============================================
   MOBILE HEADER FIX
   ============================================= */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-input {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  width: 220px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
}

/* Hamburger button — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}

/* Animate hamburger → X */
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   HEADER LAYOUT
   ============================================= */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: 0.4s ease;
}

header.scrolled {
  background: rgba(0,0,0,0.9);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* =============================================
   SEARCH — DESKTOP
   ============================================= */
.search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: none; /* hidden on desktop */
  padding: 4px;
}

.search-input {
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  width: 220px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  transition: width 0.3s;
}

#search-dropdown {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  min-width: 260px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  z-index: 9999;
  overflow: hidden;
  max-height: 300px;
  overflow-y: auto;
}

/* =============================================
   MOBILE SEARCH BAR (drops below header)
   ============================================= */
.mobile-search-bar {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.95);
  padding: 12px 16px;
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-search-bar input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  outline: none;
}

.mobile-search-bar input::placeholder {
  color: rgba(255,255,255,0.5);
}

.mobile-search-bar.open {
  display: block;
}

#search-dropdown-mobile {
  background: #fff;
  border-radius: 10px;
  margin-top: 8px;
  overflow: hidden;
  max-height: 260px;
  overflow-y: auto;
}

/* =============================================
   HAMBURGER
   ============================================= */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   NAV
   ============================================= */
.nav-left {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-left a {
  color: white;
  margin-right: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
}

.nav-left a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--primary);
  transition: 0.3s;
}

.nav-left a:hover { color: var(--primary); }
.nav-left a:hover::after { width: 100%; }

/* =============================================
   MOBILE BREAKPOINT
   ============================================= */
@media (max-width: 768px) {
  header {
    padding: 14px 18px;
    flex-wrap: wrap;
  }

  /* Nav menu drops below header */
  .nav-left {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.97);
    padding: 10px 20px 20px;
    z-index: 999;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .nav-left.open { display: flex; }

  .nav-left a {
    margin: 0;
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: white;
  }

  .nav-left a:last-child { border-bottom: none; }

  .hamburger { display: flex; }
  .search-icon-btn { display: flex; }
  .search-input { display: none; }

  .brand-right { font-size: 15px; }

  /* Hero — centered text, proper spacing */
  .hero {
    height: 100vh;
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-content {
    width: 100%;
    padding: 0 24px;
    text-align: center;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 14px;
    margin: 14px 0 24px;
  }

  /* Section title */
  .section-title {
    padding: 60px 20px 30px;
  }

  /* Categories */
.categories {
    margin: 0 12px;
    padding: 30px 16px 60px;
    gap: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .category-card {
    width: 100%;
    max-width: 100%;
  }

  /* About */
  .about {
    padding: 60px 20px;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .about-image-wrap {
    width: 100%;
  }

  .about-image-wrap img {
    width: 100%;
    height: 260px;
    object-fit: cover;
  }

  .about-badge {
    right: 10px;
    bottom: -14px;
  }

  .about-text h2 { font-size: 28px; }
  .about-text p { max-width: 100%; }
  .about-pills { justify-content: center; }

  /* Stats */
  .stats {
    gap: 16px;
    padding: 60px 16px;
    flex-wrap: wrap;
  }

  .stat-box {
    padding: 24px 30px;
    min-width: 120px;
    flex: 1;
  }

  .stat-box h2 { font-size: 34px; }

  /* Contact */
  .contact {
    padding: 60px 16px;
  }

  .contact-box {
    padding: 40px 24px;
  }

  /* Mobile search bar */
  .mobile-search-bar {
    top: 60px;
  }

  /* Cart panel full width on mobile */
  .cart-panel {
    width: 100%;
    right: -100%;
  }

  .cart-panel.active {
    right: 0;
  }
}
/* ══ PRODUCT PAGE HEADER (shared across all category pages) ══ */
header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    padding: 16px 24px !important;
    position: fixed !important;
    width: 100% !important;
    top: 0 !important;
    left: 0 !important;
    background: rgba(0,0,0,0.55) !important;
    backdrop-filter: blur(10px) !important;
    z-index: 1000 !important;
    box-sizing: border-box !important;
}

.nav-left, .hamburger,
.cat-mobile-nav {
    display: none !important;
}

.brand-right {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #0A84FF !important;
    letter-spacing: 1px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

.whey-header-right {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    flex-shrink: 0 !important;
}

.whey-header-right a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
}

.whey-header-right a:hover { opacity: 0.7 !important; }

.whey-cart-icon {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #0A84FF !important;
    cursor: pointer !important;
    white-space: nowrap !important;
}

@media (max-width: 420px) {
    .brand-right { font-size: 14px !important; }
    .whey-header-right a,
    .whey-cart-icon { font-size: 13px !important; }
    .whey-header-right { gap: 12px !important; }
    header { padding: 14px 14px !important; }
}
.qty-btn {
    width: 36px;
    height: 36px;
    font-size: 22px;
    border: none;
    border-radius: 8px;
    background: #2a2a2a;
    color: white;
    cursor: pointer;
    margin-right: 6px;
}

.delete-btn {
    width: 36px;
    height: 36px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    background: #ff3b3b;
    color: white;
    cursor: pointer;
}


