/* ==========================================================================
   NICO Pharma (Pvt.) Ltd. — Core stylesheet
   1.  Design tokens
   2.  Base / typography
   3.  Buttons & utilities
   4.  Announcement bar + header + navigation
   5.  Footer + floating actions
   6.  Shared components (section heads, cards, products, sliders, accordion)
   7.  Page: Home
   8.  Page: Collections
   9.  Page: Blogs
   10. Page: About
   11. Page: Contact / Careers / FAQs
   ========================================================================== */

/* ---------------------------------------------------------------- 1. tokens */
:root {
  /* Brand palette --------------------------------------------------------
     Primary   #2F4774  deep pharmaceutical blue — buttons, headings, header
     Secondary #8E72C8  medical purple          — supporting accents, badges
     Accent    #18A8E5  light blue / cyan       — links, hovers, highlights
     Neutral   #FFFFFF  white                   — surfaces
     ---------------------------------------------------------------------- */
  --primary: #2f4774;
  --primary-dark: #22345a;
  --primary-soft: #eaeef7;

  --secondary: #8e72c8;
  --secondary-dark: #6f55a6;
  --secondary-soft: #f2eefb;

  --accent: #18a8e5;
  --accent-dark: #0f86ba;
  --accent-soft: #e7f6fd;

  --ink: #1b2942;
  --ink-soft: #2f4774;
  --body: #5b6579;
  --muted: #8a93a6;
  --line: #e4e8f1;
  --line-strong: #d2daea;
  --surface: #ffffff;
  --surface-soft: #f3f6fc;
  --footer-bg: #1b2942;
  --footer-text: #ccd5e6;
  --star: #f5b301;
  --danger: #e2455c;

  --font-display: 'Quicksand', 'Poppins', system-ui, sans-serif;
  --font-body: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 10px rgba(27, 41, 66, .06);
  --shadow: 0 8px 30px rgba(27, 41, 66, .09);
  --shadow-lg: 0 18px 50px rgba(27, 41, 66, .14);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 92px;
  --topbar-h: 46px;
}

/* ------------------------------------------------------------ 2. base type */
* { -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--body);
  background: var(--surface);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .display-font {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.2px;
}

h1 { font-size: 42px; }
h2 { font-size: 34px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 17px; }

p { margin-bottom: 16px; }

a {
  color: var(--primary);
  text-decoration: none;
  transition: color .25s var(--ease);
}
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; }

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

::selection { background: var(--primary); color: #fff; }

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--primary);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ------------------------------------------------------- 3. buttons + utils */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .2px;
  border-radius: var(--radius-sm);
  padding: 13px 30px;
  border: 1px solid transparent;
  transition: all .3s var(--ease);
}

.btn-nico {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.btn-nico:hover,
.btn-nico:focus {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(14, 158, 108, .28);
}

.btn-nico-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}
.btn-nico-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-ghost-light {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
  font-weight: 600;
}
.btn-ghost-light:hover { background: #e7f6fd; color: var(--accent-dark); }

.btn-sm-nico { padding: 9px 20px; font-size: 13px; }

.text-green { color: var(--primary) !important; }
.text-ink { color: var(--ink) !important; }
.bg-soft { background: var(--surface-soft); }
.fw-600 { font-weight: 600; }

.section { padding: 80px 0; }
.section-tight { padding: 56px 0; }
.section-soft { background: var(--surface-soft); }

.container-xl-nico {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 15px;
}

/* --------------------------------------------- 4. announcement bar + header */
.announcement-bar {
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  position: relative;
  z-index: 1041;
}
.announcement-bar .announcement-inner {
  min-height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 46px 8px 15px;
  text-align: center;
  flex-wrap: wrap;
}
.announcement-bar strong { font-weight: 600; }
.announcement-bar em { font-style: italic; font-weight: 500; }
.announcement-bar .btn {
  padding: 7px 18px;
  font-size: 13px;
  white-space: nowrap;
}
.announcement-close {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  opacity: .85;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.announcement-close:hover { opacity: 1; transform: translateY(-50%) rotate(90deg); }
.announcement-bar.is-hidden { display: none; }

.site-header {
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), padding .3s var(--ease);
}
.site-header .header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  box-shadow: var(--shadow);
  animation: slideDown .45s var(--ease);
}
.site-header.is-sticky .header-inner { min-height: 74px; }

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.brand-logo { display: block; flex: 0 0 auto; }
.brand-logo img { width: 190px; }

.main-nav { margin-left: auto; }
.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  padding: 10px 16px;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.main-nav a:hover,
.main-nav .is-active a { color: var(--primary); }
.main-nav a:hover::after,
.main-nav .is-active a::after { transform: scaleX(1); }

.header-tools {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-tools .tool-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: none;
  color: var(--ink);
  font-size: 19px;
  border-radius: 50%;
  position: relative;
  transition: color .25s var(--ease), background .25s var(--ease);
}
.header-tools .tool-btn:hover { color: var(--primary); background: var(--primary-soft); }
.cart-count {
  position: absolute;
  top: 4px;
  right: 2px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 18px;
}

