/*
Theme Name: Kadence Child - Neha Dhaka Label
Theme URI: https://www.nehadhakalabel.com
Description: Child theme for Neha Dhaka Label based on Kadence Theme
Author: Neha Dhaka Label
Author URI: https://www.nehadhakalabel.com
Template: kadence
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kadence-child
Domain Path: /languages
*/

/* Import parent theme styles */
@import url('../kadence/style.css');

/* Child theme custom styles below */

:root {
  --primary-color: #d4a574;
  --secondary-color: #7a6047; /* deep warm brown (was near-black) */
  --accent-color: #f6f1eb;   /* cream section band — matches Laad & Loom */
  --brand-pink: #ec008c;

  /* Beige text system (sampled from the laadandloom reference) */
  --text-heading: #a2856e;   /* serif headings */
  --text-body: #9a8a7b;      /* body copy, product titles */
  --text-muted: #b3a495;     /* captions, meta, subtle labels */
  --text-strong: #7a6047;    /* nav links, buttons, emphasis */

  /* Warm background system (Laad & Loom reference).
     Kadence ships a cool blue-grey canvas (#F7FAFC); these warm it. */
  --page-canvas: #faf6f0;    /* body / page background — warm off-white */
  --band-cream: #f6f1eb;     /* soft cream feature bands */
  --band-tan: #d2baa2;       /* tan accent strip */
}

/* Kadence prints its own :root palette in inline CSS AFTER this stylesheet,
   so a plain :root override loses the cascade. :root:root outranks it. */
:root:root {
  --global-palette3: #7a6047; /* strong text / headings */
  --global-palette4: #9a8a7b; /* body text */
  --global-palette5: #b3a495; /* muted text */
  --global-palette8: #faf6f0; /* warm page canvas */
}

/* Fashion store customizations */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-body);
}

h1, h2, h3, .site-title {
  font-family: 'Playfair Display', Georgia, serif;
}

/* Beige text everywhere (laadandloom reference tones) */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-heading);
}

.main-navigation .primary-menu-container > ul > li.menu-item > a,
.mobile-navigation ul li a {
  color: var(--text-strong);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2 {
  color: var(--text-body);
}

.site-header {
  background-color: #fff;
}

/* ---------- Announcement ticker ---------- */
.ndl-ticker {
  background: var(--band-tan); /* #d2baa2 — brand beige */
  color: #5a4232;
  overflow: hidden;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
}

.ndl-ticker-track {
  display: inline-block;
  padding: 9px 0;
  animation: ndl-ticker-scroll 40s linear infinite;
}

.ndl-ticker-item {
  display: inline-block;
  padding: 0 60px;
}

@keyframes ndl-ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Header layout polish ---------- */
/* Brand lockup (matches the brand PDF): ND mark + tagline image on top,
   script "Neha Dhaka" wordmark with green heart beneath it. */
.site-header .custom-logo {
  max-height: 92px; /* full brand lockup (ND + Neha Dhaka script) */
  width: auto;
}

.site-header .site-branding a.brand {
  display: inline-flex !important;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-decoration: none;
}

.ndl-wordmark-img {
  height: 52px; /* Neha Dhaka script stays dominant */
  width: auto;
  display: block;
}

/* icon cluster on the right of the main row */
.site-main-header-inner-wrap .site-header-section-right .site-header-item {
  padding-left: 8px;
  padding-right: 8px;
}

.ndl-account-link {
  display: inline-flex;
  align-items: center;
  color: var(--secondary-color);
}

.ndl-account-link:hover {
  color: var(--brand-pink);
}

.search-toggle-open,
.header-cart-wrap .header-cart-button {
  color: var(--secondary-color);
}

.search-toggle-open:hover,
.header-cart-wrap .header-cart-button:hover {
  color: var(--brand-pink);
}

/* bottom nav row: spaced uppercase links like the reference */
.site-bottom-header-wrap .main-navigation .primary-menu-container > ul > li.menu-item > a {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  font-size: 14px;
  padding-left: 1.1em;
  padding-right: 1.1em;
  padding-top: 1em;
  padding-bottom: 1em;
}

@media (max-width: 768px) {
  .ndl-ticker {
    font-size: 12.5px;
  }

  .site-header .custom-logo {
    max-height: 62px;
  }
}
/* ---------- Shared section rhythm ---------- */
.ndl-section {
  padding: 72px 20px;
}

.ndl-muted {
  color: #8b7355;
}

.ndl-kicker {
  color: #f5f1ed;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 0;
}

/* ---------- Hero ---------- */
.ndl-hero .wp-block-cover__inner-container {
  max-width: 820px;
}

.ndl-hero h1 {
  margin-top: 0.4em;
  margin-bottom: 0.3em;
}

/* ---------- Category cards ---------- */
.ndl-categories {
  background: var(--accent-color);
}

/* block-level link wrapper: prevents the inline baseline gap that
   misaligns tiles whose image is (or isn't) wrapped in a link */
.ndl-cat-img a {
  display: block;
}

.ndl-cat-img img {
  border-radius: 14px;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;  /* fixed portrait — keeps all four tiles aligned */
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ndl-cat-img a:hover img {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.ndl-categories h3 {
  margin-top: 0.75em;
  margin-bottom: 0.25em;
  font-size: 1.25rem;
}

.ndl-categories h3 a {
  color: var(--secondary-color);
  text-decoration: none;
}

.ndl-categories h3 a:hover {
  color: var(--brand-pink);
}

/* price line: sale price first, struck MRP after (reference style) */
.woocommerce ul.products li.product .price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 2px 8px;
}

.woocommerce ul.products li.product .price ins {
  order: 1;
  color: var(--brand-pink);
}

.woocommerce ul.products li.product .price del {
  order: 2;
}

.woocommerce ul.products li.product .price .ndl-off {
  order: 3;
}

/* ---------- Home mobile: category strip + 2-col products ---------- */
@media (max-width: 768px) {
  /* horizontally scrollable category tiles */
  body .ndl-categories .wp-block-columns {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    gap: 16px !important;
    padding: 4px 2px 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .ndl-categories .wp-block-columns::-webkit-scrollbar {
    display: none;
  }

  body .ndl-categories .wp-block-columns > .wp-block-column {
    flex: 0 0 122px !important;
    min-width: 122px;
    margin: 0 !important;
  }

  .ndl-categories .ndl-cat-img img {
    border-radius: 24px;
    /* fixed frame: overrides any per-image width/height set in the editor,
       so every tile and its label line up identically */
    width: 122px !important;
    height: 160px !important;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .ndl-categories .ndl-cat-img {
    margin: 0 0 10px;
  }

  .ndl-categories h3 {
    margin-top: 0;
  }

  .ndl-categories .ndl-cat-img a:hover img {
    transform: none;
    box-shadow: none;
  }

  .ndl-categories h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .ndl-categories .ndl-muted {
    display: none;
  }

  /* 2-column product grids on the home page */
  .home .woocommerce ul.products {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 20px 12px;
  }

  .home .woocommerce ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
  }
}

/* ---------- Trust strip: exact beige from background.jpeg (#D2BAA2) ---------- */
.ndl-trust {
  background: var(--band-tan);
}

/* ---------- Newsletter / promo ---------- */
.ndl-newsletter {
  background: var(--accent-color);
}

/* ---------- About ---------- */
.ndl-rounded img {
  border-radius: 16px;
}

.ndl-values {
  background: var(--accent-color);
}

/* ---------- Contact form ---------- */
.ndl-contact-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--secondary-color);
}

.ndl-contact-form input[type="text"],
.ndl-contact-form input[type="email"],
.ndl-contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd4c8;
  border-radius: 8px;
  background: #fff;
  font-family: inherit;
}

