/* ================= GLOBAL ================= */
body {
  font-family: 'Poppins', sans-serif;
}

/* ================= TOP NAVBAR ================= */
.top-navbar {
  background: #3a2c25;
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
  
}

.top-navbar i {
  color: #f5b041;
}

/* ================= MAIN NAVBAR ================= */
.main-navbar {
  background: #ffffff;
  position: fixed;
  width: 100%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  z-index: 999;
  top: 40px; /* SAME AS top-navbar height */
}
/* WHEN SCROLLED */
.main-navbar.sticky {
  top: 0;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Zoom animation */
.main-navbar.zoom {
  transform: scale(1.02);
}

/* Logo */
.navbar-brand img {
  height: 55px;
}

/* Links */
.nav-link {
  color: #181615;
  font-weight: 700;
  font-size: 16px;
  font-family:   'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  position: relative;
}

.nav-link:hover {
  color: #b97745;
}

/* Order Button */
.order-btn {
  background: #b97745;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.3s;
}

.order-btn:hover {
  background: #3a2c25;
  color: #fff;
}

/* Cart Icon */
.cart-icon i {
  font-size: 20px;
  color: #3a2c25;
}

/* Navbar spacer */
.nav-spacer {
  height: 140px;
}

@media (max-width: 991px) {
  .nav-spacer {
    height: 125px;
  }
}


/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {

  .offcanvas-menu {
    position: fixed;
    top: 163.5px;
    left: -100%;
    width: 260px;
    height: 100vh;
    background: #ffffff;
    padding-top: 120px;
    transition: left 0.4s ease;
    box-shadow: 8px 0 25px rgba(0,0,0,0.15);
    z-index: 998;
  }

  .offcanvas-menu.show {
    left: 0;
  }

  .offcanvas-menu .nav-link {
    display: block;
    padding: 15px 20px;
    font-size: 16px;
  }

}

/* =========================
   BANNER SECTION (FIXED)
========================= */

.banner-section {
  width: 100%;
  height: 80vh;                 /* 80% of screen height */
  overflow: hidden;
}

/* Bootstrap carousel must take full height */
#bannerCarousel,
#bannerCarousel .carousel-inner,
#bannerCarousel .carousel-item {
  height: 100%;
}

/* Actual slide */
.banner-slide {
  width: 100%;
  height: 100%;                 /* IMPORTANT */
  background-size: cover;       /* Fill without distortion */
  background-position: center;  /* Center image */
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dark overlay for text readability */
.banner-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Banner text */
.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.banner-content h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.banner-content p {
  font-size: 1.2rem;
}

/* =========================
   RESPONSIVE FIXES
========================= */

@media (max-width: 991px) {
  .banner-section {
    height: 65vh;
  }

  .banner-content h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .banner-section {
    height: 55vh;
  }

  .banner-content h1 {
    font-size: 1.6rem;
  }

  .banner-content p {
    font-size: 1rem;
  }
}
/* ===============================
   CATEGORIES SECTION
================================ */

/* ===============================
   SECTION TITLE
================================ */
.section-title {
  margin-bottom: 50px;
}

/* Small heading (h2 size) */
.section-small-title {
  font-family: "Pacifico", cursive;
  font-size: 36px;
  font-weight: 400;
  color: #e63946;
  margin-bottom: 8px;
}

/* Main heading (h5 size) */
.section-main-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}

/* OUR – solid */
.section-main-title .solid-text {
  color: #000;
  font-weight: 800;
}

/* CATEGORIES – hollow */
.section-main-title .outline-text {
  color: transparent;
  -webkit-text-stroke: 1.5px #000;
  margin-left: 6px;
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
  .section-main-title .solid-text {
    color: #fff;
  }
  .section-main-title .outline-text {
    -webkit-text-stroke: 1.5px #fff;
  }
}

/* ===============================
   CARD
================================ */
.zula-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
}

/* Image box (fixed size) */
.zula-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f7f7f7;
  overflow: hidden;
}

/* Images */
.zula-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.img-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.zula-card:hover .img-main {
  opacity: 0;
}

.zula-card:hover .img-hover {
  opacity: 1;
}

.zula-card:hover .zula-img {
  transform: scale(1.05);
}

