/* ===== Variables ===== */
:root {
  --purple: #6B2D8B;
  --purple-dark: #4A1D63;
  --purple-light: #8E4BAF;
  --orange: #F28C28;
  --orange-dark: #D4740E;
  --orange-light: #F5A623;
  --white: #FFFFFF;
  --off-white: #FAF8FC;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--gray-700);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--gray-900);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: var(--purple-dark);
}

.section-subtitle {
  text-align: center;
  color: var(--gray-600);
  margin-bottom: 40px;
  font-size: 1.05rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 140, 40, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--purple);
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.85rem;
  background: var(--purple);
  color: var(--white);
  border-radius: 50px;
}

.btn-small:hover {
  background: var(--purple-dark);
  transform: translateY(-1px);
}

/* WhatsApp Enquire Button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  font-size: 0.85rem;
  font-weight: 500;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
  color: #fff;
}

.btn-whatsapp svg {
  flex-shrink: 0;
}

/* WhatsApp ordering banner */
.whatsapp-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  padding: 12px 24px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 0.95rem;
  font-weight: 500;
}

.whatsapp-banner svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .whatsapp-banner {
    font-size: 0.85rem;
    padding: 10px 16px;
    gap: 8px;
  }
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  width: auto;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--purple-dark);
}

.logo span {
  color: var(--orange);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--purple);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a0a2e;
  overflow: hidden;
}

/* Product photo collage background */
.hero-collage {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0;
}

.hero-collage-item {
  overflow: hidden;
}

.hero-collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.6);
  transition: transform 12s ease;
}

.hero-collage-item:nth-child(odd) img {
  animation: collageZoom1 20s ease-in-out infinite alternate;
}

.hero-collage-item:nth-child(even) img {
  animation: collageZoom2 22s ease-in-out infinite alternate;
}

@keyframes collageZoom1 {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

@keyframes collageZoom2 {
  0% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* Dark purple overlay on top of collage */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg,
      rgba(26, 10, 46, 0.88) 0%,
      rgba(74, 29, 99, 0.75) 30%,
      rgba(107, 45, 139, 0.65) 50%,
      rgba(74, 29, 99, 0.75) 70%,
      rgba(26, 10, 46, 0.88) 100%
    );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 120px 20px 60px;
  animation: heroFadeIn 1s ease-out;
}

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

/* Logo with glow effect */
.hero-logo-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 32px;
}

.hero-logo-wrapper::before {
  content: '';
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse, rgba(242, 140, 40, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(25px);
  animation: logoGlow 4s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.hero-logo {
  max-width: 450px;
  width: 90%;
  height: auto;
  display: block;
  position: relative;
  filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.5));
}

/* Decorative divider */
.hero-divider {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--orange-light), var(--orange), transparent);
  margin: 0 auto 28px;
  animation: dividerExpand 1.5s ease-out 0.5s both;
}

@keyframes dividerExpand {
  from { width: 0; opacity: 0; }
  to { width: 120px; opacity: 1; }
}

.hero-tagline {
  font-size: 1.15rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.9), var(--orange-light), rgba(255,255,255,0.9));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: heroTextIn 0.8s ease-out 0.4s forwards, shimmerText 4s linear infinite 1.5s;
}

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

@keyframes shimmerText {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.hero-content h1 {
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.hero-content h1 span {
  color: var(--orange);
}

.hero-subtitle {
  font-size: 1.1rem;
  opacity: 0;
  margin-bottom: 44px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  animation: heroTextIn 0.8s ease-out 0.6s forwards;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroTextIn 0.8s ease-out 0.8s forwards;
}

/* Scroll hint at bottom */
.hero-scroll-hint {
  margin-top: 50px;
  opacity: 0;
  animation: heroTextIn 0.8s ease-out 1.2s forwards;
}

.hero-scroll-hint span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 8px;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.4);
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  transform: rotate(45deg);
  margin: 0 auto;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.4; }
  50% { transform: rotate(45deg) translate(5px, 5px); opacity: 0.8; }
}

/* ===== About ===== */
.about {
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: var(--gray-600);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.value-item {
  text-align: center;
  padding: 20px 10px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.value-item h3 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--purple);
}