.ndl-contact-form input:focus,
.ndl-contact-form textarea:focus {
  outline: none;
  border-color: var(--brand-pink);
  box-shadow: 0 0 0 3px rgba(236, 0, 140, 0.12);
}

.ndl-form-submit {
  background: var(--brand-pink);
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 13px 36px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.25s ease;
}

.ndl-form-submit:hover {
  background: #c20074;
}

.ndl-form-notice {
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 18px;
}

.ndl-form-success {
  background: #e8f5ec;
  border: 1px solid #9fd4ae;
  color: #1e5c31;
}

.ndl-form-error {
  background: #fdecec;
  border: 1px solid #eba7a7;
  color: #7c1f1f;
}

/* ---------- WooCommerce polish ---------- */
.woocommerce ul.products li.product img {
  border-radius: 12px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.woocommerce ul.products li.product:hover img {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

.woocommerce span.onsale {
  background: var(--brand-pink);
  border-radius: 40px;
  padding: 2px 14px;
  line-height: 2;
  min-height: 0;
  min-width: 0;
}

.archive-description {
  background-color: var(--accent-color);
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 8px;
}

/* ---------- Category / shop archive ---------- */
.ndl-cat-hero-img {
  height: 320px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ndl-cat-hero-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 52px;
  color: #fff;
  text-shadow: 0 2px 14px rgba(120, 30, 60, 0.35);
  letter-spacing: 0.04em;
}

.ndl-cat-crumb {
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 40px 10px;
  font-size: 13.5px;
  color: var(--text-body);
}

.ndl-cat-crumb a {
  color: var(--text-strong);
  text-decoration: underline;
}

.ndl-cat-crumb span {
  margin: 0 6px;
  color: var(--text-muted);
}

.ndl-cat-titleband {
  background: var(--band-cream);
  text-align: center;
  padding: 26px 20px;
}

.ndl-cat-titleband h1 {
  margin: 0;
  font-size: 30px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

.ndl-cat-desc {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px 26px;
  text-align: center;
  background: var(--band-cream);
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.6;
}

/* toolbar: filter + count + sort */
.woocommerce-toolbar,
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  margin-top: 4px;
}

/* shop top row: Filter | count | sort | view-toggle */
.kadence-shop-top-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 22px;
}

.kadence-shop-top-row .kadence-woo-results-count {
  flex: 1;
}

.kadence-shop-top-row .woocommerce-result-count {
  margin: 0;
}

.ndl-filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff !important;
  border: 1px solid #4b3621 !important;
  border-radius: 24px !important;
  padding: 8px 20px !important;
  font-size: 14px !important;
  font-weight: 500;
  color: var(--text-strong) !important;
  line-height: 1.4 !important;
  cursor: pointer;
  margin: 0;
  box-shadow: none !important;
}

.ndl-filter-toggle:hover {
  background: #4b3621 !important;
  color: #fff !important;
}

.ndl-filter-toggle svg {
  flex: 0 0 auto;
}