/* Overlay */
.zula-overlay {
  position: relative;
  margin-top: auto;
  background: #fff;
  padding: 18px;
}

.order-btn {
  background: #000;
  color: #fff;
  border-radius: 10px;
}

/* ===============================
   ROW ANIMATIONS
================================ */
.category-row {
  opacity: 0;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
}

.from-right {
  animation-name: slideFromRight;
}

.from-left {
  animation-name: slideFromLeft;
}

@keyframes slideFromRight {
  from {
    opacity: 0;
    transform: translateX(120px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-120px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile: disable animation */
@media (max-width: 768px) {
  .category-row {
    opacity: 1;
    animation: none;
    transform: none;
  }

  .section-small-title {
    font-size: 28px;
  }

  .section-main-title {
    font-size: 18px;
  }
}



/* ================= BEST SELLER SECTION ================= */
.best-seller-section {
  padding: 80px 0;
  text-align: center;
}

/* Headings */
.small-heading {
  font-size: 14px;
  letter-spacing: 2px;
  color: #b97745;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.main-heading {
  font-size: 36px;
  font-weight: 600;
  color: #3a2c25;
  margin-bottom: 50px;
}

/* Container */
.best-seller-container {
  width: 70%;
  height: 400px;
  margin: auto;
  background-image: url('../assets/images/backgroud.png');
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

/* Dark overlay */
.best-seller-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.025);
  z-index: 1;
}

.best-seller-container > div {
  position: relative;
  z-index: 1;
}

/* Left Content */
.best-left {
  width: 50%;
  text-align: left;
  color: #fff;
}

.best-left h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
}

.best-left p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Button */
.explore-btn {
  background: #b97745;
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.explore-btn:hover {
  background: #ffffff;
  color: #3a2c25;
}

/* Right Image */
.best-right {
  width: 50%;
  text-align: right;
}

.best-right img {
  max-width: 90%;
  height: 50%;
}

/* ================= ANIMATIONS ================= */
.animate-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: all 1s ease;
}

.animate-right {
  opacity: 0;
  transform: translateX(80px);
  transition: all 1s ease;
}

.animate-show {
  opacity: 1;
  transform: translateX(0);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .best-seller-container {
    width: 90%;
    height: auto;
    flex-direction: column;
    text-align: center;
  }

  .best-left,
  .best-right {
    width: 100%;
  }

  .best-right {
    margin-top: 30px;
    text-align: center;
  }

  .main-heading {
    font-size: 28px;
  }
}
/* PAGE BACKGROUND */

body {
  background: linear-gradient(135deg, #1a1d1f, #2b2f33);
  font-family: "Poppins", sans-serif;
}

/* SECTION */
.zula-welcome-section {
  padding: 80px 0;
  overflow: hidden;
}

/* IMAGE WRAPPER (LOCKED) */
.image-wrapper {
  position: relative;
  height: 460px;        /* IMPORTANT: fixed */
  /* overflow: visible; */
  isolation: isolate;
}

/* COMMON CARD */
.tilt-card {
  background: #fff;
  padding: 25px;
  border-radius: 6px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease;
}

.tilt-card img {
  width: 100%;
  display: block;
}

/* BIG IMAGE CARD */
.big-card {
  width: 75%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(-5deg);
  z-index: 1;
  opacity: 0;
  animation: imgFromLeft 1.2s ease forwards;
  
}

/* SMALL IMAGE CARD */
.small-card {
  width: 45%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-20%) rotate(6deg);
  z-index: 2;
  opacity: 0;
  animation: imgFromRight 1.2s ease forwards;
  animation-delay: 0.3s;
  
}

/* OPTIONAL HOVER STRAIGHTEN */
.tilt-card:hover {
  transform: scale(1.03);
}

.small-card:hover {
  transform: translateX(-20%) rotate(0deg);
}

/* CONTENT */
.content-area {
  color: #fff;
}

.welcome-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  opacity: 0;
  animation: textFromTop 1s ease forwards;
  animation-delay: 0.6s;
}

.welcome-title span {
  color: #ff4d4d;
}

.welcome-text {
  color: #ccc;
  line-height: 1.8;
  opacity: 0;
  animation: textFromTop 1s ease forwards;
  animation-delay: 0.8s;
}

