/* =============================================================
   ZENTRA LABS â€” Premium UK Research Peptides
   Custom CSS layered on Bootstrap 5 + Font Awesome
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --zl-navy: #0A2540;
  --zl-navy-deep: #061A30;
  --zl-navy-soft: #1B3A66;
  --zl-blue: #0794db;
  --zl-blue-glow: rgba(30, 95, 204, 0.18);
  --zl-ink: #121212;
  --zl-text: #2A3447;
  --zl-muted: #6B7689;
  --zl-line: #E6EAF1;
  --zl-bg: #FFFFFF;
  --zl-bg-soft: #F6F8FC;
  --zl-bg-tint: #EFF3FA;
  --zl-gold: #C9A35A;
  --zl-radius: 14px;
  --zl-radius-lg: 22px;
  --zl-shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.06);
  --zl-shadow-md: 0 12px 32px -12px rgba(10, 37, 64, 0.18);
  --zl-shadow-lg: 0 30px 60px -20px rgba(10, 37, 64, 0.25);
  --zl-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  color: var(--zl-text);
  background: var(--zl-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Poppins", Sans-serif;
  color: var(--zl-ink);
  font-weight: 600;
  letter-spacing: -0.01em;
}

a {
  color: var(--zl-navy);
  text-decoration: none;
  transition: color 0.2s var(--zl-ease);
}

a:hover {
  color: var(--zl-blue);
}

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

/* ============== SHARED ============== */
.zl-section {
  padding: 4rem 0;
}

.zl-section-alt {
  background: var(--zl-bg-soft);
}

@media (max-width: 768px) {
  .zl-section {
    padding: 4rem 0;
  }
}

.zl-section-head {
  margin-bottom: 3rem;
}

.zl-section-head .zl-eyebrow {
  margin-bottom: 1rem;
}

.zl-section-sub {
  color: var(--zl-muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto;
}

.zl-section-head:not(.text-center) .zl-section-sub {
  margin: 0;
}

.zl-h2 {
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.zl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Poppins", Sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--zl-navy);
  margin-bottom: 1.25rem;
}

.zl-eyebrow-light {
  color: rgba(255, 255, 255, 0.85);
}

.zl-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--zl-blue);
  box-shadow: 0 0 0 4px var(--zl-blue-glow);
}

.zl-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--zl-navy);
  font-size: 0.95rem;
}

.zl-link i {
  transition: transform 0.25s var(--zl-ease);
}

.zl-link:hover i {
  transform: translateX(4px);
}

/* ============== BUTTONS ============== */
.zl-btn-primary,
.zl-btn-outline,
.zl-btn-ghost {
  font-family: "Poppins", Sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid transparent;
  transition: all 0.25s var(--zl-ease);
  letter-spacing: 0.01em;
}

.zl-btn-primary {
  background: var(--zl-navy);
  color: #fff !important;
  box-shadow: 0 8px 20px -8px rgba(10, 37, 64, 0.45);
  z-index: 2;
}

.zl-btn-primary:hover {
  background: var(--zl-navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(10, 37, 64, 0.55);
  color: #fff !important;
}

.zl-btn-primary:focus{
  color: inherit !important;
}

.zl-btn-outline:focus{
  color: inherit !important;
}

.zl-btn-outline {
  background: transparent;
  color: var(--zl-navy);
  border-color: var(--zl-navy);
  z-index: 2;
}

.zl-btn-outline:hover {
  background: var(--zl-navy);
  color: #fff !important;
}

.zl-btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.zl-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* ============== ANNOUNCEMENT BAR ============== */
.zl-announce {
  background: var(--zl-navy-deep);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 0.6rem 0;
}

.zl-announce-scroll {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .zl-announce-scroll {
    font-size: 0.72rem;
  }
}

/* ============== HEADER ============== */
.zl-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--zl-line);
  z-index: 1030;
}

.zl-header .navbar {
    padding: 0;
    background: #041323;
    padding: 14px 0;
}

.zl-header .navbar-brand img {
  height: 67px;
  width: auto;
}

.zl-nav .nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--zl-ink) !important;
  padding: 0.5rem 1rem !important;
  position: relative;
  letter-spacing: 0.02em;
}

.zl-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.25rem;
  height: 1.5px;
  background: var(--zl-navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--zl-ease);
}

.zl-nav .nav-link:hover::after,
.zl-nav .nav-link.active::after {
  transform: scaleX(1);
}

.zl-header-icons .btn {
  color: #ffffff;
  padding: 0.5rem 0.7rem;
  font-size: 1.05rem;
  position: relative;
}

.zl-header-icons .btn:hover {
  color: var(--zl-blue);
}

.zl-cart-badge {
  position: absolute;
  top: 0.15rem;
  right: 0.15rem;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--zl-blue);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.zl-offcanvas {
  background: #fff;
}

.zl-mobile-nav li {
  border-bottom: 1px solid var(--zl-line);
}

.zl-mobile-nav a {
  display: block;
  padding: 1rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--zl-ink);
}

/* ============== HERO ============== */
.zl-hero {
  position: relative;
  padding: 3rem 0 2rem;
  background:
    radial-gradient(1000px 500px at 90% 10%, var(--zl-blue-glow), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--zl-bg-soft) 100%);
  overflow: hidden;
}

/* Prevent hero visual from bleeding outside hero on smaller screens */
.zl-hero .container {
  overflow: visible;
}

.zl-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--zl-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--zl-line) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  pointer-events: none;
}

.zl-display {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 1.05;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.zl-display em {
  color: var(--zl-blue);
  font-style: italic;
  font-weight: 500;
}

.zl-lead {
  font-size: 1.1rem;
  color: var(--zl-muted);
  max-width: 520px;
  line-height: 1.65;
}

.zl-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--zl-line);
}

.zl-hero-trust>div {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--zl-ink);
}

.zl-hero-trust i {
  color: #0794db;
  font-size: 1.05rem;
}

.zl-hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 457px;
  margin: 0 auto;
  margin-right: 0;
}

.zl-hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, var(--zl-blue-glow), transparent 65%);
  filter: blur(40px);
}

.zl-hero-img {
  position: relative;
  width: 100%;
  height: 94%;
  object-fit: cover;

}

.zl-hero-card {
  position: absolute;
  background: #fff;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--zl-shadow-md);
  border: 1px solid var(--zl-line);
}

.zl-hero-card i {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--zl-bg-tint);
  color: #0794db;
  border-radius: 10px;
  font-size: 1rem;
}

.zl-hero-card strong {
  display: block;
  font-size: 0.88rem;
  color: var(--zl-ink);
  font-weight: 600;
  font-family: "Poppins", Sans-serif;
}

.zl-hero-card small {
  color: var(--zl-muted);
  font-size: 0.72rem;
}

.zl-card-tl {
  top: 8%;
  left: 2%;
}

.zl-card-br {
  bottom: 10%;
  right: 2%;
}

@media (max-width: 991px) {
  .zl-hero {
    padding: 3rem 0 4rem;
  }

  .zl-card-tl {
    left: 3%;
    top: 6%;
  }

  .zl-card-br {
    right: 3%;
    bottom: 8%;
  }
}

/* ============== TRUST STRIP ============== */
.zl-trust {
  background: #fff;
  padding: 2.5rem 0;
  border-top: 1px solid var(--zl-line);
  border-bottom: 1px solid var(--zl-line);
}

.zl-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--zl-ink);
}

.zl-trust-item i {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--zl-bg-tint);
  color: #0794db;
  border-radius: 12px;
  font-size: 1.15rem;
  transition: all 0.3s var(--zl-ease);
}

.zl-trust-item:hover i {
  background: var(--zl-navy);
  color: #fff;
  transform: translateY(-3px);
}

/* ============== CATEGORY CARDS ============== */
.zl-category-card {
  display: block;
  background: #fff;
  border: 1px solid var(--zl-line);
  border-radius: var(--zl-radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--zl-ease);
  height: 100%;
}

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

.zl-category-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--zl-bg-soft);
}

.zl-category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--zl-ease);
}

.zl-category-card:hover .zl-category-img img {
  transform: scale(1.06);
}

.zl-category-body {
  padding: 1.5rem;
}

.zl-category-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
  color: var(--zl-ink);
}

.zl-category-body p {
  color: var(--zl-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.zl-category-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--zl-navy);
}

.zl-category-cta i {
  transition: transform 0.25s var(--zl-ease);
}

.zl-category-card:hover .zl-category-cta i {
  transform: translateX(5px);
}

/* ============== PRODUCT CARDS ============== */
.zl-product-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--zl-line);
  border-radius: var(--zl-radius-lg);
  overflow: hidden;
  transition: all 0.35s var(--zl-ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.zl-product-img {
  aspect-ratio: 1;
  background: var(--zl-bg-soft);
  overflow: hidden;
}

.zl-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s var(--zl-ease);
  /* padding: 1rem; */
}

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

.zl-product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.zl-product-cat {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--zl-muted);
  margin-bottom: 0.4rem;
}

.zl-product-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--zl-ink);
    margin-bottom: 8px;
    line-height: 1.3;
}

.zl-rating {
  font-size: 0.8rem;
  color: var(--zl-gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.zl-rating small {
  color: var(--zl-muted);
  margin-left: 0.4rem;
}

.zl-product-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.zl-price {
  font-family: "Poppins", Sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--zl-navy);
}

.zl-price-old {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--zl-muted);
  text-decoration: line-through;
  margin-left: 0.35rem;
}

.zl-add-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--zl-navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--zl-ease);
  font-size: 0.85rem;
}

.zl-add-btn:hover {
  background: var(--zl-blue);
  transform: scale(1.08);
}

.zl-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.zl-badge-new {
  background: var(--zl-navy);
  color: #fff;
}

.zl-badge-best {
  background: #0794db;
  color: #fff;
}

.zl-badge-sale {
  background: #C0392B;
  color: #fff;
}

/* ============== WHY CHOOSE ============== */
.zl-why-card {
  background: #fff;
  border: 1px solid var(--zl-line);
  border-radius: var(--zl-radius);
  padding: 1.75rem;
  height: 100%;
  transition: all 0.3s var(--zl-ease);
}

.zl-why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--zl-shadow-md);
  border-color: transparent;
}

.zl-why-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--zl-bg-tint);
  color: #0794db;
  border-radius: 12px;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.zl-why-card h4 {
  font-family: "Poppins", Sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--zl-ink);
}

.zl-why-card p {
  font-size: 0.92rem;
  color: var(--zl-muted);
  margin: 0;
}

/* ============== COMPLIANCE ============== */
.zl-compliance {
  background: var(--zl-navy-deep);
  padding: 2.5rem 0;
}

.zl-compliance-inner {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
}