/* country / currency pill */

/* off-canvas mobile nav */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  bottom: 0;
  width: 300px;
  max-width: 86vw;
  background: #fff;
  z-index: 1060;
  padding: 24px 22px;
  overflow-y: auto;
  transition: left .4s var(--ease);
  box-shadow: var(--shadow-lg);
}
.mobile-drawer.is-open { left: 0; }
.mobile-drawer .drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}
.mobile-drawer .drawer-head img { width: 150px; }
.drawer-close {
  border: 0;
  background: var(--primary-soft);
  color: var(--primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
}
.mobile-drawer nav a {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-drawer nav a:hover,
.mobile-drawer nav .is-active a { color: var(--primary); padding-left: 6px; }

.drawer-contact { margin-top: 26px; font-size: 14px; }
.drawer-contact a { display: block; color: var(--body); margin-bottom: 8px; }
.drawer-social { display: flex; gap: 12px; margin-top: 18px; }
.drawer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary-soft); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
}

.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 19, 15, .55);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
.backdrop.is-open { opacity: 1; visibility: visible; }

/* search overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, .98);
  z-index: 1070;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.search-overlay.is-open { opacity: 1; visibility: visible; }
.search-overlay form {
  width: min(680px, 90vw);
  display: flex;
  border-bottom: 2px solid var(--primary);
}
.search-overlay input {
  flex: 1;
  border: 0;
  background: none;
  font-family: var(--font-display);
  font-size: 26px;
  padding: 14px 4px;
  color: var(--ink);
}
.search-overlay input:focus { outline: none; }
.search-overlay button {
  border: 0;
  background: none;
  color: var(--primary);
  font-size: 22px;
  padding: 0 12px;
}
.search-close {
  position: absolute;
  top: 30px;
  right: 34px;
  border: 0;
  background: var(--primary-soft);
  color: var(--primary);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 18px;
}

/* --------------------------------------------- 5. footer + floating actions */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 70px 0 34px;
  font-size: 14px;
}
.site-footer h5 {
  font-family: var(--font-display);
  /* The accent blue is a foreground colour on white; against the dark footer
     it reads as dimmer than the links beneath it, inverting the hierarchy. */
  color: #ffffff;
  font-size: 21px;
  margin-bottom: 22px;
}
.footer-brand-line {
  color: #f2f7f5;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 22px;
}
.footer-brand-line strong { color: #fff; font-weight: 600; }
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.footer-contact i { color: var(--primary); font-size: 15px; }
.footer-contact a { color: var(--footer-text); }
.footer-contact a:hover { color: var(--primary); }
.footer-social { display: flex; gap: 16px; margin-top: 20px; }
.footer-social a { color: #f2f7f5; font-size: 17px; }
.footer-social a:hover { color: var(--primary); transform: translateY(-3px); display: inline-block; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--footer-text); }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.footer-links a { transition: padding-left .25s var(--ease), color .25s var(--ease); }

.newsletter-form {
  display: flex;
  margin-top: 18px;
  max-width: 340px;
}
.newsletter-form input {
  flex: 1;
  border: 0;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  min-width: 0;
}
.newsletter-form input:focus { outline: 2px solid var(--primary); outline-offset: -2px; }
.newsletter-form button {
  border: 0;
  background: var(--primary);
  color: #fff;
  width: 58px;
  font-size: 16px;
  transition: background .25s var(--ease);
}
.newsletter-form button:hover { background: var(--primary-dark); }
.newsletter-note { margin-top: 14px; font-size: 12px; color: var(--muted); min-height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 46px;
  padding-top: 22px;
  font-size: 13px;
  color: #8fa39b;
}

.float-actions {
  position: fixed;
  right: 22px;
  bottom: 26px;
  z-index: 1030;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  border: 0;
  box-shadow: var(--shadow);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.float-btn:hover { transform: translateY(-4px) scale(1.05); color: #fff; }
.float-whatsapp { background: #25d366; }
/* The back-to-top button only exists once the page has been scrolled. It
   collapses to zero height rather than just fading, so the WhatsApp button
   above it drops into the corner instead of floating over a dead gap. */
.float-top {
  background: var(--primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  height: 0;
  margin-top: -12px;
  overflow: hidden;
  pointer-events: none;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
              opacity .25s var(--ease), height .25s var(--ease), margin-top .25s var(--ease);
}
.float-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
  height: 52px;
  margin-top: 0;
  pointer-events: auto;
}

/* ------------------------------------------------------ 6. shared components */
.section-head { text-align: center; margin-bottom: 46px; }
.section-head .eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: .6px;
  margin-bottom: 8px;
}
.section-head h2 { font-size: 34px; }
.section-head p { max-width: 640px; margin: 12px auto 0; }

.widget-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.widget-title::before {
  content: "";
  width: 22px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  position: relative;
  box-shadow: 8px 0 0 -1px var(--primary);
}

/* star rating */
.rating { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.rating .stars { color: var(--star); font-size: 13px; letter-spacing: 1px; }
.rating .score { font-weight: 600; color: var(--ink); }
.rating .count { color: var(--muted); }

/* product card ------------------------------------------------------------ */
.product-card {
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-media {
  position: relative;
  background: #f5f8f7;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.product-card:hover .product-media img { transform: scale(1.07); }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--danger);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 20px;
  letter-spacing: .4px;
}
.product-actions {
  position: absolute;
  right: 12px;
  top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-actions button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateX(14px);
  transition: all .3s var(--ease);
}
.product-card:hover .product-actions button { opacity: 1; transform: none; }
.product-actions button:hover { background: var(--primary); color: #fff; }
.product-actions button:nth-child(2) { transition-delay: .06s; }
.product-actions button:nth-child(3) { transition-delay: .12s; }
.product-cart-btn {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border: 0;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 11px;
  border-radius: var(--radius-sm);
  opacity: 0;
  transform: translateY(14px);
  transition: all .35s var(--ease);
}
.product-card:hover .product-cart-btn { opacity: 1; transform: none; }
.product-cart-btn:hover { background: var(--primary-dark); }
.product-body { padding: 16px 2px 4px; }
.product-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card:hover .product-title { color: var(--primary); }
.product-price {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 10px;
}
.product-price del { color: var(--muted); font-weight: 400; margin-left: 8px; font-size: 13px; }

/* generic slider ---------------------------------------------------------- */
.nico-slider { position: relative; }
.nico-slider .slider-viewport { overflow: hidden; }
.nico-slider .slider-track {
  display: flex;
  transition: transform .55s var(--ease);
  will-change: transform;
}
.nico-slider .slider-slide { flex: 0 0 auto; }
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  z-index: 4;
  box-shadow: var(--shadow-sm);
  transition: all .3s var(--ease);
}
.slider-arrow:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.slider-arrow[disabled] { opacity: .35; cursor: not-allowed; }
.slider-arrow.prev { left: -18px; }
.slider-arrow.next { right: -18px; }
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
}
.slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 0;
  background: var(--line-strong);
  transition: all .3s var(--ease);
}
.slider-dots button.is-active { background: var(--primary); width: 26px; border-radius: 6px; }

/* accordion --------------------------------------------------------------- */
.nico-accordion .acc-item {
  border: 1px solid var(--line);
  margin-bottom: 14px;
  background: #fff;
}
.nico-accordion .acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  border: 0;
  background: none;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.nico-accordion .acc-head:hover { color: var(--primary); }
.nico-accordion .acc-icon {
  flex: 0 0 auto;
  color: var(--primary);
  font-size: 15px;
  transition: transform .3s var(--ease);
}
.nico-accordion .acc-item.is-open .acc-icon { transform: rotate(180deg); }
.nico-accordion .acc-panel {
  display: none;
  padding: 0 22px 20px;
  font-size: 14px;
}
.nico-accordion .acc-item.is-open .acc-panel { display: block; }

/* feature cards (why choose nico) ---------------------------------------- */
.why-grid { border: 1px solid var(--line); }
.why-cell {
  padding: 34px 26px;
  border-right: 1px solid var(--line);
  height: 100%;
}
.why-cell:last-child { border-right: 0; }
.why-cell .why-icon {
  width: 46px;
  height: 46px;
  color: var(--primary);
  font-size: 30px;
  margin-bottom: 16px;
  display: block;
}
.why-cell h5 { font-size: 17px; margin-bottom: 10px; color: var(--primary-dark); }
.why-cell p { font-size: 13.5px; line-height: 1.7; margin: 0; }

/* testimonials ------------------------------------------------------------ */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px 26px;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testimonial-card .t-stars { color: var(--star); font-size: 13.5px; letter-spacing: 1px; }
.testimonial-card blockquote {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--body);
  flex: 1 1 auto;
}
.testimonial-card blockquote::before { content: "\201C"; }
.testimonial-card blockquote::after  { content: "\201D"; }

.t-author {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}
.testimonial-avatar {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .5px;
}
.t-meta { display: flex; flex-direction: column; line-height: 1.35; }
.testimonial-card .t-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
}
.testimonial-card .t-role { font-size: 12.5px; color: var(--secondary); font-weight: 600; }

/* Oversized quote mark, kept faint so it never competes with the text. */
.testimonial-card::after {
  content: "\f10e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 20px;
  top: 22px;
  font-size: 42px;
  color: var(--primary);
  opacity: .06;
  pointer-events: none;
}

/* blog card --------------------------------------------------------------- */
.blog-card {
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 30px 34px;
  height: 100%;
  transition: box-shadow .35s var(--ease), transform .35s var(--ease);
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.blog-comments {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--body);
  margin-bottom: 14px;
}
.blog-comments i { color: var(--primary); }
.blog-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  line-height: 1.35;
}
.blog-card h3 a { color: var(--ink); }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card .excerpt { font-size: 14.5px; margin-bottom: 24px; }
.blog-meta {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 13.5px;
}
.blog-meta .date { display: inline-flex; align-items: center; gap: 9px; color: var(--ink); }
.blog-meta .date i { color: var(--primary); }
.blog-meta .read-more { color: var(--primary); font-weight: 600; }
.blog-meta .read-more:hover { text-decoration: underline; }