.woocommerce .woocommerce-ordering select {
  border: 1px solid #4b3621;
  border-radius: 24px;
  padding: 8px 34px 8px 18px;
  font-size: 14px;
  font-weight: 500;
  background-color: #fff;
}

/* sidebar filter styling */
.primary-sidebar .widget .widget-title,
.primary-sidebar .widget h2 {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 14px;
}

.primary-sidebar .widget ul {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
}

.primary-sidebar .widget ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  font-size: 14.5px;
}

.primary-sidebar .widget ul li a {
  color: var(--text-strong);
  text-decoration: none;
}

.primary-sidebar .widget ul li a:hover {
  color: var(--brand-pink);
}

.primary-sidebar .widget ul li .count {
  color: var(--text-muted);
  font-size: 13px;
}

.primary-sidebar .widget.woocommerce {
  margin-bottom: 34px;
}

/* woo price slider in brand color */
.woocommerce .price_slider_wrapper .ui-slider .ui-slider-range {
  background-color: var(--brand-pink) !important;
}

.woocommerce .price_slider_wrapper .ui-slider {
  background-color: #eee !important;
}

.woocommerce .price_slider_wrapper .ui-slider .ui-slider-handle {
  background-color: #fff !important;
  border: 2px solid var(--brand-pink) !important;
}

.woocommerce .price_slider_amount .button {
  background: #4b3621;
  color: #fff;
  border-radius: 24px;
  padding: 8px 20px;
}

/* size filter as chips */
.widget_layered_nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.widget_layered_nav ul li {
  padding: 0 !important;
  margin: 0 !important;
}

/* hide Kadence's radio-circle decoration on filter items */
.widget_layered_nav ul li a::before,
.widget_layered_nav ul li::before,
.widget_layered_nav ul li .woocommerce-widget-layered-nav-list__item-checkbox {
  display: none !important;
  content: none !important;
}

.widget_layered_nav ul li a {
  display: inline-block;
  border: 1px solid #ccc !important;
  border-radius: 8px;
  padding: 6px 16px !important;
  font-size: 13.5px;
  min-width: 40px;
  text-align: center;
  transition: all 0.2s ease;
}

.widget_layered_nav ul li a:hover,
.widget_layered_nav ul li.chosen a {
  border-color: var(--brand-pink);
  background: var(--brand-pink);
  color: #fff !important;
}

.widget_layered_nav ul li .count {
  display: none;
}

/* product cards */
.woocommerce ul.products li.product {
  position: relative;
  text-align: left;
}

.woocommerce ul.products li.product .product-image-link,
.woocommerce ul.products li.product a img {
  border-radius: 10px;
}

.woocommerce ul.products li.product span.onsale,
.woocommerce span.onsale,
.ndl-new-badge {
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 5;
  background: var(--brand-pink) !important;
  color: #fff !important;
  font-size: 11.5px !important;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 20px !important;
  padding: 4px 14px !important;
  line-height: 1.5 !important;
  min-height: 0 !important;
  min-width: 0 !important;
  margin: 0 !important;
  transform: none !important;
}

.ndl-new-badge {
  background: #4b3621 !important;
}

/* when both badges show, stack the sale badge below NEW */
.woocommerce ul.products li.product .ndl-new-badge ~ span.onsale,
.woocommerce ul.products li.product span.onsale:not(:first-child) {
  top: 46px !important;
}

/* image link anchors the badges + size chips */
.woocommerce ul.products li.product a.woocommerce-loop-image-link {
  position: relative;
  display: block;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  /* !important: Kadence sets its own loop-title size (17px) that outranks this */
  font-size: 14px !important;
  line-height: 1.5 !important;
  font-weight: 500;
  color: var(--text-strong);
  padding-top: 12px;
  padding-bottom: 2px;
  display: -webkit-box !important;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* Reserve 3 lines so cards stay aligned, but set no max-height: a box sized
     to exactly 3 lines clips the descenders on the last one. */
  min-height: 4.5em;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title a {
  color: inherit;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title a:hover {
  color: var(--brand-pink);
}

.woocommerce ul.products li.product .price {
  margin-top: 7px;
  line-height: 1.3;
}

.woocommerce ul.products li.product .price ins {
  text-decoration: none;
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.woocommerce ul.products li.product .price del {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 13px;
}

.woocommerce ul.products li.product .price > .amount {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--text-strong);
}

.ndl-off {
  color: #1e9e5a;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* No action button on loop cards — the whole card links to the product page.
   The PHP remove_action handles Woo's own markup; this also covers Kadence's
   own .product-action-wrap, which it renders independently of that hook. */
.woocommerce ul.products li.product .product-action-wrap,
.woocommerce ul.products li.product a.add_to_cart_button,
.woocommerce ul.products li.product a.product_type_variable,
.woocommerce ul.products li.product a.product_type_simple,
.woocommerce ul.products li.product a.product_type_grouped,
.woocommerce ul.products li.product a.product_type_external {
  display: none !important;
}

/* mobile: 2 columns, filter drawer */
@media (max-width: 768px) {
  .ndl-cat-hero-img {
    height: 150px;
  }

  .ndl-cat-hero-text {
    font-size: 30px;
  }

  .ndl-cat-crumb {
    padding: 12px 20px 8px;
  }

  .ndl-cat-titleband h1 {
    font-size: 22px;
  }

  /* toolbar on one clean row: Filter | count | sort */
  .kadence-shop-top-row {
    gap: 8px;
    margin-bottom: 16px;
  }

  .kadence-shop-top-row .kadence-woo-toggle {
    display: none;
  }

  .kadence-shop-top-row .woocommerce-result-count {
    font-size: 12.5px;
    color: var(--text-body);
    text-align: center;
  }

  .kadence-shop-top-row .woocommerce-ordering select {
    padding: 8px 26px 8px 12px !important;
    font-size: 12.5px !important;
    max-width: 150px;
  }

  .ndl-filter-toggle {
    padding: 8px 16px !important;
    font-size: 12.5px !important;
  }

  .woocommerce.tax-product_cat ul.products,
  .woocommerce.post-type-archive-product ul.products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 12px;
    margin: 0;
    padding: 0;
  }

  .woocommerce.tax-product_cat ul.products li.product,
  .woocommerce.post-type-archive-product ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
  }

  /* off-canvas filter drawer */
  .tax-product_cat aside.primary-sidebar,
  .post-type-archive-product aside.primary-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 10000;
    overflow-y: auto;
    padding: 28px 22px;
    transition: left 0.3s ease;
    box-shadow: 4px 0 22px rgba(0, 0, 0, 0.18);
    max-width: 85vw;
  }

  body.ndl-filters-open aside.primary-sidebar {
    left: 0;
  }

  .ndl-filter-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9999;
  }

  body.ndl-filters-open .ndl-filter-overlay {
    display: block;
  }
}

