/* ============================================================
   ZUDIAC — BRANDING, FONTS & RESET CSS
============================================================ */

/* -----------------------------
   1) FONT-FACE DECLARATIONS
----------------------------- */

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "SpaceGrotesk";
  src: url("../fonts/SpaceGrotesk-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "SpaceGrotesk";
  src: url("../fonts/SpaceGrotesk-Medium.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "SpaceGrotesk";
  src: url("../fonts/SpaceGrotesk-SemiBold.ttf") format("truetype");
  font-weight: 600;
}
@font-face {
  font-family: "SpaceGrotesk";
  src: url("../fonts/SpaceGrotesk-Bold.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "Oswald";
  src: url("../fonts/Oswald-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Oswald";
  src: url("../fonts/Oswald-Medium.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Oswald";
  src: url("../fonts/Oswald-SemiBold.ttf") format("truetype");
  font-weight: 600;
}
@font-face {
  font-family: "Oswald";
  src: url("../fonts/Oswald-Bold.ttf") format("truetype");
  font-weight: 700;
}

/* ============================================================
   ROOT VARIABLES
============================================================ */
:root {
  /* Core colors */
  --zd-red: #e41c23;
  --zd-red-dark: #b1161b;
  --zd-black: #111111;
  --zd-gray: #f5f5f5;
  --zd-text: #111111;
  --zd-bg: #ffffff;

  /* Typography */
  --zd-font-main: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --zd-font-heading: "SpaceGrotesk", sans-serif;
  --zd-font-impact: "Oswald", sans-serif;

  --zd-container-width: 1320px;

  --zd-radius-pill: 999px;
  --zd-radius-soft: 14px;

  --zd-shadow-soft: 0 10px 28px rgba(0,0,0,.08);

  --zd-speed-fast: .2s;
  --zd-speed-medium: .35s;
}

/* -----------------------------
   GLOBAL RESET
----------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  max-width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--zd-font-main);
  background: #fff;
  color: var(--zd-text);
  overflow-x: hidden !important;
}

@media (max-width: 992px) {
    html,body {
       overflow-x: hidden !important;  
    }
}

img {
  max-width: 100%;
  display: block;
}

ul { list-style: none; }

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ============================================================
   BUTTON SYSTEM
============================================================ */
.zd-cta,
.zd-cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 34px;
  border-radius: var(--zd-radius-pill);
  font-family: var(--zd-font-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  transition: .3s ease;
  white-space: nowrap;
}

/* Solid CTA */
.zd-cta {
  background: var(--zd-red);
  color: #fff;
}
.zd-cta:hover {
  background: var(--zd-red-dark);
  transform: translateY(-1px);
}

/* Outline CTA */
.zd-cta-outline {
  color: var(--zd-red);
  border: 2px solid var(--zd-red);
}
.zd-cta-outline:hover {
  background: var(--zd-red);
  color: #fff;
}

/* ============================================================
   TOP CONTACT BAR – FULL RESPONSIVE (DESKTOP → MOBILE)
============================================================ */

.zd-topbar {
  background: var(--zd-black);
  color: #fff;
  font-size: 0.8rem;
  width: 100%;
}

/* ===================== CONTAINER ===================== */
.zd-topbar-container {
  max-width: var(--zd-container-width);
  margin: 0 auto;
  padding: 6px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

/* ===================== LEFT & RIGHT ===================== */
.zd-topbar-left,
.zd-topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

/* ===================== LINKS ===================== */
.zd-topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

/* ===================== SOCIAL ICONS ===================== */
.zd-topbar-social a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.zd-topbar-social a:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ===================== BUTTON ===================== */
.zd-topbar-btn {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  white-space: nowrap;
  transition: all 0.2s ease;
}

.zd-topbar-btn:hover {
  background: rgba(255,255,255,.12);
}

/* ============================================================
   TABLET RESPONSIVE (≤ 992px)
============================================================ */
@media (max-width: 992px) {

  .zd-topbar-container {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .zd-topbar-left,
  .zd-topbar-right {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* ============================================================
   MOBILE RESPONSIVE (≤ 576px)
============================================================ */
@media (max-width: 576px) {

  .zd-topbar {
    font-size: 0.75rem;
  }

  .zd-topbar-container {
    padding: 6px 10px;
  }

  /* Stack sections */
  .zd-topbar-left,
  .zd-topbar-right {
    width: 100%;
    justify-content: center;
  }

  .zd-topbar-social a {
    width: 24px;
    height: 24px;
  }

  .zd-topbar-btn {
    padding: 5px 12px;
    font-size: 0.72rem;
  }
}


/* ============================================================
   HEADER (STICKY + PROFESSIONAL)
============================================================ */
.zd-header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1000;
  box-shadow: var(--zd-shadow-soft);
}

.zd-container {
  max-width: var(--zd-container-width);
  margin: 0 auto;
  padding: 0 16px;
  height: 82px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.zd-logo img {
  height: 40px;
}

/* ============================================================
   DESKTOP NAVIGATION (FIXED SCOPE)
============================================================ */

/* ONLY the main navigation list should be flex */
.zd-nav > ul {
  display: flex;
  align-items: center;
  gap: 26px;
}

.zd-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border .2s ease;
}

.zd-nav a:hover,
.zd-nav a.active {
  color: var(--zd-red);
  border-color: var(--zd-red);
}

/* ============================================================
   DESKTOP DROPDOWN (BOOTSTRAP + PREMIUM)
============================================================ */

/* Bootstrap visibility control */
.zd-nav .dropdown-menu {
  display: none;                 /* hidden by default */
  border-radius: 12px;
  padding: 10px 0;
  border: none;
  box-shadow: 0 20px 45px rgba(0,0,0,.15);
  margin-top: 14px;
}

/* Show only when Bootstrap adds .show */
.zd-nav .dropdown-menu.show {
  display: block;
}

/* Dropdown items – stacked vertically */
.zd-nav .dropdown-item {
  display: block;                /* force vertical */
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 20px;
  color: #222;
  white-space: nowrap;
}

.zd-nav .dropdown-item:hover,
.zd-nav .dropdown-item:focus {
  background: #f6f6f6;
  color: var(--zd-red);
}

/* Caret spacing */
.zd-nav .dropdown-toggle::after {
  margin-left: 6px;
  vertical-align: middle;
}

/* ============================================================
   MOBILE NAV TOGGLE
============================================================ */
.zd-nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 0;
}

.zd-nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--zd-black);
}

/* ============================================================
   RESPONSIVE HEADER
============================================================ */
@media (max-width: 768px) {
  .zd-nav-desktop {
    display: none;
  }

  .zd-nav-toggle {
    display: flex;
  }

  .zd-container {
    height: 64px;
  }
}

@media (max-width: 768px) {
  .zd-nav-desktop .dropdown-menu {
    display: none !important;
  }
}


/* ============================================================
   OFFCANVAS (MOBILE NAVIGATION)
============================================================ */
.zd-offcanvas {
  position: fixed;
  inset: 0 0 0 auto;
  width: 320px;
  max-width: 100%;
  height: 100dvh;

  background: #fff;
  border-left: 1px solid #eee;

  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  z-index: 1200;

  padding: 72px 22px 24px;
  overflow-y: auto;
}

.zd-offcanvas.is-open {
  transform: translateX(0);
}

/* ============================================================
   OFFCANVAS CONTROLS
============================================================ */
.zd-offcanvas-close {
  position: absolute;
  top: 20px;
  right: 18px;
  font-size: 20px;
  background: none;
  border: 0;
  cursor: pointer;
}

/* Backdrop */
.zd-offcanvas-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease;
  z-index: 1100;
}

.zd-offcanvas-backdrop.is-active {
  opacity: 1;
  visibility: visible;
}

/* ============================================================
   OFFCANVAS NAV STRUCTURE
============================================================ */
.zd-offcanvas-nav ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Top-level links */
.zd-offcanvas-nav > ul > li > a {
  font-size: 16px;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  display: block;
}

/* Touch feedback */
.zd-offcanvas-nav a:active {
  background: #f7f7f7;
}

/* ============================================================
   OFFCANVAS ACCORDION (PRODUCTS)
============================================================ */
.offcanvas-group {
  margin-top: 6px;
}

/* Toggle row */
.offcanvas-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: 0;
  padding: 12px 0;
  cursor: pointer;
}

/* Section label */
.offcanvas-heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #999;
}

/* Chevron */
.offcanvas-toggle i {
  font-size: 14px;
  transition: transform .25s ease;
}

/* Submenu */
.offcanvas-submenu {
  display: none;
  flex-direction: column;
}

/* Expanded */
.offcanvas-group.is-open .offcanvas-submenu {
  display: flex;
}

.offcanvas-group.is-open .offcanvas-toggle i {
  transform: rotate(180deg);
}

/* Submenu links */
.offcanvas-submenu a {
  font-size: 15px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}


/* ============================================================
   BODY LOCK
============================================================ */
body.no-scroll {
  overflow: hidden;
}


/* Hero wrapper */
.zd-hero {
  background: radial-gradient(circle at top left, #fce7e8 0, #ffffff 40%, #f5f5f5 100%);
  padding: 40px 0 60px;
}

.zd-hero-inner {
  max-width: var(--zd-container-width);
  margin: 0 auto;
  padding: 0 16px;
}

/* Grid layout */
.zd-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 32px;
  min-height: 420px;
}

/* Text side */
.zd-hero-text h1 {
  font-family: var(--zd-font-impact);
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 14px;
  color: var(--zd-black);
  font-weight: 700;
}

.zd-hero-text p {
  max-width: 520px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #444444;
  margin-bottom: 22px;
}

/* Product image */
.zd-hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.zd-hero-media img {
  max-width: 460px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.25));
}