/* reveal on scroll -------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------- 7. home page */
.hero {
  position: relative;
  background: #050a08;
  overflow: hidden;
}
.hero-link { display: block; }
.hero-figure {
  display: block;
  width: 100%;
  aspect-ratio: 1600 / 620;
  object-fit: cover;
}

/* Quality & Trust — heading-only panel ------------------------------------ */
.cert-section { background: var(--surface-soft); }

/* category tiles */
.cat-tile {
  display: block;
  text-align: center;
  padding: 18px 8px;
  border-radius: var(--radius);
  transition: transform .3s var(--ease);
}
.cat-tile:hover { transform: translateY(-6px); }
.cat-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 12px;
  border-radius: 20px;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.cat-tile:hover .cat-icon { background: var(--primary); color: #fff; }
.cat-tile span {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

/* split content sections */
.split-media img {
  width: 100%;
  border-radius: 4px;
  display: block;
}
.split-media.rounded-media img { border-radius: var(--radius-lg); }

/* Split blocks get a little more breathing room between the two columns. */
.split-eyebrow {
  font-size: 13px;
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: .6px;
  margin-bottom: 10px;
  display: block;
}
.split-content h2 { font-size: 33px; margin-bottom: 16px; }
.split-content p { text-align: left; }

/* Rich-text section bodies. The content comes from an editor, so the list
   markup has no icon element of its own — the tick is drawn here instead. */
.split-rich > *:last-child { margin-bottom: 0; }
.split-rich h2 { font-size: 33px; margin-bottom: 16px; }
.split-rich h3 { font-size: 22px; margin-bottom: 12px; }
.split-rich p { text-align: left; margin-bottom: 16px; }
.split-rich ul { list-style: none; padding: 0; margin: 0 0 22px; }
.split-rich ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 14.5px;
  color: var(--body);
}
.split-rich ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 13px;
  color: var(--primary);
}
.split-rich ol { padding-left: 20px; margin-bottom: 22px; }
.split-rich ol li { margin-bottom: 10px; font-size: 14.5px; color: var(--body); }