/* READ MORE BUTTON */
.read-more-btn {
  position: relative;
  display: inline-block;
  margin-top: 30px;
  padding: 12px 30px;
  background: #000;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  animation: textFromTop 1s ease forwards;
  animation-delay: 1s;
}

.read-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #e63946;
  transition: left 0.4s ease;
  z-index: -1;
}

.read-more-btn:hover::before {
  left: 0;
}

.read-more-btn:hover {
  color: #fff;
}

/* ANIMATIONS */
@keyframes imgFromLeft {
  from {
    opacity: 0;
    transform: translateX(-120px) translateX(-50%) rotate(-5deg);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) rotate(-5deg);
  }
}

@keyframes imgFromRight {
  from {
    opacity: 0;
    transform: translateX(120px) translateX(-20%) rotate(6deg);
  }
  to {
    opacity: 1;
    transform: translateX(-20%) rotate(6deg);
  }
}

@keyframes textFromTop {
  from {
    opacity: 0;
    transform: translateY(-60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE — SCALE ONLY (NO REPOSITION) */
@media (max-width: 1100px) {
  .zula-welcome-section .row {
    flex-direction: column;
  }

  .image-wrapper {
    margin-bottom: 60px;
  }

  .big-card {
    width: 85%;
  }

  .small-card {
    width: 60%;
  }

  .content-area {
    text-align: center;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .big-card {
    width: 90%;
  }

  .small-card {
    width: 70%;
  }
}
/* SPECIFICATION SECTION */
.zula-specification-section {
  padding: 80px 0;
  background: var(--bg-color);
  overflow: hidden;
}

/* SMALL CURSIVE HEADING */
.spec-small-title {
  font-family: "Pacifico", cursive;
  font-size: 22px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

/* BIG HEADING */
.spec-main-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0; /* NO GAP */
  opacity: 0;
  animation: titleFromTop 1s ease forwards;
}

/* IMAGE */
.spec-image-wrapper {
  margin-top: 0; /* NO GAP */
  opacity: 0;
  animation: imageFromBottom 1.2s ease forwards;
  animation-delay: 0.3s;
}

.spec-image-wrapper img {
  width: 100%;
  max-width: 600px;
  display: block;
  margin: 0 auto;
}

/* ANIMATIONS */
@keyframes titleFromTop {
  from {
    opacity: 0;
    transform: translateY(-60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes imageFromBottom {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .spec-main-title {
    font-size: 32px;
  }

  .spec-image-wrapper img {
    max-width: 90%;
  }
}
:root {
  --bg-color: #ffffff;
  --text-primary: #111111;
  --text-secondary: #555555;
  --accent-color: #e63946;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg-color: #0f1113;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --accent-color: #ff4d4d;
  }
}

.zula-products-section {
  padding: 90px 0;
  background: var(--bg-color);
  overflow: hidden;
}

/* Small cursive title */
.products-small-title {
  font-family: "Pacifico", cursive;
  font-size: 22px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

/* Main heading */
.products-main-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 50px;
}

/* Solid text */
.solid-text {
  color: var(--text-primary);
  font-weight: 800;
}

/* Outline (hollow) text */
.outline-text {
  color: transparent;
  -webkit-text-stroke: 2px var(--accent-color);
  /* text-stroke: 2px var(--accent-color); */
  text-stroke: 2px var(--accent-color);
  margin-left: 10px;
}
.product-link {
  display: block;
}

/* Common image style */
.product-img {
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.4s ease;
}

/* Hover effect */
.product-img:hover {
  transform: scale(1.05);
}

/* Left image animation */
.left-img {
  opacity: 0;
  animation: fluidFromLeft 1.2s ease forwards;
}

/* Right image animation */
.right-img {
  opacity: 0;
  animation: fluidFromRight 1.2s ease forwards;
}

/* Animations */
@keyframes fluidFromLeft {
  from {
    opacity: 0;
    transform: translateX(-120px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fluidFromRight {
  from {
    opacity: 0;
    transform: translateX(120px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 768px) {
  .products-main-title {
    font-size: 34px;
  }

  .outline-text {
    -webkit-text-stroke: 1.5px var(--accent-color);
  }
}
:root {
  --bg-color: #ffffff;
  --text-primary: #111111;
  --accent-color: #e63946;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg-color: #0f1113;
    --text-primary: #ffffff;
    --accent-color: #ff4d4d;
  }
}

/* =========================
   THEME VARIABLES
========================= */
:root {
  --bg-color: #ffffff;
  --card-bg: #ffffff;
  --text-primary: #111111;
  --text-secondary: #666666;
  --border-color: #e5e5e5;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg-color: #0f1113;
    --card-bg: #1a1d1f;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --border-color: #2a2e33;
  }
}

/* =========================
   SECTION
========================= */
.zula-features-section {
  padding: 70px 0;
  background: var(--bg-color);
  overflow: hidden;
}

/* =========================
   FEATURE CARD
========================= */
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  opacity: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover lift */
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

/* =========================
   GIF ICONS
========================= */
.feature-card img {
  width: 60px;
  height: auto;
  margin-bottom: 15px;
  object-fit: contain;
}

/* =========================
   TEXT
========================= */
.feature-card h5 {
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

/* =========================
   ANIMATION
========================= */
.animate-left {
  animation: cardFromLeft 1s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes cardFromLeft {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* =========================
   RESPONSIVE TWEAKS
========================= */
@media (max-width: 768px) {
  .feature-card {
    padding: 25px 15px;
  }

  .feature-card img {
    width: 50px;
  }
}

@media (max-width: 480px) {
  .feature-card img {
    width: 45px;
  }

  .feature-card h5 {
    font-size: 15px;
  }

  .feature-card p {
    font-size: 13px;
  }
}
/* =========================
   THEME VARIABLES
========================= */
:root {
  --overlay-bg: rgba(0,0,0,0.65);
  --text-primary: #ffffff;
  --text-secondary: #dddddd;
  --accent-color: #e63946;
}

@media (prefers-color-scheme: light) {
  :root {
    --overlay-bg: rgba(0,0,0,0.55);
    --text-primary: #ffffff;
    --text-secondary: #f1f1f1;
  }
}
/* ABOUT SECTION */
.zula-about-section {
  background: url("assets/images/about-bg.jpg") center/cover no-repeat;
  position: relative;
}

.about-overlay {
  background: rgba(0,0,0,0.6);
  padding: 60px 0;
}

/* HEADINGS */
.about-small-title {
  font-family: "Pacifico", cursive;
  font-size: 22px;
  color: #e63946;
  margin-bottom: 8px;
}

.about-main-title {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  opacity: 0;
  animation: titleDown 1s ease forwards;
}

/* ROW */
.about-row {
  margin-top: 0; /* NO GAP between heading & image */
}

/* IMAGE */
.about-image img {
  width: 100%;
  max-width: 260px;
  display: block;
  margin: 0 auto;
  opacity: 0;
  animation: imageUp 1.1s ease forwards;
  animation-delay: 0.3s;
}

/* TEXT */
.about-text {
  color: #ddd;
  font-size: 15px;
  line-height: 1.8;
}

/* ANIMATIONS */
.left-animate {
  opacity: 0;
  animation: fromLeft 1s ease forwards;
  animation-delay: 0.4s;
}

.right-animate {
  opacity: 0;
  animation: fromRight 1s ease forwards;
  animation-delay: 0.4s;
}

/* KEYFRAMES */
@keyframes titleDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes imageUp {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fromLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fromRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-text {
    text-align: center;
    margin-bottom: 20px;
  }

  .about-main-title {
    font-size: 32px;
  }
}





:root {
  --bg: #111;
  --card-bg: #1c1c1c;
  --text: #fff;
  --accent: #f7c600;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Arial, sans-serif;
}

/* Sidebar */


.category-list {
  list-style: none;
  padding: 0;
}

.category-list li {
  padding: 8px 0;
  cursor: pointer;
  font-size: 14px;
  opacity: 0.8;
}

.category-list li:hover {
  color: var(--accent);
  opacity: 1;
}



/* Product Section */
.product-section {
  
  padding: 40px 30px;
}

/* Card */
.product-card {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;                 /* 🔥 equal height */
  display: flex;
  flex-direction: column;       /* 🔥 stack image + body */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.15);
}

.product-img {
 position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;          /* 🔥 PERFECT GRID */
  overflow: hidden;
  background: #f5f5f5;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;            /* 🔥 no distortion */
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.product-img img.hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.product-img:hover img.hover-img {
  opacity: 1;
}
.product-card:hover .product-img img {
  transform: scale(1.05);
}

.product-body {
 padding: 16px;
  text-align: center;
  margin-top: auto;  
}

.product-body h6 {
   font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.price {
  font-size: 14px;
  color: var(--accent);
}
.product-desc {
  font-size: 16.5px;
  color: var(--text-secondary);
  line-height: 1.8;
  /* margin: 8px 0 12px; */
}

.btn-select {
  background: var(--accent);
  border: none;
  width: 100%;
  padding: 10px;
  font-weight: 600;
  border-radius: 6px;
}
.order-btn {
  width: 100%;
  background: #b11f2f;
  color: #fff;
  border-radius: 8px;
  padding: 10px;
  font-weight: 600;
  transition: 0.3s;
}

.order-btn:hover {
  background: #000;
  color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
  .sidebar {
    transform: translateX(-100%);
    transition: 0.3s;
    width: 260px;
    z-index: 998;
  }

  .sidebar.active {
    transform: translateX(0);
  }

  .product-section {
    margin-left: 0;
  }
}




/* =========================
   ABOUT HERO SECTION
========================= */
.about-hero-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: #0f1113;
  color: #fff;
}

/* BACKGROUND IMAGE WITH MOTION */
.about-bg-motion {
  position: absolute;
  inset: 0;
  background: url("../assets/images/ChatGPT_Image_Dec_24__2025__10_40_51_AM-removebg-preview.png") center/cover no-repeat;
  animation: bgFloat 8s ease-in-out infinite;
  opacity: 0.25;
  z-index: 0;
}

@keyframes bgFloat {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* LAYOUT */
.about-layout {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* LEFT IMAGES */
.about-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 45%;
}

.about-images img {
  width: 100%;
  aspect-ratio: 4 / 3;     /* 🔥 uniform ratio */
  object-fit: cover;       /* clean crop, no distortion */
  border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
outline: 1px solid rgba(0,0,0,0.4);
outline-offset: -6px;

  display: block;
}

/* RIGHT CONTENT */
.about-content {
  width: 55%;
}

/* SMALL TITLE */
.about-small-title {
  font-family: "Pacifico", cursive;
  color: #e63946;
  font-size: 22px;
  margin-bottom: 10px;
}

/* MAIN TITLE */
.about-main-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-main-title .solid {
  color: #fff;
}

.about-main-title .outline {
  color: transparent;
  -webkit-text-stroke: 2px #e63946;
  margin-left: 8px;
}

/* TEXT */
.about-text {
  color: #ddd;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* FEATURES */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 35px;
}

.feature-item {
  display: flex;
  gap: 15px;
}

.icon-box {
  width: 42px;
  height: 42px;
  background: rgba(230,57,70,0.15);
  color: #f8f0f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* BUTTON */
.about-btn {
  position: relative;
  display: inline-block;
  padding: 14px 36px;
  background: #000;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
}

.about-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #e63946;
  transition: left 0.4s ease;
  z-index: -1;
}

.about-btn:hover::before {
  left: 0;
}

.about-btn:hover {
  color: #fff;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .about-layout {
    flex-direction: column;
  }

  .about-images,
  .about-content {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .about-main-title {
    font-size: 32px;
  }

  .about-images {
    grid-template-columns: 1fr 1fr;
  }
}@media (max-width: 768px) {
  .about-images {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .about-images img {
    aspect-ratio: 1 / 1;   /* square images on mobile */
  }
}




/* =========================
   DISCOVER SECTION
========================= */
.discover-section {
  padding: 100px 0;
  background: transparent;
}

/* TITLE */
.discover-title {
    text-align: center;
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.2;
}

/* SOLID TEXT */
.discover-title .solid-text {
  color: #eee4e4;
  display: block;
}

/* HOLLOW TEXT */
.discover-title .outline-text {
  color: transparent;
  -webkit-text-stroke: 2px #e63946;
  text-stroke: 2px #e63946;
  display: block;
}

/* CONTENT */
.discover-text {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.9;
  color: #e6e2e2;
}

/* BUTTON */
.discover-btn {
  position: relative;
  display: inline-block;
  padding: 14px 38px;
  background: #000;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
   margin: 0 auto;
}
.discover-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.discover-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #e63946;
  transition: left 0.4s ease;
  z-index: -1;
}

.discover-btn:hover::before {
  left: 0;
}

.discover-btn:hover {
  color: #fff;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .discover-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .discover-title {
    font-size: 30px;
  }

  .discover-text {
    font-size: 15px;
    padding: 0 15px;
  }
}


/* =========================
   OUR STORY SECTION
========================= */
.our-story-section {
  padding: 100px 0;
  background: var(--bg-color);
  color: var(--text-primary);
  text-align: center;
}

/* TITLE */
.our-story-title {
  font-size: 44px;
  font-weight: 800;
}

.our-story-title .solid-text {
  color: var(--text-primary);
}

.our-story-title .outline-text {
  color: transparent;
  -webkit-text-stroke: 2px var(--accent-color);
  margin-left: 8px;
}

/* DESCRIPTION */
.our-story-description {
  max-width: 950px;
  margin: 0 auto 60px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-secondary);
}

/* =========================
   STORY CARDS
========================= */
.story-card {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
    margin: 0 auto; /* 🔥 CENTER EACH CARD */
  height: 100%;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.story-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}
.story-card-row {
  display: flex;
  justify-content: center; /* 🔥 CENTER CARDS */
}

/* Bottom title overlay */
.story-card-title {
  position: absolute;
  text-align: center;
  bottom: 0;
  width: 100%;
  padding: 14px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
}

/* Hover effect */
.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.35);
}
@media (max-width: 768px) {
  .story-card-row {
    gap: 20px;
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .our-story-title {
    font-size: 36px;
  }

  .story-card img {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .our-story-title {
    font-size: 30px;
  }

  .our-story-description {
    font-size: 15px;
    padding: 0 15px;
  }

  .story-card img {
    height: 260px;
  }
}



/* =========================
   SECTION
========================= */
.mission-vision-section {
  padding: 100px 0;
  text-align: center;
  background: #0f1113;
}

/* ROW — SIDE BY SIDE BY DEFAULT */
.mission-vision-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  max-width: 1200px;   /* 🔥 keeps cards centered */
  margin: 0 auto;
}

/* CARD */
.mv-card {
  position: relative;
  background: linear-gradient(to bottom, #2b2e31, #1a1c1f);
  border: 3px solid #3a3d40;
  border-radius: 16px;
  padding: 60px 28px 28px;
  color: #e0e0e0;

  max-width: 520px;
  width: 100%;
  box-shadow: 14px 14px 0 #b11f2f;
}

/* TOP LINE */
.mv-card::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 26px;
  right: 26px;
  height: 2px;
  background: #3a3d40;
}

/* ICON */
.mv-icon {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  background: #b11f2f;
  border-radius: 50%;
  border: 4px solid #0f1113;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mv-icon img {
  width: 32px;
}

/* CONTENT */
.mv-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #ff4d5a;
  margin-bottom: 14px;
}

.mv-content p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #e6e6e6;
}

/* 🔥 MOBILE ONLY — STACK */
@media (max-width: 768px) {
  .mission-vision-row {
    flex-direction: column;
    gap: 50px;
  }

  .mv-card {
    box-shadow: 10px 10px 0 #b11f2f;
  }
}



/* =========================
   CONTACT SECTION
========================= */
.contact-section {
  min-height: 100vh;
  background: url("../assets/images/pexels-reneterp-334978.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.contact-overlay {
  width: 100%;
  background: rgba(0,0,0,0.65);
  padding: 80px 0;
}

/* CARD */
.contact-card {
  background: rgba(20, 22, 25, 0.95);
  padding: 40px 35px;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
  text-align: center;
}

/* TITLE */
.contact-title {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-subtitle {
  color: #ccc;
  margin-bottom: 30px;
  font-size: 15px;
}

/* FORM */
#contactForm input,
#contactForm textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px 15px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 14px;
}

#contactForm textarea {
  resize: none;
}

/* BUTTON */
.contact-btn {
  width: 100%;
  background: #25D366;
  color: #fff;
  padding: 14px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background: #1ebc59;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-card {
    padding: 30px 25px;
  }

  .contact-title {
    font-size: 26px;
  }
}



/* ================= FOOTER ================= */
.zula-footer {
  background: url("../assets/images/footer-bg.jpg") center/cover no-repeat;
  color: #ddd;
}

.footer-overlay {
  background: rgba(0,0,0,0.85);
  padding: 50px 0 20px;
}

/* TOP */
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-logo img {
  max-width: 160px;
}

/* SEND */
.footer-send {
  display: flex;
  background: #2b2e31;
  border-radius: 40px;
  overflow: hidden;
}

.footer-send input {
  border: none;
  background: transparent;
  padding: 12px 20px;
  color: #fff;
  width: 220px;
}

.footer-send button {
  background: #b11f2f;
  border: none;
  padding: 12px 28px;
  color: #fff;
  font-weight: 600;
}

/* SOCIAL */
.footer-social a {
  color: #fff;
  margin-left: 12px;
  font-size: 16px;
}

/* DIVIDER */
.footer-divider {
  border-color: rgba(255,255,255,0.15);
  margin: 30px 0;
}

/* TITLES */
.zula-footer h5 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 18px;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ff4d5a;
}

/* BUTTON */
/* FOOTER ORDER BUTTON */
.footer-btn {
  position: relative;
  display: inline-block;
  background: #860a0a;
  color: #fff;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}

/* RED SLIDE EFFECT */
.footer-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #131212;
  transition: left 0.4s ease;
  z-index: -1;
}

/* HOVER */
.footer-btn:hover::before {
  left: 0;
}

.footer-btn:hover {
  color: #fff;
  transform: translateY(-2px);

}


/* BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.payment-icons img {
  height: 26px;
  margin-left: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-top {
    justify-content: center;
    text-align: center;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}



/* =========================
   PRODUCT DETAIL PAGE
========================= */

.product-header {
  text-align: center;
  padding: 40px 15px 20px;
}

.product-header img {
  height: 80px;
  margin-bottom: 12px;
}

.product-header h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
}

/* =========================
   LAYOUT
========================= */

.product-detail-section {
  padding: 60px 0;
  background: var(--bg-color);
}

.product-layout {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* =========================
   IMAGE GALLERY
========================= */

.product-images {
  display: flex;
  gap: 15px;
}

.thumbnail-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.thumbnail-list img {
  width: 70px;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}

.thumbnail-list img:hover {
  transform: scale(1.05);
}

.main-image img {
  width: 420px;
  max-width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

/* =========================
   PRODUCT INFO
========================= */

.product-info h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.rating {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.price span {
  font-size: 15px;
  color: var(--text-secondary);
  text-decoration: line-through;
  margin-left: 10px;
}

/* =========================
   ORDER BUTTON (MATCHES YOUR STYLE)
========================= */

.product-order-btn {
  position: relative;
  display: inline-block;
  padding: 14px 40px;
  background: #000;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 30px;
}

.product-order-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -100%;
  background: #e63946;
  transition: left 0.4s ease;
  z-index: -1;
}

.product-order-btn:hover::before {
  left: 0;
}

.product-order-btn:hover {
  color: #fff;
}

/* =========================
   ACCORDION
========================= */

.product-accordion {
  border-top: 1px solid var(--border-color);
}

.accordion-item {
  border-bottom: 1px solid var(--border-color);
}

.accordion-header {
  padding: 16px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header i {
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
  transform: rotate(90deg);
}

.accordion-body {
  display: none;
  padding-bottom: 18px;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.accordion-item.active .accordion-body {
  display: block;
}

/* REVIEW BUTTON */
.review-btn {
  margin-top: 10px;
  padding: 10px 24px;
  background: #000;
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.review-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -100%;
  background: #e63946;
  transition: left 0.4s ease;
  z-index: -1;
}

.review-btn:hover::before {
  left: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .product-layout {
    flex-direction: column;
  }

  .product-images {
    justify-content: center;
  }

  .thumbnail-list {
    flex-direction: row;
  }

  .main-image img {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .product-header h1 {
    font-size: 22px;
  }

  .product-info h2 {
    font-size: 22px;
  }

  .price {
    font-size: 20px;
  }
}