.zl-compliance i {
  font-size: 1.5rem;
  color: var(--zl-gold);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.zl-compliance h3 {
  font-family: "Poppins", Sans-serif;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.zl-compliance p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

.zl-compliance strong {
  color: #fff;
}

/* ============== NEWSLETTER ============== */
/* .zl-newsletter {
  background: var(--zl-bg-soft);
} */

.zl-newsletter-card {
  position: relative;
  background: linear-gradient(135deg, var(--zl-navy) 0%, var(--zl-navy-deep) 100%);
  border-radius: var(--zl-radius-lg);
  padding: 3.5rem;
  overflow: hidden;
}

.zl-newsletter-glow {
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30, 95, 204, 0.4), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

.zl-newsletter-form {
  display: flex;
  background: #fff;
  border-radius: 999px;
  padding: 6px;
  box-shadow: var(--zl-shadow-md);
}

.zl-newsletter-form input {
  flex-grow: 1;
  border: 0;
  background: transparent;
  padding: 0.85rem 1.25rem;
  font-size: 0.95rem;
  color: var(--zl-ink);
  outline: none;
  min-width: 0;
}

.zl-newsletter-form button {
  background: var(--zl-navy);
  color: #fff;
  border: 0;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
  transition: background 0.25s var(--zl-ease);
}

.zl-newsletter-form button:hover {
  background: var(--zl-blue);
}

@media (max-width: 768px) {
  .zl-newsletter-card {
    padding: 2rem 1.5rem;
  }
}

/* ============== ABOUT ============== */
.zl-about-img {
  position: relative;
  border-radius: var(--zl-radius-lg);
  overflow: hidden;
  box-shadow: var(--zl-shadow-md);
}

.zl-about-img img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 5/4;
  object-fit: cover;
}

.zl-about-stat {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: #fff;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  box-shadow: var(--zl-shadow-md);
}

.zl-about-stat strong {
  display: block;
  font-family: "Poppins", Sans-serif;
  font-size: 1.85rem;
  color: var(--zl-navy);
  line-height: 1;
}

.zl-about-stat span {
  font-size: 0.78rem;
  color: var(--zl-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.zl-about-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.zl-about-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-weight: 500;
  color: var(--zl-ink);
  font-size: 0.95rem;
}

.zl-about-list i {
  width: 22px;
  height: 22px;
  background: var(--zl-bg-tint);
  color: #0794db;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* ============== ACCORDION ============== */
.zl-accordion .accordion-item {
  border: 1px solid var(--zl-line);
  border-radius: var(--zl-radius) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: #fff;
}

.zl-accordion .accordion-button {
  background: #fff;
  font-family: "Poppins", Sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--zl-ink);
  padding: 1.25rem 1.5rem;
  box-shadow: none !important;
}

.zl-accordion .accordion-button:not(.collapsed) {
  background: var(--zl-bg-tint);
  color: var(--zl-navy);
}

.zl-accordion .accordion-button:focus {
  border: 0;
}

.zl-accordion .accordion-body {
  padding: 1rem 1.5rem 1.5rem;
  color: var(--zl-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============== BLOG ============== */
.zl-blog-card {
  background: #fff;
  border: 1px solid var(--zl-line);
  border-radius: var(--zl-radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.35s var(--zl-ease);
}

.zl-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--zl-shadow-md);
  border-color: transparent;
}

.zl-blog-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.zl-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--zl-ease);
}

.zl-blog-card:hover .zl-blog-img img {
  transform: scale(1.06);
}

.zl-blog-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--zl-navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.zl-blog-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.zl-blog-meta {
  font-size: 0.78rem;
  color: var(--zl-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.zl-blog-body h3 {
  font-size: 1.2rem;
  line-height: 1.35;
  margin-bottom: 1rem;
  color: var(--zl-ink);
  flex-grow: 1;
}

/* ============== FOOTER ============== */
.zl-footer {
  background: #041323;
  color: rgba(255, 255, 255, 0.65);
  padding: 4.5rem 0 2rem;
}

.zl-footer-logo {
  filter: brightness(0) invert(1);
}

.zl-footer-about {
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 360px;
}

.zl-footer h5 {
  font-family: "Poppins", Sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.zl-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.zl-footer ul li {
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
}

.zl-footer ul a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s var(--zl-ease);
}

.zl-footer ul a:hover {
  color: #fff;
}

.zl-socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.zl-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--zl-ease);
  font-size: 0.95rem;
}

.zl-socials a:hover {
  background: var(--zl-blue);
  transform: translateY(-2px);
}

.zl-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 3rem;
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.zl-footer-bottom strong {
  color: #fff;
}

.zl-payments {
  display: flex;
  gap: 0.85rem;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ============== WHATSAPP FAB ============== */
.zl-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.55);
  z-index: 1040;
  transition: all 0.3s var(--zl-ease);
}

.zl-whatsapp:hover {
  transform: scale(1.08);
  color: #fff !important;
}

/* ============== COOKIE BAR ============== */
.zl-cookie {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: #fff;
  border: 1px solid var(--zl-line);
  border-radius: var(--zl-radius);
  box-shadow: var(--zl-shadow-lg);
  padding: 1rem;
  z-index: 1050;
}

.zl-cookie i {
  font-size: 1.3rem;
  color: var(--zl-navy);
}

.zl-cookie p {
  font-size: 0.88rem;
  color: var(--zl-muted);
}

.zl-cookie a {
  color: var(--zl-navy);
  text-decoration: underline;
}

@media (min-width: 768px) {
  .zl-cookie {
    left: auto;
    right: 1.5rem;
    bottom: 1.5rem;
    max-width: 520px;
  }
}

/* ============== UTIL ============== */
.text-white-50 {
  color: rgba(255, 255, 255, 0.55) !important;
}

/* =============================================================
   ADDITIONS â€” Search, subnav, product overlay, new sections,
   popups, WhatsApp widget, updated cookie
   ============================================================= */

/* ---------- Announcement bar tweaks ---------- */
.zl-announce-item {
  display: inline-flex;
  align-items: center;
}

.zl-announce-center {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  justify-content: center;
}

.zl-announce-divider {
  opacity: 0.35;
}

/* ---------- Header search (300px) ---------- */
.zl-search {
  position: relative;
  width: 500px;
  max-width: 100%;
}

.zl-search-input {
  width: 100%;
  height: 42px;
  border: 1px solid var(--zl-line);
  background: var(--zl-bg-soft);
  border-radius: 999px;
  padding: 0 1rem 0 2.6rem;
  font-size: 0.9rem;
  color: var(--zl-ink);
  outline: none;

}

.zl-search-input::placeholder {
  color: var(--zl-muted);
}

.zl-search-input:focus {
  background: #fff;
  border-color: var(--zl-navy);
  box-shadow: 0 0 0 4px var(--zl-blue-glow);
}

.zl-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--zl-muted);
  font-size: 0.9rem;
  pointer-events: none;
}

.zl-search-mobile {
  width: 100%;
}

/* ---------- Subnav ---------- */
.zl-subnav {
  border-top: 1px solid var(--zl-line);
  background: #fff;
}

.zl-subnav .zl-nav {
  gap: 0.25rem;
  padding: 0.5rem 0;
}

.zl-subnav .zl-nav li a {
  display: inline-block;
  padding: 0.55rem 1rem;
  font-size: 16px;
  font-weight: 500;
  color: var(--zl-ink);
  border-radius: 999px;
  transition: all 0.2s var(--zl-ease);
  position: relative;
}

.zl-subnav .zl-nav li a::after {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.25rem;
  height: 1.5px;
  background: var(--zl-navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--zl-ease);
}

.zl-subnav .zl-nav li a:hover {
  background: var(--zl-bg-tint);
  color: var(--zl-navy);
}

.zl-subnav .zl-nav li a:hover::after {
  transform: scaleX(1);
}

.zl-subnav .zl-nav li a.active {
  color: var(--zl-navy);
  font-weight: 600;
}

.zl-subnav .zl-nav li a.active::after {
  transform: scaleX(1);
}

.zl-nav-pill {
  background: #0794db !important;
  color: #fff !important;
}

.zl-nav-pill span {
  background: #ffffff;
  color: #000000;
  padding: 1px 6px;
  border-radius: 999px;
  font-size: 0.68rem;
  margin-left: 0.4rem;
  font-weight: 700;
}

/* ---------- Product hover overlay ---------- */
.zl-product-img {
  position: relative;
}

.zl-product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 37, 64, 0) 50%, rgba(10, 37, 64, 0.55) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s var(--zl-ease);
  padding: 1rem;
}

.zl-product-card:hover .zl-product-overlay {
  opacity: 1;
}

.zl-overlay-btn {
  border: 0;
  background: transparent;
  background-color:#0794db ;
  border: 1px solid #0794db;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 8px;
  box-shadow: var(--zl-shadow-md);
  transform: translateY(10px);
  transition: all 0.3s var(--zl-ease);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  
}

.zl-product-card:hover .zl-overlay-btn {
  transform: translateY(0);
}

.zl-overlay-btn:hover {
  background: var(--zl-navy);
  color: #fff;
  border-color: var(--zl-navy);
}

.zl-overlay-quick {
  width: 48px;
  height: 48px;
  padding: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .zl-overlay-cart {
  flex-grow: 1;
  max-width: 200px;
} */

.zl-wishlist {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.95);
  color: var(--zl-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--zl-shadow-sm);
  transition: all 0.2s var(--zl-ease);
  font-size: 0.85rem;
}

.zl-wishlist:hover {
  background: var(--zl-navy);
  color: #fff;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .zl-product-overlay {
    opacity: 1;
    background: linear-gradient(180deg, rgba(10, 37, 64, 0) 55%, rgba(10, 37, 64, 0.5) 100%);
    align-items: flex-end;
    padding-bottom: 0.75rem;
  }

  .zl-overlay-btn {
    transform: translateY(0);
    padding: 0.5rem 0.85rem;
    font-size: 0.75rem;
  }

  .zl-overlay-cart {
    max-width: 160px;
  }

  .zl-overlay-quick {
    width: 36px;
    height: 36px;
  }
}

/* ---------- Quality / COA section ---------- */
.zl-quality {
  background: #fff;
}

.zl-quality em {
  color: var(--zl-blue);
  font-style: italic;
  font-weight: 500;
}

.zl-quality-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--zl-line);
  flex-wrap: wrap;
}

.zl-quality-stats>div {
  display: flex;
  flex-direction: column;
}

.zl-quality-stats strong {
  font-family: "Poppins", Sans-serif;
  font-size: 2rem;
  color: var(--zl-navy);
  line-height: 1;
}

.zl-quality-stats span {
  font-size: 0.78rem;
  color: var(--zl-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.35rem;
}

.zl-quality-visual {
  position: relative;
  border-radius: var(--zl-radius-lg);
  overflow: hidden;
  box-shadow: var(--zl-shadow-md);
}

.zl-quality-visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.zl-quality-tag {
  position: absolute;
  background: #fff;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: var(--zl-shadow-md);
  border: 1px solid var(--zl-line);
}

.zl-quality-tag i {
  width: 34px;
  height: 34px;
  background: var(--zl-bg-tint);
  color: var(--zl-navy);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.zl-quality-tag strong {
  display: block;
  font-family: "Poppins", Sans-serif;
  font-size: 0.85rem;
  color: var(--zl-ink);
  font-weight: 600;
}

.zl-quality-tag small {
  color: var(--zl-muted);
  font-size: 0.72rem;
}

.zl-quality-tag-1 {
  top: 1.25rem;
  left: 1.25rem;
}

.zl-quality-tag-2 {
  bottom: 1.25rem;
  right: 1.25rem;
}

/* ---------- Testimonials ---------- */
.zl-testimonial-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--zl-line);
  border-radius: var(--zl-radius-lg);
  padding: 2rem;
  height: 100%;
  transition: all 0.3s var(--zl-ease);
}