/* Centred section heads whose description comes from an editor. */
.section-head-rich > *:last-child { margin-bottom: 0; }
.section-head-rich p { margin-bottom: 12px; }

/* bundle promo */
.bundle-promo .bundle-price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin: 10px 0 14px;
}

/* problem pills */
.problem-heading {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  font-size: 20px;
  letter-spacing: .5px;
  margin-bottom: 30px;
}
.problem-heading::before,
.problem-heading::after { content: "·"; margin: 0 8px; color: var(--primary); }
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.pill-grid a {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 12.5px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 4px;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.pill-grid a:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-3px);
}

/* timeline */
.timeline { position: relative; padding: 20px 0; }
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary);
  opacity: .35;
  transform: translateX(-50%);
}
.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 52px 44px 0;
}
.timeline-item:nth-child(even) {
  margin-left: 50%;
  padding: 0 0 44px 52px;
}
.timeline-dot {
  position: absolute;
  top: 26px;
  right: -9px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px var(--primary);
}
.timeline-item:nth-child(even) .timeline-dot { right: auto; left: -9px; }
.timeline-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.timeline-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.timeline-card h4 { font-size: 17px; margin-bottom: 8px; }
.timeline-card p { font-size: 13px; margin: 0; line-height: 1.75; }

/* trust boxes */
.trust-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;
  background: #fff;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.trust-box:hover { border-color: var(--primary); transform: translateY(-3px); }
.trust-box i { color: var(--primary); font-size: 19px; }
.trust-box span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.4;
}

/* promo banner grid */
.promo-tile {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.promo-tile img {
  width: 100%;
  display: block;
  aspect-ratio: 600 / 420;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.promo-tile:hover img { transform: scale(1.06); }
.promo-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 19, 15, 0);
  transition: background .4s var(--ease);
}
.promo-tile:hover::after { background: rgba(8, 19, 15, .18); }