/* Swiper fade/slide effect */
.hero-swiper {
  overflow: hidden;
}

.hero-swiper .swiper-slide {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.hero-swiper .swiper-slide.swiper-slide-active {
  opacity: 1;
  transform: translateX(0);
}

.hero-swiper .swiper-pagination-bullet {
  background: rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.hero-swiper .swiper-pagination-bullet-active {
  background: var(--zd-red);
}

/* Mobile */
@media (max-width: 768px) {
  .zd-hero {
    padding: 24px 0 40px;
  }

  .zd-hero-grid {
    grid-template-columns: 1fr;
    text-align: left;
    min-height: auto;
  }

  .zd-hero-media {
    order: -1;
  }
}

/* ============================================================
   ZUDIAC KITCHEN TECH SECTION — FINAL (RIGHT IMAGE)
============================================================ */

.zd-tech-section {
  position: relative;
  background: var(--zd-red);
  padding: 40px 0;
  overflow: hidden;
}

/* FX LAYER */
.zd-tech-fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

/* SVG ORBIT */
.zd-orbit-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 120px);
  height: 520px;
  transform: translate(-50%, -50%);
}

.zd-orbit-path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 2.5;
  stroke-dasharray: 12 14;
  filter:
    drop-shadow(0 0 6px rgba(255, 255, 255, 0.9))
    drop-shadow(0 0 16px rgba(255, 255, 255, 0.4));
  animation: zdOrbit 10s linear infinite;
}

