/** Shopify CDN: Minification failed

Line 1679:78 Unexpected "{"
Line 1679:87 Expected ":"
Line 1679:94 Unexpected "{"

**/
:root {
  /* === Color System === */
  --color-brand-accent: #ba8a7f;
  --color-accent-dark: #b18c85;
  --color-brand-secondary: #594951;
  --color-bg-ivory: #fff9f8;
  --color-bg-white: #ffffff;
  --color-text-primary: #2f2f2f;
  --color-text-body: #3b3b3b;
  --color-text-muted: #7b7b7b;
  --color-border-sand: rgb(235, 235, 235);

  /* === Alert Colors === */
  --color-error-bg: #fde8e8;
  --color-error-border: #eac6c6;
  --color-error-text: #a13d3d;
  --color-warning-bg: #fff8e1;
  --color-warning-border: #ffecb3;
  --color-warning-text: #8d6e00;

  /* === Typography === */
  --font-family-heading: 'Cormorant Garamond', serif;
  --font-family-body: 'Nunito', sans-serif;

  --fs-h1: clamp(2.4rem, 5vw + 1rem, 3.4rem);
  --fs-h2: clamp(1.9rem, 4vw + 1rem, 2.6rem);
  --fs-h3: clamp(1.5rem, 3vw + 0.8rem, 1.9rem);
  --fs-body: clamp(1rem, 1vw + 0.75rem, 1.125rem);
  --fs-small: clamp(0.875rem, 0.5vw + 0.5rem, 0.95rem);

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  --line-height-body: 1.6;
  --line-height-heading: 1.25;

  /* === Spacing === */
  --space-s: clamp(0.75rem, 1vw + 0.5rem, 1rem);
  --space-m: clamp(1.25rem, 2vw + 0.75rem, 1.75rem);
  --space-l: clamp(2rem, 4vw + 1rem, 3rem);
  --space-xl: clamp(3rem, 5vw + 1.5rem, 4.5rem);
  /* Added for footer usage */

  --radius-card: 8px;
  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.05);
  /* Added definition used in code */
  --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.08);
  --transition-base: all 0.3s ease;

  --container-max: 1200px;
  --container-padding: var(--space-s);
}


/* ==================================================
   🪶 GLOBAL RESET
   ================================================== */
html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: var(--font-family-body);
  background-color: var(--color-bg-ivory);
  background: var(--color-bg-ivory);
  line-height: var(--line-height-body);
  font-size: 16px;
  color: var(--color-text-body);
  letter-spacing: 0.3px;
  -webkit-font-smoothing: antialiased;

}

.global-media-settings {
  border-radius: var(--radius-card);
}

.color-background-1,
.gradient {
  background-color: #ffffff;
  background-image: none;
}

.rte p,
.rte li {
  font-family: var(--font-family-body);
  line-height: var(--line-height-body);
  font-size: 15px;
  margin: 0px;
  max-width: 65ch;
  color: var(--color-text-body);
}

/* === 🪶 TYPOGRAPHY SYSTEM === */
body,
.text-body,
p,
a,
span,
div,
li,
input,
textarea,
select {
  font-family: var(--font-family-body);
  letter-spacing: 0.01em;
  font-size: 15px;
}

/* === Headings === */
h1,
h2,
h3 {
  font-family: var(--font-family-heading);
  line-height: var(--line-height-heading);
  letter-spacing: 0.02em;

}

h1 {
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
}

h2 {
  font-size: var(--fs-h2);
  font-weight: var(--fw-semibold);
}

h3,
h4,
h5,
h6 {
  font-size: var(--fs-h3);
  font-weight: var(--fw-regular);
}

.page-width,
.container {
  max-width: var(--container-max);
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  margin: 0 auto;
}




/* 🔹 Universal section padding (EXCLUDES header and announcement bar) */

.badge-section,
.footer__content-top {
  padding-top: var(--space-s);
  padding-bottom: var(--space-s);
}

.footer {
  padding-top: var(--space-l);
  padding-bottom: var(--space-l);
  background-color: #F7EAE3;
}

.shopify-section-group-header-group,
.announcement-bar-section,
header,
.top-info-bar,
.top-info-bar1 {
  padding-top: 0 !important;
  padding-bottom: 0px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.top-info-bar,
.top-info-bar1 {
  padding-bottom: 0 !important;
}

/* ==================================================
   🌅 HERO / IMAGE BANNER
   ================================================== */
.image-banner,
.banner,
.hero {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background-color: #f2eceb;
}

.image-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.1) 100%);
  opacity: 0.3;
  pointer-events: none;
  /* Allows clicking through the overlay */
}

.banner__content,
.image-banner__content {
  position: absolute;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--color-bg-white);

}

.banner__heading,
.image-banner__heading {
  font-family: var(--font-family-heading);
  font-size: var(--fs-h1);
  font-weight: var(--fw-medium);
  color: var(--color-bg-white);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

/* FIXED: Typo .image-banner__tex -> .image-banner__text */
.banner__text,
.image-banner__text,
div.banner_text.rte.subtitle {
  font-size: var(--fs-body);
  margin-top: var(--space-s);
  color: var(--color-bg-white);
  text-align: left;
}


.image-banner__buttons .button {
  margin-top: var(--space-m);
}


/* ==================================================
   🛍 PRODUCT CARD STYLING
   ================================================== */


.full-unstyled-link {
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* ===============================
   🌷 Product Description Preview
   =============================== */
.description-preview {
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 120px;
  transition: max-height 0.8s ease;
}

.description-preview.expanded {
  -webkit-line-clamp: unset;
  max-height: 1000px;
}

.description-preview::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0px;
  /* Check JS - if this should be visible, height needs to be >0px e.g. 40px */

  pointer-events: none;
  transition: opacity 0.3s ease;
}

.description-preview.expanded::after {
  opacity: 0;
}

/* ===============================
   🌼 "Show More" / "Show Less" Button
   =============================== */
#toggleDescBtn,
.button#toggleDescBtn {
  font-family: var(--font-family-body);
  font-weight: 600;
  font-size: 16px;
  color: #ba8a7f;
  background: transparent;
  border: none;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s ease;
  margin-left: -5px;
  letter-spacing: 0px;

  opacity: 0.9;
  /* FIXED: Added semicolon */
}

#toggleDescBtn::after {
  content: " ‌⇓";
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;

  transition: transform 0.3s ease, opacity 0.3s ease;
}


/* ==================================================
 * === V3.1 Testimonials (Third-Party App) Styling ===
 * ==================================================
*/


div.VtlsTestimonialBlock__Content {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border-sand);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.VtlsTestimonialBlock:hover div.VtlsTestimonialBlock__Content {
  box-shadow: var(--shadow-hover) !important;
  transform: translateY(-4px);
}

.VtlsTestimonialBlockStarShape svg path {
  fill: var(--color-brand-accent) !important;
}

vtls-expandable-text-testimonials.VtlsTestimonialBlockText {
  font-family: var(--font-family-body) !important;
  font-style: italic;
  color: var(--color-text-body) !important;
  line-height: var(--line-height-body);
  font-weight: var(--fw-regular);
  font-size: var(--fs-small);
}

div.VtlsTestimonialBlockAuthor__AuthorName {
  font-family: var(--font-family-body) !important;
  font-weight: var(--fw-semibold);
  font-size: var(--fs-small) !important;
  color: var(--color-text-primary) !important;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}





/* Mobile-first: Default styles for mobile */
/* --- UPDATED TRUST SIGNALS (Mobile & Desktop Balanced) --- */
/* ==================================================
   MOBILE TRUST SIGNALS (FINAL & CLEAN)
   Target: Mobile only (max-width: 767px)
   Result: Compact Rows, Icon Left, Text Right
   ================================================== */




/* =========================
   BUTTON SYSTEM
   ========================= */