/* video block */
.video-block {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.video-block img {
  width: 100%;
  display: block;
  aspect-ratio: 1200 / 620;
  object-fit: cover;
}
.video-block .video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27, 41, 66, .18), rgba(27, 41, 66, .55));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  color: #fff;
}
.video-block .video-overlay h2 { color: #fff; font-size: 40px; }
.play-btn {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 0;
  background: var(--primary);
  color: #fff;
  font-size: 24px;
  position: relative;
}
.play-btn::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .6);
  animation: pulseRing 2.2s infinite;
}
@keyframes pulseRing {
  0% { transform: scale(.9); opacity: .9; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* home "why choose nico" cards */
.choose-cell {
  padding: 32px 26px;
  border-right: 1px solid var(--line);
  height: 100%;
  transition: background .25s var(--ease);
}
.choose-cell:hover { background: var(--surface-soft); }
.choose-cell:last-child { border-right: 0; }
.choose-cell img { width: 54px; margin-bottom: 16px; }
.choose-cell i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 19px;
  margin-bottom: 16px;
}
.choose-cell h5 { font-size: 16px; color: var(--ink); margin-bottom: 10px; }
.choose-cell p { font-size: 13.5px; margin: 0; line-height: 1.75; }

/* ------------------------------------------------------ 8. collections page */
.shop-sidebar { padding-right: 10px; }
.filter-widget {
  border: 1px solid var(--line);
  padding: 24px 22px;
  margin-bottom: 28px;
  background: #fff;
}
.filter-widget .filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 18px;
}
.filter-widget .filter-toggle {
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 14px;
  padding: 0;
}
.filter-widget .filter-body { display: block; }
.filter-widget.is-collapsed .filter-body { display: none; }
.filter-list li { margin-bottom: 12px; }
.filter-list a {
  color: var(--ink);
  font-size: 14.5px;
  transition: padding-left .25s var(--ease), color .25s var(--ease);
}
.filter-list a:hover,
.filter-list a.is-active { color: var(--primary); padding-left: 5px; }
.filter-check {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14.5px;
  color: var(--ink);
  margin-bottom: 12px;
  cursor: pointer;
}
.filter-check input {
  width: 17px;
  height: 17px;
  accent-color: var(--primary);
  border: 1px solid var(--line-strong);
}
.filter-check .qty { color: var(--muted); }
.price-fields { display: flex; gap: 14px; margin-bottom: 18px; }
.price-fields label {
  display: block;
  font-size: 13px;
  color: var(--body);
  margin-bottom: 6px;
}
.price-fields input {
  width: 100%;
  border: 1px solid var(--line);
  padding: 9px 12px;
  font-size: 14px;
  color: var(--ink);
  border-radius: 2px;
}
.price-fields input:focus { outline: none; border-color: var(--primary); }

.sidebar-close {
  display: none;
  border: 0;
  background: var(--primary-soft);
  color: var(--primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 15px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  margin-left: auto;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.shop-toolbar .result-count { font-size: 14px; margin: 0; }
.shop-toolbar select {
  border: 1px solid var(--line);
  padding: 9px 14px;
  font-size: 14px;
  color: var(--ink);
  border-radius: 2px;
  background: #fff;
}
.shop-toolbar select:focus { outline: none; border-color: var(--primary); }
.filter-drawer-btn { display: none; }

.pagination-nico {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 54px;
}
.pagination-nico button,
.pagination-nico a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--ease);
}
.pagination-nico .is-active,
.pagination-nico button:hover:not([disabled]) {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.pagination-nico button[disabled] { opacity: .4; cursor: not-allowed; }

.empty-state {
  text-align: center;
  padding: 60px 20px;
  border: 1px dashed var(--line-strong);
}
.empty-state i { font-size: 34px; color: var(--line-strong); margin-bottom: 14px; display: block; }

/* ------------------------------------------------------------ 9. blog page */
.blog-widget {
  border: 1px solid var(--line);
  padding: 28px 26px;
  margin-bottom: 30px;
}
.blog-widget .widget-title { margin-bottom: 26px; }
.widget-search { display: flex; }
.widget-search input {
  flex: 1;
  border: 1px solid var(--line);
  border-right: 0;
  padding: 14px 16px;
  font-size: 14px;
  min-width: 0;
}
.widget-search input:focus { outline: none; border-color: var(--primary); }
.widget-search button {
  border: 0;
  background: var(--primary);
  color: #fff;
  width: 62px;
  font-size: 16px;
}
.widget-search button:hover { background: var(--primary-dark); }
.recent-post {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.recent-post:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.recent-post a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.5;
  display: block;
  margin-bottom: 8px;
}
.recent-post a:hover { color: var(--primary); }
.recent-post .date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--primary);
}
.archive-month {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  font-size: 17px;
  margin-bottom: 14px;
}
.archive-list { padding-left: 20px; margin: 0; }
.archive-list li { margin-bottom: 14px; font-size: 14.5px; }
.archive-list li::marker { color: var(--ink); }
.archive-list a { color: var(--ink); }
.archive-list a:hover { color: var(--primary); }