@keyframes zdOrbit {
  to { stroke-dashoffset: -260; }
}

/* ============================================================
   WHITE WRAPPER CARD (MIRRORED) — REFINED
============================================================ */

.zd-tech-wrapper {
  position: relative;
  background: #ffffff;
  border-radius: 32px;

  /* Reduced TOP padding only */
  padding: 90px 420px 80px 60px;  /* was 140px → now 90px */

  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.22);
  z-index: 4;
}


/* ============================================================
   IMAGE — RIGHT SIDE (EXACT SAME POSITION AS LEFT VERSION)
============================================================ */

.zd-tech-visual {
  position: absolute;

  left: auto;          /* remove left */
  right: -110px;       /* mirror overlap */

  top: 20px;           /* EXACT same vertical position */
  width: 620px;

  z-index: 3;
  will-change: transform;
}

.zd-tech-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   CONTENT (LEFT)
============================================================ */

.zd-tech-content {
  position: relative;
  z-index: 4;
}

/* HEADER */
.zd-tech-header {
  margin-bottom: 46px;
}

.zd-kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--zd-red);
  margin-bottom: 10px;
}

.zd-tech-header h2 {
  font-family: var(--zd-font-impact);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.1;
}

.zd-tech-header h2 span {
  color: var(--zd-red);
}


/* =========================================================
   GRID — EQUAL HEIGHT ENABLED
========================================================= */

.zd-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: stretch;
}

/* =========================================================
   CARD — LOCKED HEIGHT STRUCTURE
========================================================= */

.zd-tech-card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.97),
    rgba(248,248,248,.97)
  );

  border-radius: 18px;
  padding: 22px 18px;

  display: flex;           
  flex-direction: column;  
  height: 100%;            

  text-align: center;

  transition:
    transform .32s ease,
    box-shadow .32s ease;
}

.zd-tech-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 16px 36px rgba(228,28,35,.20),
    inset 0 0 0 1px rgba(228,28,35,.18);
}

/* =========================================================
   ICON
========================================================= */

.zd-tech-icon {
  margin-bottom: 12px;
}

.zd-tech-icon i {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--zd-red);
  background: rgba(228,28,35,.10);
}

/* =========================================================
   TITLE — FIXED HEIGHT
========================================================= */

.zd-tech-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  min-height: 40px;
}

/* =========================================================
   POINTS — FLEX FILL (NO BREAK)
========================================================= */

.zd-tech-points {
  list-style: none;
  padding: 0;
  margin: 0;

  flex-grow: 1;
}

.zd-tech-points li {
  font-size: 13.5px;
  line-height: 1.55;
  color: #555;
  margin-bottom: 8px;
}

/* =========================================================
   MOBILE — SAFE STACK
========================================================= */

@media (max-width: 992px) {
  .zd-tech-grid {
    grid-template-columns: 1fr;
  }

  .zd-tech-card h4 {
    min-height: auto;
  }
}


/* ============================================================
   RESPONSIVE — MOBILE
============================================================ */

@media (max-width: 992px) {

  .zd-tech-wrapper {
    padding: 60px 24px;
  }

  .zd-tech-visual {
    position: relative;
    right: 0;
    top: auto;
    width: 100%;
    margin-bottom: 40px;
  }

  .zd-tech-grid {
    grid-template-columns: 1fr;
  }
}
/* ============================================================
   SECTION HEADERS — SHARED STYLE
============================================================ */

.zd-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.zd-kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--zd-red);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--zd-font-impact);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  color: #111;
}

.section-title span {
  color: var(--zd-red);
}

/* ============================================================
   ZUDIAC PRODUCT CATEGORIES
============================================================ */

.zd-category-section {
  padding: 100px 0;
  background: #fff;
}

.zd-category-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 in one row */
  gap: 30px;
}

.zd-category-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  text-align: left;
  box-shadow: var(--zd-shadow-soft);
  transition: all var(--zd-speed-medium) ease;
  cursor: pointer;
  border: none;
}

.zd-category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.zd-category-media {
  position: relative;
  background: #f4f4f4;
  height: 220px;
  overflow: hidden;
}

.zd-category-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.zd-category-card:hover .zd-category-media img {
  transform: scale(1.06);
}

.zd-category-body {
  padding: 22px 24px 26px;
}

.zd-category-body h4 {
  font-family: var(--zd-font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--zd-black);
  margin-bottom: 8px;
}

.zd-category-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--zd-red);
}

.zd-category-link i {
  font-size: 14px;
  transition: transform var(--zd-speed-fast) ease;
}

.zd-category-card:hover .zd-category-link i {
  transform: translateX(4px);
}