/* ---------- Single product page ---------- */

/* vertical thumbnail strip beside the main image */
.single-product div.product div.woocommerce-product-gallery {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.single-product div.product .woocommerce-product-gallery .flex-viewport,
.single-product div.product .woocommerce-product-gallery > .woocommerce-product-gallery__wrapper {
  flex: 1;
  order: 2;
}

.single-product div.product .woocommerce-product-gallery img {
  border-radius: 12px;
}

.woocommerce div.product div.images .flex-control-thumbs,
.single-product div.product .woocommerce-product-gallery ol.flex-control-thumbs {
  order: 1;
  display: flex !important;
  flex-direction: column;
  flex-wrap: nowrap !important;
  justify-content: flex-start !important;
  gap: 10px;
  width: 84px !important;
  max-width: 84px !important;
  flex: 0 0 84px;
  margin: 0 !important;
  padding: 0 !important;
  position: static !important;
  left: auto !important;
  transform: none !important;
  overflow: visible !important;
}

.woocommerce div.product div.images .flex-control-thumbs li,
.single-product div.product .woocommerce-product-gallery ol.flex-control-thumbs li {
  width: 100% !important;
  height: auto !important;
  float: none;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

.woocommerce div.product div.images .flex-control-thumbs li img,
.single-product div.product .woocommerce-product-gallery ol.flex-control-thumbs li img {
  border-radius: 8px;
  border: 2px solid transparent !important;
  opacity: 0.75;
  transition: all 0.2s ease;
  width: 100%;
  height: auto;
}

.woocommerce div.product div.images .flex-control-thumbs li img.flex-active,
.woocommerce div.product div.images .flex-control-thumbs li img:hover {
  opacity: 1;
  border-color: var(--brand-pink) !important;
}

/* title, price, badges */
.single-product div.product .product_title {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.35;
}

.single-product div.product p.price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 4px;
}

.single-product div.product p.price ins {
  order: 1;
  text-decoration: none;
  color: var(--text-strong);
  font-size: 26px;
  font-weight: 700;
}

.single-product div.product p.price del {
  order: 2;
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 400;
}

.single-product div.product p.price > .amount {
  color: var(--text-strong);
  font-size: 26px;
  font-weight: 700;
}

.single-product div.product p.price .ndl-off {
  order: 3;
  background: var(--brand-pink);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 16px;
  letter-spacing: 0.03em;
}

.single-product .woocommerce-product-details__short-description {
  color: var(--text-body);
  font-size: 14.5px;
  line-height: 1.7;
}

/* dispatch / urgency line */
.ndl-dispatch {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: #1e7a46;
  margin: 14px 0 4px;
}

.ndl-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22a55c;
  box-shadow: 0 0 0 3px rgba(34, 165, 92, 0.2);
  animation: ndl-pulse 1.6s ease infinite;
}

@keyframes ndl-pulse {
  50% { box-shadow: 0 0 0 6px rgba(34, 165, 92, 0.08); }
}

/* size swatches */
.single-product div.product table.variations th.label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-top: 14px;
}

.ndl-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 2px;
}

.ndl-swatch {
  min-width: 52px;
  padding: 11px 14px;
  border: 1.5px solid #d5d5d5;
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-strong);
  cursor: pointer;
  transition: all 0.15s ease;
  line-height: 1;
}

.ndl-swatch:hover {
  border-color: var(--text-strong);
}

.ndl-swatch.active {
  border-color: var(--brand-pink);
  background: var(--brand-pink);
  color: #fff;
  box-shadow: 0 3px 10px rgba(236, 0, 140, 0.25);
}

.ndl-swatch.disabled {
  opacity: 0.35;
  text-decoration: line-through;
  cursor: not-allowed;
}

.single-product div.product .reset_variations {
  font-size: 12px;
  color: var(--text-muted);
}

/* size guide */
.ndl-size-guide {
  margin: 10px 0 6px;
  font-size: 14px;
}

.ndl-size-guide summary {
  cursor: pointer;
  color: var(--text-strong);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  list-style: none;
  display: inline-block;
}