.zl-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--zl-shadow-md);
  border-color: transparent;
}

.zl-testimonial-featured {
  background: linear-gradient(180deg, var(--zl-navy) 0%, var(--zl-navy-deep) 100%);
  border-color: transparent;
  color: #fff;
}

.zl-testimonial-featured .zl-testimonial-text,
.zl-testimonial-featured .zl-testimonial-person strong {
  color: #fff;
}

.zl-testimonial-featured .zl-testimonial-person span {
  color: rgba(255, 255, 255, 0.6);
}

.zl-testimonial-featured .zl-quote-mark {
  color: rgba(255, 255, 255, 0.15);
}

.zl-quote-mark {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 2.25rem;
  color: var(--zl-bg-tint);
  line-height: 1;
}

.zl-testimonial-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--zl-text);
  margin-bottom: 1.5rem;
}

.zl-testimonial-person {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--zl-line);
}

.zl-testimonial-featured .zl-testimonial-person {
  border-color: rgba(255, 255, 255, 0.12);
}

.zl-testimonial-person img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.zl-testimonial-person strong {
  display: block;
  font-family: "Poppins", Sans-serif;
  font-size: 0.92rem;
  color: var(--zl-ink);
  font-weight: 600;
}

.zl-testimonial-person span {
  font-size: 0.78rem;
  color: var(--zl-muted);
}

.zl-press {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--zl-line);
  text-align: center;
}

.zl-press-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--zl-muted);
  margin-bottom: 1.25rem;
}

.zl-press-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}

.zl-press-logos span {
  font-family: "Poppins", Sans-serif;
  font-size: 1.15rem;
  color: var(--zl-muted);
  opacity: 0.6;
  font-style: italic;
  letter-spacing: 0.02em;
  transition: opacity 0.2s var(--zl-ease);
}

.zl-press-logos span:hover {
  opacity: 1;
}

/* ---------- MODAL FRAMEWORK ---------- */
.zl-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--zl-ease);
}

.zl-modal.zl-modal-open {
  opacity: 1;
  pointer-events: auto;
}

.zl-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 26, 48, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.zl-modal-dialog {
  position: relative;
  background: #fff;
  border-radius: var(--zl-radius-lg);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.4);
  max-width: 540px;
  width: 100%;
  overflow: hidden;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s var(--zl-ease);
}

.zl-modal.zl-modal-open .zl-modal-dialog {
  transform: translateY(0) scale(1);
}

.zl-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: rgba(0, 0, 0, 0.05);
  color: var(--zl-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all 0.2s var(--zl-ease);
}

.zl-modal-close:hover {
  background: var(--zl-navy);
  color: #fff;
}

.zl-btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* ---------- Age verification dialog ---------- */
.zl-age-dialog {
  text-align: center;
  padding: 3rem 2.5rem 2.5rem;
  max-width: 480px;
  background:
    radial-gradient(600px 300px at 50% -20%, var(--zl-blue-glow), transparent 60%),
    #fff;
}

.zl-age-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #0794db;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.25rem;
  box-shadow: 0 12px 30px -8px rgba(10, 37, 64, 0.4);
}

.zl-age-badge {
  display: inline-block;
  background: #0794db;
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.zl-age-title {
  font-size: 1.75rem;
  margin-bottom: 0.85rem;
  color: var(--zl-ink);
}

.zl-age-text {
  color: var(--zl-muted);
  font-size: 0.96rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.zl-age-text strong {
  color: var(--zl-ink);
}

.zl-age-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.zl-age-fine {
  display: block;
  color: var(--zl-muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

/* ---------- Email capture dialog ---------- */
.zl-email-dialog {
  max-width: 760px;
}

.zl-email-visual {
  background: linear-gradient(135deg, var(--zl-navy) 0%, var(--zl-navy-deep) 100%);
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.zl-email-glow {
  position: absolute;
  top: -30%;
  right: -30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--zl-blue) 0%, transparent 65%);
  filter: blur(40px);
  opacity: 0.5;
}

.zl-email-discount {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  z-index: 2;
}

.zl-email-percent {
  font-family: "Poppins", Sans-serif;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.zl-email-percent small {
  font-size: 2.5rem;
  opacity: 0.7;
}

.zl-email-off {
  font-family: "Poppins", Sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  margin-top: 0.5rem;
}

.zl-email-tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  z-index: 2;
}

.zl-email-content {
  padding: 2.25rem 2rem;
}

.zl-email-title {
  font-size: 1.65rem;
  margin: 0.5rem 0 0.75rem;
  color: var(--zl-ink);
  line-height: 1.2;
}

.zl-email-text {
  color: var(--zl-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.zl-email-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}

.zl-email-form input {
  height: 48px;
  border: 1.5px solid var(--zl-line);
  background: #fff;
  border-radius: 999px;
  padding: 0 1.25rem;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.2s var(--zl-ease);
}

.zl-email-form input:focus {
  border-color: var(--zl-navy);
  box-shadow: 0 0 0 4px var(--zl-blue-glow);
}

.zl-email-form .zl-btn-primary {
  width: 100%;
}

.zl-email-decline {
  background: none;
  border: 0;
  color: var(--zl-muted);
  font-size: 0.85rem;
  text-decoration: underline;
  display: block;
  margin: 0.4rem auto 0.75rem;
  padding: 0;
}

.zl-email-decline:hover {
  color: var(--zl-ink);
}

.zl-email-fine {
  display: block;
  color: var(--zl-muted);
  font-size: 0.75rem;
  text-align: center;
}

.zl-email-success {
  text-align: center;
  padding: 1rem;
}

.zl-email-success i {
  font-size: 3.5rem;
  color: #16A34A;
  margin-bottom: 1rem;
}

.zl-email-success h3 {
  font-size: 1.65rem;
  color: var(--zl-ink);
  margin-bottom: 0.5rem;
}

.zl-email-success p {
  color: var(--zl-muted);
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .zl-email-visual {
    min-height: 180px;
  }

  .zl-email-percent {
    font-size: 4.5rem;
  }
}

/* ---------- Updated Cookie banner ---------- */
.zl-cookie {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: #fff;
  border: 1px solid var(--zl-line);
  border-radius: var(--zl-radius);
  box-shadow: var(--zl-shadow-lg);
  padding: 1.1rem 1.25rem;
  z-index: 1900;
  transform: translateY(30px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s var(--zl-ease);
}

/* Override hidden so CSS transition can animate in */
.zl-cookie[hidden] {
display: none;
}

.zl-cookie.zl-modal-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.zl-cookie i {
  font-size: 1.4rem;
  color: var(--zl-navy);
}

.zl-cookie p {
  font-size: 0.85rem;
  color: var(--zl-muted);
}

.zl-cookie strong {
  color: var(--zl-ink);
  font-size: 0.92rem;
}

.zl-cookie a {
  color: var(--zl-navy);
  text-decoration: underline;
}

.zl-btn-ghost-dark {
  background: transparent;
  color: var(--zl-ink);
  border: 1.5px solid var(--zl-line);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  transition: all 0.2s var(--zl-ease);
}

.zl-btn-ghost-dark:hover {
  border-color: var(--zl-navy);
  color: var(--zl-navy);
}

@media (min-width: 768px) {
  .zl-cookie {
    left: auto;
    right: 1.5rem;
    bottom: 1.5rem;
    max-width: 560px;
  }
}

/* ---------- WhatsApp widget ---------- */
.zl-whatsapp-wrap {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1850;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.85rem;
}

.zl-whatsapp-fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 0;
  background: #25D366;
  color: #fff;
  font-size: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.55);
  cursor: pointer;
  position: relative;
  transition: transform 0.25s var(--zl-ease);
}

.zl-whatsapp-fab:hover {
  transform: scale(1.07);
}

.zl-whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: zlPulse 2s ease-out infinite;
}

@keyframes zlPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.zl-whatsapp-card {
  width: 320px;
  max-width: calc(100vw - 3rem);
  background: #fff;
  border-radius: var(--zl-radius);
  box-shadow: var(--zl-shadow-lg);
  overflow: hidden;
  border: 1px solid var(--zl-line);
}

.zl-whatsapp-head {
  background: var(--zl-navy);
  color: #fff;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.zl-whatsapp-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.zl-whatsapp-head strong {
  display: block;
  font-size: 0.92rem;
  font-family: "Poppins", Sans-serif;
}

.zl-whatsapp-head span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.zl-online-dot {
  width: 7px;
  height: 7px;
  background: #25D366;
  border-radius: 50%;
  display: inline-block;
}

.zl-whatsapp-close {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.7);
  margin-left: auto;
  font-size: 1rem;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
}

.zl-whatsapp-close:hover {
  color: #fff;
}

.zl-whatsapp-body {
  padding: 1.25rem;
  background: var(--zl-bg-soft);
}

.zl-whatsapp-bubble {
  background: #fff;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border-top-left-radius: 4px;
  font-size: 0.9rem;
  color: var(--zl-text);
  line-height: 1.5;
  box-shadow: var(--zl-shadow-sm);
}

.zl-whatsapp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff !important;
  padding: 0.95rem;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: background 0.2s var(--zl-ease);
}

.zl-whatsapp-cta:hover {
  background: #1FB857;
  color: #fff !important;
}

/* Hide old .zl-whatsapp link if any leftover */
a.zl-whatsapp {
  display: none;
}

.zl-section.zl-section-alt .col-6.col-lg-3 {
  margin-top: 50px;
}


h2.zl-h2 em {
  color: var(--zl-blue);
  font-style: italic;
  font-weight: 500;
}