/* =========================
   RESPONSIVE BEHAVIOUR
========================= */

@media (max-width: 1200px) {
  .zd-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .zd-category-section {
    padding: 70px 0;
  }

  .zd-category-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .zd-category-media {
    height: 200px;
  }
}

/* ============================================================
   ABOUT ZUDIAC — PREMIUM HOME SECTION
============================================================ */

.zd-about-section {
  padding: 80px 0;
}

.zd-about-wrapper {
  max-width: var(--zd-container-width);
  margin: auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

/* CONTENT */
.zd-about-lead {
  margin-top: 22px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  color: #222;
  max-width: 560px;
}

.zd-about-text {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.75;
  color: #444;
  max-width: 560px;
}

/* HIGHLIGHTS */
.zd-about-highlights {
  margin-top: 34px;
  display: grid;
  gap: 18px;
}

.zd-about-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.zd-about-point i {
  font-size: 20px;
  color: var(--zd-red);
  margin-top: 3px;
}

.zd-about-point strong {
  font-size: 15px;
  display: block;
  color: var(--zd-black);
  font-weight: 600;
}

.zd-about-point span {
  font-size: 14px;
  color: #666;
}

/* CTA */
.zd-about-section .zd-cta-outline {
  margin-top: 42px;
}

/* IMAGE */
.zd-about-image-wrap {
  position: relative;
  overflow: hidden;
}

.zd-about-image-wrap img {
  width: 100%;
  display: block;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .zd-about-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .zd-about-section {
    background: #fff;
    padding: 90px 0;
  }
}

@media (max-width: 576px) {
  .zd-about-section {
    padding: 70px 0;
  }

  .zd-about-lead {
    font-size: 16px;
  }
}

/* ============================================================
   ZUDIAC — TWO IMAGE SHOWCASE
============================================================ */

.zd-dual-image-section {
  padding: 40px 0;
  background: #ffffff;
}

.zd-dual-image-grid {
  max-width: var(--zd-container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* CARD */
.zd-dual-card {
  position: relative;
  overflow: hidden;
}

.zd-dual-card img {
  width: 100%;
  height: 520px;
  object-fit: contain;
  display: block;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .zd-dual-image-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .zd-dual-card img {
    height: 380px;
  }
}

@media (max-width: 576px) {
  .zd-dual-image-section {
    padding: 70px 0;
  }

  .zd-dual-card img {
    height: 300px;
  }
}




/* =========================================================
   PRODUCT LISTING — PREMIUM
========================================================= */

.product-section {
  padding: 80px 0;
  background: #f9fafb;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

/* GRID */
.product-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
}

/* CARD */
.product-card {
  background: #fff;
  padding: 15px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;        
  height: 100%;                   
  transition: transform .3s ease, box-shadow .3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(0,0,0,.12);
}

/* =========================================================
   HEADER
========================================================= */

.product-card-header {
  position: relative;
  padding: 14px;
}

.product-image img {
  width: 100%;
  height: 220px;
  object-fit: contain;
}

/* BADGE */
.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg,#e11d48,#be123c);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  z-index: 2;
}

/* =========================================================
   BODY (FIXED HEIGHT FEEL)
========================================================= */

.product-card-body {
  padding: 0 18px 10px;
  flex-grow: 1;              
}

.product-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}

.product-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.55;
  max-height: 3.2em;              
  overflow: hidden;
}

/* =========================================================
   FOOTER (ALWAYS ALIGNED)
========================================================= */

.product-card-footer {
  padding: 14px 18px 18px;
  border-top: 1px solid #f0f0f0;
}

.price-box {
  margin-bottom: 12px;
}

.offer-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--zd-red);
}

.mrp {
  font-size: 14px;
  text-decoration: line-through;
  color: #999;
  margin-left: 8px;
}

.btn-book {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: none;
  background: var(--zd-red);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background .25s ease;
}

.btn-book:hover {
  background: #be123c;
}

/* =========================================================
   PRODUCT BADGES — LIGHT / PREMIUM (FOR WHITE CARDS)
========================================================= */

.product-badge {
  position: absolute !important;
  top: 14px !important;
  left: 14px !important;
  padding: 6px 14px !important;
  border-radius: 999px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  z-index: 2 !important;
  letter-spacing: .3px !important;
  border: 1px solid transparent !important;
  
}

/* ---------- BEST SELLER (Soft Red) ---------- */
.badge-best_seller {
  background: rgba(225, 29, 72, 0.12) !important;
  color: #be123c !important;
  border-color: rgba(225, 29, 72, 0.25) !important;
}

/* ---------- NEW ARRIVAL (Soft Blue) ---------- */
.badge-new {
  background: rgba(37, 99, 235, 0.12) !important;
  color: #1d4ed8 !important;
  border-color: rgba(37, 99, 235, 0.25) !important;
}

/* ---------- POPULAR (Soft Green) ---------- */
.badge-popular {
  background: rgba(22, 163, 74, 0.12) !important;
  color: #15803d !important;
  border-color: rgba(22, 163, 74, 0.25) !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {
  .product-image img {
    height: 360px;
  }
}


/* =========================================================
   PRODUCT DETAILS – PREMIUM POLISH
========================================================= */

.product-details {
  padding: 70px 0;
  background: #f9fafb;
}

.surface {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,.04);
}