.ndl-size-guide summary::before {
  content: '📏 ';
}

.ndl-size-guide-table {
  margin-top: 12px;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 14px 16px;
  background: #fbfaf8;
}

.ndl-size-guide-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  margin: 0;
}

.ndl-size-guide-table th,
.ndl-size-guide-table td {
  border: none;
  border-bottom: 1px solid #eee;
  padding: 7px 6px;
  text-align: left;
}

.ndl-size-guide-table tbody tr:last-child td {
  border-bottom: none;
}

.ndl-size-note {
  font-size: 12.5px;
  color: var(--text-muted);
  margin: 10px 0 0;
}

/* quantity + add to cart */
.single-product div.product form.cart {
  margin-top: 14px;
}

.single-product div.product form.cart .woocommerce-variation-add-to-cart,
.single-product div.product form.cart:not(.variations_form) {
  display: flex;
  align-items: stretch;
  gap: 12px;
  flex-wrap: wrap;
}

.ndl-qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #d5d5d5;
  border-radius: 40px;
  overflow: hidden;
  background: #fff;
}

.ndl-qty input.qty {
  border: none !important;
  width: 46px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  background: transparent;
  -moz-appearance: textfield;
}

.ndl-qty input.qty::-webkit-outer-spin-button,
.ndl-qty input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.ndl-qty-btn {
  border: none;
  background: transparent;
  font-size: 18px;
  width: 40px;
  height: 46px;
  cursor: pointer;
  color: var(--text-strong);
  line-height: 1;
}

.ndl-qty-btn:hover {
  color: var(--brand-pink);
}

.single-product div.product form.cart .woocommerce-variation-add-to-cart,
.single-product div.product form.cart:not(.variations_form) {
  align-items: center;
}

.ndl-qty {
  height: 52px;
}

.single-product div.product form.cart .single_add_to_cart_button {
  flex: 1;
  min-width: 200px;
  height: 52px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  line-height: 1 !important;
  background: var(--brand-pink) !important;
  color: #fff !important;
  border-radius: 40px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 30px !important;
  margin: 0 !important;
  box-shadow: 0 6px 18px rgba(236, 0, 140, 0.28) !important;
  transition: all 0.2s ease;
}

.single-product div.product form.cart .single_add_to_cart_button:hover {
  background: #c20074 !important;
  box-shadow: 0 8px 22px rgba(236, 0, 140, 0.35) !important;
}

/* Buy Now: full-width pill under the row, in the same beige-brown as the
   product title (--text-strong). White on it measures 5.85:1, past AA. */
.ndl-buy-now {
  flex: 1 1 100%;
  width: 100%;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--text-strong);
  color: #fff;
  border: none;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 2px;
  transition: all 0.2s ease;
}

.ndl-buy-now:hover {
  background: #634e3a;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* hide the variation "Clear" link (a default is always selected) */
.single-product div.product .reset_variations {
  display: none !important;
}

/* trust block */
.ndl-single-trust {
  margin-top: 18px;
}

.ndl-trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  font-size: 13.5px;
  font-weight: 500;
  color: #1e7a46;
  margin: 0 0 14px;
}

.ndl-trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ndl-offer-box {
  border: 1.5px dashed var(--brand-pink);
  background: rgba(236, 0, 140, 0.05);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13.5px;
  color: var(--text-body);
  margin-bottom: 14px;
}

.ndl-offer-box strong {
  color: var(--brand-pink);
}

.ndl-code {
  background: #fff;
  border: 1px solid var(--brand-pink);
  color: var(--brand-pink);
  font-weight: 700;
  border-radius: 6px;
  padding: 1px 8px;
  letter-spacing: 0.05em;
}

.ndl-delivery-line {
  font-size: 13.5px;
  color: var(--text-body);
  margin: 0 0 14px;
}

.ndl-pay-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  border-top: 1px solid #f0ede8;
  padding-top: 14px;
}

.ndl-pay-label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-right: 4px;
}

.ndl-pay-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ndl-pay-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #e3e0da;
  border-radius: 7px;
  background: #fff;
  height: 30px;
  padding: 0 10px;
}

.ndl-pay-chip svg {
  display: block;
  flex: 0 0 auto;
}

.ndl-pm-visa {
  font-style: italic;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #1a1f71;
  font-family: Arial, sans-serif;
}

.ndl-pm-upi {
  font-weight: 800;
  font-size: 12.5px;
  color: var(--text-body);
  font-family: Arial, sans-serif;
}

.ndl-pm-rupay {
  font-weight: 800;
  font-style: italic;
  font-size: 12.5px;
  color: #1b3281;
  font-family: Arial, sans-serif;
}

.ndl-pm-rupay em {
  font-style: italic;
  color: #f5821f;
}

.ndl-pm-text {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-body);
}

/* meta */
.single-product div.product .product_meta {
  font-size: 12.5px;
  color: var(--text-muted);
  border-top: 1px solid #f0ede8;
  margin-top: 18px;
  padding-top: 14px;
}

.single-product div.product .product_meta a {
  color: var(--text-body);
}

/* accordions */
.ndl-accordions {
  margin-top: 10px;
}

.ndl-accordions > details {
  border-bottom: 1px solid #eae6e0;
}

.ndl-accordions > details:first-child {
  border-top: 1px solid #eae6e0;
}