/* â”€â”€ SLIDER OUTER â”€â”€ */
    .pep-slider-outer {
      position: relative;
      z-index: 1;
    }

    /* â”€â”€ CUSTOM ARROW BUTTONS â”€â”€ */
    .pep-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-calc(50% + 28px));
      /* offset for dots */
      z-index: 20;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: var(--zl-bg);
      border: 1.5px solid var(--zl-navy);
      color: var(--zl-navy);
      font-size: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: var(--zl-shadow-sm);
      transition:
        background 0.25s var(--zl-ease),
        border-color 0.25s var(--zl-ease),
        color 0.25s var(--zl-ease),
        box-shadow 0.25s var(--zl-ease),
        transform 0.2s var(--zl-ease);
      margin-top: -22px;
      /* half card height adjustment */
    }

    .pep-arrow:hover {
      background: var(--zl-blue);
      border-color: var(--zl-blue);
      color: #fff;
      box-shadow: 0 6px 20px rgba(7, 148, 219, 0.38);
      transform: translateY(-10px) scale(1.08);
    }

    .pep-arrow:active {
      transform: translateY(-22px) scale(0.95);
    }

    .pep-arrow--prev {
      left: -22px;
    }

    .pep-arrow--next {
      right: -22px;
    }

    .pep-arrow.is-disabled {
      opacity: 0.35;
      pointer-events: none;
    }

    /* â”€â”€ SLICK TRACK â”€â”€ */
    .pep-slider-wrap {
      overflow: hidden;
      padding: 10px 4px 20px;
      /* bottom for dots */
    }

    .pep-slider .slick-slide {
      padding: 10px 10px 0 10px;
    }

    .pep-slider .slick-list {
      margin: 0 -11px;
    }

    /* â”€â”€ DOTS â”€â”€ */
    .pep-slider .slick-dots {
      bottom: -50px;
      display: flex !important;
      align-items: center;
      justify-content: center;
      gap: 8px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .pep-slider .slick-dots li {
      margin: 0;
      width: auto;
      height: auto;
    }

    .pep-slider .slick-dots li button {
      width: 8px;
      height: 8px;
      border-radius: 100px;
      background: var(--zl-line);
      border: none;
      padding: 0;
      font-size: 0;
      cursor: pointer;
      transition: width 0.3s var(--zl-ease), background 0.3s var(--zl-ease);
      display: block;
    }

    .pep-slider .slick-dots li button::before {
      display: none;
    }

   .pep-slider .slick-dots li.slick-active button{
    width: 20px;
    background: var(--zl-blue);
}

    /* hide default slick arrows */
    .pep-slider .slick-prev,
    .pep-slider .slick-next {
      display: none !important;
    }

    /* â”€â”€ CARD â”€â”€ */
    .pep-card {
      background: var(--zl-bg);
      border: 1px solid var(--zl-line);
      border-radius: var(--zl-radius-lg);
      /* padding: 15px 30px; */
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
      box-shadow: var(--zl-shadow-sm);
      transition:
        transform 0.35s var(--zl-ease),
        box-shadow 0.35s var(--zl-ease),
        border-color 0.35s var(--zl-ease);
      height: 100%;
    }

    /* .pep-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--zl-blue), #1E5FCC);
      opacity: 0;
      transition: opacity 0.35s var(--zl-ease);
      border-radius: var(--zl-radius-lg) var(--zl-radius-lg) 0 0;
    } */

    .pep-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--zl-shadow-lg);
      border-color: rgba(7, 148, 219, 0.25);
    }

    .pep-card:hover::before {
      opacity: 1;
    }

    .pep-card__badge {
      position: absolute;
      top: 16px;
      right: 16px;
      background: var(--zl-bg-tint);
      color: var(--zl-blue);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 100px;
      border: 1px solid rgba(7, 148, 219, 0.2);
      z-index: 2;
    }

    .pep-card__img-wrap {
      /* display: flex;
      align-items: center;
      justify-content: center; */
      /* height: 250px; */
      margin-bottom: 20px;
      /* position: relative; */
    }

section#categories .pep-slider-wrap .pep-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--zl-ease);
}

    .pep-card__img-glow {
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 60%, rgba(7, 148, 219, 0.10) 0%, transparent 70%);
      pointer-events: none;
    }

    .pep-card__vial {
      width: 82px;
      height: 140px;
      position: relative;
      z-index: 1;
      filter: drop-shadow(0 10px 22px rgba(10, 37, 64, 0.18));
      transition: transform 0.4s var(--zl-ease), filter 0.4s var(--zl-ease);
    }

    .pep-card:hover .pep-card__vial {
      transform: translateY(-5px) scale(1.05);
      filter: drop-shadow(0 18px 30px rgba(10, 37, 64, 0.26));
    }

    .pep-card__body {
      flex: 1;
      padding: 20px;
      background: var(--bs-gray-100);
    }

  .pep-card__name {
    font-size: 18px;
    font-weight: 600;
    color: var(--zl-navy);
    line-height: 1.3;
    margin-bottom: 8px;
}

    /* .pep-card__name small {
      font-size: 16px;
      color: var(--zl-muted);
      font-weight: 500;
      font-family: 'DM Sans', sans-serif;
    } */

    .pep-card__meta {
      font-size: 14px;
      color: var(--zl-muted);
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 4px;
      flex-wrap: wrap;
    }

    .pep-card__meta .sep {
      color: var(--zl-navy);
      margin: 0 2px;
      font-size: 16px;
    }

    .pep-btn {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 12px 24px;
      border: none;
      border-radius:30px;
      background: linear-gradient(135deg, var(--zl-navy) 0%, var(--zl-navy-soft) 100%);
      color: #fff;
      font-size: 12px;
      cursor: pointer;
      transition: box-shadow 0.3s var(--zl-ease), transform 0.2s var(--zl-ease);
      position: relative;
      overflow: hidden;
      margin-bottom: 15px;
    }

    .pep-btn::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--zl-blue) 0%, #1E5FCC 100%);
      opacity: 0;
      transition: opacity 0.3s var(--zl-ease);
    }

    .pep-btn:hover::after {
      opacity: 1;
    }

    .pep-btn:hover {
      box-shadow: 0 8px 24px rgba(7, 148, 219, 0.38);
    }

    .pep-btn:active {
      transform: scale(0.97);
    }

    .pep-btn__label,
    .pep-btn__price,
    .pep-btn__icon {
      position: relative;
      z-index: 1;
    }

    .pep-btn__icon {
      width: 26px;
      height: 26px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.14);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      transition: background 0.3s;
    }

    .pep-btn:hover .pep-btn__icon {
      background: rgba(255, 255, 255, 0.24);
    }

    .pep-trust {
      display: flex;
      flex-wrap: wrap;
      gap: 5px 12px;
      margin-bottom: 16px;
    }

    .pep-trust__item {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 14px;
      color: var(--zl-muted);
  
    }

    .pep-trust__item i {
      color: var(--zl-blue);
      font-size: 11px;
    }

    .pep-card__actions {
      display: flex;
      align-items: center;
      gap: 8px;
      padding-top: 14px;
      border-top: 1px solid var(--zl-line);
      justify-content: space-between;
    }

    .pep-action-btn {
      width: 40px;
      height: 40px;
      border: 1px solid var(--zl-line);
      border-radius: 8px;
      background: var(--zl-bg-soft);
      color: var(--zl-muted);
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.25s var(--zl-ease);
    }


    .pep-action-btn:hover {
      border-color: rgba(7, 148, 219, 0.3);
      background: var(--zl-bg-tint);
      color: var(--zl-blue);
      transform: scale(1.08);
    }

    .pep-action-btn.liked {
      color: #e0245e;
      border-color: rgba(224, 36, 94, 0.3);
      background: rgba(224, 36, 94, 0.05);
    }

  .product-rating{
    display: flex;
    align-items: center;
    justify-content: space-between;
    }

    .zl-product-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    }

    .zl-about{
      padding: 1rem 0 5rem;
    }

  .zl-newsletter {
    padding-bottom: 0.5rem;
}


/* Inner Pages */

.inner-banner {
  position: relative;
  overflow: hidden;
  background: var(--zl-grad-dark);
  color: #fff;
  padding: 4rem 0 ;
}

.inner-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
}

.inner-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--zl-navy-deep), rgba(10, 37, 64, 0.799) 50%, rgba(27, 58, 102, 0.662))
}


.inner-banner__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none
}

.inner-banner__orb--blue {
  top: -8rem;
  right: -8rem;
  width: 24rem;
  height: 24rem;
  background: rgba(7, 148, 219, .25)
}

.inner-banner__orb--gold {
  bottom: -10rem;
  left: -8rem;
  width: 24rem;
  height: 24rem;
  background: rgba(201, 163, 90, .15)
}

.inner-banner h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.02;
  font-weight: 600
}
.inner-banner h1 em{
  color: var(--zl-blue);
    font-style: italic;
    font-weight: 500;
}
section.inner-banner span.zl-eyebrow {
    color: #fff;
}
.banner-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  align-items: center;
  font-size: 14px;
  color: #fff !important;
  list-style: none;
  padding: 0;
  margin: 0
}
.banner-crumbs a{
  color: #fff;
}
.banner-crumbs a:hover {
  color: var(--zl-blue)
}

.banner-crumbs .active {
  color: var(--zl-blue);
  font-weight: 500
}


.product-hero {
  padding: 4rem 0
}

.gallery-main {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 24px;
  overflow: hidden;
  background: var(--zl-grad-dark);
  box-shadow: var(--zl-shadow-lg);
  border: 1px solid var(--zl-line);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--zl-ease);
  position: relative;
  z-index: 2
}

.gallery-main:hover img {
  transform: scale(1.05)
}

.gallery-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--zl-grad-glow);
  opacity: .7;
  z-index: 1
}

.gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: .75rem
}

@media(max-width:767px) {
  .gallery-thumbs {
    flex-direction: row
  }
}

.gallery-thumb {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--zl-line);
  background: #fff;
  cursor: pointer;
  padding: 0;
  transition: all .3s var(--zl-ease)
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.gallery-thumb.active {
  border-color: var(--zl-gold);
  box-shadow: var(--zl-shadow-gold)
}

.gallery-thumb:hover {
  border-color: rgba(201, 163, 90, .5)
}

.product-badges {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  z-index: 3
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border-radius: 999px;
  padding: .3rem .8rem;
  font-size: .72rem;
  font-weight: 600
}

.badge-sale {
  background: var(--zl-blue);;
  color: #fff;
  box-shadow: var(--zl-blue);
}

.badge-stock {
  background: rgba(255, 255, 255, .95);
  color: var(--zl-text);
  border: 1px solid var(--zl-line)
}

.badge-stock .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--zl-blue);
  animation: pulse 2s infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .5
  }
}

.purity-tag {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: .4rem 1rem;
  font-size: .72rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .4rem;
  z-index: 3;
  box-shadow: var(--zl-shadow-md)
}

.purity-tag i,
.purity-tag svg {
  color: var(--zl-gold)
}

/* Product Info */
.product-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.05;
  margin-top: 1rem
}

.rating-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .85rem;
  color: var(--zl-muted);
  margin-top: .75rem
}

.stars {
  color: var(--zl-gold);
  letter-spacing: 1px
}

.price-row {
  display: flex;
  align-items: flex-end;
  gap: .75rem;
  margin-top: .5rem
}

.price-current {
  font-size: 1.8rem;
  color: var(--zl-navy);
  font-weight: 500;
}

.price-old {
  color: var(--zl-muted);
  text-decoration: line-through;
  padding-bottom: .5rem
}

.price-save {
  border: 1px solid var(--zl-blue);
  background: #0794db17;
  color: var(--zl-blue);
  font-size: .7rem;
  font-weight: 600;
  border-radius: 999px;
  padding: .2rem .65rem;
  margin-bottom: .5rem
}

.size-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-top: .75rem
}

.size-card {
  text-align: left;
  padding: 20px;
  border-radius: 12px;
  border: 2px solid var(--zl-line);
  background: #fff;
  cursor: pointer;
  transition: all .3s var(--zl-ease);
}

.size-card:hover {
  border-color:var(--zl-blue);
}