/* GRID */

.product-details-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: stretch;
}

/* =========================================================
   LEFT: IMAGE
========================================================= */

.product-gallery {
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.product-main-image {
  padding: 24px;
  max-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-main-image img {
  max-height: 360px;
  width: 100%;
  object-fit: contain;
}

/* Thumbnails */

.gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.gallery-thumbs img {
  width: 70px;
  height: 70px;
  padding: 6px;
  background: #fff;
  border-radius: 12px;
  border: 2px solid #eee;
  cursor: pointer;
  transition: all .25s ease;
}

.gallery-thumbs img:hover {
  border-color: #e11d48;
  transform: translateY(-2px);
}

/* =========================================================
   RIGHT: CONTENT
========================================================= */

.details h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 6px;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(225,29,72,.1);
  color: #e11d48;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

.rating {
  color: #f59e0b;
  font-size: 14px;
  margin-bottom: 12px;
}

.short-desc {
  font-size: 15px;
  color: #555;
  margin-bottom: 18px;
}

/* PRICE CARD */

.price-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fdf2f8;
  padding: 18px;
  border-radius: 16px;
  margin-bottom: 16px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: var(--zd-red);
}

.mrp {
  margin-left: 10px;
  text-decoration: line-through;
  color: #999;
}

.save {
  color: #16a34a;
  font-size: 14px;
  font-weight: 600;
}

/* EMI */

.emi {
  margin-bottom: 18px;
  padding: 12px 14px;
  border: 1px dashed #ddd;
  border-radius: 12px;
  font-size: 14px;
}

/* FEATURES */

.section-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #777;
  margin-bottom: 10px;
}

.feature-list {
  margin-bottom: 22px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 10px;
}

/* CTA */

.btn-buy {
  margin-top: 10px;
  padding: 16px;
  width: 100%;
  background: var(--zd-red);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}

.btn-buy:hover {
  transform: translateY(-2px);
}

/* TRUST */

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
  margin-bottom: 16px;
  font-size: 16px;
  color: #444;
}

/* DESCRIPTION */

.product-description {
  margin-top: 50px;
  padding: 28px;
}