.ndl-accordions > details > summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 2px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-strong);
}

.ndl-accordions > details > summary::-webkit-details-marker {
  display: none;
}

.ndl-accordions > details > summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}

.ndl-accordions > details[open] > summary::after {
  content: '\2212';
}

.ndl-acc-body {
  padding: 0 2px 16px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-body);
}

.ndl-acc-body ul {
  padding-left: 18px;
}

.ndl-stylist {
  margin: 16px 0 0;
  font-size: 13.5px;
}

.ndl-stylist a {
  color: #1e7a46;
  font-weight: 500;
  text-decoration: none;
}

.ndl-stylist a:hover {
  text-decoration: underline;
}

/* related products heading */
.single-product .related.products > h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  /* thumbnails back to a horizontal row under the image */
  .single-product div.product div.woocommerce-product-gallery {
    flex-direction: column;
  }

  .woocommerce div.product div.images .flex-control-thumbs,
  .single-product div.product .woocommerce-product-gallery ol.flex-control-thumbs {
    order: 2;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 auto;
  }

  .woocommerce div.product div.images .flex-control-thumbs li,
  .single-product div.product .woocommerce-product-gallery ol.flex-control-thumbs li {
    width: 68px !important;
  }

  .single-product div.product .product_title {
    font-size: 21px;
  }

  /* related / suggestion products in 2 columns */
  .single-product .related.products ul.products,
  .single-product .up-sells ul.products,
  .woocommerce-cart .cross-sells ul.products {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 20px 12px;
    margin: 0;
    padding: 0;
  }

  .single-product .related.products ul.products li.product,
  .single-product .up-sells ul.products li.product,
  .woocommerce-cart .cross-sells ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
  }

  .single-product div.product p.price ins,
  .single-product div.product p.price > .amount {
    font-size: 22px;
  }

  .single-product div.product form.cart .single_add_to_cart_button {
    min-width: 160px;
  }
}

/* ---------- Checkout ---------- */
.woocommerce-checkout .woocommerce h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.woocommerce-checkout .woocommerce .form-row input.input-text,
.woocommerce-checkout .woocommerce .form-row textarea,
.woocommerce-checkout .woocommerce .form-row select,
.woocommerce-checkout .select2-container--default .select2-selection--single {
  border: 1px solid #ddd4c8;
  border-radius: 8px;
  padding: 11px 14px;
  background: #fff;
  height: auto;
}

.woocommerce-checkout .woocommerce .form-row input.input-text:focus,
.woocommerce-checkout .woocommerce .form-row textarea:focus {
  outline: none;
  border-color: var(--brand-pink);
  box-shadow: 0 0 0 3px rgba(236, 0, 140, 0.12);
}

/* order review panel */
.woocommerce-checkout .woocommerce-checkout-review-order {
  background: #faf8f5;
  border: 1px solid #eee7dd;
  border-radius: 14px;
  padding: 24px 26px;
}

.woocommerce-checkout table.shop_table {
  border: none;
  margin: 0;
}

.woocommerce-checkout table.shop_table th,
.woocommerce-checkout table.shop_table td {
  border: none;
  border-bottom: 1px solid #eee7dd;
  padding: 12px 4px;
  vertical-align: middle;
}

.woocommerce-checkout table.shop_table tfoot .order-total td,
.woocommerce-checkout table.shop_table tfoot .order-total th {
  border-bottom: none;
  font-size: 17px;
}

/* line item with thumb + remove */
.ndl-co-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ndl-co-thumb img {
  width: 52px;
  height: 76px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.ndl-co-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 14px;
  line-height: 1.45;
}

.ndl-co-remove {
  font-size: 12px;
  font-weight: 500;
  color: #b3261e !important;
  text-decoration: underline;
  text-underline-offset: 2px;
  width: fit-content;
}

.ndl-co-remove:hover {
  color: #8c1d17 !important;
}

.woocommerce-checkout table.shop_table dl.variation {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--text-muted);
}

.woocommerce-checkout table.shop_table dl.variation dt,
.woocommerce-checkout table.shop_table dl.variation dd {
  margin: 0;
  display: inline;
}

/* place order button */
.woocommerce-checkout #place_order {
  width: 100%;
  background: var(--brand-pink) !important;
  color: #fff !important;
  border-radius: 40px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 30px !important;
  box-shadow: 0 6px 18px rgba(236, 0, 140, 0.28) !important;
  transition: all 0.2s ease;
}

.woocommerce-checkout #place_order:hover {
  background: #c20074 !important;
}

/* coupon + login toggles: keep the pink accent, warm the cool grey fill */
.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info,
.woocommerce-checkout .woocommerce-info {
  border-top-color: var(--brand-pink);
  border-left-color: var(--brand-pink);
  background-color: var(--band-cream);
}

/* payment section: warm the cool blue-grey Woo defaults to cream.
   This checkout uses .woocommerce-checkout-payment (no #payment id); the
   "Cash on delivery" bar is a bare <label> painted with Kadence palette7.
   The pink Place Order button and its shadow are untouched. */
.woocommerce-checkout .woocommerce-checkout-payment,
.woocommerce-checkout .woocommerce-checkout-payment ul.payment_methods,
.woocommerce-checkout .woocommerce-checkout-payment ul.payment_methods li,
.woocommerce-checkout .woocommerce-checkout-payment ul.payment_methods li label,
.woocommerce-checkout .woocommerce-checkout-payment div.payment_box,
.woocommerce-checkout .woocommerce-terms-and-conditions {
  background-color: var(--band-cream) !important;
}