.size-card.active {
  border-color: var(--zl-blue);
  background: #0794db17;;
  box-shadow: var(--zl-shadow-sm)
}

.size-card .size-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--zl-navy)
}

.size-card .size-note {
  font-size: 14px;
  color: var(--zl-muted);
  margin-top: .1rem
}

.size-card .size-price {
  font-size: 18px;
  color: var(--zl-blue);
  font-weight: 600;
  margin-top: .5rem
}

.qty-box {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--zl-blue);
  border-radius: 999px;
  background: transparent;
  color: var(--zl-blue);
  height: 48px;
  position: relative;
}

.qty-box button {
  background: transparent;
  border: none;
  padding: 0 16px;
  height: 100%;
  color: var(--zl-blue);
  position: relative;
  z-index: 2;
  font-size: 14px;
}

.qty-box:before{
      content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--zl-blue) 0%, #0794db 100%);
    border: 1px solid var(--zl-blue);
    color: #fff !important;
    opacity: 0;
    transition: opacity 0.3s var(--zl-ease);
    border-radius: 999px;
}

.qty-box:hover:before{
  opacity: 1;
}

.qty-box:hover button i{
  color: #fff;
}

.qty-box:hover .qty-val{
  color: #fff !important;
    position: relative;
  z-index: 2;
}

.qty-box .qty-val {
  width: 40px;
  text-align: center;
  font-weight: 500;

}

.trust-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .6rem;
  margin-top: 1.75rem
}

@media(min-width:576px) {
  .trust-mini {
    grid-template-columns: repeat(4, 1fr)
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid var(--zl-line);
  background: #fff;
  border-radius: 10px;
  padding: .6rem .75rem;
  font-size: .75rem;
  font-weight: 500
}

.trust-item i,
.trust-item svg {
  color: var(--zl-gold);
  flex-shrink: 0
}


section.product-hero .text-muted-zl{
  font-size: 14px;
  margin-top: 8px;
}

span.tracking-wide{
  font-size: 18px;
  font-weight: 600;
  color: rgba(42, 52, 71, .7);
  text-transform: uppercase;
}

section.product-hero .information-para{
margin-top: 30px;
}

section.product-hero .size-selector{
  margin-top: 35px;
}

section.product-hero .size-wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

section.product-hero .size-wrap .tracking-wide{
  text-transform: uppercase;
  font-size: 14px;
  font-weight:600;
  color: rgba(42,52,71,.7)
}

section.product-hero .size-wrap .text-gold{
  font-size: 14px;
}
section.product-hero .cta-wrapper{
  display: flex;
  align-items: center;
  margin-top: 30px ;
  gap: 15px;
}
section.product-hero button.btn.btn-brand.btn-lg {
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: box-shadow 0.3s var(--zl-ease), transform 0.2s var(--zl-ease);
    position: relative;
    overflow: hidden;
    background: var(--zl-blue);
    color: #fff;
    border: 1px solid var(--zl-blue);
}

section.product-hero button.btn.btn-brand.btn-lg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--zl-navy) 0%, #1b3a66 100%);
    border: 1px solid var(--zl-navy);
    color: #fff !important;
    opacity: 0;
    transition: opacity 0.3s var(--zl-ease);
}
section.product-hero button.btn.btn-brand.btn-lg:hover::after{
  opacity: 1;
}
section.product-hero button.btn.btn-brand.btn-lg:hover span {
    color: #fff !important;
    position: relative;
    z-index: 2;
}


section.product-hero button.pep-btn{
  margin-bottom: 0;
  gap: 20px;
  width: auto;
}

section.product-hero button.btn.btn-outline-zl.btn-icon{
    width: 40px;
    height: 40px;
    border: 1px solid var(--zl-line);
    border-radius: 30px;
    background: var(--zl-bg-soft);
    color: var(--zl-muted);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s var(--zl-ease);
}

section.product-hero button.btn.btn-outline-zl.btn-icon:hover{
   border: 1px solid var(--zl-blue);
   color: var(--zl-blue);
}


/* === Specs Section === */
.specs-section {
  position: relative;
  background: var(--zl-bg-soft);
  border-top: 1px solid var(--zl-line);
  border-bottom: 1px solid var(--zl-line);
  padding: 4rem 0;
  overflow: hidden
}

.specs-section::before {
  content: "";
  position: absolute;
  top: -8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60rem;
  height: 16rem;
  border-radius: 50%;
  background: rgba(7, 148, 219, .05);
  filter: blur(80px)
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem
}

.section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-top: .75rem
}

.tab-pills {
  display: inline-flex;
  gap: 30px;
  background: #fff;
  border: 1px solid var(--zl-line);
  border-radius: 999px;
  padding: 10px;
  margin: 0 auto 2rem;
  list-style: none
}

.tab-pills button {
  background: transparent;
  border: none;
  border-radius: 999px;
  padding: 8px 24px;
  font-size: 14px;
  color: var(--zl-text);
  text-transform: capitalize;
  font-weight: 500;
  transition: all .3s var(--zl-ease);
}

.tab-pills button.active {
  background: var(--zl-navy);
  color: #fff
}

.tab-pane-zl {
  display: none;
  animation: fadeUp .4s var(--zl-ease)
}

.tab-pane-zl.active {
  display: block
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.spec-card {
  background: #fff;
  border: 1px solid var(--zl-line);
  border-radius: 18px;
  box-shadow: var(--zl-shadow-sm);
  padding: 2rem
}

.spec-list {
  list-style: none;
  padding: 0;
  margin: 20px;
  display: grid;
  gap: .75rem
}

@media(min-width:576px) {
  .spec-list {
    grid-template-columns: repeat(3, 1fr)
  }
}

.spec-list li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .875rem
}

.spec-list li i,
.spec-list li svg {
  color: var(--zl-gold);
  margin-top: 2px;
  flex-shrink: 0
}

.spec-table {
  width: 100%;
  font-size: .875rem
}

.spec-table tr {
  border-bottom: 1px solid var(--zl-line)
}

.spec-table tr:last-child {
  border-bottom: 0
}

.spec-table td {
  padding: 1rem 1.5rem
}

.spec-table td:first-child {
  background: rgba(239, 243, 250, .5);
  font-weight: 500;
  width: 33%;
  color: var(--zl-navy)
}

.spec-table td:last-child {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: .82rem;
  color: var(--zl-text)
}

.feature-card {
  background: #fff;
  border: 1px solid var(--zl-line);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: var(--zl-shadow-sm);
  height: 100%
}

.feature-card .icon-wrap {
  color: var(--zl-gold);
  font-size: 1.5rem;
  margin-bottom: .75rem
}

.feature-card h4 {
  font-size: 1.1rem;
  margin-bottom: .4rem
}

.feature-card p {
  font-size: .85rem;
  color: var(--zl-muted);
  margin: 0
}


/* === COA Banner === */
.coa-section {
  padding: 4rem 0
}

.coa-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--zl-navy-deep);
  color: #fff;
  box-shadow: var(--zl-shadow-lg);
  border: 1px solid rgba(201, 163, 90, .1)
}

.coa-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--zl-grad-glow);
  opacity: .6
}

.coa-inner {
  position: relative;
  display: grid;
  gap: 2rem;
  padding: 3rem;
  align-items: center;
  z-index: 2;
}


@media(min-width:768px) {
  .coa-inner {
    grid-template-columns: 1fr 1fr
  }
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 1.5rem
}

.stat-cell {
  background: rgba(255, 255, 255, .05);
  border-radius: 12px;
  padding: 1rem;
  text-align: center
}

.stat-cell .v {
  font-size: 20px;
  font-weight: 500;
  color: var(--zl-blue)
}

.stat-cell .l {
    font-size: 14px;
    letter-spacing: .1em;
    color: #fff;
    margin-top: .25rem;
}

.banner-crumbs i{
  font-size: 12px;
}

.coa-card button.btn.zl-btn-primary {
    color: var(--zl-blue) !important;
    background: transparent;
    border-color: var(--zl-blue);
}

.coa-card button.btn.zl-btn-primary:hover{
  background-color: var(--zl-blue);
  color: #fff !important
}

button.btn.btn.zl-btn-outline {
    background: #fff;
    border-color: #fff;
}

button.btn.btn.zl-btn-outline:hover {
    background: #0a2540;;
    border-color: #fff;
    color: #fff !important;
}

.bg-white{
  background-color: #fff;
}