/* ---------------------------------------------------------- 10. about page */
.stat-band .stat-number {
  font-family: var(--font-display);
  font-size: 74px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.stat-band .stat-label {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}
.stat-band .stat-sub { font-size: 14px; margin-bottom: 22px; }
.stat-band .stat-sub strong { color: var(--ink); }
.cert-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 34px;
}
.cert-row img {
  width: 78px;
  filter: grayscale(.15);
  transition: transform .35s var(--ease), filter .35s var(--ease);
}
.cert-row img:hover { transform: translateY(-5px); filter: none; }

/* -------------------------------------------- 11. contact / careers / faqs */
.contact-card {
  border: 1px solid var(--line);
  padding: 44px 30px 40px;
  text-align: center;
  height: 100%;
  background: #fff;
  transition: box-shadow .35s var(--ease), transform .35s var(--ease);
}
.contact-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.contact-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 76px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 52px;
}
.contact-icon .verified {
  position: absolute;
  top: -4px;
  right: -2px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--danger);
  color: #fff;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-card h3 { font-size: 23px; margin-bottom: 12px; }
.contact-card p, .contact-card a { font-size: 14.5px; color: var(--body); margin: 0; }
.contact-card a:hover { color: var(--primary); }

.form-panel {
  border: 1px solid var(--line);
  padding: 46px 44px;
  background: #fff;
}
.form-panel .panel-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  border-left: 4px solid var(--primary);
  padding-left: 14px;
  margin-bottom: 34px;
}
.field { position: relative; margin-bottom: 24px; }
.field .form-control {
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 16px 46px 16px 18px;
  font-size: 14.5px;
  color: var(--ink);
  box-shadow: none;
}
.field .form-control::placeholder { color: var(--muted); }
.field .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14, 158, 108, .12);
}
.field .field-icon {
  position: absolute;
  right: 18px;
  top: 19px;
  color: var(--primary);
  font-size: 15px;
  pointer-events: none;
}
.field textarea.form-control { min-height: 170px; resize: vertical; }
.field .invalid-feedback { font-size: 12.5px; }
.form-alert {
  display: none;
  background: var(--primary-soft);
  border-left: 4px solid var(--primary);
  color: var(--primary-dark);
  padding: 14px 18px;
  font-size: 14px;
  margin-bottom: 24px;
}
.form-alert.is-visible { display: block; }

.map-embed {
  height: 520px;
  width: 100%;
  border: 0;
  display: block;
  filter: saturate(.95);
}

.job-card {
  border: 1px solid var(--line);
  padding: 28px 30px;
  height: 100%;
  background: #fff;
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.job-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.job-card h4 { font-size: 19px; margin-bottom: 8px; }
.job-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 18px; }
.job-tags span {
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}

.page-intro { text-align: center; max-width: 720px; margin: 0 auto 46px; }
.page-intro h1 { font-size: 38px; margin-bottom: 14px; }

.faq-cta {
  background: var(--primary-soft);
  border-radius: var(--radius-lg);
  padding: 46px;
  text-align: center;
}
.faq-cta h3 { font-size: 26px; margin-bottom: 10px; }

/* toast ------------------------------------------------------------------- */
.nico-toast {
  position: fixed;
  right: 24px;
  bottom: 100px;
  z-index: 1080;
  background: var(--ink);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  box-shadow: var(--shadow-lg);
  transform: translateY(18px);
  opacity: 0;
  visibility: hidden;
  transition: all .35s var(--ease);
}
.nico-toast.is-visible { opacity: 1; visibility: visible; transform: none; }
.nico-toast i { color: var(--primary); margin-right: 8px; }

/* ==========================================================================
   12. Product detail page
   ========================================================================== */
.pdp-gallery { position: relative; }
.pdp-main {
  position: relative;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}
.pdp-main img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
  transition: transform .5s var(--ease);
}
.pdp-main.is-zoomed img { transform: scale(1.6); cursor: zoom-out; }
.pdp-zoom {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
  font-size: 15px;
  box-shadow: var(--shadow-sm);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.pdp-zoom:hover { background: var(--primary); color: #fff; }

.pdp-thumbs { margin-top: 14px; }
.pdp-thumbs .slider-slide { cursor: pointer; }
.pdp-thumb {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  background: #fff;
  transition: border-color .25s var(--ease);
}
.pdp-thumb img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; display: block; }
.pdp-thumb:hover { border-color: var(--primary); }
.pdp-thumb.is-active { border-color: var(--primary); border-width: 2px; }
.pdp-thumb-nav { display: flex; gap: 10px; margin-top: 12px; }
.pdp-thumb-nav button {
  width: 34px;
  height: 30px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  border-radius: 3px;
  transition: all .25s var(--ease);
}
.pdp-thumb-nav button:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

.pdp-summary h1 { font-size: 27px; margin-bottom: 10px; }
.pdp-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--body);
  margin-bottom: 18px;
}
.pdp-rating .stars { color: var(--star); }
.pdp-price {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}
.pdp-meta { margin-bottom: 22px; }
.pdp-meta li {
  display: flex;
  gap: 10px;
  font-size: 13.5px;
  margin-bottom: 8px;
}
.pdp-meta dt, .pdp-meta .label {
  min-width: 92px;
  color: var(--body);
  font-weight: 400;
}
.pdp-meta .value { color: var(--ink); }
.pdp-meta .in-stock { color: var(--primary); font-weight: 500; }