.value-item p {
  font-size: 0.8rem;
  margin-bottom: 0;
  color: var(--gray-600);
}

.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--purple-light), var(--orange-light));
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  opacity: 0.9;
}

.image-placeholder span {
  font-size: 3rem;
  margin-bottom: 12px;
}

/* ===== Vision Banner ===== */
.vision-banner {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  padding: 60px 0;
  text-align: center;
}

.vision-banner blockquote {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0.95;
}

/* ===== Categories ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  text-align: center;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.category-image {
  height: 180px;
  background: var(--gray-900);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.category-image span {
  font-size: 4rem;
}

.category-info {
  padding: 20px 16px;
}

.category-info h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--purple-dark);
}

.category-info p {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* ===== Products ===== */
.products {
  background: var(--off-white);
}

.product-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 24px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover {
  border-color: var(--purple-light);
  color: var(--purple);
}

.filter-btn.active {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-image {
  height: 260px;
  overflow: hidden;
  background: var(--gray-100);
  cursor: zoom-in;
  position: relative;
}

/* Magnifier hint on hover */
.product-image::after {
  content: '\2315';
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  background: rgba(42, 16, 62, 0.65);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.product-card:hover .product-image::after {
  opacity: 1;
  transform: scale(1);
}

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

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

.placeholder-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple-light), var(--orange-light));
}

.placeholder-img span {
  font-size: 4rem;
  opacity: 0.7;
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.product-category {
  font-size: 0.8rem;
  color: var(--purple);
  font-weight: 500;
  margin-bottom: 6px;
}

.product-desc {
  font-size: 0.8rem;
  color: var(--gray-600);
  margin-bottom: 6px;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--orange-dark);
  margin-bottom: 14px;
}

/* ===== Policies ===== */
.policies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.policy-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--purple);
}

.policy-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.policy-card h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--purple-dark);
}

.policy-card ul {
  list-style: none;
}

.policy-card li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--gray-600);
  position: relative;
  padding-left: 20px;
}

.policy-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 600;
}

.policy-note {
  margin-top: 32px;
  padding: 24px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--orange);
}

.policy-note p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 8px;
}

.policy-note p:last-child {
  margin-bottom: 0;
}

/* ===== Contact ===== */
.contact {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--purple);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item h3 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--purple-dark);
}

.contact-item p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.contact-item a {
  color: var(--purple);
}

.contact-item a:hover {
  color: var(--orange);
}

.contact-form-wrapper {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: var(--purple-dark);
}

.form-group {
  margin-bottom: 16px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  transition: border-color var(--transition);
  background: var(--gray-50);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple-light);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

/* ===== Footer ===== */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 8px;
}

.footer-brand .logo {
  color: var(--white);
  font-size: 1.3rem;
  display: inline-block;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 0.9rem;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--orange);
}

.footer-contact p {
  font-size: 0.85rem;
  margin-bottom: 6px;
  opacity: 0.7;
}

.footer-contact a:hover {
  color: var(--orange);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 968px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: -1;
  }

  .image-placeholder {
    aspect-ratio: 16/9;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-tagline {
    font-size: 0.85rem;
    letter-spacing: 3px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-collage {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }

  .hero-logo {
    max-width: 320px;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .vision-banner blockquote {
    font-size: 1.1rem;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

@media (max-width: 480px) {
  .hero-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 1fr);
  }

  .hero-logo {
    max-width: 260px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* ===== Product Image Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(20, 8, 32, 0.92);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 92vw;
  max-height: 90vh;
  transform: scale(0.92);
  transition: transform 0.3s ease;
}

.lightbox.open .lightbox-content {
  transform: scale(1);
}

.lightbox-img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.6);
}

.lightbox-caption {
  margin-top: 16px;
  text-align: center;
  color: #fff;
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 1.15rem;
  letter-spacing: 0.3px;
}

.lightbox-caption .lb-price {
  display: block;
  margin-top: 4px;
  color: var(--orange, #f28c28);
  font-weight: 600;
  font-size: 1.05rem;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

body.lightbox-open {
  overflow: hidden;
}