.other-products .pep-slider-outer{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.product-page{
  padding-bottom: 4rem;
  padding-top: 0;
}


/* Cart Page */

.zl-cart-section {
      padding: 52px 0 80px;
      background: var(--zl-bg-soft);
      min-height: 60vh;
    }

    /* ---- Cart Items Panel ---- */
    .zl-cart-panel {
      background: #fff;
      border-radius: var(--zl-radius-lg);
      border: 1px solid var(--zl-line);
      box-shadow: var(--zl-shadow-sm);
      overflow: hidden;
    }

    .zl-cart-panel-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 28px;
      border-bottom: 1px solid var(--zl-line);
    }
    .zl-cart-panel-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--zl-navy);
      margin: 0;
      display: flex;
      align-items: center;
      gap: 10px;
    }
   .zl-cart-count-pill {
    background: var(--zl-blue);
    color: #fff;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 500;
}
    .zl-clear-btn {
      font-size: 16px;
      color: var(--zl-muted);
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      transition: color .2s;
      display: flex;
      align-items: center;
      gap: 8px;
    }
 .zl-clear-btn:hover {
    color: var(--zl-blue);
}

    /* ---- Cart Item Row ---- */
    .zl-cart-item {
      display: grid;
      grid-template-columns: 90px 1fr auto;
      gap: 20px;
      align-items: center;
      padding:  30px;
      border-bottom: 1px solid var(--zl-line);
      transition: background .2s var(--zl-ease);
      animation: slideInRow .35s var(--zl-ease) both;
    }
    .zl-cart-item:last-child { border-bottom: none; }
    .zl-cart-item:hover { background: var(--zl-bg-soft); }
    .zl-cart-item.removing {
      animation: fadeOutRow .3s var(--zl-ease) forwards;
    }

    @keyframes slideInRow {
      from { opacity: 0; transform: translateY(8px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeOutRow {
      to { opacity: 0; transform: translateX(20px); max-height: 0; padding: 0 28px; overflow: hidden; }
    }

    .zl-cart-img-wrap {
      width: 90px;
      height: 90px;
      border-radius: 12px;
      overflow: hidden;
      background: var(--zl-bg-tint);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      position: relative;
    }
    .zl-cart-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .zl-cart-img-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--zl-muted);
      font-size: 28px;
      background: linear-gradient(135deg, var(--zl-bg-tint), #e2eaf8);
    }

    .zl-cart-item-info { min-width: 0; }
   .zl-cart-item-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--zl-blue);
    background: var(--zl-blue-glow);
    border-radius: 50px;
    padding: 5px 10px;
    margin-bottom: 8px;
}
.zl-cart-item-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--zl-navy);
    margin: 4px 0 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
    .zl-cart-item-meta {
      font-size: 14px;
      color: var(--zl-muted);
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }
    .zl-cart-item-meta i { font-size: 10px; }
    .zl-cart-item-trust {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 8px;
      flex-wrap: wrap;
    }
  .zl-cart-item-trust span{
    font-size: 11px;
    color: #0794db;
    display: flex;
    align-items: center;
    gap: 4px;
}
    .zl-cart-item-trust i { font-size: 10px; }

    .zl-cart-item-controls {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 15px;
      flex-shrink: 0;
    }
    .zl-cart-item-price {
      font-size: 18px;
      font-weight: 700;
      color: var(--zl-navy);
      white-space: nowrap;
    }
    .zl-cart-item-old {
      font-size: 12px;
      color: var(--zl-muted);
      text-decoration: line-through;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
    }

    /* Qty Stepper */
    .zl-qty {
      display: flex;
      align-items: center;
      border: 1.5px solid var(--zl-line);
      border-radius: 50px;
      overflow: hidden;
      background: var(--zl-bg-soft);
    }
    .zl-qty-btn {
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--zl-navy);
      font-size: 14px;
      transition: background .15s, color .15s;
    }
    .zl-qty-btn:hover { background: var(--zl-bg-tint); color: var(--zl-blue); }
    .zl-qty-val {
      min-width: 36px;
      text-align: center;
      font-size: 14px;
      font-weight: 600;
      color: var(--zl-navy);
      border: none;
      background: none;
      outline: none;
    }

    .zl-remove-btn {
      background: none;
      border: none;
      cursor: pointer;
      color: var(--zl-muted);
      font-size: 13px;
      padding: 0;
      display: flex;
      align-items: center;
      gap: 5px;
      transition: color .2s;
    }
    .zl-remove-btn:hover { color: #c0392b; }

    /* ---- Promo Code ---- */
    .zl-promo-panel {
      background: #fff;
      border-radius: var(--zl-radius-lg);
      border: 1px solid var(--zl-line);
      box-shadow: var(--zl-shadow-sm);
      padding: 22px 28px;
      margin-top: 18px;
    }
    .zl-promo-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--zl-navy);
      margin: 0 0 15px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .zl-promo-form {
      display: flex;
      gap: 10px;
    }
    .zl-promo-input {
      flex: 1;
      background: var(--zl-bg-soft);
      border: 1.5px solid var(--zl-line);
      border-radius: 50px;
      padding: 12px 24px;
      font-size: 14px;
      color: var(--zl-text);
      outline: none;
      transition: border-color .2s, box-shadow .2s;
      font-family: 'Inter', sans-serif;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }
    .zl-promo-input::placeholder { text-transform: none; letter-spacing: 0; }
    .zl-promo-input:focus {
      border-color: var(--zl-blue);
      box-shadow: 0 0 0 3px var(--zl-blue-glow);
    }
    .zl-promo-input.is-valid { border-color: #2e7d32; }
    .zl-promo-input.is-invalid { border-color: #c0392b; }
    .zl-promo-msg {
      font-size: 12px;
      margin-top: 8px;
      display: none;
    }
    .zl-promo-msg.show { display: block; }
    .zl-promo-msg.success { color: #2e7d32; }
    .zl-promo-msg.error { color: #c0392b; }

    /* ---- Order Summary ---- */
    .zl-summary-panel {
      background: #fff;
      border-radius: var(--zl-radius-lg);
      border: 1px solid var(--zl-line);
      box-shadow: var(--zl-shadow-md);
      overflow: hidden;
      position: sticky;
      top: 90px;
    }
    .zl-summary-header {
      background: linear-gradient(135deg, var(--zl-navy-deep), var(--zl-navy));
      padding: 22px 26px;
      position: relative;
      overflow: hidden;
    }
    .zl-summary-header::after {
      content: '';
      position: absolute;
      top: -30px; right: -30px;
      width: 120px; height: 120px;
      border-radius: 50%;
      background: rgba(7,148,219,0.15);
    }
    .zl-summary-header h3 {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      margin: 0;
      position: relative;
    }
    .zl-summary-header p {
      font-size: 14px;
      color: rgba(255,255,255,0.55);
      margin: 2px 0 0;
      position: relative;
    }

    .zl-summary-body { padding: 30px; }

    .zl-summary-line {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
      color: var(--zl-text);
      padding: 8px 0;
    }
    .zl-summary-line .label { color: var(--zl-muted); }
    .zl-summary-line .value { font-weight: 600; }
    .zl-summary-line.discount .value { color: #2e7d32; }
    .zl-summary-line.shipping .value { color: var(--zl-blue); font-weight: 700; }

    .zl-summary-divider {
      border: none;
      border-top: 1px solid var(--zl-line);
      margin: 12px 0;
    }

    .zl-summary-total {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 4px;
    }
    .zl-summary-total .label {
      font-size: 18px;
      font-weight: 600;
      color: var(--zl-navy);
    }
    .zl-summary-total .amount {
      font-size: 22px;
      font-weight: 600;
      color: var(--zl-navy);
    }
    .zl-summary-vat {
      font-size: 12px;
      color: var(--zl-muted);
      text-align: right;
    }

    /* ---- Checkout Button ---- */
    .zl-btn-checkout {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      padding: 16px 24px;
      background: linear-gradient(135deg, var(--zl-blue) 0%, #0565b5 100%);
      color: #fff;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 0.02em;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      margin-top: 20px;
      transition: transform .2s var(--zl-ease), box-shadow .2s var(--zl-ease), opacity .2s;
      text-decoration: none;
      box-shadow: 0 6px 20px rgba(7,148,219,0.35);
    }
    .zl-btn-checkout:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(7,148,219,0.45);
      color: #fff;
    }
    .zl-btn-checkout:active { transform: translateY(0); }
    .zl-btn-checkout i { font-size: 14px; }


    /* ---- Payment Logos ---- */
    .zl-pay-logos {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 18px;
      padding: 20px;
      border-top: 1px solid var(--zl-line);
    }
    .zl-pay-logos i {
      font-size: 28px;
      color: var(--zl-muted);
      transition: color .2s;
    }
    .zl-pay-logos i:hover { color: var(--zl-navy); }

    /* ---- Trust Badges in Summary ---- */
    .zl-summary-trust {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 20px;
      padding: 18px;
      background: var(--zl-bg-soft);
      border-radius: var(--zl-radius);
      border: 1px solid var(--zl-line);
    }
    .zl-summary-trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: var(--zl-text);
    }
    .zl-summary-trust-item i {
      color: var(--zl-blue);
      font-size: 14px;
      width: 20px;
      text-align: center;
      flex-shrink: 0;
    }

    /* ---- Free Shipping Progress ---- */
    .zl-shipping-progress {
      background: var(--zl-bg-tint);
      border-radius: var(--zl-radius);
      padding: 16px 18px;
      margin-bottom: 20px;
      border: 1px solid var(--zl-line);
    }
    .zl-shipping-progress-text {
      font-size: 14px;
      color: var(--zl-text);
      margin-bottom: 8px;
    }
    .zl-shipping-progress-text strong { color: var(--zl-blue); }
    .zl-shipping-bar {
      width: 100%;
      height: 5px;
      background: var(--zl-line);
      border-radius: 50px;
      overflow: hidden;
    }
    .zl-shipping-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--zl-blue), #36b9f5);
      border-radius: 50px;
      transition: width .6s var(--zl-ease);
    }

    /* ---- Empty Cart ---- */
    .zl-empty-cart {
      padding: 80px 28px;
      text-align: center;
    }
    .zl-empty-icon {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      background: var(--zl-bg-tint);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      font-size: 36px;
      color: var(--zl-muted);
    }
    .zl-empty-cart h4 {
      font-size: 20px;
      font-weight: 700;
      color: var(--zl-navy);
      margin-bottom: 8px;
    }
    .zl-empty-cart p {
      font-size: 14px;
      color: var(--zl-muted);
      max-width: 320px;
      margin: 0 auto 24px;
    }

    .zl-promo-panel .zl-btn-primary:focus{
      color: inherit !important;

    }

    .zl-promo-panel .zl-btn-primary{
      padding: 12px 24px;
      position: relative;
      z-index: 2;
    }

    .zl-summary-panel a.zl-btn-continue {
    margin-top: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}

    .zl-btn-continue:hover {
      border-color: var(--zl-blue);
      background: linear-gradient(135deg, var(--zl-blue) 0%, #0565b5 100%);
      
    }
    .bottom-continue-btn{
      margin-top: 30px;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
    }

    .bottom-continue-btn a.zl-link {
    gap: 8px;
}

    .bottom-continue-btn .sign-wrap{
     color: var(--zl-line);
    }
.bottom-continue-btn .cart-time-info{
  font-size:16px;
  color:var(--zl-muted);
}
    
/* Category page layout */
.category-layout {
  padding: 3.5rem 0 5rem
}

.category-layout .row {
  --bs-gutter-x: 2.5rem
}

.category-layout  .filter-card{
    background: #fff;
    border: 1px solid var(--zl-line);
    border-radius: var(--zl-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--zl-shadow-sm);
              
}

.category-layout .help-card h4{
color:#fff;
 border-color:rgba(255,255,255,.12);
}

.category-layout .help-card p{
  font-size: 14px;
  color: #fff;
  line-height:1.6;
  margin:0 0 1rem"

}
/* Toolbar */
.cat-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid var(--zl-line);
  border-radius: var(--zl-radius-lg);
  box-shadow: var(--zl-shadow-sm);
  margin-bottom: 2rem;
}

.cat-toolbar .results-count {
  font-size: .875rem;
  color: var(--zl-muted)
}

.cat-toolbar .results-count strong {
  color: var(--zl-navy);
  font-weight: 700
}

.cat-toolbar .toolbar-divider {
  width: 1px;
  height: 24px;
  background: var(--zl-line)
}

.view-toggle {
  display: inline-flex;
  border: 1px solid var(--zl-line);
  border-radius: 999px;
  padding: 3px;
  background: var(--zl-bg-soft)
}

.view-toggle button {
  border: 0;
  background: transparent;
  width: 36px;
  height: 32px;
  border-radius: 999px;
  color: var(--zl-muted);
  transition: all .25s var(--zl-ease);
}

.view-toggle button.active {
  background: #fff;
  color: var(--zl-navy);
  box-shadow: var(--zl-shadow-sm)
}

.sort-select {
  border: 1px solid var(--zl-line);
  border-radius: 999px;
  padding: .5rem 2.25rem .5rem 1rem;
  background: #fff;
  font-size: .875rem;
  color: var(--zl-text);
  font-weight: 500;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236B7689'><path d='M8 11L3 6h10z'/></svg>");
  background-repeat: no-repeat;
  background-position: right .85rem center;
  background-size: 12px;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: all .25s var(--zl-ease);
}

.sort-select:focus {
  outline: none;
  border-color: var(--zl-blue);
  box-shadow: 0 0 0 3px var(--zl-blue-glow)
}

/* Filter Sidebar */
.filter-sidebar {
  position: sticky;
  top: 1.5rem
}

.filter-card {
  background: #fff;
  border: 1px solid var(--zl-line);
  border-radius: var(--zl-radius-lg);
  padding: 1.5rem;
  box-shadow: var(--zl-shadow-sm);
}

.filter-card+.filter-card {
  margin-top: 1.25rem
}

.filter-card h4 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--zl-navy);
  margin: 0 0 15px;
  letter-spacing: .05em;
  padding-bottom: .85rem;
  border-bottom: 1px solid var(--zl-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-card h4 .clear-link {
  font-size: 14px;
  letter-spacing: .05em;
  color: var(--zl-blue);
  text-transform: none;
  font-weight: 500;
  cursor: pointer;
}

.filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .65rem
}

.filter-check {
  display: flex;
  align-items: center;
  gap: .65rem;
  cursor: pointer;
  font-size: .9rem;
  color: var(--zl-text);
  transition: color .2s var(--zl-ease);
}

.filter-check:hover {
  color: var(--zl-navy)
}

.filter-check input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--zl-line);
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all .2s var(--zl-ease);
  flex-shrink: 0;
}