.woocommerce-checkout .woocommerce-checkout-payment div.payment_box::before {
  border-bottom-color: var(--band-cream) !important;
}

@media (max-width: 768px) {
  .woocommerce-checkout .woocommerce-checkout-review-order {
    padding: 18px 16px;
  }
}

/* ---------- Footer ---------- */
.ndl-footer {
  background: #fff;
  border-top: 1px solid #e8e4df;
  font-size: 15px;
}

.ndl-footer-main {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 56px 40px 150px;
  overflow: hidden;
}

.ndl-footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.4fr 1.8fr 1.2fr;
  gap: 40px;
}

.ndl-footer-check {
  display: none;
}

.ndl-footer-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-strong);
  margin-bottom: 18px;
}

.ndl-footer-plus {
  display: none;
}

.ndl-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ndl-footer-links li {
  margin: 0 0 12px;
}

.ndl-footer-links a,
.ndl-footer-service a {
  color: var(--text-strong);
  text-decoration: none;
}

.ndl-footer-links a:hover,
.ndl-footer-service a:hover {
  color: var(--brand-pink);
}

.ndl-footer-service p {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0 0 14px;
  color: var(--text-strong);
}

.ndl-footer-service-title {
  font-weight: 500;
}

.ndl-ico {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--text-strong);
}

.ndl-ico svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ndl-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ndl-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #d95f80;
  color: #fff;
  transition: background 0.25s ease, transform 0.25s ease;
}

.ndl-footer-social a:hover {
  background: var(--brand-pink);
  transform: translateY(-3px);
}

.ndl-footer-social svg {
  width: 20px;
  height: 20px;
}

/* decorative line art */
.ndl-footer-art .ndl-art {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}

.ndl-art-paisley  { width: 110px; left: 34%; bottom: 8px; }
.ndl-art-lotus    { width: 150px; left: 58%; bottom: 6px; }
.ndl-art-butterfly{ width: 80px;  right: 16%; bottom: 120px; }
.ndl-art-ladybug  { width: 170px; right: 4%; bottom: 26px; }
.ndl-art-fern-l   { width: 80px;  left: 6px;  bottom: 0; }
.ndl-art-fern-r   { width: 80px;  right: 6px; bottom: 0; }

.ndl-footer-bottom {
  border-top: 1px solid #e8e4df;
  text-align: center;
  padding: 18px 20px;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--text-strong);
  background: #fff;
}

/* floating WhatsApp button */
.ndl-wa-btn {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 18px 0 14px;
  border-radius: 26px;
  background: #25d366;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ndl-wa-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  color: #fff !important;
}

.ndl-wa-btn svg {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
}