.section-label-dec {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.long-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* MOBILE */

@media (max-width: 768px) {
  .product-details-grid {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    position: relative;
    top: 0;
  }
}

.mobile-price {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.mobile-price .price {
  font-size: 18px;
  font-weight: 700;
  color: var(--zd-red);
}

.mobile-price .mrp {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
}

.btn-buy-sm {
  padding: 10px 18px !important;
  font-size: 14px !important;
  border-radius: 10px !important;
  width: auto !important;
}

.product-info-block {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.info-card {
  padding: 28px;
}

.info-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-title i {
  color: var(--primary, #d62828);
}

.info-text {
  line-height: 1.8;
  color: #444;
}

.spec-table {
  display: grid;
  gap: 14px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px dashed #ddd;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  font-weight: 600;
  color: #222;
}

.spec-value {
  color: #555;
  text-align: right;
}

/* MOBILE */
@media (max-width: 768px) {
  .product-info-block {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .spec-row {
    flex-direction: column;
    gap: 6px;
  }

  .spec-value {
    text-align: left;
  }
}


/* =========================================================
   FAQ SECTION
========================================================= */

.faq-section {
  padding: 80px 0;
  background: #f9fafb;
}

/* GRID */
.faq-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

/* ================= LEFT ================= */

.faq-header {
  margin-bottom: 30px;
}

.faq-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.faq-header p {
  font-size: 15px;
  color: #555;
  max-width: 520px;
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  padding: 18px 22px;
  margin-bottom: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 15px;
}

.faq-item summary i {
  color: #e11d48;
  font-size: 18px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 12px;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

/* ================= RIGHT ================= */

.faq-right img {
  width: 100%;
  max-height: 460px;
  object-fit: contain;
  margin-bottom: 24px;
}

.faq-support-box {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.faq-support-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.faq-support-box p {
  font-size: 14px;
  color: #555;
  margin-bottom: 16px;
}

.faq-help-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-right {
    order: -1;
    text-align: center;
  }

  .faq-right img {
    max-height: 260px;
  }
}

/* =========================================================
   MOBILE BUY BAR
========================================================= */

.mobile-buy {
  display: none;
}

@media (max-width: 768px) {

  .mobile-buy {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    z-index: 9999;
  }
}

/* ============================================================
   WHY CHOOSE ZUDIAC — PREMIUM SECTION
============================================================ */

/* =========================================================
   WHY CHOOSE ZUDIAC — IMAGE BACKGROUND (FINAL)
========================================================= */

.zd-why-section {
  position: relative;
  padding: 100px 0;

  /* 8K BRAND BACKGROUND IMAGE */
  background-image: url("../img/webs/why-us-bg.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  /* fallback color */
  background-color: #ffffff;

  overflow: hidden;
}

/* CONTENT LAYER */
.zd-why-section > .container {
  position: relative;
  z-index: 2;
}

/* Subtext */
.zd-subtext {
  max-width: 680px;
  margin: 18px auto 0;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* GRID */
.zd-why-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.zd-why-card {
  background: #fff;
  border-radius: 22px;
  padding: 36px 30px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0,0,0,.06);
  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.zd-why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(225,29,72,.18);
}

/* ICON */
.zd-why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(225,29,72,.1);
  color: var(--zd-red);
  font-size: 30px;
}

/* TITLE */
.zd-why-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* TEXT */
.zd-why-card p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.6;
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 992px) {
  .zd-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .zd-why-section {
    padding: 70px 0;
  }

  .zd-why-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .zd-why-card {
    padding: 28px 22px;
  }

  .zd-why-card h4 {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .zd-why-section {
    padding: 70px 0;
    background-position: center top;
  }
}

/* =========================================================
   TESTIMONIAL — ZUDIAC (BRAND RED FINAL)
========================================================= */

.ev-testimonial-premium {
  position: relative;
  padding: 40px 0 40px;

  background:
    linear-gradient(
      100deg,
      var(--zd-red) 0%,
      var(--zd-red) 42%,
      #fff5f7 42%,
      #fff1f4 100%
    );

  color: #fff;
  overflow: visible;
}

/* GRID */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 100px;
  align-items: center;
}

/* LEFT CONTAINER */
.testimonial-left {
  position: relative;
}

/* HEADER */
.testimonial-header.left-align {
  text-align: left;
  margin-bottom: 48px;
  max-width: 640px;
}

.testimonial-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  background: rgba(255,255,255,.18);
  color: #ffe3ea;
  font-size: 12px;
  letter-spacing: .14em;
  margin-bottom: 16px;
}

.testimonial-header h2 {
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.08;
}

.testimonial-header h2 span {
  color: #ffd1dc;
}

.testimonial-header p {
  margin-top: 16px;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,.9);
}

/* TESTIMONIAL CARD */
.testimonial-card.horizontal {
  position: relative;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;

  width: calc(100% + 140px);
  margin-right: -140px;

  padding: 30px 46px;
  background: linear-gradient(135deg, #ffffff, #fff7f9);
  border-radius: 30px;
  color: #1a1a1a;

box-shadow:
  0 12px 32px rgba(0,0,0,.08),
  inset 0 1px 0 rgba(255,255,255,.5);

}

/* ACCENT STRIP */
.testimonial-card.horizontal::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  bottom: 28px;
  width: 5px;
  border-radius: 10px;
  background: linear-gradient(180deg, #e11d48, #be123c);
}

/* IMAGE */
.testimonial-media {
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 18px;
}

.testimonial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.quote-mark {
  font-size: 64px;
  color: rgba(225,29,72,.22);
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 17px;
  line-height: 1.85;
  color: #2a2a2a;
  margin-bottom: 24px;
  max-width: 520px;
}

.testimonial-author strong {
  font-size: 19px;
  font-weight: 900;
}

.testimonial-author span {
  font-size: 14px;
  color: #666;
}

/* RIGHT IMAGE */
.testimonial-right {
  position: relative;
  display: flex;
  align-items: flex-end;  
  justify-content: flex-end;
  height: 100%;
}


.testimonial-hero {
  max-width: 560px;

  /* REMOVE floating gap */
  margin-bottom: -40px;       
  margin-right: -40px;

  /* FORCE bottom alignment */
  align-self: flex-end;
  display: block;
}


/* =========================================================
   TESTIMONIAL — CLEAN MOBILE LAYOUT (FINAL)
========================================================= */

@media (max-width: 992px) {

  /* SECTION */
  .ev-testimonial-premium {
    padding: 56px 0;
    background: var(--zd-red);
  }

  /* GRID RESET */
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* HEADER */
  .testimonial-header.left-align {
    text-align: center;
    margin: 0 auto 32px;
  }

  .testimonial-header h2 {
    font-size: 32px;
    line-height: 1.15;
  }

  .testimonial-header p {
    max-width: 100%;
    margin: 12px auto 0;
  }

  /* CARD RESET */
  .testimonial-card.horizontal {
    width: 100%;
    margin: 0;
    padding: 24px;
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .testimonial-card.horizontal::before {
    display: none;
  }

  /* MEDIA */
  .testimonial-media {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }

  .testimonial-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* TEXT */
  .quote-mark {
    font-size: 40px;
  }

  .testimonial-text {
    font-size: 16px;
    line-height: 1.75;
    max-width: 100%;
  }

  /* RIGHT IMAGE — STACKED BELOW */
  .testimonial-right {
    display: none; /* HIDE hero image on mobile (IMPORTANT) */
  }
}

/* SMALL PHONES */
@media (max-width: 576px) {

  .testimonial-header h2 {
    font-size: 28px;
  }

  .testimonial-text {
    font-size: 15px;
  }

  .testimonial-card.horizontal {
    padding: 20px 18px;
  }
}


/* ============================================================
   ZUDIAC PRE-FOOTER — FINAL MATCHED DESIGN
============================================================ */

.zd-prefooter-section {
  padding: 100px 0 110px;
  background: #ffffff;
}

/* GRID — aligned with zd-why-grid */
.zd-prefooter-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* CARD — same depth language as zd-why-card */
.zd-prefooter-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 32px;
  text-align: center;

  box-shadow: 0 10px 26px rgba(0,0,0,0.06);

  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.zd-prefooter-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.12);
}

/* ICON — same visual weight as why icons */
.zd-prefooter-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: rgba(228,28,35,.08);
  color: var(--zd-red);

  font-size: 22px;
}

/* TITLE */
.zd-prefooter-card h4 {
  font-family: var(--zd-font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXT */
.zd-prefooter-card p {
  font-size: 14.5px;
  line-height: 1.65;
  opacity: .85;
}

/* CTA ROW */
.zd-prefooter-cta {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =============================
   RESPONSIVE — SAME RULES AS WHY
============================= */

@media (max-width: 992px) {
  .zd-prefooter-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 576px) {
  .zd-prefooter-section {
    padding: 80px 0 90px;
  }
}



/* ============================================================
   FOOTER — ZUDIAC
============================================================ */

.footer {
  background: linear-gradient(
    180deg,
    #0e0e0e 0%,
    #111111 100%
  );
  padding: 80px 0 40px;
  color: rgba(255,255,255,0.85);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

/* BRAND */
.footer-brand .footer-logo {
  height: 54px;
  margin-bottom: 18px;
}

.footer-desc {
  max-width: 360px;
  font-size: 14px;
  line-height: 1.7;
  opacity: .75;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

/* TITLES */
.footer-links h4 {
  font-family: var(--zd-font-heading);
  font-size: 15px;
  letter-spacing: .4px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
}

/* LINKS */
.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  transition: .25s ease;
}

.footer-links ul li a:hover {
  color: var(--zd-red);
  transform: translateX(2px);
}

/* BOTTOM BAR */
.footer-bottom {
  margin-top: 50px;
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* =============================
   RESPONSIVE
============================= */

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2,1fr);
    gap: 36px;
  }


  /* IMPORTANT: center column content flow */
  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Now text-align works correctly */
  .footer-links h4 {
    text-align: center;
    width: 100%;
  }

  .footer-links ul {
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .footer-links ul li {
    text-align: center;
  }

  /* Brand column safety */
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-desc {
    text-align: center;
  }

  /* Disable horizontal hover shift */
  .footer-links ul li a:hover {
    transform: none;
  }
}

@media (max-width: 576px) {
  .footer {
    padding-bottom: 110px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}


/* =========================================================
   BOOTSTRAP MODAL — BRAND OVERRIDES (SAFE & FIXED)
========================================================= */

/* Backdrop */
.modal-backdrop.show {
  background-color: rgba(0,0,0,.55) !important;
}

/* Do NOT hide backdrop — this breaks offcanvas */
.modal-backdrop {
  opacity: 1 !important;
}

/* Dialog */
.modal-dialog {
  max-width: 480px;
  transition: transform .4s ease;
}

/* Content */
.modal-content {
  background: #fff;
  border-radius: var(--radius-lg, 18px);
  border: none;
  box-shadow: var(--shadow-medium, 0 30px 60px rgba(0,0,0,.25));
  animation: modalFade .35s ease;
}

/* Header */
.modal-header {
  padding: 20px 32px 10px;
  border-bottom: none;
}

.modal-title {
  font-size: 20px;
  font-weight: 700;
}

/* Close */
.btn-close {
  opacity: .7;
  transition: .2s;
}
.btn-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

/* Body */
.modal-body {
  padding: 20px 32px 10px;
}

.modal-body .form-control {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #ddd;
}

.modal-body .form-control:focus {
  border-color: var(--zd-red, #e11d48);
  box-shadow: 0 0 0 3px rgba(225,29,72,.15);
}

/* Footer */
.modal-footer {
  padding: 20px 32px 28px;
  border-top: none;
  gap: 12px;
}

.modal-footer .btn {
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
}

/* Animation */
@keyframes modalFade {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.modal.fade .modal-dialog { transform: translateY(60px); }
.modal.show .modal-dialog { transform: translateY(0); }

/* =========================================================
   MOBILE BOTTOM SHEET (BOOTSTRAP MODAL)
========================================================= */

@media (max-width: 576px) {
  .modal-dialog {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    transform: translateY(100%);
  }

  .modal.show .modal-dialog {
    transform: translateY(0);
  }

  .modal-content {
    border-radius: 18px 18px 0 0;
  }

  .modal-header,
  .modal-body,
  .modal-footer {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

/* =========================================================
   CUSTOM CALLBACK MODAL (NON-BOOTSTRAP)
========================================================= */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.callback-modal {
  position: relative;
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 30px 60px rgba(0,0,0,.25);
}

/* Close icon */
.callback-modal .modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  opacity: .7;
}
.callback-modal .modal-close:hover {
  opacity: 1;
  color: var(--zd-red, #e11d48);
}

/* Inputs */
.callback-modal input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 12px;
  border: 1px solid #ddd;
}

/* Button */
.callback-modal button {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: none;
  background: var(--zd-red, #e11d48);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

/* =========================================================
   BODY FIX — PREVENT SHIFT / LOCK
========================================================= */

body.no-scroll {
  overflow: hidden;
}

/* ============================================================
   FLOATING BUTTONS — Back To Top + WhatsApp
============================================================ */

.back-to-top {
  position: fixed;
  left: 20px;
  bottom: 60px;

  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(17, 17, 17, 0.88);
  color: #ffffff;

  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);

  box-shadow:
    0 8px 22px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.08);

  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.95);

  transition:
    opacity var(--zd-speed-medium) ease,
    transform var(--zd-speed-medium) ease,
    background var(--zd-speed-fast) ease,
    box-shadow var(--zd-speed-fast) ease;

  z-index: 9999;
}

/* Visible state */
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* Hover — ZUDIAC RED ACCENT */
.back-to-top:hover {
  background: var(--zd-red);
  box-shadow:
    0 12px 32px rgba(228, 28, 35, 0.55),
    inset 0 1px 0 rgba(255,255,255,0.25);

  transform: translateY(-6px) scale(1.04);
}

/* Icon polish */
.back-to-top i {
  font-size: 22px;
  line-height: 1;
  transition: transform var(--zd-speed-fast) ease;
}

.back-to-top:hover i {
  transform: translateY(-2px);
}

/* Mobile tuning */
@media (max-width: 768px) {
  .back-to-top {
    width: 48px;
    height: 48px;
  }

  .back-to-top i {
    font-size: 20px;
  }
}


/* WhatsApp Button */
#help-chat {
    position: fixed;
    bottom: 60px;
    right: 20px;

    display: flex;
    align-items: center;
    gap: 8px;

    background: #00b23a;
    color: #fff;
    padding: 10px 16px;
    border-radius: 50px;

    font-size: .95rem;
    font-weight: 600;
    text-decoration: none;

    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    animation: pulse 2s infinite;

    transition: .3s;
    z-index: 999;
}

@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
    70%  { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .back-to-top {bottom: 40px; }
    #help-chat { bottom: 40px; }
}

/* ============================================================
   GLOBAL PAGE HEADER — ZUDIAC (DARK / VERTICAL / CENTERED)
============================================================ */

.zd-page-header {
  padding: 72px 0 48px;
  background: linear-gradient(
    180deg,
    #0e0e0e 0%,
    #111111 100%
  );
  border-bottom: 1px solid rgba(255,255,255,.08);

  /* CENTER CONTENT */
  text-align: center;
}

/* INNER CONTAINER */
.zd-page-header-container {
  max-width: var(--zd-container-width);
  margin: 0 auto;
  padding: 0 24px;

  /* vertical stacking only */
  display: block;
}

/* ===============================
   TITLE
=============================== */

.zd-page-title {
  font-family: var(--zd-font-heading);
  font-size: clamp(34px, 4.5vw, 46px);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 14px;
}

/* ===============================
   SUBTITLE / DETAILS
=============================== */

.zd-page-subtitle {
  font-family: var(--zd-font-main);
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,.75);

  max-width: 760px;
  margin: 0 auto 22px;   /* CENTER WIDTH */
}

/* ===============================
   BREADCRUMB (BOTTOM)
=============================== */

.zd-breadcrumb {
  display: inline-block; /* prevent full-width stretch */
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
}

.zd-breadcrumb a {
  color: var(--zd-red);
}

.zd-breadcrumb span {
  margin: 0 6px;
}

.zd-breadcrumb .current {
  color: rgba(255,255,255,.45);
}

/* ===============================
   TABLET
=============================== */

@media (max-width: 768px) {

  .zd-page-header {
    padding: 56px 0 40px;
  }

  .zd-page-title {
    font-size: 30px;
  }

  .zd-page-subtitle {
    font-size: 15px;
  }
}

/* ===============================
   MOBILE
=============================== */

@media (max-width: 480px) {

  .zd-page-header {
    padding: 48px 0 36px;
  }

  .zd-page-title {
    font-size: 28px;
  }

  .zd-page-subtitle {
    font-size: 14px;
  }

  .zd-breadcrumb {
    font-size: 12px;
  }
}


/* ============================================================
   ABOUT ZUDIAC — BRAND STYLES ONLY
============================================================ */

/* Section spacing */
.zd-about-section,
.zd-about-values {
  padding: 100px 0;
}

/* Light background for values */
.zd-about-values {
  background: var(--zd-gray);
}

/* Header */
.zd-about-header {
  margin-bottom: 36px;
}

.zd-about-header.center {
  text-align: center;
}

/* Kicker */
.zd-kicker {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--zd-red);
  margin-bottom: 8px;
}

/* Titles */
.zd-about-title {
  font-family: var(--zd-font-impact);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--zd-black);
}

/* Subtitle */
.zd-about-subtitle {
  max-width: 640px;
  margin: 12px auto 0;
  font-size: 15px;
  line-height: 1.65;
  color: #555;
}

/* Content width */
.zd-about-content {
  max-width: 820px;
}

/* Lead text */
.zd-about-lead {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  color: #222;
  margin-bottom: 18px;
}

/* Paragraphs */
.zd-about-content p {
  font-size: 16px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 14px;
}

/* ============================================================
   VALUE CARDS — VISUAL POLISH ONLY
============================================================ */

.zd-value-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--zd-shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease;
}

.zd-value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

/* Icons */
.zd-value-card i {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(228,28,35,.1);
  color: var(--zd-red);
  font-size: 28px;
}

/* Card title */
.zd-value-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--zd-black);
}

/* Card text */
.zd-value-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #555;
}

/* ============================================================
   RESPONSIVE TUNING (ONLY TEXT, NOT LAYOUT)
============================================================ */

@media (max-width: 992px) {
  .zd-about-section,
  .zd-about-values {
    padding: 80px 0;
  }
}

@media (max-width: 576px) {
  .zd-about-lead {
    font-size: 16px;
  }

  .zd-about-content p {
    font-size: 15px;
  }
}