.filter-check input[type=checkbox]:checked {
  background: var(--zl-navy);
  border-color: var(--zl-navy)
}

.filter-check input[type=checkbox]:checked::after {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
}

.filter-count {
  margin-left: auto;
  font-size: .78rem;
  color: var(--zl-muted)
}

/* Price slider */
.price-range {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem
}

.price-input {
  flex: 1;
  border: 1px solid var(--zl-line);
  border-radius: 10px;
  padding: .5rem .75rem;
  font-size: .85rem;
  color: var(--zl-navy);
  background: var(--zl-bg-soft);
  width: 100%;
}

.price-input:focus {
  outline: none;
  border-color: var(--zl-blue);
  background: #fff
}

.range-track {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--zl-blue) 0% 60%, var(--zl-line) 60% 100%);
  border-radius: 999px;
  outline: none;
  margin: .5rem 0 0;
}

.range-track::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--zl-blue);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(7, 148, 219, .4);
}

/* Tag chips for active filters */
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .85rem;
  border-radius: 999px;
  background: var(--zl-bg-tint);
  color: var(--zl-navy);
  font-size: .78rem;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all .2s var(--zl-ease);
}

.filter-chip:hover {
  background: #fff;
  border-color: var(--zl-line)
}

.filter-chip i {
  font-size: .85rem;
  cursor: pointer;
  opacity: .6
}

.filter-chip i:hover {
  opacity: 1;
  color: var(--zl-blue)
}

/* === Product Grid === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem
}

/* Product Card === Premium */
.p-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--zl-line);
  border-radius: var(--zl-radius-lg);
  overflow: hidden;
  transition: all .45s var(--zl-ease);
  display: flex;
  flex-direction: column;
  box-shadow: var(--zl-shadow-sm);
}

.p-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--zl-shadow-lg);
  border-color: rgba(201, 163, 90, .45);
}

.p-card__media {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: linear-gradient(135deg, var(--zl-bg-tint), var(--zl-bg-soft));
}

.p-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(7, 148, 219, .08), transparent 60%);
  z-index: 1;
}

.p-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--zl-ease);
  position: relative;
  z-index: 2;
}

.p-card:hover .p-card__media img {
  transform: scale(1.06)
}

/* Card badges */
.p-card__badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  align-items: flex-start;
}

.p-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .3rem .7rem;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  backdrop-filter: blur(8px);
}

.p-badge--new {
  background: rgba(7, 148, 219, .95);
  color: #fff;
  box-shadow: 0 4px 12px rgba(7, 148, 219, .35)
}

.p-badge--sale {
  background: rgba(201, 163, 90, .95);
  color: var(--zl-navy);
  box-shadow: 0 4px 12px rgba(201, 163, 90, .35)
}

.p-badge--best {
  background: rgba(10, 37, 64, .95);
  color: #fff
}

.p-badge--low {
  background: rgba(255, 255, 255, .92);
  color: var(--zl-navy);
  border: 1px solid rgba(10, 37, 64, .1)
}

/* Card actions */
.p-card__actions {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  opacity: 0;
  transform: translateX(8px);
  transition: all .35s var(--zl-ease);
}

.p-card:hover .p-card__actions {
  opacity: 1;
  transform: translateX(0)
}

.p-action-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, .95);
  color: var(--zl-navy);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(10, 37, 64, .12);
  transition: all .25s var(--zl-ease);
  backdrop-filter: blur(8px);
}

.p-action-btn:hover {
  background: var(--zl-navy);
  color: #fff;
  transform: scale(1.08)
}

.p-action-btn.is-active {
  background: var(--zl-gold);
  color: var(--zl-navy)
}



/* Card body */
.p-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1
}

.p-card__cat {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--zl-muted);
}
.rating-no{
font-size: 12px;
}
.p-card__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--zl-navy);
    margin-bottom: 0;
}

.p-card__title a:hover {
  color: var(--zl-blue)
}

.p-card__body .pep-card__meta{
  margin-bottom: 0;
}

.p-card__body button.pep-btn {
    margin-bottom: 0;
    margin-top: 10px;
}

.p-card__rating {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 16px;
  color: var(--zl-muted)
}

.p-card__rating .stars {
  color: var(--zl-gold);
  letter-spacing: 1px;
  font-size: 16px;
}

.p-card__price {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  margin-top: .25rem;
  padding-top: .85rem;
  border-top: 1px dashed var(--zl-line);
}

.p-card__price .price-now {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--zl-navy);
  font-family: 'Playfair Display', serif
}

.p-card__price .price-old {
  font-size: .88rem;
  color: var(--zl-muted);
  text-decoration: line-through
}

.p-card__price .price-save {
  margin-left: auto;
  font-size: .7rem;
  font-weight: 700;
  color: var(--zl-gold);
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .2rem .55rem;
  border-radius: 6px;
  background: rgba(201, 163, 90, .12);
}

/* Pagination */
.zl-pagination {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 3rem;
  padding: .5rem;
  background: #fff;
  border: 1px solid var(--zl-line);
  border-radius: 999px;
  box-shadow: var(--zl-shadow-sm);
}

.zl-pagination button {
  border: 0;
  background: transparent;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--zl-text);
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: all .25s var(--zl-ease);
}

.zl-pagination button:hover {
  background: var(--zl-bg-tint);
  color: var(--zl-navy)
}

.zl-pagination button.active {
  background: var(--zl-navy);
  color: #fff;
  box-shadow: var(--zl-shadow-md)
}

.zl-pagination button:disabled {
  opacity: .35;
  cursor: not-allowed
}

/* Featured strip below grid */
.value-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 4rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--zl-bg-soft), #fff);
  border: 1px solid var(--zl-line);
  border-radius: var(--zl-radius-lg);
}

.value-item {
  display: flex;
  align-items: center;
  gap: 1rem
}

.value-item .v-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(7, 148, 219, .1), rgba(201, 163, 90, .1));
  color: var(--zl-blue);
  font-size: 1.3rem;
}

.value-item h5 {
  font-size: .92rem;
  font-weight: 700;
  color: var(--zl-navy);
  margin: 0 0 .1rem;
  font-family: 'Inter', sans-serif
}

.value-item p {
  margin: 0;
  font-size: .8rem;
  color: var(--zl-muted)
}

/* List view variant */
.product-grid.is-list {
  grid-template-columns: 1fr;
  gap: 1rem
}

.product-grid.is-list .p-card {
  flex-direction: row;
  align-items: stretch
}

.product-grid.is-list .p-card__media {
  width: 240px;
  flex-shrink: 0;
  aspect-ratio: 1/1
}

.product-grid.is-list .p-card__body {
  padding: 1.5rem 1.75rem
}

.product-grid.is-list .p-card__quick {
  position: static;
  opacity: 1;
  transform: none;
  margin-top: auto;
  max-width: 280px
}

@media (max-width:991px) {
  .filter-sidebar {
    position: static
  }

  .product-grid.is-list .p-card {
    flex-direction: column
  }

  .product-grid.is-list .p-card__media {
    width: 100%
  }
}

a.btn.btn-white{
    font-family: "Poppins", Sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #fff;
    transition: all 0.25s var(--zl-ease);
    letter-spacing: 0.01em;
    color: #fff;
    width: 100%;
    gap: 20px;
}

a.btn.btn-white:hover {
    background: #fff;
    color: var(--zl-navy) !important;
   
}


/* About Page */

/* mission */


    .zl-mission-visual {
      position: relative;
      border-radius: var(--zl-radius-lg);
      overflow: visible;
    }

    .zl-mission-img-wrap {
      border-radius: var(--zl-radius-lg);
      overflow: hidden;
      /* aspect-ratio: 4/5; */
      box-shadow: var(--zl-shadow-lg);
    }

    .zl-mission-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .6s var(--zl-ease);
    }

    .zl-mission-img-wrap:hover img {
      transform: scale(1.03);
    }


      /* Floating cert card */
    .zl-cert-float {
      position: absolute;
      bottom: -28px;
      right: -28px;
      background: #fff;
      border-radius: var(--zl-radius-lg);
      box-shadow: var(--zl-shadow-lg);
      padding: 20px 24px;
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 220px;
      border: 1px solid var(--zl-line);
      animation: floatCard 4s ease-in-out infinite alternate;
    }

    @keyframes floatCard {
      from {
        transform: translateY(0);
      }

      to {
        transform: translateY(-8px);
      }
    }

    .zl-cert-float-icon {
      width: 46px;
      height: 46px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--zl-navy), var(--zl-navy-soft));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: #fff;
      flex-shrink: 0;
    }

    .zl-cert-float-text strong {
      display: block;
      font-size: 14px;
      font-weight: 700;
      color: var(--zl-navy);
    }

    .zl-cert-float-text span {
      font-size: 12px;
      color: var(--zl-muted);
    }