.ndl-wa-label {
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

/* collapse to a circle on small screens so it never covers content */
@media (max-width: 600px) {
  .ndl-wa-btn {
    width: 52px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .ndl-wa-label {
    display: none;
  }
}

/* footer mobile accordion */
@media (max-width: 900px) {
  .ndl-footer-main {
    background: #f1f0ee;
    padding: 24px 24px 190px;
    max-width: none;
  }

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

  .ndl-footer-col {
    border-bottom: 1px solid #dedbd6;
  }

  .ndl-footer-col:last-child {
    border-bottom: none;
  }

  .ndl-footer-heading {
    margin: 0;
    padding: 18px 2px;
    cursor: pointer;
  }

  .ndl-footer-plus {
    display: block;
    position: relative;
    width: 16px;
    height: 16px;
  }

  .ndl-footer-plus::before,
  .ndl-footer-plus::after {
    content: '';
    position: absolute;
    background: #3a2a19;
    transition: transform 0.25s ease;
  }

  .ndl-footer-plus::before {
    left: 0;
    top: 7px;
    width: 16px;
    height: 2px;
  }

  .ndl-footer-plus::after {
    left: 7px;
    top: 0;
    width: 2px;
    height: 16px;
  }

  .ndl-footer-check:checked ~ .ndl-footer-heading .ndl-footer-plus::after {
    transform: scaleY(0);
  }

  .ndl-footer-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .ndl-footer-check:checked ~ .ndl-footer-panel {
    max-height: 600px;
    padding-bottom: 16px;
  }

  .ndl-art-paisley   { left: 40%; bottom: 130px; width: 80px; }
  .ndl-art-lotus     { left: auto; right: 12%; bottom: 10px; width: 120px; }
  .ndl-art-butterfly { right: auto; left: 20%; bottom: 100px; width: 60px; }
  .ndl-art-ladybug   { right: 2%; bottom: 120px; width: 120px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .ndl-section {
    padding: 48px 16px;
  }

  .ndl-hero h1 {
    font-size: 36px !important;
  }
}

/* ---------- WooCommerce blocks cart: brand styling ---------- */

/* Proceed to Checkout: same pink pill as Add to Cart / Place Order */
.wc-block-cart .wc-block-cart__submit-button {
  background: var(--brand-pink) !important;
  border: none !important;
  color: #fff !important;
  border-radius: 40px !important;
  min-height: 52px;
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(236, 0, 140, 0.28);
  transition: all 0.2s ease;
}

.wc-block-cart .wc-block-cart__submit-button:hover {
  background: #c20074 !important;
  box-shadow: 0 8px 22px rgba(236, 0, 140, 0.35);
}

/* "Save ₹X" badges in line items and totals: light pink chip */
.wc-block-cart .wc-block-components-sale-badge {
  background: rgba(236, 0, 140, 0.06);
  border: 1px solid var(--brand-pink);
  color: #c20074;
  border-radius: 6px;
  font-weight: 600;
}

/* Coupon link + focus states: pink instead of Woo blue */
.wc-block-cart .wc-block-components-totals-coupon-link,
.wc-block-cart .wc-block-components-product-name {
  color: inherit;
}

.wc-block-cart .wc-block-components-totals-coupon-link:hover,
.wc-block-cart .wc-block-components-product-name:hover {
  color: var(--brand-pink);
}

/* Empty cart: tint the icon only (it's a masked ::before filled with currentColor) */
.wc-block-cart__empty-cart__title.with-empty-cart-icon::before {
  background-color: var(--brand-pink);
}

/* SALE ribbons on the "New in Store" grid (legacy grid block): pink like archives */
.wc-block-grid__product-onsale {
  background: var(--brand-pink) !important;
  border: none !important;
  color: #fff !important;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 12px;
}

/* Trust strip under Proceed to Checkout / Place Order */
.ndl-checkout-trust {
  margin-top: 16px;
}

.ndl-checkout-trust .ndl-trust-line {
  justify-content: center;
  margin-bottom: 10px;
}

.ndl-checkout-trust .ndl-pay-row {
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border-top: 1px solid #f0ede8;
  padding-top: 12px;
}

.ndl-checkout-trust .ndl-pay-label {
  margin-right: 0;
}

.ndl-checkout-trust .ndl-pay-chips {
  justify-content: center;
}

/* ---------- Warm page backgrounds (Laad & Loom palette) ----------
   Kadence's default canvas is a cool blue-grey (#F7FAFC / palette8).
   These warm every page's base to an off-white cream while keeping
   content cards white for contrast, matching the reference site. */

html body,
body.wp-site-blocks {
  background-color: var(--page-canvas);
}

/* Kadence page-title hero band (Cart / Checkout / My Account / policies).
   The inner container uses Kadence palette7 (#EDF2F7, cool grey) via inline
   CSS; override it with a higher-specificity selector so the band matches
   the warm canvas. */
.wp-site-blocks .entry-hero,
.wp-site-blocks .entry-hero-container-inner,
.wp-block-kadence-hero {
  background-color: var(--page-canvas) !important;
}

/* WooCommerce blocks cart/checkout wrappers sit on the canvas too. */
.woocommerce-cart .entry-content-wrap,
.woocommerce-checkout .entry-content-wrap {
  background-color: transparent;
}

/* Footer: blend into the warm canvas instead of a hard white block. */
.ndl-footer {
  background: var(--page-canvas);
}

/* Mobile filter drawer: warm cream instead of cool grey. */
@media (max-width: 992px) {
  .ndl-filter-item .primary-sidebar,
  aside.primary-sidebar.ndl-open {
    background: var(--page-canvas);
  }
}

/* Branded order-tracking timeline (thank-you page + My Account > View Order). */
.ndl-order-tracking {
  margin: 30px 0;
  padding: 24px;
  background: var(--band-cream);
  border-radius: 8px;
}

.ndl-order-tracking h2 {
  margin: 0 0 20px;
  font-size: 20px;
  color: var(--text-strong);
}

.ndl-tracking-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.ndl-tracking-timeline::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: var(--band-tan);
  z-index: 0;
}

.ndl-tracking-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
}

.ndl-tracking-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--band-tan);
  margin-bottom: 8px;
}

.ndl-tracking-step.ndl-step-done .ndl-tracking-dot {
  background: #ec008c;
  border-color: #ec008c;
}

.ndl-tracking-label {
  font-size: 13px;
  color: var(--text-body);
}

.ndl-tracking-step.ndl-step-done .ndl-tracking-label {
  color: var(--text-strong);
  font-weight: 600;
}

.ndl-tracking-details {
  margin: 20px 0 0;
  font-size: 14px;
  color: var(--text-body);
}

.ndl-tracking-details a {
  color: #ec008c;
}

@media (max-width: 600px) {
  .ndl-tracking-label {
    font-size: 11px;
  }
}

/* myCred loyalty widget launcher.
   WooCommerce's `.woocommerce img{max-width:100%;height:auto}` outranks the
   widget's MUI emotion class, so on shop/product pages the 512px source logo
   renders at full size. 24px matches how the launcher renders off Woo pages. */
#mycred-loyalty-widget-root img[alt="Logo"] {
  width: 24px !important;
  height: 24px !important;
  max-width: 100px !important;
  object-fit: contain !important;
}

/* Collection pages on mobile: Kadence's container reserves 24px each side,
   which is wasted margin next to a 2-column grid. Trimming to 12px gives the
   cards ~12px more width each. Scoped to product archives so ordinary page
   text keeps its comfortable reading margin. */
@media (max-width: 768px) {
  body.post-type-archive-product .content-container.site-container,
  body.tax-product_cat .content-container.site-container,
  body.woocommerce-shop .content-container.site-container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  /* Kadence insets the card's text block by 8.5px margin + 16px padding a side,
     leaving the title only ~74% of the card. On a 188px mobile card that costs
     more than it buys, so run the text near the card edge instead. */
  .woocommerce ul.products li.product .product-details {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
}