.qty-stepper {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--line);
  background: #fff;
}
.qty-stepper button {
  width: 40px;
  border: 0;
  background: none;
  color: var(--ink);
  font-size: 17px;
  line-height: 1;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.qty-stepper button:hover { background: var(--primary-soft); color: var(--primary); }
.qty-stepper input {
  width: 54px;
  border: 0;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: center;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  padding: 11px 0;
  -moz-appearance: textfield;
}
.qty-stepper input::-webkit-outer-spin-button,
.qty-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-stepper input:focus { outline: none; }

.pdp-buy { display: flex; flex-wrap: wrap; gap: 12px; align-items: stretch; }
.pdp-buy .btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; }
.btn-whatsapp {
  background: #1faa5c;
  border-color: #1faa5c;
  color: #fff;
}
.btn-whatsapp:hover { background: #17914c; border-color: #17914c; color: #fff; }

.pdp-links { display: flex; flex-wrap: wrap; gap: 26px; margin: 20px 0 26px; }
.pdp-links button {
  border: 0;
  background: none;
  padding: 0;
  font-size: 13.5px;
  color: var(--body);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pdp-links button:hover { color: var(--primary); }

.safe-checkout h2 {
  font-family: var(--font-display);
  font-size: 17px;
  margin-bottom: 14px;
}
.pay-badges { display: flex; flex-wrap: wrap; gap: 9px; }
.pay-badges img {
  height: 32px;
  width: auto;
  border-radius: 5px;
  transition: transform .25s var(--ease);
}
.pay-badges img:hover { transform: translateY(-2px); }

/* single tab strip above the long description */
.pdp-tabs {
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}
.pdp-tabs button {
  border: 0;
  background: none;
  padding: 12px 2px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--body);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.pdp-tabs button.is-active { color: var(--primary); border-bottom-color: var(--primary); }

/* long-form information panel ------------------------------------------- */
.info-panel {
  background: #eef7fd;
  border: 1px solid #cfe4f2;
  border-radius: var(--radius);
  padding: 30px;
  font-size: 13.5px;
}
.info-panel h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: #14639c;
  margin-bottom: 6px;
}
.info-panel h4 {
  font-family: var(--font-display);
  font-size: 15px;
  color: #1b2942;
  margin: 26px 0 12px;
}
.info-panel .info-lede { color: #3e7ea8; margin-bottom: 14px; }
.info-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 6px; }
.info-pill {
  background: #1b74ba;
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 20px;
}
.info-pill.is-light { background: #dbeefb; color: #14639c; }
.info-card {
  background: #fff;
  border: 1px solid #d6e7f4;
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  height: 100%;
}
.info-card h5 {
  font-family: var(--font-display);
  font-size: 13.5px;
  color: #14639c;
  margin-bottom: 8px;
  line-height: 1.4;
}
.info-card p { font-size: 12.5px; line-height: 1.7; margin: 0; text-align: justify; }
.info-card ul { margin: 0; padding-left: 17px; }
.info-card li { font-size: 12.5px; line-height: 1.75; margin-bottom: 5px; }
.info-card li strong { color: #14639c; }
.info-faq { margin-top: 6px; }
.info-faq dt {
  font-size: 13px;
  font-weight: 600;
  color: #14639c;
  margin-top: 14px;
}
.info-faq dd { font-size: 12.5px; margin: 4px 0 0; color: var(--body); }
.info-trust {
  background: #e3f1fb;
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-top: 8px;
}
.info-trust ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  margin: 10px 0;
  padding: 0;
  list-style: none;
}
.info-trust li { font-size: 12.5px; display: inline-flex; align-items: center; gap: 7px; }
.info-trust li i { color: var(--primary); font-size: 11px; }
.info-fineprint { font-size: 11.5px; color: #7b8f9b; margin: 0; }

/* social proof ------------------------------------------------------------ */
.stat-trio { display: flex; justify-content: center; gap: 76px; flex-wrap: wrap; margin-bottom: 44px; }
.stat-trio .stat-item { text-align: center; }
.stat-trio .stat-value {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}
.stat-trio .stat-caption {
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
}

.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 22px 24px;
  height: 100%;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.review-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.review-card .r-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  display: block;
}
.review-card .r-city { font-size: 12px; color: var(--muted); }
.review-card .r-stars { color: var(--star); font-size: 12.5px; margin: 10px 0; }
.review-card .r-text { font-size: 13px; line-height: 1.75; margin-bottom: 16px; }
.verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}

/* customer review summary + entries -------------------------------------- */
.reviews-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 30px 34px;
}
.reviews-summary { display: flex; gap: 30px; align-items: flex-start; flex-wrap: wrap; }
.reviews-summary .based-on { font-size: 13.5px; color: var(--ink); min-width: 140px; }
.rating-bars { flex: 1; min-width: 240px; }
.rating-bar { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; font-size: 12px; }
.rating-bar .track {
  flex: 1;
  height: 13px;
  background: #f1f4f3;
  border: 1px solid var(--line);
  overflow: hidden;
}
.rating-bar .fill { height: 100%; background: var(--star); }
.rating-bar .pct { min-width: 38px; text-align: right; color: var(--body); }
.rating-bar .num { min-width: 30px; color: var(--muted); }