.button,
.shopify-payment-button__button,
input[type="submit"],
button[type="submit"],
.cart__checkout-button,
.product-form__submit {
  background-color: var(--color-brand-accent, #ba8a7f);
  color: var(--color-bg-white, #ffffff);
  border: none;
  border-radius: var(--radius-card, 12px);
  padding: var(--space-s, 0.75rem) var(--space-m, 1.25rem);
  font-family: var(--font-family-body, 'Nunito', sans-serif);
  font-weight: var(--fw-semibold, 600);
  font-size: var(--fs-body, 1rem);
  transition: var(--transition-base, all 0.3s ease);
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0.3px;
}

.button:hover,
.shopify-payment-button__button:hover,
input[type="submit"]:hover,
button[type="submit"]:hover,
.cart__checkout-button:hover,
.product-form__submit:hover {
  background-color: var(--color-accent-dark, #b18c85);
  box-shadow: var(--shadow-hover, 0 8px 25px rgba(0, 0, 0, 0.08));
  transform: translateY(-2px);
}

.button:active,
.shopify-payment-button__button:active,
input[type="submit"]:active,
button[type="submit"]:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.button:disabled,
.button[disabled],
input[type="submit"]:disabled,
button[type="submit"]:disabled {
  background-color: #EDE6E4;
  color: #9b9b9b;
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* === Secondary Button === */
button.button.button--secondary {
  background-color: transparent;
  color: var(--color-brand-accent, #ba8a7f);
  border: 2px solid var(--color-brand-accent, #ba8a7f);
  border-radius: var(--radius-card, 12px) !important;
  padding: calc(var(--space-s, 0.75rem) - 2px) calc(var(--space-m, 1.25rem) - 2px);
  font-family: var(--font-family-body, 'Nunito', sans-serif);
  font-weight: var(--fw-semibold, 600);
  font-size: var(--fs-body, 1rem);
  transition: var(--transition-base, all 0.3s ease);
  cursor: pointer;
  letter-spacing: 0.3px;
  margin-top: var(--space-s);
  /* consolidated */
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  /* consolidated */
}

button.button.button--secondary:hover {
  background-color: var(--color-brand-accent, #ba8a7f);
  color: var(--color-bg-white, #ffffff);
  border-color: var(--color-brand-accent, #ba8a7f);
  box-shadow: var(--shadow-hover, 0 8px 25px rgba(0, 0, 0, 0.08));
  transform: translateY(-2px);
}

button.button.button--secondary:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

button.button.button--secondary:disabled,
button.button.button--secondary[disabled] {
  background-color: transparent;
  color: var(--color-text-muted, #555555);
  border-color: var(--color-text-muted, #555555);
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.star-rating {
  color: #f6c100;
  font-size: 12px;
}

.top-info-bar1,
.info-item1 {
  font-size: 10px;
}

/* === Top info bar === */
.top-info-bar1 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  padding: 8px 0;
  flex-wrap: wrap;
}

.top-info-bar1,
.info-item1 {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text-muted);
  font-family: var(--font-family-body);
  font-weight: var(--fw-regular);
  font-size: 10px;
}

@media (max-width: 768px) {
  .top-info-bar1 {
    font-size: 10px;
  }
}

/* --- Header/Cart --- */
.header-wrapper {
  box-shadow: 0px 7px 13px -11px;
  position: relative;
  z-index: 20;
  background: #fff;
}

.cart__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.cart__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 20px;
}

.cart__checkout-button {
  width: 100%;
  max-width: 300px;
  border-radius: 20px;
  background-color: var(--color-brand-accent, #d8aba0);
  color: #fff;
  text-align: center;
  font-weight: 600;
  padding: 12px 0;
  font-size: 16px !important;
}

.cart__checkout-button:hover {
  background-color: var(--color-accent-dark, #c79b91);
}

.cart__blocks {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}





.utility-bar {
  background: #b48c85 !important;
  max-width: 100%;
  width: 100%;
}

.icon_icon-caret {
  display: none;
}

/* MOBILE TESTIMONIAL UPDATE: MAGAZINE OVERLAY (REFINED) */
@media screen and (max-width: 767px) {
  .VtlsCarousel {
    padding-bottom: 0 !important;
    /* This pulls the next section upwards. 
         If space remains, increase to -80px or -100px */
    margin-bottom: -100px !important;
    min-height: 0 !important;
  }

  /* 1. Constrain the Image Height */
  .VtlsTestimonialBlock__Media {
    height: 320px !important;
    overflow: hidden !important;
    border-radius: 12px 12px 0 0;
  }

  .VtlsTestimonialBlock__Media img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
  }

  /* 2. Pull the Text Box Up & Fix Spacing */
  .VtlsTestimonialBlock__Content {
    position: relative;
    z-index: 2;

    /* Positioning: Pulls box up over image */
    margin-top: -50px !important;
    width: 90% !important;
    margin-left: auto !important;
    margin-right: auto !important;

    /* Visual Polish */
    background-color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid var(--color-border-sand, #e5e5e5) !important;
    /* Fallback color added */
    border-radius: 8px !important;
    /* Adds slight curve to text box corners */

    /* --- SPACING ADJUSTMENTS --- */
    height: auto !important;
    /* Forces box to shrink to fit text */
    min-height: unset !important;
    /* Removes any minimum height forcing gaps */
    padding: 1.5rem !important;

    /* Flexbox to control gap between Stars, Text, and Author */
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 0.75rem !important;
  }

  /* 3. Text Clean up */
  .VtlsTestimonialBlockText {
    margin-bottom: 0 !important;
  }
}

/* ==================================================
   FOOTER BOTTOM: COMPACT & CLEAN
   ================================================== */
@media screen and (max-width: 767px) {

  /* 1. Tighten the Container */
  .footer__content-bottom {
    padding-top: 20px !important;
    padding-bottom: 30px !important;
    border-top: 1px solid rgba(186, 138, 127, 0.15) !important;
    /* Subtle rose gold line separator */
  }

  .footer__content-bottom-wrapper {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 15px !important;
    /* Space between Social icons and Copyright */
  }

  /* 2. Fix the Policy Links (Privacy, Terms, etc.) */
  /* This forces the vertical list to become a horizontal cluster */
  .footer__content-bottom .policies,
  .footer__content-bottom ul {
    display: flex !important;
    flex-wrap: wrap !important;
    /* Allows items to wrap nicely to the next line */
    justify-content: center !important;
    align-items: center !important;
    gap: 10px 15px !important;
    /* 10px vertical gap, 15px horizontal gap */
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }

  /* 3. Target the specific list items */
  .footer__content-bottom li {
    display: inline-block !important;
    width: auto !important;
    /* Stops them from taking full width */
    margin: 0 !important;
    padding: 0;
  }

  /* 4. Style the Links (Make them neat and accessible) */
  .footer__content-bottom a {
    font-family: 'Nunito', sans-serif !important;
    font-size: 13px !important;
    /* Increased for readability */
    color: #555555 !important;
    text-transform: capitalize !important;
    /* Easier to read than uppercase */
    letter-spacing: 0.3px !important;
    text-decoration: none !important;
    opacity: 1;
    padding: 8px 10px !important;
    /* Larger tap targets */
    display: inline-block !important;
    /* Required for padding to work */
  }

  /* 5. Hide those awkward stacking dots */
  /* If the dots are created by pseudo-elements, this hides them */
  .footer__content-bottom li::before,
  .footer__content-bottom li::after {
    display: none !important;
  }

  /* 6. Copyright Text Polish */
  .footer__copyright {
    margin-top: 0 !important;
    font-size: 12px !important;
    color: #594951 !important;
    /* Your brand secondary color */
    padding: 0;
  }
}

/* ==================================================
   FOOTER: TIGHTEN VERTICAL GAPS
   ================================================== */
@media screen and (max-width: 767px) {
  .footer__content-top {
    padding-bottom: 0 !important;
    /* Reduces space below the main links */
  }

  .footer__list-social {
    margin-bottom: 15px !important;
    /* Pulls the divider line closer to icons */
    padding: 0;
  }

  .footer__content-bottom {
    padding-top: 15px !important;
    /* Pulls the copyright closer to the line */
    padding: 0;
  }
}

/* ---------------------------
  Mobile fixes for Add-ons
  Paste at the END of your mobile CSS
  
  --------------------------- */
[data-essential-upsell-element="products"] {
  display: flex !important;

  gap: 1px !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
  padding: 0px !important;
  scroll-snap-type: x mandatory !important;
  scrollbar-width: none !important;
}

@media screen and (max-width: 767px) {

  /* Ensure slide container stays horizontal and scrollable */
  [data-essential-upsell-element="products"] {
    display: flex !important;

    gap: 1px !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 0px !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
  }
}

[data-essential-upsell-element="products"]::-webkit-scrollbar {
  display: none;
}

/* Slide wrapper: fixed slot so cards align nicely */
[data-essential-upsell-element="products"]>div[role="group"] {
  flex: 0 0 auto !important;

  width: 150px !important;
  /* adjust if you want wider/narrower cards */

  scroll-snap-align: start !important;
  padding: 10px 4px 20px 4px !important;
}

/* Card: column layout, full height, consistent padding */
[data-essential-upsell-element="product"] {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: stretch !important;
  height: auto !important;
  min-height: 190px !important;
  /* gives room for image+title+price+button */

  background: #fff !important;
  border-radius: 12px !important;
  border: 1px solid var(--color-border-sand) !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06) !important;
  position: relative !important;
  overflow: visible !important;
}

/* Image wrapper & image: keep image above background, no overlaps */
.x1lliihq.x1ghz6dp.x1717udv.xjb2p0i.x1pd3egz.x1qlqyl8.xggjnk3.x1hl2dhg.x1heor9g.xjbqb8w.x1wty727.x1b6ykf0.x1gnnqk1.x6mezaz.x14y7zgk.x9f619.x2lwn1j.x1peatla.x1fu8urw.x12oqio5.xb3r6kr.x2lah0s,
.x1lliihq.x1ghz6dp.x1717udv.xjb2p0i.x1pd3egz.x1qlqyl8.xggjnk3.x1hl2dhg.x1heor9g.xjbqb8w.x1wty727.x1b6ykf0.x1gnnqk1.x6mezaz.x14y7zgk.x9f619.x2lwn1j.x1peatla.x1fu8urw.x12oqio5.xb3r6kr.x2lah0s,
[data-essential-upsell-element="image"] img {
  display: block !important;
  width: 100% !important;
  height: 90px !important;
  object-fit: contain !important;
  margin: 0 0 0 0 !important;
  position: relative !important;
  z-index: 1 !important;
  background: transparent !important;
}

/* Title: ensure it sits under the image, allow up to 2 lines then ellipsis */
.xjb2p0i.x1pd3egz.xjbqb8w.x1wty727.x1b6ykf0.x1gnnqk1.x6mezaz.x14y7zgk.x9f619.x2lwn1j.x10rsq8x.xdi48bf.x1lliihq.x1fc57z9.xebhuq6.xb3r6kr.xlyipyv.x1hl2dhg.x13jbg0v.x19dipnz.x1psujx9.xm5k50t.x1cm8ssg.xze8r8f.x11qgsyj.x7s97pk {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  /* show max 2 lines */
  -webkit-box-orient: vertical !important;

  text-overflow: ellipsis !important;
  white-space: normal !important;
  font-size: 12px !important;
  line-height: normal !important;
  letter-spacing: 0px;

  margin: 0 0 6px 0 !important;
  z-index: 2 !important;
  background: transparent !important;


  color: #9d9b9d;
  overflow: hidden;

  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: 400;
  height: 31px !important;
}

.xjb2p0i.x1pd3egz.xjbqb8w.x1wty727.x1b6ykf0.x1gnnqk1.x6mezaz.x14y7zgk.x9f619.x2lwn1j.x10rsq8x.xdi48bf.x1lliihq.x1fc57z9.xebhuq6.xb3r6kr.xlyipyv.x1hl2dhg.x13jbg0v.x19dipnz.x1psujx9.xm5k50t.x1cm8ssg.xze8r8f.x11qgsyj.x7s97pk {
  pointer-events: none !important;
  cursor: default !important;
  text-decoration: none !important;
}

/* Price centered and tight spacing */
[data-essential-upsell-element="regular-price"] {
  font-size: 14px !important;
  font-weight: 800 !important;
  color: #ba8a7f !important;
  text-align: center !important;
  margin: 0 0 8px 0 !important;
}

/* Force button container to bottom of card */
[data-essential-upsell-element="button-container"] {
  margin-top: auto !important;
  /* pushes button down */
  width: 100% !important;
  padding-top: 8px !important;
}

/* Button: full width, readable label, no floating */
[data-essential-upsell-element="add-to-cart-button"],
button.x1ghz6dp.xjb2p0i.xggjnk3.x1hl2dhg.x1wty727.x1b6ykf0.x1gnnqk1.x6mezaz.x14y7zgk.x9f619.x2lwn1j.xdi48bf.x78zum5.x6s0dn4.xl56j7k.x17d4w8g.xs83m0k.x1iyjqo2.xk50ysn.x1uipwii.x1ypdohk.xezivpi.xq1mx2j.x13jbg0v.x19dipnz.x1psujx9.xm5k50t.x1cm8ssg.xze8r8f.x11qgsyj.x7s97pk,
.x1ghz6dp.x1717udv.xjb2p0i.x1pd3egz.x1qlqyl8.xggjnk3.x1hl2dhg.x1heor9g.xjbqb8w.x1wty727.x1b6ykf0.x1gnnqk1.x6mezaz.x14y7zgk.x9f619.x2lwn1j.xdi48bf.x78zum5.x6s0dn4.x2lah0s.x193iq5w.x1vff8rb.xezivpi.x1iyjqo2.x9df8bu.x1r8uery {

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  width: 100% !important;

  border-radius: 8px !important;

  box-shadow: 0 6px 10px rgba(186, 138, 127, 0.18) !important;
  background-color: var(--color-brand-accent) !important;
  color: #fff !important;
  transform: none !important;
  position: relative !important;
}

[data-essential-upsell-element="add-to-cart-button"],
button.x1ghz6dp.xjb2p0i.xggjnk3.x1hl2dhg.x1wty727.x1b6ykf0.x1gnnqk1.x6mezaz.x14y7zgk.x9f619.x2lwn1j.xdi48bf.x78zum5.x6s0dn4.xl56j7k.x17d4w8g.xs83m0k.x1iyjqo2.xk50ysn.x1uipwii.x1ypdohk.xezivpi.xq1mx2j.x13jbg0v.x19dipnz.x1psujx9.xm5k50t.x1cm8ssg.xze8r8f.x11qgsyj.x7s97pk,
.x1ghz6dp.x1717udv.xjb2p0i.x1pd3egz.x1qlqyl8.xggjnk3.x1hl2dhg.x1heor9g.xjbqb8w.x1wty727.x1b6ykf0.x1gnnqk1.x6mezaz.x14y7zgk.x9f619.x2lwn1j.xdi48bf.x78zum5.x6s0dn4.x2lah0s.x193iq5w.x1vff8rb.xezivpi.x1iyjqo2.x9df8bu.x1r8uery,
button.x1ghz6dp.xjb2p0i.xggjnk3.x1hl2dhg.x1wty727.x1b6ykf0.x1gnnqk1.x6mezaz.x14y7zgk.x9f619.x2lwn1j.xdi48bf.x78zum5.x6s0dn4.xl56j7k.x17d4w8g.xs83m0k.x1iyjqo2.xk50ysn.x1uipwii.x1ypdohk.xezivpi.xq1mx2j.x13jbg0v.x19dipnz.x1psujx9.xm5k50t.x1cm8ssg.xze8r8f.x11qgsyj.x7s97pk {

  max-width: 130px !important;
  width: 130px !important;
  min-height: 44px;
  text-align: center;
  padding: 12px 24px;

}

/* If any element was absolutely positioned before, neutralize it */
[data-essential-upsell-element="product"] * {
  position: static !important;
}

/* Safety: prevent title from overlapping when fonts load late */
[data-essential-upsell-element="image"]+[data-essential-upsell-element="title"],
[data-essential-upsell-element="title"]+[data-essential-upsell-element="regular-price"] {
  margin-top: 0 !important;
}



@media screen and (max-width: 767px) {

  /* FIX: Remove tall empty white space sa product image */
  [data-essential-upsell-element="image"],
  [data-essential-upsell-element="image"] img {
    width: 100% !important;
    height: auto !important;
    /* no fixed height */
    max-height: 85px !important;
    /* adjust: 70–100px */
    object-fit: contain !important;
    margin-bottom: 6px !important;

    display: block !important;
  }
}


/* Prevent horizontal shaking on mobile */
html,
body {
  overflow-x: hidden !important;
  position: relative;
}

svg.icon.icon-remove {
  color: #999999;
}

/* ==============================================
   🚀 CRO UPDATE: PRODUCT PAGE ADD-TO-CART
   Priority: High | Device: Mobile First
   ============================================== */

/* 1. BRAND COLORS (High Contrast) */
:root {
  --color-brand-accent: #9B5A4F !important;
  /* Rosewood: W3C Compliant Contrast */
  --color-accent-dark: #8C4E43 !important;
  /* Hover State */
}

/* 2. BUTTON DIMENSIONS & TYPOGRAPHY */
.product-form__submit,
.cart__checkout-button {
  width: 100% !important;
  /* Full width of container for max visibility */
  max-width: 400px;
  /* Prevents it from looking huge on desktop */
  height: 54px !important;
  /* Optimal touch target size (48px+) */
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  /* Boldest weight */
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  /* Increases urgency */
  border-radius: 10px !important;
  transition: none !important;
  /* Instant interaction, no lag */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
  /* Subtle lift */
}

/* --- ADD-ONS SECTION CLEANUP --- */

/* * MOD: Tighten the spacing and normalize typography for a cleaner, faster read.
 * Reduces the visual weight of the add-on title and clarifies its purpose.
 */
h3.inline-richtext {
  font-size: 14px !important;
  /* Smaller, less intrusive heading */
  color: var(--color-text-body) !important;
  margin-bottom: 8px !important;
}

/* * MOD: Ensure the add-on cards have sufficient separation and clear visual bounds
 * to distinguish them from the main product content. 
 */
[data-essential-upsell-element="products"] {
  gap: 10px !important;
  /* Increase gap between horizontally scrolling items */
  padding: 10px 0 !important;
}

/* * MOD: Enhance the visibility of the Add-on button itself.
 */
.x1ghz6dp.xjb2p0i.xggjnk3.x1hl2dhg.x1wty727.x1b6ykf0.x1gnnqk1.x6mezaz.x14y7zgk.x9f619.x2lwn1j.xdi48bf.x78zum5.x6s0dn4.xl56j7k.x17d4w8g.xs83m0k.x1iyjqo2.xk50ysn.x1uipwii.x1ypdohk.xezivpi.xq1mx2j.x13jbg0v.x19dipnz.x1psujx9.xm5k50t.x1cm8ssg.xze8r8f.x11qgsyj.x7s97pk {
  height: 38px !important;
  /* Reduced height for compactness */
  font-size: 12px !important;
  /* Smaller, focused text */
  padding: 6px 10px !important;
  border-radius: 6px !important;
   background-color: transparent !important;
  border: 1px solid #8B4513 !important; /* Brown border to match your theme */
  color: #8B4513 !important;
  font-weight: 400 !important;
  transition: all 0.3s ease;
}

/* ==============================================
   💎 CRO UPDATE: PREMIUM SVG TOGGLE
   Style: Text Link + SVG Chevron Icon
   ============================================== */

#toggleDescBtn,
.button#toggleDescBtn {
  /* 1. TEXT STYLING */
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin-top: 12px !important;

  color: var(--color-brand-accent) !important;
  font-family: var(--font-family-body) !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  text-transform: capitalize !important;

  /* Editorial Underline Style */
  text-decoration: underline !important;
  text-underline-offset: 4px !important;
  text-decoration-thickness: 1.5px !important;

  /* Flexbox para pantay ang Text at Icon */
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  /* Space between text and arrow */
  cursor: pointer !important;
}

/* 2. THE SVG ICON (Encoded in CSS) */
#toggleDescBtn::after {
  content: "" !important;
  display: block !important;
  width: 12px !important;
  height: 12px !important;

  /* SVG Code: Chevron Down (Color: #9B5A4F) */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%239B5A4F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") !important;

  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;

  /* Animation setup */
  transition: transform 0.2s ease !important;
}

/* 3. MICRO-INTERACTION (Hover Animation) */
#toggleDescBtn:hover {
  color: var(--color-accent-dark) !important;
  text-decoration-thickness: 2px !important;
}

#toggleDescBtn:hover::after {
  transform: translateY(3px) !important;
  /* Gumagalaw pababa ang arrow pag tinutok */
}

/* ==================================================
   SOLID "SHOW MORE" BUTTON
   Goal: Increase click-through rate by making the CTA pop
   ================================================== */

/* Target the specific element for Show More */
collection-show-more .button,
/* Target generic secondary buttons that usually look like outlines */
.button.button--secondary {
  background-color: var(--color-brand-accent) !important;
  /* Rose Gold Background */
  color: #ffffff !important;
  /* White Text */
  border: none !important;
  /* Alisin ang outline border */

  font-weight: 700 !important;
  /* Bold text */
  letter-spacing: 0.5px;
  text-transform: uppercase;

  /* Lagyan ng konting shadow para umangat */
  box-shadow: 0 4px 10px rgba(186, 138, 127, 0.3) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover Effect (Optional for Desktop) */
collection-show-more .button:hover,
.button.button--secondary:hover {
  background-color: var(--color-accent-dark) !important;
  /* Mas dark pag tinutok */
  transform: translateY(-2px);
  /* Aangat ng konti */
  box-shadow: 0 6px 14px rgba(186, 138, 127, 0.4) !important;
}

/* ==================================================
   TRUST SIGNALS / MULTICOLUMN OVERRIDE (FRESH START)
   ================================================== */

/* --- 1. GLOBAL CARD STYLE (Applies to both Mobile & Desktop) --- */
.multicolumn-card,
div.multicolumn-card {
  /* Gawing magkatabi ang Icon at Text (Row) */
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  /* Gitna ang vertical alignment */
  justify-content: flex-start !important;
  text-align: center !important;

  /* Gaya ng nasa image (Light Gray Background & Rounded) */

  border: none !important;
  /* Walang border base sa image */
  border-radius: 12px !important;
  /* Mas rounded na corners */
  padding: 20px !important;
  box-shadow: none !important;
  /* Walang shadow o very subtle lang */
  margin-bottom: 0 !important;
  height: 100% !important;
  /* Pantay ang height */


}


/* --- 2. ICON STYLING (Fixed Size & Left Side) --- */
.multicolumn-card__image-wrapper {
  width: 80px !important;
  /* Fixed size ng icon */
  flex: 0 0 80px !important;
  /* Huwag hayaang lumaki o lumit */
  margin: 0 20px 0 0 !important;
  /* Space sa kanan ng icon */
}

.multicolumn-card__image-wrapper img {
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}

/* --- 3. TEXT STYLING --- */
.multicolumn-card__info {
  padding: 0 !important;
  flex: 1 !important;
  /* Sakupin ang natitirang space */
}

/* Title (e.g., Fast Delivery) */
.multicolumn-card__info h3.inline-richtext {
  display: block !important;
  /* Siguraduhing nakikita */
  font-size: 16px !important;
  font-weight: 700 !important;
  /* Bold */
  margin: 0 0 4px 0 !important;
  /* Konting space sa baba */
  color: #121212 !important;
  /* Dark text */
  letter-spacing: 0 !important;

}

/* Description text */
.multicolumn-card__info p,
.multicolumn-card__info .rte {
  font-size: 14px !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  color: #594951 !important;
  /* Grayish text para sa description */
  width: 100%;
}

/* --- 4. LAYOUT ADJUSTMENTS --- */
/* Siguraduhing vertical stack ang itsura sa list kung gusto mo dikit-dikit (Optional) */
.multicolumn-list {
  gap: 16px !important;
  /* Space between cards */
}

/* Siguraduhin na pantay ang lapad ng cards */
.multicolumn-list__item,
.multicolumn-card {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Ayusin ang padding para hindi dikit masyado sa gilid pero pantay */
.multicolumn-card__info {
  padding-right: 16px !important;
  /* Space sa kanan para hindi sagad */
  text-align: left !important;
  /* Standard clean reading style */
}

/* --- GLOBAL STYLES (Mobile & Desktop) --- */

/* 1. Base Card Style */
.card-wrapper {
  background-color: #ffffff !important;
  border: 1px solid #e5e5e5 !important;
  border-radius: 8px !important;
  /* Tamang curve */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
  /* Light shadow */
  overflow: hidden;
  height: 100%;
  position: relative;
  transition: all 0.3s ease-in-out;
  /* Smooth transition */
}

/* 2. Compact Spacing (Para wala masyadong puti sa ilalim) */
.card__content {
  padding: 10px !important;
  /* Siksik pero malinis */
  text-align: center;
}

/* 3. Typography */
.card__heading {
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #2a2a2a !important;
  margin-bottom: 4px !important;
  /* Dikit sa price */
  line-height: 1.3;
}

.price-item,
.price {
  font-weight: 600 !important;
  color: #a65e5e !important;
  /* Rose/Red theme */
  font-size: 14px !important;
}

/* Tanggalin ang extra space sa ilalim ng price */
.card-information {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

/* --- DESKTOP ONLY (Min-width: 768px) --- */
/* Dito lang gagana ang Hover/Animation para hindi magulo sa cellphone */
@media screen and (min-width: 768px) {
  .card-wrapper:hover {
    transform: translateY(-4px) !important;
    /* Aangat lang sa computer */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
    border-color: #ba8a7f !important;
  }
}

/* --- MOBILE ONLY ADJUSTMENTS (Max-width: 767px) --- */
@media screen and (max-width: 767px) {
  .card__content {
    padding: 8px !important;
    /* Mas maliit na padding sa cellphone para maximize ang screen */
  }

  .card__heading {
    font-size: 14px !important;
    /* Slightly smaller text para di sumakop ng 2 lines */
  }
}

s.price-item--regular,
.price__sale s.price-item--regular {
  color: #9d9b9d !important;
  /* Gray: Para background info lang siya */
  font-size: 13px !important;
  text-decoration: line-through !important;
  opacity: 0.7;
}

.price-item--sale {
  font-size: 16px !important;
  /* Lakihan ng konti */
  color: var(--color-brand-accent, #ba8a7f) !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
}

.price__regular .price-item--regular {
  font-size: 16px !important;
  /* Lakihan ng konti */
  color: var(--color-brand-accent, #ba8a7f) !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
}

/* === CRO: Description Spacing Fix === */
.product-description strong,
.rte strong {
  display: block;
  /* Forces the bold text to own its line */
  margin-top: 24px;
  /* Adds breathing room above headers like 'Size:' */
  margin-bottom: 8px;
  /* Slight space between header and content */
  color: var(--color-text-primary);
  font-weight: 700;
}

.product-description ul,
.rte ul {
  margin-bottom: 16px;
  /* Consistent spacing after lists */
  padding-left: 20px;
  /* Ensures standard indentation */
}

/* Fix for paragraph text size */
.product-description p,
.rte p {
  margin-bottom: 12px;
  font-size: 16px;
  /* Optimal mobile reading size */
  line-height: 1.6;
  /* Better scanability */
}

/* General section spacing - conversion optimized */
.shopify-section {
  margin-bottom: 60px;
  /* Mobile-first */
}

@media (min-width: 750px) {
  .shopify-section {
    margin-bottom: 80px;
    /* Desktop */
  }
}

@media screen and (min-width: 750px) {
  .multicolumn-list {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    gap: 2rem !important;
  }

  .multicolumn-list__item {
    flex: 0 1 auto !important;
    max-width: 300px !important;
  }
}

/* --- Mobile View Optimization (flowercart.store) --- */

@media screen and (max-width: 768px) {

  /* 1. Hero Banner Optimization */
  [id*="image_banner"] .banner__media::before,
  [id*="image_banner"] .banner__content::before {
    padding-bottom: 80% !important;
    /* Reduced height from typical square/portrait */
  }

  [id*="image_banner"] .banner__content {
    padding-bottom: 2rem;
    /* Ensure CTA is visible */
  }

  /* 2. Product / Category Flow */
  /* Remove spacing between Hero and Featured Collection */
  [id*="image_banner"] {
    margin-bottom: 0 !important;
  }


  /* 4. Footer Streamlining (Accordion) */
  .footer-block--menu .footer-block__heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 0;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .footer-block--menu .footer-block__heading::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 300;
  }

  .footer-block--menu.active .footer-block__heading::after {
    content: "-";
  }

  .footer-block--menu .footer-block__details-content {
    display: none;
    padding-bottom: 1rem;
  }

  .footer-block--menu.active .footer-block__details-content {
    display: block;
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-5px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Mobile Layout & Typography Overrides (Revised) */
/* Breakdown:
   1. Typography Hierarchy: Uses rem units for responsiveness.
   2. Buttons: 44px+ touch targets using rem.
   3. Spacing: 24px global section padding, tighter for dense grids.
   4. Readability: Scoped word-break fixes.
*/

@media screen and (max-width: 768px) {

  /* -------------------------
     1. Global Typography (rem based)
     ------------------------- */

  /* Body text base size: 16px (approx 16px) */
  body,
  .body,
  .rte {
    font-size: 16px !important;
    line-height: 1.5 !important;
  }

  /* Headings Hierarchy */
  h1,
  .h1,
  .banner__heading {
    font-size: 28px !important;
    /* ~28px */
    line-height: 1.2 !important;
    margin-bottom: 12px !important;
    /* ~12px */
  }

  h2,
  .h2,
  .title,
  .section-header__title {
    font-size: 24px !important;
    /* ~24px */
    line-height: 1.3 !important;
    margin-bottom: 16px !important;
    /* ~16px */
  }

  h3,
  .h3,
  .card__heading {
    font-size: 18px !important;
    /* ~18px */
    line-height: 1.4 !important;
  }

  /* -------------------------
     2. Buttons & Inputs
     ------------------------- */

  .button,
  .btn,
  .shopify-payment-button__button {
    min-height: 48px !important;
    /* ~48px */
    font-size: 16px !important;
    padding: 12px 24px !important;
    /* ~12px 24px */
  }





  /* Hero/Banner optimizations */
  .banner__content {
    padding: 40px 16px !important;
    /* ~40px 16px */
    min-height: auto !important;
  }

  .banner__media {
    min-height: 250px !important;
    /* ~250px */
  }

  /* -------------------------
     4. Product Grid
     ------------------------- */



  .card-wrapper {
    margin-bottom: 0 !important;
  }

  /* Price styling for readability */
  .price {
    font-size: 16px !important;
    font-weight: 600 !important;
  }

  /* -------------------------
     5. Specific Readability Fixes
     ------------------------- */

  /* Fix testimonial text wrapping - Scoped strictly */
  .testimonial-card__text,
  .quote-text,
  .multicolumn-card__info .rte {
    word-break: normal !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    max-width: 100% !important;
  }

  /* Footer mobile toggle spacing */
  .footer-block__heading {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
}

.totals {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

.totals__total {
  font-family: var(--font-family-body);
  font-size: 15px !important;
  padding-right: 16px !important;
  margin: 0px !important;
  color: #464545 !important;
}

.totals__total-value {
  margin: 0px !important;
  color: #464545 !important;
  font-size: 16px !important;
  font-weight: 700;

}

[id*="image_banner"] .banner__media::before,
[id*="image_banner"] .banner__content::before {
  padding-bottom: 80% !important;
}

.cart-footer {
  gap: 12px !important;
  /* instead of 24–32px */
}

.cart-note-container {
  margin-bottom: 0px !important;
}

.cart__checkout-button {
  margin-top: 0px !important;
}

/* === Hero Banner Updates === */
.banner__buttons .button--primary {
  background-color: var(--color-brand-secondary) !important;
  /* Dark Brown/Purple */
  color: #ffffff !important;
  border: none !important;
  border-radius: var(--radius-card, 12px) !important;
  font-weight: 700 !important;
  padding: 12px 32px !important;
  transition: all 0.3s ease !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.banner__buttons .button--primary:hover {
  background-color: var(--color-brand-accent) !important;
  /* Lighter Accent */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.banner__heading {
  color: var(--color-brand-secondary) !important;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.5);
  /* Halo effect for readability */
}

.banner__text {
  color: var(--color-text-primary) !important;
  font-weight: 600 !important;
  font-size: 1.2em !important;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Improve mobile readability for product cards */
@media screen and (max-width: 749px) {

  /* Make product titles more prominent */
  .card__heading {
    font-size: 1.3rem !important;
    font-weight: 500 !important;
    margin-bottom: 5px;
  }

  /* Emphasize the Sale Price */
  .price-item--sale {
    color: #b05d5d !important;
    /* A soft floral red/pink */
    font-weight: 700 !important;
    font-size: 1.2rem;
  }

  /* Reduce excessive padding to show more product */
  .card__content {
    padding-top: 10px !important;
    padding-bottom: 15px !important;
  }
}

div#gift-finder-template--18453732196539__gift_finder_JU8gHe,   #gift-finder-{{ section.id }} {
  padding: 0rem !important;
  margin: 0px !important;

}

.gf-button {
  border: 0.8px solid;
  border-radius: 50px;
  padding: 5px !important;
}

@media screen and (max-width: 749px) {

  /* Make product titles more prominent - ALL COLLECTIONS */
  .card__heading {
    font-size: 1.3rem !important;
    font-weight: 500 !important;
    margin-bottom: 5px !important;
  }

  /* Emphasize the Sale Price - ALL COLLECTIONS */
  .price-item--sale {
    color: #b05d5d !important;
    /* Soft floral red/pink */
    font-weight: 700 !important;
    font-size: 1.2rem !important;
  }

  /* Reduce excessive padding - ALL COLLECTIONS */
  .card__content {
    padding-top: 10px !important;
    padding-bottom: 15px !important;
  }

  /* Optional: Regular price styling for consistency */
  .price-item--regular {
    font-size: 1rem !important;
    opacity: 0.8 !important;
  }
}

@media screen and (max-width: 749px) {

  /* Reduce Featured Collection section padding */
  .section-template--18453732196539__featured_collection_E8wYd7 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }

  /* Reduce container padding inside */
  .featured-collection .page-width {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
:root {
  /* === Color System === */
  --color-brand-accent: #ba8a7f;
  --color-accent-dark: #b18c85;
  --color-brand-secondary: #594951;
  --color-bg-ivory: #fff9f8;
  --color-bg-white: #ffffff;
  --color-text-primary: #2f2f2f;
  --color-text-body: #3b3b3b;
  --color-text-muted: #7b7b7b;
  --color-border-sand: rgb(235, 235, 235);

  /* === Alert Colors === */
  --color-error-bg: #fde8e8;
  --color-error-border: #eac6c6;
  --color-error-text: #a13d3d;
  --color-warning-bg: #fff8e1;
  --color-warning-border: #ffecb3;
  --color-warning-text: #8d6e00;

  /* === Typography === */
  --font-family-heading: 'Cormorant Garamond', serif;
  --font-family-body: 'Nunito', sans-serif;

  --fs-h1: clamp(2.4rem, 5vw + 1rem, 3.4rem);
  --fs-h2: clamp(1.9rem, 4vw + 1rem, 2.6rem);
  --fs-h3: clamp(1.5rem, 3vw + 0.8rem, 1.9rem);
  --fs-body: clamp(1rem, 1vw + 0.75rem, 1.125rem);
  --fs-small: clamp(0.875rem, 0.5vw + 0.5rem, 0.95rem);

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  --line-height-body: 1.6;
  --line-height-heading: 1.25;

  /* === Spacing === */
  --space-s: clamp(0.75rem, 1vw + 0.5rem, 1rem);
  --space-m: clamp(1.25rem, 2vw + 0.75rem, 1.75rem);
  --space-l: clamp(2rem, 4vw + 1rem, 3rem);
  --space-xl: clamp(3rem, 5vw + 1.5rem, 4.5rem);
  /* Added for footer usage */

  --radius-card: 8px;
  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.05);
  /* Added definition used in code */
  --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.08);
  --transition-base: all 0.3s ease;

  --container-max: 1200px;
  --container-padding: var(--space-s);
}


/* ==================================================
   🪶 GLOBAL RESET
   ================================================== */
html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: var(--font-family-body);
  background-color: var(--color-bg-ivory);
  background: var(--color-bg-ivory);
  line-height: var(--line-height-body);
  font-size: 16px;
  color: var(--color-text-body);
  letter-spacing: 0.3px;
  -webkit-font-smoothing: antialiased;

}

.global-media-settings {
  border-radius: var(--radius-card);
}

.color-background-1,
.gradient {
  background-color: #ffffff;
  background-image: none;
}

.rte p,
.rte li {
  font-family: var(--font-family-body);
  line-height: var(--line-height-body);
  font-size: 15px;
  margin: 0px;
  max-width: 65ch;
  color: var(--color-text-body);
}

/* === 🪶 TYPOGRAPHY SYSTEM === */
body,
.text-body,
p,
a,
span,
div,
li,
input,
textarea,
select {
  font-family: var(--font-family-body);
  letter-spacing: 0.01em;
  font-size: 15px;
}

/* === Headings === */
h1,
h2,
h3 {
  font-family: var(--font-family-heading);
  line-height: var(--line-height-heading);
  letter-spacing: 0.02em;

}

h1 {
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
}

h2 {
  font-size: var(--fs-h2);
  font-weight: var(--fw-semibold);
}

h3,
h4,
h5,
h6 {
  font-size: var(--fs-h3);
  font-weight: var(--fw-regular);
}

.page-width,
.container {
  max-width: var(--container-max);
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  margin: 0 auto;
}




/* 🔹 Universal section padding (EXCLUDES header and announcement bar) */

.badge-section,
.footer__content-top {
  padding-top: var(--space-s);
  padding-bottom: var(--space-s);
}

.footer {
  padding-top: var(--space-l);
  padding-bottom: var(--space-l);
  background-color: #F7EAE3;
}

.shopify-section-group-header-group,
.announcement-bar-section,
header,
.top-info-bar,
.top-info-bar1 {
  padding-top: 0 !important;
  padding-bottom: 0px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.top-info-bar,
.top-info-bar1 {
  padding-bottom: 0 !important;
}

/* ==================================================
   🌅 HERO / IMAGE BANNER
   ================================================== */
.image-banner,
.banner,
.hero {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background-color: #f2eceb;
}

.image-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.1) 100%);
  opacity: 0.3;
  pointer-events: none;
  /* Allows clicking through the overlay */
}

.banner__content,
.image-banner__content {
  position: absolute;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--color-bg-white);

}

.banner__heading,
.image-banner__heading {
  font-family: var(--font-family-heading);
  font-size: var(--fs-h1);
  font-weight: var(--fw-medium);
  color: var(--color-bg-white);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

/* FIXED: Typo .image-banner__tex -> .image-banner__text */
.banner__text,
.image-banner__text,
div.banner_text.rte.subtitle {
  font-size: var(--fs-body);
  margin-top: var(--space-s);
  color: var(--color-bg-white);
  text-align: left;
}


.image-banner__buttons .button {
  margin-top: var(--space-m);
}


/* ==================================================
   🛍 PRODUCT CARD STYLING
   ================================================== */


.full-unstyled-link {
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* ===============================
   🌷 Product Description Preview
   =============================== */
.description-preview {
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 120px;
  transition: max-height 0.8s ease;
}

.description-preview.expanded {
  -webkit-line-clamp: unset;
  max-height: 1000px;
}

.description-preview::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0px;
  /* Check JS - if this should be visible, height needs to be >0px e.g. 40px */

  pointer-events: none;
  transition: opacity 0.3s ease;
}

.description-preview.expanded::after {
  opacity: 0;
}

/* ===============================
   🌼 "Show More" / "Show Less" Button
   =============================== */
#toggleDescBtn,
.button#toggleDescBtn {
  font-family: var(--font-family-body);
  font-weight: 600;
  font-size: 16px;
  color: #ba8a7f;
  background: transparent;
  border: none;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s ease;
  margin-left: -5px;
  letter-spacing: 0px;

  opacity: 0.9;
  /* FIXED: Added semicolon */
}

#toggleDescBtn::after {
  content: " ‌⇓";
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;

  transition: transform 0.3s ease, opacity 0.3s ease;
}


/* ==================================================
 * === V3.1 Testimonials (Third-Party App) Styling ===
 * ==================================================
*/


div.VtlsTestimonialBlock__Content {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border-sand);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.VtlsTestimonialBlock:hover div.VtlsTestimonialBlock__Content {
  box-shadow: var(--shadow-hover) !important;
  transform: translateY(-4px);
}

.VtlsTestimonialBlockStarShape svg path {
  fill: var(--color-brand-accent) !important;
}

vtls-expandable-text-testimonials.VtlsTestimonialBlockText {
  font-family: var(--font-family-body) !important;
  font-style: italic;
  color: var(--color-text-body) !important;
  line-height: var(--line-height-body);
  font-weight: var(--fw-regular);
  font-size: var(--fs-small);
}

div.VtlsTestimonialBlockAuthor__AuthorName {
  font-family: var(--font-family-body) !important;
  font-weight: var(--fw-semibold);
  font-size: var(--fs-small) !important;
  color: var(--color-text-primary) !important;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}





/* Mobile-first: Default styles for mobile */
/* --- UPDATED TRUST SIGNALS (Mobile & Desktop Balanced) --- */
/* ==================================================
   MOBILE TRUST SIGNALS (FINAL & CLEAN)
   Target: Mobile only (max-width: 767px)
   Result: Compact Rows, Icon Left, Text Right
   ================================================== */




/* =========================
   BUTTON SYSTEM
   ========================= */
.button,
.shopify-payment-button__button,
input[type="submit"],
button[type="submit"],
.cart__checkout-button,
.product-form__submit {
  background-color: var(--color-brand-accent, #ba8a7f);
  color: var(--color-bg-white, #ffffff);
  border: none;
  border-radius: var(--radius-card, 12px);
  padding: var(--space-s, 0.75rem) var(--space-m, 1.25rem);
  font-family: var(--font-family-body, 'Nunito', sans-serif);
  font-weight: var(--fw-semibold, 600);
  font-size: var(--fs-body, 1rem);
  transition: var(--transition-base, all 0.3s ease);
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0.3px;
}

.button:hover,
.shopify-payment-button__button:hover,
input[type="submit"]:hover,
button[type="submit"]:hover,
.cart__checkout-button:hover,
.product-form__submit:hover {
  background-color: var(--color-accent-dark, #b18c85);
  box-shadow: var(--shadow-hover, 0 8px 25px rgba(0, 0, 0, 0.08));
  transform: translateY(-2px);
}

.button:active,
.shopify-payment-button__button:active,
input[type="submit"]:active,
button[type="submit"]:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.button:disabled,
.button[disabled],
input[type="submit"]:disabled,
button[type="submit"]:disabled {
  background-color: #EDE6E4;
  color: #9b9b9b;
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* === Secondary Button === */
button.button.button--secondary {
  background-color: transparent;
  color: var(--color-brand-accent, #ba8a7f);
  border: 2px solid var(--color-brand-accent, #ba8a7f);
  border-radius: var(--radius-card, 12px) !important;
  padding: calc(var(--space-s, 0.75rem) - 2px) calc(var(--space-m, 1.25rem) - 2px);
  font-family: var(--font-family-body, 'Nunito', sans-serif);
  font-weight: var(--fw-semibold, 600);
  font-size: var(--fs-body, 1rem);
  transition: var(--transition-base, all 0.3s ease);
  cursor: pointer;
  letter-spacing: 0.3px;
  margin-top: var(--space-s);
  /* consolidated */
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  /* consolidated */
}

button.button.button--secondary:hover {
  background-color: var(--color-brand-accent, #ba8a7f);
  color: var(--color-bg-white, #ffffff);
  border-color: var(--color-brand-accent, #ba8a7f);
  box-shadow: var(--shadow-hover, 0 8px 25px rgba(0, 0, 0, 0.08));
  transform: translateY(-2px);
}

button.button.button--secondary:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

button.button.button--secondary:disabled,
button.button.button--secondary[disabled] {
  background-color: transparent;
  color: var(--color-text-muted, #555555);
  border-color: var(--color-text-muted, #555555);
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.star-rating {
  color: #f6c100;
  font-size: 12px;
}

.top-info-bar1,
.info-item1 {
  font-size: 10px;
}

/* === Top info bar === */
.top-info-bar1 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  padding: 8px 0;
  flex-wrap: wrap;
}

.top-info-bar1,
.info-item1 {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text-muted);
  font-family: var(--font-family-body);
  font-weight: var(--fw-regular);
  font-size: 10px;
}

@media (max-width: 768px) {
  .top-info-bar1 {
    font-size: 10px;
  }
}

/* --- Header/Cart --- */
.header-wrapper {
  box-shadow: 0px 7px 13px -11px;
  position: relative;
  z-index: 20;
  background: #fff;
}

.cart__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.cart__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 20px;
}

.cart__checkout-button {
  width: 100%;
  max-width: 300px;
  border-radius: 20px;
  background-color: var(--color-brand-accent, #d8aba0);
  color: #fff;
  text-align: center;
  font-weight: 600;
  padding: 12px 0;
  font-size: 16px !important;
}

.cart__checkout-button:hover {
  background-color: var(--color-accent-dark, #c79b91);
}

.cart__blocks {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}





.utility-bar {
  background: #b48c85 !important;
  max-width: 100%;
  width: 100%;
}

.icon_icon-caret {
  display: none;
}

/* MOBILE TESTIMONIAL UPDATE: MAGAZINE OVERLAY (REFINED) */
@media screen and (max-width: 767px) {
  .VtlsCarousel {
    padding-bottom: 0 !important;
    /* This pulls the next section upwards. 
         If space remains, increase to -80px or -100px */
    margin-bottom: -100px !important;
    min-height: 0 !important;
  }

  /* 1. Constrain the Image Height */
  .VtlsTestimonialBlock__Media {
    height: 320px !important;
    overflow: hidden !important;
    border-radius: 12px 12px 0 0;
  }

  .VtlsTestimonialBlock__Media img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
  }

  /* 2. Pull the Text Box Up & Fix Spacing */
  .VtlsTestimonialBlock__Content {
    position: relative;
    z-index: 2;

    /* Positioning: Pulls box up over image */
    margin-top: -50px !important;
    width: 90% !important;
    margin-left: auto !important;
    margin-right: auto !important;

    /* Visual Polish */
    background-color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid var(--color-border-sand, #e5e5e5) !important;
    /* Fallback color added */
    border-radius: 8px !important;
    /* Adds slight curve to text box corners */

    /* --- SPACING ADJUSTMENTS --- */
    height: auto !important;
    /* Forces box to shrink to fit text */
    min-height: unset !important;
    /* Removes any minimum height forcing gaps */
    padding: 1.5rem !important;

    /* Flexbox to control gap between Stars, Text, and Author */
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 0.75rem !important;
  }

  /* 3. Text Clean up */
  .VtlsTestimonialBlockText {
    margin-bottom: 0 !important;
  }
}

/* ==================================================
   FOOTER BOTTOM: COMPACT & CLEAN
   ================================================== */
@media screen and (max-width: 767px) {

  /* 1. Tighten the Container */
  .footer__content-bottom {
    padding-top: 20px !important;
    padding-bottom: 30px !important;
    border-top: 1px solid rgba(186, 138, 127, 0.15) !important;
    /* Subtle rose gold line separator */
  }

  .footer__content-bottom-wrapper {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 15px !important;
    /* Space between Social icons and Copyright */
  }

  /* 2. Fix the Policy Links (Privacy, Terms, etc.) */
  /* This forces the vertical list to become a horizontal cluster */
  .footer__content-bottom .policies,
  .footer__content-bottom ul {
    display: flex !important;
    flex-wrap: wrap !important;
    /* Allows items to wrap nicely to the next line */
    justify-content: center !important;
    align-items: center !important;
    gap: 10px 15px !important;
    /* 10px vertical gap, 15px horizontal gap */
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }

  /* 3. Target the specific list items */
  .footer__content-bottom li {
    display: inline-block !important;
    width: auto !important;
    /* Stops them from taking full width */
    margin: 0 !important;
    padding: 0;
  }

  /* 4. Style the Links (Make them neat and accessible) */
  .footer__content-bottom a {
    font-family: 'Nunito', sans-serif !important;
    font-size: 13px !important;
    /* Increased for readability */
    color: #555555 !important;
    text-transform: capitalize !important;
    /* Easier to read than uppercase */
    letter-spacing: 0.3px !important;
    text-decoration: none !important;
    opacity: 1;
    padding: 8px 10px !important;
    /* Larger tap targets */
    display: inline-block !important;
    /* Required for padding to work */
  }

  /* 5. Hide those awkward stacking dots */
  /* If the dots are created by pseudo-elements, this hides them */
  .footer__content-bottom li::before,
  .footer__content-bottom li::after {
    display: none !important;
  }

  /* 6. Copyright Text Polish */
  .footer__copyright {
    margin-top: 0 !important;
    font-size: 12px !important;
    color: #594951 !important;
    /* Your brand secondary color */
    padding: 0;
  }
}

/* ==================================================
   FOOTER: TIGHTEN VERTICAL GAPS
   ================================================== */
@media screen and (max-width: 767px) {
  .footer__content-top {
    padding-bottom: 0 !important;
    /* Reduces space below the main links */
  }

  .footer__list-social {
    margin-bottom: 15px !important;
    /* Pulls the divider line closer to icons */
    padding: 0;
  }

  .footer__content-bottom {
    padding-top: 15px !important;
    /* Pulls the copyright closer to the line */
    padding: 0;
  }
}

/* ---------------------------
  Mobile fixes for Add-ons
  Paste at the END of your mobile CSS
  
  --------------------------- */
[data-essential-upsell-element="products"] {
  display: flex !important;

  gap: 1px !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
  padding: 0px !important;
  scroll-snap-type: x mandatory !important;
  scrollbar-width: none !important;
}

@media screen and (max-width: 767px) {

  /* Ensure slide container stays horizontal and scrollable */
  [data-essential-upsell-element="products"] {
    display: flex !important;

    gap: 1px !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 0px !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
  }
}

[data-essential-upsell-element="products"]::-webkit-scrollbar {
  display: none;
}

/* Slide wrapper: fixed slot so cards align nicely */
[data-essential-upsell-element="products"]>div[role="group"] {
  flex: 0 0 auto !important;

  width: 150px !important;
  /* adjust if you want wider/narrower cards */

  scroll-snap-align: start !important;
  padding: 10px 4px 20px 4px !important;
}

/* Card: column layout, full height, consistent padding */
[data-essential-upsell-element="product"] {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: stretch !important;
  height: auto !important;
  min-height: 190px !important;
  /* gives room for image+title+price+button */

  background: #fff !important;
  border-radius: 12px !important;
  border: 1px solid var(--color-border-sand) !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06) !important;
  position: relative !important;
  overflow: visible !important;
}

/* Image wrapper & image: keep image above background, no overlaps */
.x1lliihq.x1ghz6dp.x1717udv.xjb2p0i.x1pd3egz.x1qlqyl8.xggjnk3.x1hl2dhg.x1heor9g.xjbqb8w.x1wty727.x1b6ykf0.x1gnnqk1.x6mezaz.x14y7zgk.x9f619.x2lwn1j.x1peatla.x1fu8urw.x12oqio5.xb3r6kr.x2lah0s,
.x1lliihq.x1ghz6dp.x1717udv.xjb2p0i.x1pd3egz.x1qlqyl8.xggjnk3.x1hl2dhg.x1heor9g.xjbqb8w.x1wty727.x1b6ykf0.x1gnnqk1.x6mezaz.x14y7zgk.x9f619.x2lwn1j.x1peatla.x1fu8urw.x12oqio5.xb3r6kr.x2lah0s,
[data-essential-upsell-element="image"] img {
  display: block !important;
  width: 100% !important;
  height: 90px !important;
  object-fit: contain !important;
  margin: 5px 5px 5px 5px !important;
  position: relative !important;
  z-index: 1 !important;
  background: transparent !important;
}

/* Title: ensure it sits under the image, allow up to 2 lines then ellipsis */
.xjb2p0i.x1pd3egz.xjbqb8w.x1wty727.x1b6ykf0.x1gnnqk1.x6mezaz.x14y7zgk.x9f619.x2lwn1j.x10rsq8x.xdi48bf.x1lliihq.x1fc57z9.xebhuq6.xb3r6kr.xlyipyv.x1hl2dhg.x13jbg0v.x19dipnz.x1psujx9.xm5k50t.x1cm8ssg.xze8r8f.x11qgsyj.x7s97pk {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  /* show max 2 lines */
  -webkit-box-orient: vertical !important;

  text-overflow: ellipsis !important;
  white-space: normal !important;
  font-size: 12px !important;
  line-height: normal !important;
  letter-spacing: 0px;

  margin: 0 0 6px 0 !important;
  z-index: 2 !important;
  background: transparent !important;


  color: #9d9b9d;
  overflow: hidden;

  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: 400;
  height: 31px !important;
}

.xjb2p0i.x1pd3egz.xjbqb8w.x1wty727.x1b6ykf0.x1gnnqk1.x6mezaz.x14y7zgk.x9f619.x2lwn1j.x10rsq8x.xdi48bf.x1lliihq.x1fc57z9.xebhuq6.xb3r6kr.xlyipyv.x1hl2dhg.x13jbg0v.x19dipnz.x1psujx9.xm5k50t.x1cm8ssg.xze8r8f.x11qgsyj.x7s97pk {
  pointer-events: none !important;
  cursor: default !important;
  text-decoration: none !important;
}

/* Price centered and tight spacing */
[data-essential-upsell-element="regular-price"] {
  font-size: 14px !important;
  font-weight: 800 !important;
  color: #ba8a7f !important;
  text-align: center !important;
  margin: 0 0 8px 0 !important;
}

/* Force button container to bottom of card */
[data-essential-upsell-element="button-container"] {
  margin-top: auto !important;
  /* pushes button down */
  width: 100% !important;
  padding-top: 8px !important;
}

/* Button: full width, readable label, no floating */
[data-essential-upsell-element="add-to-cart-button"],
button.x1ghz6dp.xjb2p0i.xggjnk3.x1hl2dhg.x1wty727.x1b6ykf0.x1gnnqk1.x6mezaz.x14y7zgk.x9f619.x2lwn1j.xdi48bf.x78zum5.x6s0dn4.xl56j7k.x17d4w8g.xs83m0k.x1iyjqo2.xk50ysn.x1uipwii.x1ypdohk.xezivpi.xq1mx2j.x13jbg0v.x19dipnz.x1psujx9.xm5k50t.x1cm8ssg.xze8r8f.x11qgsyj.x7s97pk,
.x1ghz6dp.x1717udv.xjb2p0i.x1pd3egz.x1qlqyl8.xggjnk3.x1hl2dhg.x1heor9g.xjbqb8w.x1wty727.x1b6ykf0.x1gnnqk1.x6mezaz.x14y7zgk.x9f619.x2lwn1j.xdi48bf.x78zum5.x6s0dn4.x2lah0s.x193iq5w.x1vff8rb.xezivpi.x1iyjqo2.x9df8bu.x1r8uery {

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  width: 100% !important;

  border-radius: 8px !important;

  box-shadow: 0 6px 10px rgba(186, 138, 127, 0.18) !important;
  color: #fff !important;
  transform: none !important;
  position: relative !important;
}

[data-essential-upsell-element="add-to-cart-button"],
button.x1ghz6dp.xjb2p0i.xggjnk3.x1hl2dhg.x1wty727.x1b6ykf0.x1gnnqk1.x6mezaz.x14y7zgk.x9f619.x2lwn1j.xdi48bf.x78zum5.x6s0dn4.xl56j7k.x17d4w8g.xs83m0k.x1iyjqo2.xk50ysn.x1uipwii.x1ypdohk.xezivpi.xq1mx2j.x13jbg0v.x19dipnz.x1psujx9.xm5k50t.x1cm8ssg.xze8r8f.x11qgsyj.x7s97pk {

  max-width: 70px !important;
  width: 130px !important;
  min-height: 34px;
  text-align: center;

   background-color: var(--color-bg-ivory) !important;
  border: 1px solid #8B4513 !important; /* Brown border to match your theme */
  color: #8B4513 !important;
  font-weight: 400 !important;
  transition: all 0.3s ease;
}

/* If any element was absolutely positioned before, neutralize it */
[data-essential-upsell-element="product"] * {
  position: static !important;
}

/* Safety: prevent title from overlapping when fonts load late */
[data-essential-upsell-element="image"]+[data-essential-upsell-element="title"],
[data-essential-upsell-element="title"]+[data-essential-upsell-element="regular-price"] {
  margin-top: 0 !important;
}

}

@media screen and (max-width: 767px) {

  /* FIX: Remove tall empty white space sa product image */
  [data-essential-upsell-element="image"],
  [data-essential-upsell-element="image"] img {
    width: 100% !important;
    height: auto !important;
    /* no fixed height */
    max-height: 85px !important;
    /* adjust: 70–100px */
    object-fit: contain !important;
    margin-bottom: 6px !important;

    display: block !important;
  }
}


/* Prevent horizontal shaking on mobile */
html,
body {
  overflow-x: hidden !important;
  position: relative;
}

svg.icon.icon-remove {
  color: #999999;
}

/* ==============================================
   🚀 CRO UPDATE: PRODUCT PAGE ADD-TO-CART
   Priority: High | Device: Mobile First
   ============================================== */

/* 1. BRAND COLORS (High Contrast) */
:root {
  --color-brand-accent: #9B5A4F !important;
  /* Rosewood: W3C Compliant Contrast */
  --color-accent-dark: #8C4E43 !important;
  /* Hover State */
}

/* 2. BUTTON DIMENSIONS & TYPOGRAPHY */
.product-form__submit,
.cart__checkout-button {
  width: 100% !important;
  /* Full width of container for max visibility */
  max-width: 400px;
  /* Prevents it from looking huge on desktop */
  height: 54px !important;
  /* Optimal touch target size (48px+) */
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  /* Boldest weight */
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  /* Increases urgency */
  border-radius: 10px !important;
  transition: none !important;
  /* Instant interaction, no lag */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
  /* Subtle lift */
}

/* --- ADD-ONS SECTION CLEANUP --- */

/* * MOD: Tighten the spacing and normalize typography for a cleaner, faster read.
 * Reduces the visual weight of the add-on title and clarifies its purpose.
 */
h3.inline-richtext {
  font-size: 14px !important;
  /* Smaller, less intrusive heading */
  color: var(--color-text-body) !important;
  margin-bottom: 8px !important;
}

/* * MOD: Ensure the add-on cards have sufficient separation and clear visual bounds
 * to distinguish them from the main product content. 
 */
[data-essential-upsell-element="products"] {
  gap: 10px !important;
  /* Increase gap between horizontally scrolling items */
  padding: 10px 0 !important;
}

/* * MOD: Enhance the visibility of the Add-on button itself.
 */
.x1ghz6dp.xjb2p0i.xggjnk3.x1hl2dhg.x1wty727.x1b6ykf0.x1gnnqk1.x6mezaz.x14y7zgk.x9f619.x2lwn1j.xdi48bf.x78zum5.x6s0dn4.xl56j7k.x17d4w8g.xs83m0k.x1iyjqo2.xk50ysn.x1uipwii.x1ypdohk.xezivpi.xq1mx2j.x13jbg0v.x19dipnz.x1psujx9.xm5k50t.x1cm8ssg.xze8r8f.x11qgsyj.x7s97pk {
  height: 38px !important;
  /* Reduced height for compactness */
  font-size: 12px !important;
  /* Smaller, focused text */
  padding: 6px 10px !important;
  border-radius: 6px !important;
}

/* ==============================================
   💎 CRO UPDATE: PREMIUM SVG TOGGLE
   Style: Text Link + SVG Chevron Icon
   ============================================== */

#toggleDescBtn,
.button#toggleDescBtn {
  /* 1. TEXT STYLING */
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin-top: 12px !important;

  color: var(--color-brand-accent) !important;
  font-family: var(--font-family-body) !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  text-transform: capitalize !important;

  /* Editorial Underline Style */
  text-decoration: underline !important;
  text-underline-offset: 4px !important;
  text-decoration-thickness: 1.5px !important;

  /* Flexbox para pantay ang Text at Icon */
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  /* Space between text and arrow */
  cursor: pointer !important;
}

/* 2. THE SVG ICON (Encoded in CSS) */
#toggleDescBtn::after {
  content: "" !important;
  display: block !important;
  width: 12px !important;
  height: 12px !important;

  /* SVG Code: Chevron Down (Color: #9B5A4F) */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%239B5A4F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") !important;

  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;

  /* Animation setup */
  transition: transform 0.2s ease !important;
}

/* 3. MICRO-INTERACTION (Hover Animation) */
#toggleDescBtn:hover {
  color: var(--color-accent-dark) !important;
  text-decoration-thickness: 2px !important;
}

#toggleDescBtn:hover::after {
  transform: translateY(3px) !important;
  /* Gumagalaw pababa ang arrow pag tinutok */
}

/* ==================================================
   SOLID "SHOW MORE" BUTTON
   Goal: Increase click-through rate by making the CTA pop
   ================================================== */

/* Target the specific element for Show More */
collection-show-more .button,
/* Target generic secondary buttons that usually look like outlines */
.button.button--secondary {
  background-color: var(--color-brand-accent) !important;
  /* Rose Gold Background */
  color: #ffffff !important;
  /* White Text */
  border: none !important;
  /* Alisin ang outline border */

  font-weight: 700 !important;
  /* Bold text */
  letter-spacing: 0.5px;
  text-transform: uppercase;

  /* Lagyan ng konting shadow para umangat */
  box-shadow: 0 4px 10px rgba(186, 138, 127, 0.3) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover Effect (Optional for Desktop) */
collection-show-more .button:hover,
.button.button--secondary:hover {
  background-color: var(--color-accent-dark) !important;
  /* Mas dark pag tinutok */
  transform: translateY(-2px);
  /* Aangat ng konti */
  box-shadow: 0 6px 14px rgba(186, 138, 127, 0.4) !important;
}

/* ==================================================
   TRUST SIGNALS / MULTICOLUMN OVERRIDE (FRESH START)
   ================================================== */

/* --- 1. GLOBAL CARD STYLE (Applies to both Mobile & Desktop) --- */
.multicolumn-card,
div.multicolumn-card {
  /* Gawing magkatabi ang Icon at Text (Row) */
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  /* Gitna ang vertical alignment */
  justify-content: flex-start !important;
  text-align: center !important;

  /* Gaya ng nasa image (Light Gray Background & Rounded) */

  border: none !important;
  /* Walang border base sa image */
  border-radius: 12px !important;
  /* Mas rounded na corners */
  padding: 20px !important;
  box-shadow: none !important;
  /* Walang shadow o very subtle lang */
  margin-bottom: 0 !important;
  height: 100% !important;
  /* Pantay ang height */


}


/* --- 2. ICON STYLING (Fixed Size & Left Side) --- */
.multicolumn-card__image-wrapper {
  width: 80px !important;
  /* Fixed size ng icon */
  flex: 0 0 80px !important;
  /* Huwag hayaang lumaki o lumit */
  margin: 0 20px 0 0 !important;
  /* Space sa kanan ng icon */
}

.multicolumn-card__image-wrapper img {
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}

/* --- 3. TEXT STYLING --- */
.multicolumn-card__info {
  padding: 0 !important;
  flex: 1 !important;
  /* Sakupin ang natitirang space */
}

/* Title (e.g., Fast Delivery) */
.multicolumn-card__info h3.inline-richtext {
  display: block !important;
  /* Siguraduhing nakikita */
  font-size: 16px !important;
  font-weight: 700 !important;
  /* Bold */
  margin: 0 0 4px 0 !important;
  /* Konting space sa baba */
  color: #121212 !important;
  /* Dark text */
  letter-spacing: 0 !important;

}

/* Description text */
.multicolumn-card__info p,
.multicolumn-card__info .rte {
  font-size: 14px !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  color: #594951 !important;
  /* Grayish text para sa description */
  width: 100%;
}

/* --- 4. LAYOUT ADJUSTMENTS --- */
/* Siguraduhing vertical stack ang itsura sa list kung gusto mo dikit-dikit (Optional) */
.multicolumn-list {
  gap: 16px !important;
  /* Space between cards */
}

/* Siguraduhin na pantay ang lapad ng cards */
.multicolumn-list__item,
.multicolumn-card {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Ayusin ang padding para hindi dikit masyado sa gilid pero pantay */
.multicolumn-card__info {
  padding-right: 16px !important;
  /* Space sa kanan para hindi sagad */
  text-align: left !important;
  /* Standard clean reading style */
}

/* --- GLOBAL STYLES (Mobile & Desktop) --- */

/* 1. Base Card Style */
.card-wrapper {
  background-color: #ffffff !important;
  border: 1px solid #e5e5e5 !important;
  border-radius: 8px !important;
  /* Tamang curve */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
  /* Light shadow */
  overflow: hidden;
  height: 100%;
  position: relative;
  transition: all 0.3s ease-in-out;
  /* Smooth transition */
}

/* 2. Compact Spacing (Para wala masyadong puti sa ilalim) */
.card__content {
  padding: 10px !important;
  /* Siksik pero malinis */
  text-align: center;
}

/* 3. Typography */
.card__heading {
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #2a2a2a !important;
  margin-bottom: 4px !important;
  /* Dikit sa price */
  line-height: 1.3;
}

.price-item,
.price {
  font-weight: 600 !important;
  color: #a65e5e !important;
  /* Rose/Red theme */
  font-size: 14px !important;
}

/* Tanggalin ang extra space sa ilalim ng price */
.card-information {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

/* --- DESKTOP ONLY (Min-width: 768px) --- */
/* Dito lang gagana ang Hover/Animation para hindi magulo sa cellphone */
@media screen and (min-width: 768px) {
  .card-wrapper:hover {
    transform: translateY(-4px) !important;
    /* Aangat lang sa computer */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
    border-color: #ba8a7f !important;
  }
}

/* --- MOBILE ONLY ADJUSTMENTS (Max-width: 767px) --- */
@media screen and (max-width: 767px) {
  .card__content {
    padding: 8px !important;
    /* Mas maliit na padding sa cellphone para maximize ang screen */
  }

  .card__heading {
    font-size: 14px !important;
    /* Slightly smaller text para di sumakop ng 2 lines */
  }
}

s.price-item--regular,
.price__sale s.price-item--regular {
  color: #9d9b9d !important;
  /* Gray: Para background info lang siya */
  font-size: 13px !important;
  text-decoration: line-through !important;
  opacity: 0.7;
}

.price-item--sale {
  font-size: 16px !important;
  /* Lakihan ng konti */
  color: var(--color-brand-accent, #ba8a7f) !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
}

.price__regular .price-item--regular {
  font-size: 16px !important;
  /* Lakihan ng konti */
  color: var(--color-brand-accent, #ba8a7f) !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
}

/* === CRO: Description Spacing Fix === */
.product-description strong,
.rte strong {
  display: block;
  /* Forces the bold text to own its line */
  margin-top: 24px;
  /* Adds breathing room above headers like 'Size:' */
  margin-bottom: 8px;
  /* Slight space between header and content */
  color: var(--color-text-primary);
  font-weight: 700;
}

.product-description ul,
.rte ul {
  margin-bottom: 16px;
  /* Consistent spacing after lists */
  padding-left: 20px;
  /* Ensures standard indentation */
}

/* Fix for paragraph text size */
.product-description p,
.rte p {
  margin-bottom: 12px;
  font-size: 16px;
  /* Optimal mobile reading size */
  line-height: 1.6;
  /* Better scanability */
}

/* General section spacing - conversion optimized */
.shopify-section {
  margin-bottom: 40px;
  /* Mobile-first */
}

@media (min-width: 750px) {
  .shopify-section {
    margin-bottom: 60px;
    /* Desktop */
  }
}

@media screen and (min-width: 750px) {
  .multicolumn-list {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    gap: 2rem !important;
  }

  .multicolumn-list__item {
    flex: 0 1 auto !important;
    max-width: 300px !important;
  }
}

/* --- Mobile View Optimization (flowercart.store) --- */

@media screen and (max-width: 768px) {

  /* 1. Hero Banner Optimization */
  [id*="image_banner"] .banner__media::before,
  [id*="image_banner"] .banner__content::before {
    padding-bottom: 80% !important;
    /* Reduced height from typical square/portrait */
  }

  [id*="image_banner"] .banner__content {
    padding-bottom: 2rem;
    /* Ensure CTA is visible */
  }

  /* 2. Product / Category Flow */
  /* Remove spacing between Hero and Featured Collection */
  [id*="image_banner"] {
    margin-bottom: 0 !important;
  }


  /* 4. Footer Streamlining (Accordion) */
  .footer-block--menu .footer-block__heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 0;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .footer-block--menu .footer-block__heading::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 300;
  }

  .footer-block--menu.active .footer-block__heading::after {
    content: "-";
  }

  .footer-block--menu .footer-block__details-content {
    display: none;
    padding-bottom: 1rem;
  }

  .footer-block--menu.active .footer-block__details-content {
    display: block;
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-5px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Mobile Layout & Typography Overrides (Revised) */
/* Breakdown:
   1. Typography Hierarchy: Uses rem units for responsiveness.
   2. Buttons: 44px+ touch targets using rem.
   3. Spacing: 24px global section padding, tighter for dense grids.
   4. Readability: Scoped word-break fixes.
*/

@media screen and (max-width: 768px) {

  /* -------------------------
     1. Global Typography (rem based)
     ------------------------- */

  /* Body text base size: 16px (approx 16px) */
  body,
  .body,
  .rte {
    font-size: 16px !important;
    line-height: 1.5 !important;
  }

  /* Headings Hierarchy */
  h1,
  .h1,
  .banner__heading {
    font-size: 28px !important;
    /* ~28px */
    line-height: 1.2 !important;
    margin-bottom: 12px !important;
    /* ~12px */
  }

  h2,
  .h2,
  .title,
  .section-header__title {
    font-size: 24px !important;
    /* ~24px */
    line-height: 1.3 !important;
    margin-bottom: 16px !important;
    /* ~16px */
  }

  h3,
  .h3,
  .card__heading {
    font-size: 18px !important;
    /* ~18px */
    line-height: 1.4 !important;
  }

  /* -------------------------
     2. Buttons & Inputs
     ------------------------- */

  .button,
  .btn,
  .shopify-payment-button__button {
    min-height: 48px !important;
    /* ~48px */
    font-size: 16px !important;
    padding: 12px 24px !important;
    /* ~12px 24px */
  }





  /* Hero/Banner optimizations */
  .banner__content {
    padding: 40px 16px !important;
    /* ~40px 16px */
    min-height: auto !important;
  }

  .banner__media {
    min-height: 250px !important;
    /* ~250px */
  }

  /* -------------------------
     4. Product Grid
     ------------------------- */



  .card-wrapper {
    margin-bottom: 0 !important;
  }

  /* Price styling for readability */
  .price {
    font-size: 16px !important;
    font-weight: 600 !important;
  }

  /* -------------------------
     5. Specific Readability Fixes
     ------------------------- */

  /* Fix testimonial text wrapping - Scoped strictly */
  .testimonial-card__text,
  .quote-text,
  .multicolumn-card__info .rte {
    word-break: normal !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    max-width: 100% !important;
  }

  /* Footer mobile toggle spacing */
  .footer-block__heading {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
}

.totals {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

.totals__total {
  font-family: var(--font-family-body);
  font-size: 15px !important;
  padding-right: 16px !important;
  margin: 0px !important;
  color: #464545 !important;
}

.totals__total-value {
  margin: 0px !important;
  color: #464545 !important;
  font-size: 16px !important;
  font-weight: 700;

}

[id*="image_banner"] .banner__media::before,
[id*="image_banner"] .banner__content::before {
  padding-bottom: 80% !important;
}

.cart-footer {
  gap: 12px !important;
  /* instead of 24–32px */
}

.cart-note-container {
  margin-bottom: 0px !important;
}

.cart__checkout-button {
  margin-top: 0px !important;
}

/* === Hero Banner Updates === */
.banner__buttons .button--primary {
  background-color: var(--color-brand-secondary) !important;
  /* Dark Brown/Purple */
  color: #ffffff !important;
  border: none !important;
  border-radius: var(--radius-card, 12px) !important;
  font-weight: 700 !important;
  padding: 12px 32px !important;
  transition: all 0.3s ease !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.banner__buttons .button--primary:hover {
  background-color: var(--color-brand-accent) !important;
  /* Lighter Accent */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.banner__heading {
  color: var(--color-brand-secondary) !important;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.5);
  /* Halo effect for readability */
}

.banner__text {
  color: var(--color-text-primary) !important;
  font-weight: 600 !important;
  font-size: 1.2em !important;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Improve mobile readability for product cards */
@media screen and (max-width: 749px) {

  /* Make product titles more prominent */
  .card__heading {
    font-size: 1.3rem !important;
    font-weight: 500 !important;
    margin-bottom: 5px;
  }

  /* Emphasize the Sale Price */
  .price-item--sale {
    color: #b05d5d !important;
    /* A soft floral red/pink */
    font-weight: 700 !important;
    font-size: 1.2rem;
  }

  /* Reduce excessive padding to show more product */
  .card__content {
    padding-top: 10px !important;
    padding-bottom: 15px !important;
  }
}

div#gift-finder-template--18453732196539__gift_finder_JU8gHe {
  padding: 0rem !important;
  margin: 0px !important;

}

.gf-button {
  border: 0.8px solid;
  border-radius: 50px;
  padding: 5px !important;
}

@media screen and (max-width: 749px) {

  /* Make product titles more prominent - ALL COLLECTIONS */
  .card__heading {
    font-size: 1.3rem !important;
    font-weight: 500 !important;
    margin-bottom: 5px !important;
  }

  /* Emphasize the Sale Price - ALL COLLECTIONS */
  .price-item--sale {
    color: #b05d5d !important;
    /* Soft floral red/pink */
    font-weight: 700 !important;
    font-size: 1.2rem !important;
  }

  /* Reduce excessive padding - ALL COLLECTIONS */
  .card__content {
    padding-top: 10px !important;
    padding-bottom: 15px !important;
  }

  /* Optional: Regular price styling for consistency */
  .price-item--regular {
    font-size: 1rem !important;
    opacity: 0.8 !important;
  }
}

@media screen and (max-width: 749px) {

  /* Reduce Featured Collection section padding */
  .section-template--18453732196539__featured_collection_E8wYd7 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }

}



/* =========================
   ✨ NEW CONVERSION ELEMENTS
   ========================= */

/* --- Trust Signals (Header) --- */
.product__trust-signals-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 15px;
  margin-top: 5px;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 4px;
}

.star-icon {
  color: #ffc107;
  /* Gold */
  font-size: 14px;
}

.product__trust-signals-header .rating-count {
  font-size: 13px;
  color: var(--color-text-muted);
  text-decoration: underline;
}

.freshness-badge {
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 600;
}

/* --- Benefit Text (Hero) --- */
.product__benefit-text {
  font-family: var(--font-family-body);
  color: var(--color-brand-secondary);
  font-style: italic;
  font-size: 15px;
  margin-top: -10px;
  margin-bottom: 10px;
  line-height: 1.4;
}

/* --- Benefit Bullets (Below Price) --- */
.product__benefit-bullets {
  margin: 15px 0;
  padding: 12px;
  background: var(--color-bg-ivory);
  border: 1px solid var(--color-border-sand);
  border-radius: 8px;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 6px;
  line-height: 1.4;
  color: var(--color-text-body);
}

.check-icon { color: #d8aba0; } /* Your brand accent */p

.benefit-list li:last-child {
  margin-bottom: 0;
}

/* --- Delivery Timer --- */
.product__delivery-timer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
  padding: 10px 12px;
  background-color: #fff4e5;
  /* Soft orange/alert bg */
  border-left: 4px solid #ff9800;
  border-radius: 4px;
}

.timer-icon {
  font-size: 18px;
}

.timer-text {
  font-size: 13px;
  color: #663c00;
  font-weight: 500;
}

.countdown-timer {
  font-weight: 700;
  color: #e65100;
}

/* --- Perfect For Badges --- */
.product__perfect-for {
  margin: 20px 0;
}

.perfect-for-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.perfect-for-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.perfect-for-tag {
  background: #f5f5f5;
  color: var(--color-text-body);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all 0.2s;
}

.perfect-for-tag:hover {
  border-color: var(--color-brand-accent);
  background: #fff;
}

/* =========================
   🛒 STICKY ADD TO CART (MOBILE)
   ========================= */
.sticky-atc-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding: 10px 15px;
  z-index: 1000;
  transform: translateY(110%);
  transition: transform 0.3s ease-out;
  border-top: 1px solid var(--color-border-sand);
}

.sticky-atc-bar:not(.hidden) {
  transform: translateY(0);
}

.sticky-atc-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 600px;
  /* Center on larger screens if visible */
  margin: 0 auto;
}

.sticky-img img {
  border-radius: 4px;
  object-fit: cover;
  border: 1px solid #eee;
  display: block;
}

.sticky-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sticky-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.sticky-price {
  font-size: 13px;
  color: var(--color-brand-accent);
  font-weight: 700;
}

.sticky-add-btn {
  background: var(--color-brand-accent);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}

@media screen and (min-width: 769px) {
  .sticky-atc-bar {
    display: none;
    /* Mobile only feature by default, or optional on desktop */
  }
}

/* =========================
   ⚡ MICRO-OPTIMIZATIONS
   ========================= */

/* 1. Urgency Pulse Animation */
@keyframes pulse-orange {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 152, 0, 0.4);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(255, 152, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 152, 0, 0);
  }
}

.product__delivery-timer {
  animation: pulse-orange 2s infinite;
}

/* 2. Sticky Bar Price Polish */
.sticky-price {
  font-size: 15px !important;
  /* Increased from 13px */
  color: #d32f2f !important;
  /* Slightly more urgent red */
}

/* 3. Perfect For Hover Lift */
.perfect-for-tag {
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.2s ease, border-color 0.2s ease;
}

.perfect-for-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  background-color: #fff0f0;
  /* Subtle pink tint */
  border-color: var(--color-brand-accent);
}
@media screen and (max-width: 768px) {
product-info .product__title h1 {
    font-size: 24px !important;
    margin-bottom: 5px !important;
    line-height: 1.2 !important;
  }

  /* Make CTA visible above fold by reducing image height */
  /* This selector is quite specific to the product page media container */
  .product-media-container.constrain-height.media-fit-contain {
    --ratio-percent: 80% !important;
  }

  /* 2. Price Visuals - Scoped to Large Price (Main Product) */
  .price--large .price-item--regular {
    font-weight: 700 !important;
    color: var(--color-brand-accent) !important;
    font-size: 20px !important;
  }

  .price--large .price-item--sale {
    color: var(--color-brand-accent) !important;
    font-weight: 700 !important;
  }
}
@media screen and (min-width: 750px) {
  .banner__media {
    aspect-ratio: 3 / 1 !important; /* 1500:500 ratio */
    overflow: hidden !important;
  }
  
  .banner__media img {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
  }
}