.zl-mission .zl-reveal-delay-1{
  padding-left: 50px;
}

    /* Mission pillars */
    .zl-mission-pillar {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 28px;
    }

    .zl-pillar-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: var(--zl-bg-tint);
      border: 1.5px solid var(--zl-line);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: var(--zl-blue);
      flex-shrink: 0;
      transition: background .2s, border-color .2s;
    }

    .zl-mission-pillar:hover .zl-pillar-icon {
      background: var(--zl-blue);
      border-color: var(--zl-blue);
      color: #fff;
    }

    .zl-pillar-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--zl-navy);
      margin-bottom: 4px;
    }

    .zl-pillar-text {
      font-size: 13.5px;
      color: var(--zl-muted);
      line-height: 1.65;
    }


      /* VALUES — DARK STRIPE */
  
    .zl-values {
         background: var(--zl-bg-soft);
    }

    .zl-values::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
      background-size: 80px 80px;
      pointer-events: none;
    }

    .zl-values-glow {
      position: absolute;
      top: -200px;
      right: -200px;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(7, 148, 219, .18), transparent 70%);
      pointer-events: none;
    }

    .zl-values .container {
      position: relative;
      z-index: 2;
    }

    .zl-value-card {
      background: rgba(255, 255, 255, .06);
      border: 1px solid var(--zl-blue);
      border-radius: var(--zl-radius-lg);
      padding: 20px 25px;
      height: 100%;
      transition: background .25s, border-color .25s, transform .25s;
      position: relative;
      overflow: hidden;
    }

    .zl-value-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, var(--zl-blue), transparent);
      opacity: 0;
      transition: opacity .25s;
    }

    .zl-value-card:hover {
      background: rgba(255, 255, 255, .1);
      border-color: rgba(7, 148, 219, .4);
      transform: translateY(-4px);
    }

    .zl-value-card:hover::before {
      opacity: 1;
    }

    .zl-value-num {
      font-family: 'Playfair Display', serif;
      font-size: 56px;
      font-weight: 700;
      color: rgba(255, 255, 255, .06);
      line-height: 1;
      position: absolute;
      top: 14px;
      right: 20px;
    }

    .zl-value-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: rgba(7, 148, 219, .18);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      color: var(--zl-blue);
      margin-bottom: 20px;
    }

    .zl-value-title {
font-size: 20px;
    font-weight: 600;
    color: var(--zl-navy);
    margin-bottom: 8px;
    }

    .zl-value-text {
      font-size: 16px;
      line-height: 1.7;
    }


    /* ============================================================
       CERTIFICATIONS / PROCESS
    ============================================================ */
    .zl-process {
      padding: 100px 0;
      background: var(--zl-bg-soft);
    }

    .zl-process-step {
      display: flex;
      gap: 24px;
      align-items: flex-start;
      padding: 28px;
      background: #fff;
      border-radius: var(--zl-radius-lg);
      border: 1.5px solid var(--zl-line);
      box-shadow: var(--zl-shadow-sm);
      height: 100%;
      transition: box-shadow .25s, border-color .25s, transform .25s;
      position: relative;
      overflow: hidden;
    }

    .zl-process-step::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--zl-blue), var(--zl-navy));
      transition: width .35s var(--zl-ease);
    }

    .zl-process-step:hover {
      box-shadow: var(--zl-shadow-md);
      border-color: rgba(7, 148, 219, .3);
      transform: translateY(-3px);
    }

    .zl-process-step:hover::after {
      width: 100%;
    }

    .zl-process-num {
      font-family: 'Playfair Display', serif;
      font-size: 40px;
      font-weight: 700;
      color: var(--zl-bg-tint);
      line-height: 1;
      flex-shrink: 0;
      width: 44px;
      transition: color .25s;
    }

    .zl-process-step:hover .zl-process-num {
      color: rgba(7, 148, 219, .15);
    }

    .zl-process-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: var(--zl-bg-tint);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: var(--zl-blue);
      margin-bottom: 14px;
      transition: background .2s, color .2s;
    }

    .zl-process-step:hover .zl-process-icon {
      background: var(--zl-blue);
      color: #fff;
    }

    .zl-process-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--zl-navy);
      margin-bottom: 7px;
    }

    .zl-process-text {
      font-size: 13px;
      color: var(--zl-muted);
      line-height: 1.7;
    }

    /* ============================================================
       CERTIFICATIONS STRIP
    ============================================================ */
    .zl-certs {
      padding: 60px 0;
      background: #fff;
      border-top: 1px solid var(--zl-line);
    }

    .zl-cert-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      padding: 22px 18px;
      border-radius: var(--zl-radius);
      border: 1.5px solid var(--zl-line);
      background: var(--zl-bg-soft);
      transition: border-color .2s, box-shadow .2s, transform .2s;
      text-align: center;
    }

    .zl-cert-item:hover {
      border-color: rgba(7, 148, 219, .4);
      box-shadow: var(--zl-shadow-sm);
      transform: translateY(-3px);
    }

    .zl-cert-icon {
      font-size: 28px;
      color: var(--zl-gold);
    }

    .zl-cert-name {
      font-size: 12.5px;
      font-weight: 700;
      color: var(--zl-navy);
    }

    .zl-cert-body {
      font-size: 11.5px;
      color: var(--zl-muted);
    }

span.zl-wishlist-badge{
	    position: absolute;
    top: 0.15rem !important;
    right: 0.15rem !important;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--zl-blue);
    color: #fff;
    font-size: 0.65rem !important;
    font-weight: 700;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
div#zlEmailModal button.zl-modal-close i {
    color: #fff;
}

.zl-pagination {
    background: #0794db;
}

.zl-newsletter{
  padding-top: 0 !important;
}

.pep-card .pep-card__img-wrap {
    height: 365px;
	margin-bottom: 0 !important;
}
.zl-search {
  position: relative;
  width: 500px;
  max-width: 100%;
}

.zl-search-input {
  width: 100%;
  height: 42px;
  border: 1px solid var(--zl-line);
  background: var(--zl-bg-soft);
  border-radius: 999px;
  padding: 0 1rem 0 2.8rem;
  font-size: 0.9rem;
  color: var(--zl-ink);
  outline: none;
}

.zl-search-btn {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  z-index: 2;
}

.zl-search-icon {
  color: var(--zl-muted);
  font-size: 0.9rem;
  pointer-events: auto;
}
.zl-pagination {
    background: transparent;
    border: navajowhite;
    border-radius: 0;
    box-shadow: none;
}

.product-info-descreption h2 {
    margin-bottom: 15px;
    margin-top: 30px;
    font-size: 30px;
}

.product-info-descreption p {
    margin-bottom: 8px;
}

body.offcanvas-backdrop-active,
html:has(.offcanvas-backdrop) {
  overflow: hidden !important;
}
.offcanvas .offcanvas-body ul#menu-header-manu-1 li:last-child {
    border-bottom: none !important;
}

.pep-btn:hover span {
    color: #fff !important;
}

ul li i {
    padding-right: 3px;
}

a.fhl {
    color: #a3a9af;
}


.research-marquee{

    background:#111;

    color:#fff;

    padding:14px 0;

    overflow:hidden;

    border-top:1px solid rgba(255,255,255,.08);

    border-bottom:1px solid rgba(255,255,255,.08);

}
 
.marquee{

    width:100%;

    overflow:hidden;

    white-space:nowrap;

}
 
.marquee-content{

    display:inline-flex;

    align-items:center;

    gap:35px;

    animation:marqueeMove 35s linear infinite;

}
 
.marquee-content span{

    display:inline-flex;

    align-items:center;

    gap:10px;

    font-size:15px;

    font-weight:500;

    white-space:nowrap;

}
 
.marquee-content span i{

    color:#0097e7;

    font-size:15px;

}
 
@keyframes marqueeMove{
 
    0%{

        transform:translateX(0);

    }
 
    100%{

        transform:translateX(-50%);

    }
 
}
 
.research-marquee:hover .marquee-content{

    animation-play-state:paused;

}
 

.zl-nav .dropdown-menu {
    display: none;
    position: absolute;
    list-style: none;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 180px;
    padding: 8px 0;
    z-index: 999;
}
.zl-nav .dropdown:hover .dropdown-menu {
    display: block;
}
.zl-nav .dropdown-menu li a {
    display: block;
    padding: 8px 16px;
    white-space: nowrap;
}

/*  */

/* ── WPC Bundle Items – Theme Style ── */
.wpc-bundled-products {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.wpc-bundled-product {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--zl-surface, #f8f8f8);
    border: 1px solid var(--zl-line, #e5e5e5);
    border-radius: 10px;
    padding: 0.75rem 1rem;
}

.wpc-bundled-product .bundled_product_title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--zl-heading, #111);
    margin: 0 0 0.2rem;
}

.wpc-bundled-product .price {
    font-size: 0.85rem;
    color: var(--zl-primary, #0057ff);
    font-weight: 600;
}

.wpc-bundled-product .price del {
    color: var(--zl-muted, #999);
    font-weight: 400;
    margin-right: 0.3rem;
}

.wpc-bundled-product img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--zl-line, #e5e5e5);
}

/* Bundle total price row */
.wpc-bundle-container .bundle_price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--zl-heading, #111);
    margin: 1rem 0 0.5rem;
}

/* WPC qty input hide — theme qty box use hoga */
.wpc-bundle-container .quantity {
    display: none !important;
}

/* WPC default Add to Cart button hide — pep-btn use hoga */
.wpc-bundle-container .single_add_to_cart_button {
    display: none !important;
}

.zl-footer ul.sub-menu {
    display: none;
}

.zl-newsletter-form input {
    border-radius: 50px;
}

form.checkout.woocommerce-checkout .zl-co-coupon {
    background: none;
}
form.checkout.woocommerce-checkout .zl-co-item {
    border-bottom: 1px solid #dfdfdf;
    padding: 20px 0;
}

form.checkout.woocommerce-checkout .zl-co-item:last-child{
	 border-bottom: none;
}
#payment {
    padding: 30px;
}

.woocommerce-checkout-payment ul li {
    font-size: 14px;
    border-radius: 50px !important;
}


.woocommerce-order-details tr.woocommerce-table__line-item.order_item {
    display: inline-flex;
    padding: 15px 0;
}

.woocommerce-terms-and-conditions-wrapper {
    font-size: 14px;
}

.woocommerce-order-details tfoot {
    margin-bottom: 35px;
}

table.shop_table {
    margin-top: 30px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 43px;
    right: 10px !important;
}
.select2-container .select2-selection--single {
    height: 50px;
    display: flex;
    align-items: center;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px;
    height: 40px !important;
    padding-left: 20px;
    padding-right: 20px;
}

.pep-card img {
    width: 100%;
	height: 100%
}
.pep-card .pep-card__img-wrap{
	height: 300px !important;
}

.zl-btn-primary:focus {
    color: #fff !important;
}

.payment_box.payment_method_fena_payment {
    align-items: center;
}



#payment .payment_box {
    padding: 0 !important;
}


input#payment_method_fena_payment {
    width: 50%;
}

input#payment_method_fena_payment {
    margin-right: 10px;
    display: inline;
}

li.wc_payment_method.payment_method_fena_payment {
    display: inline-block;
    align-items: center;
    justify-content: center;
}

li.wc_payment_method.payment_method_fena_payment {
    padding: 20px;
    margin: 0 20px;
}

li.wc_payment_method.payment_method_cod {
    margin: 0 20px;
    padding: 20px;
}

li.wc_payment_method.payment_method_cod {
    border: 1px solid #dfdfdf !important;
}

#payment .payment_box {
    color: #000;
}

input#payment_method_cod {
    margin-right: 5px;
}
#payment ul.payment_methods li label {
    padding: 0 !important;
	display: inline-flex !important;
}
.form-row.place-order {
    padding: 0 20px;
}
#payment #place_order, .woocommerce #payment #place_order{
	border-radius: 50px !important;
}
.zl-co-item-img img {
    border-radius: 8px;
}
.zl-co-qty {
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.zl-co-item-img {
    overflow: visible !important;
}

#payment fieldset {
    min-width: 0;
    padding: 0 !important;
    margin: 0 ! important;}

#payment li.wc_payment_method.payment_method_fena_payment {
    padding: 20px 20px;
    margin: 0 20px;
}
 
#payment ul.payment_methods li label {
    margin-top: 7px;
}

#payment .payment_box p {
    margin: 0;
    font-size: 12px;
}