.review-entry { border-top: 1px solid var(--line); padding: 24px 0; }
.review-entry:first-of-type { border-top: 0; }
.review-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  flex: 0 0 auto;
}
.review-entry .re-name { font-size: 13.5px; color: var(--ink); font-weight: 500; }
.review-entry h4 {
  font-family: var(--font-display);
  font-size: 15px;
  margin: 14px 0 8px;
}
.review-entry p { font-size: 13.5px; margin: 0; }

/* ==========================================================================
   13. Cart page
   ========================================================================== */
.cart-lines { border-top: 1px solid var(--line); margin-bottom: 34px; }
.cart-line {
  display: grid;
  grid-template-columns: 200px 1fr 160px 150px 160px 60px;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.cart-thumb {
  width: 100%;
  max-width: 170px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}
.cart-line .c-title {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  margin: 0;
  font-weight: 400;
}
.cart-line .c-title a { color: var(--ink); }
.cart-line .c-title a:hover { color: var(--primary); }
.cart-line .c-price,
.cart-line .c-total { font-size: 15px; color: var(--ink); }
.cart-line .qty-stepper { border-color: var(--line); }
.cart-remove {
  border: 0;
  background: none;
  color: var(--ink);
  font-size: 19px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.cart-remove:hover { background: #fdecee; color: var(--danger); }
.cart-cell-label { display: none; }

.cart-actions { display: flex; flex-wrap: wrap; gap: 24px; margin-bottom: 60px; }
.cart-actions .btn { min-width: 190px; padding: 20px 34px; font-size: 15px; }

.cart-totals h2 { font-size: 27px; margin-bottom: 22px; }
.totals-table { width: 100%; border: 1px solid var(--line); border-collapse: collapse; }
.totals-table th,
.totals-table td {
  padding: 20px 24px;
  font-size: 15px;
  border-bottom: 1px solid var(--line);
}
.totals-table th {
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  background: #fafcfb;
  width: 38%;
  border-right: 1px solid var(--line);
}
.totals-table td { color: var(--ink); }
.totals-table tr:last-child th,
.totals-table tr:last-child td { border-bottom: 0; }
.checkout-stack .btn {
  width: 100%;
  border-radius: 0;
  padding: 20px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
}
.btn-cod {
  background: #0d0d0d;
  border-color: #0d0d0d;
  color: #fff;
}
.btn-cod:hover { background: #000; border-color: #000; color: #fff; transform: none; }

.cart-empty {
  text-align: center;
  padding: 70px 20px 80px;
}
.cart-empty i { font-size: 46px; color: var(--line-strong); margin-bottom: 18px; display: block; }
.cart-empty h2 { font-size: 25px; margin-bottom: 10px; }
.cart-empty p { max-width: 460px; margin: 0 auto 24px; }

/* Category tiles sit five across on desktop so a full set of ten balances
   as two even rows instead of six-then-four. */
@media (min-width: 992px) {
  .row > .col-lg-cat { flex: 0 0 auto; width: 20%; }
}

/* Packaged brand mark ------------------------------------------------------ */
.brand-logo-img {
  display: block;
  width: auto;
  height: 52px;
  max-width: 200px;
  object-fit: contain;
}
.footer-brand-logo { margin-bottom: 18px; }
.footer-brand-logo .brand-logo-img { height: 46px; }

/* Product composition table + benefit list (demo product copy) ------------- */
.nico-facts {
  width: 100%;
  max-width: 460px;
  border-collapse: collapse;
  margin: 0 0 20px;
  font-size: 14.5px;
}
.nico-facts th,
.nico-facts td {
  border: 1px solid var(--line);
  padding: 9px 14px;
  text-align: left;
}
.nico-facts th {
  font-weight: 600;
  color: var(--ink);
  background: var(--primary-soft);
}
.nico-facts td { color: var(--body); white-space: nowrap; }

.nico-benefits { list-style: none; padding: 0; margin: 12px 0 0; }
.nico-benefits li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 7px;
}
.nico-benefits li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--accent);
  font-size: 14px;
}

/* Why Choose sits directly under the testimonials on the home page, so it
   keeps its flush top edge but needs the section-head to breathe. */
.why-choose-section .section-head { margin-bottom: 34px; }

/* Certification panel heading spacing. */
.cert-section .section-head { margin-bottom: 0; }
.cert-section .section-head p { color: var(--body); }
