/** Shopify CDN: Minification failed

Line 5043:19 Unexpected "*"

**/
/* =============================================================================
   base.css — Majori Shopify Theme
   =============================================================================

   TABLE OF CONTENTS
   -----------------
   1.  CSS VARIABLES (Design Tokens)
       1.1  Core Colors & Accents
       1.2  Animation Durations
       1.3  UI Tokens (radius, page-width etc.)

   2.  COLOR SYSTEM
       2.1  Background Color Classes
       2.2  Accent / Inverse Color Classes
       2.3  Foreground Utility Classes
       2.4  Link Variables per Context
       2.5  Button Variables per Context
       2.6  Card Hover Variables
       2.7  Badge Variables
       2.8  Icon Color Variables
       2.9  Component-level Variable Mapping (Cards, Media, Containers)

   3.  BASE LAYOUT & UTILITIES
       3.1  Page Width / Container
       3.2  Section Spacing
       3.3  Visibility & Display Utilities
       3.4  Text Alignment & Transform Utilities
       3.5  Overflow Utilities
       3.6  Placeholder & Misc Utilities

   4.  TYPOGRAPHY
       4.1  Body Text
       4.2  Headings (h1–h6, .h0–.h6, .hxl)
       4.3  Captions
       4.4  Links & Underlined Links
       4.5  Blockquote
       4.6  Tables (generic)
       4.7  Rich Text (RTE)

   5.  FOCUS & ACCESSIBILITY
       5.1  Focus Ring — Default
       5.2  Focus Ring — Inset
       5.3  Focus Ring — Offset
       5.4  Focus Ring — None (use with care)
       5.5  Reduced Motion

   6.  COMPONENT — DETAILS / SUMMARY (Disclosure)
       6.1  Base Summary Styles
       6.2  Disclosure Popup

   7.  COMPONENT — GRID
       7.1  Base Grid
       7.2  Column Variants (1–8 col)
       7.3  Responsive Column Overrides
       7.4  Slider / Peek Variants
       7.5  Safari Flexbox Gap Fallback

   8.  COMPONENT — MEDIA
       8.1  Base Media
       8.2  Aspect Ratio Variants
       8.3  Hover Effect
       8.4  Deferred Media

   9.  COMPONENT — BUTTONS
       9.1  Button Variables & Base
       9.2  Button Sizes & Variants
       9.3  Button States (hover, focus, disabled, loading)
       9.4  Share Button

   10. COMPONENT — FORMS
       10.1 Field Input / Select Base
       10.2 Field Label (floating)
       10.3 Field States (focus, hover, autofill)
       10.4 Select
       10.5 Textarea & Checkbox
       10.6 Form Messages & Status
       10.7 Review Form (SPR)

   11. COMPONENT — QUANTITY
       11.1 Quantity Input
       11.2 Quantity Buttons
       11.3 Quantity Rules

   12. COMPONENT — MODAL

   13. COMPONENT — CART COUNT & WISHLIST/COMPARE BUBBLES

   14. COMPONENT — BADGE

   15. COMPONENT — TITLE / SECTION HEADINGS

   16. COMPONENT — SWATCH & VARIANT SELECTORS
       16.1 Swatch Base
       16.2 Pill Variant
       16.3 Swatch Variant (Color)
       16.4 Dropdown Variant

   17. LAYOUT — CONTENT CONTAINERS & MEDIA SETTINGS

   18. SECTION — ANNOUNCEMENT BAR (Custom Marquee)

   19. SECTION — HEADER
       19.1 Header Top Bar
       19.2 Header Bottom / Wrapper
       19.3 Header Main Grid Layout
       19.4 Header Logo & Heading
       19.5 Header Icons (Cart, Account, Search)
       19.6 Header Search Modal
       19.7 Header Menu Drawer Toggle
       19.8 Header Inline Menu (Desktop)
       19.9 Header Submenu & Mega Menu

   20. SECTION — WISHLIST & COMPARE

   21. MISC
       21.1 Loader
       21.2 Back-to-Top Button
       21.3 Breadcrumbs
       21.4 Arrow Animation
       21.5 Gradient
       21.6 Ratio
       21.7 Overflow Hidden Breakpoint Utilities
       21.8 404 Template
       21.9 Ambient Animation
       21.10 Responsive Table

   22. ACCESSIBILITY — WINDOWS HIGH CONTRAST MODE

============================================================================= */


/* =============================================================================
   1. CSS VARIABLES (Design Tokens)
   All variables defined once here. Edit here to change the whole theme.
============================================================================= */

:root {

/* 1.1 Core Colors & Accents
-------------------------
Accents:
accent-1 = Black  (primary button bg)
accent-2 = Gold   (links, highlights, underline)
accent-3 = Green  (CTA buttons, hover states)
*/
--color-base-text:          #111111;
--color-base-background-1:  #FFF8E1;    /* Light warm yellow — main background */
--color-base-background-2:  #FFFFFF;    /* Pure white — secondary background */
--color-base-border:        #E5E5E5;

--color-base-accent-1:      #111111;    /* Black */
--color-base-accent-2:      #FFC700;    /* Gold */
--color-base-accent-3:      #1FAA59;    /* Green */

  /* System mapping — these get overridden per color-class context below */
  --color-foreground:         var(--color-base-text);
  --color-background:         var(--color-base-background-1);

  /* 1.2 Animation Durations */
  --duration-short:    100ms;
  --duration-default:  200ms;
  --duration-long:     500ms;

  /* 1.3 UI Tokens */
  --buttons-radius:   8px;
  --page-width:       160rem;

  /* Link defaults — black instead of gold */
  --color-link:             111, 111, 111;
  --alpha-link:             0.85;

  /* Button defaults */
  --color-button:           var(--color-base-accent-1);
  --color-button-text:      #FFFFFF;
  --alpha-button-background: 1;
  --alpha-button-border:     1;

  /* Card hover default */
  --color-card-hover:       var(--color-base-text);

  /* Icon default */
  --color-icon:             var(--color-base-text);
}


/* =============================================================================
   2. COLOR SYSTEM
   Each class overrides the semantic variables for its own context.
============================================================================= */

/* 2.1 Background Color Classes */
:root,
.color-background-1 {
  --color-foreground:   var(--color-base-text);
  --color-background:   var(--color-base-background-1);
  --gradient-background: var(--gradient-base-background-1);
}

.color-background-2 {
  --color-foreground:   var(--color-base-text);
  --color-background:   var(--color-base-background-2);
  --gradient-background: var(--gradient-base-background-2);
}

/* 2.2 Accent / Inverse Color Classes */
.color-inverse {
  --color-background:   var(--color-base-background-1);
  --color-foreground:   var(--color-base-text);
  --gradient-background: rgb(var(--color-base-text));
}

.color-accent-1 {
  --color-foreground:   var(--color-base-solid-button-labels);
  --color-background:   var(--color-base-accent-1);
  --gradient-background: var(--gradient-base-accent-1);
}

.color-accent-2 {
  --color-foreground:   var(--color-base-solid-button-labels);
  --color-background:   var(--color-base-accent-2);
  --gradient-background: var(--gradient-base-accent-2);
}

.color-accent-3 {
  --color-foreground:   var(--color-base-solid-button-labels);
  --color-background:   var(--color-base-accent-3);
  --gradient-background: var(--color-base-accent-3);
}

/* 2.3 Foreground Utility Classes */
.color-foreground-outline-button { --color-foreground: var(--color-base-text); }
.color-foreground-accent-1       { --color-foreground: var(--color-base-accent-1); }
.color-foreground-accent-2       { --color-foreground: var(--color-base-accent-2); }

/* 2.4 Link Variables per Context */
:root,
.color-background-1 {
  --color-link:  var(--color-base-accent-2);
  --alpha-link:  0.85;
}

.color-background-2,
.color-inverse,
.color-accent-1,
.color-accent-2 {
  --color-link:  var(--color-foreground);
  --alpha-link:  0.7;
}

/* 2.5 Button Variables per Context */
:root,
.color-background-1 {
  --color-button:            var(--color-base-accent-1);
  --color-button-text:       var(--color-base-solid-button-labels);
  --alpha-button-background: 1;
  --alpha-button-border:     1;
}

.color-background-2,
.color-inverse,
.color-accent-1,
.color-accent-2 {
  --color-button:      var(--color-foreground);
  --color-button-text: var(--color-background);
}

/* Secondary button override */
.button--secondary {
  --color-button:            var(--color-base-background-2);
  --color-button-text:       var(--color-base-text);
  --alpha-button-background: 1;
}

/* Banner / Hero button — force black + gradient hover */
.banner__buttons .button--primary,
.banner__buttons .button {
  background-color: #111111 !important;
  color: #ffffff !important;
}

.banner__buttons .button--primary::before,
.banner__buttons .button::before {
  content: "";
  position: absolute;
  top: 0; right: auto; bottom: 0; left: -6px;
  z-index: 1;
  width: 0%;
  height: 100%;
  border-radius: var(--buttons-radius);
  background: linear-gradient(90deg, var(--color-base-accent-3) 0%, var(--color-base-accent-2) 100%);
  transition: all 0.4s ease-in-out;
}

.banner__buttons .button--primary:hover::before,
.banner__buttons .button:hover::before {
  width: 110%;
}

.banner__buttons .button--primary:hover,
.banner__buttons .button:hover {
  color: #ffffff !important;
}

/* 2.6 Card Hover Variables */
:root,
.color-background-1,
.color-background-2 {
  --color-card-hover: var(--color-base-text);
}

.color-inverse {
  --color-card-hover: var(--color-base-background-1);
}

.color-accent-1,
.color-accent-2 {
  --color-card-hover: var(--color-base-solid-button-labels);
}

/* 2.7 Badge Variables */
:root,
.color-background-1 {
  --color-badge-background: var(--color-base-accent-1);
  --color-badge-border:     var(--color-foreground);
  --alpha-badge-border:     0.1;
}

.color-background-2,
.color-inverse,
.color-accent-1,
.color-accent-2 {
  --color-badge-background: var(--color-background);
  --color-badge-border:     var(--color-background);
  --alpha-badge-border:     1;
}

/* 2.8 Icon Color Variables */
:root,
.color-icon-text          { --color-icon: rgb(var(--color-base-text)); }
.color-icon-accent-1      { --color-icon: rgb(var(--color-base-accent-1)); }
.color-icon-accent-2      { --color-icon: rgb(var(--color-base-accent-2)); }
.color-icon-outline-button{ --color-icon: rgb(var(--color-base-outline-button-labels)); }

/* 2.9 Component-level Variable Mapping */

/* Product cards */
.product-card-wrapper .card,
.contains-card--product {
  --border-radius:             var(--product-card-corner-radius);
  --border-width:              var(--product-card-border-width);
  --border-opacity:            var(--product-card-border-opacity);
  --shadow-horizontal-offset:  var(--product-card-shadow-horizontal-offset);
  --shadow-vertical-offset:    var(--product-card-shadow-vertical-offset);
  --shadow-blur-radius:        var(--product-card-shadow-blur-radius);
  --shadow-opacity:            var(--product-card-shadow-opacity);
  --shadow-visible:            var(--product-card-shadow-visible);
  --image-padding:             var(--product-card-image-padding);
  --text-alignment:            var(--product-card-text-alignment);
}

/* Collection cards */
.collection-card-wrapper .card,
.contains-card--collection {
  --border-radius:             var(--collection-card-corner-radius);
  --border-width:              var(--collection-card-border-width);
  --border-opacity:            var(--collection-card-border-opacity);
  --shadow-horizontal-offset:  var(--collection-card-shadow-horizontal-offset);
  --shadow-vertical-offset:    var(--collection-card-shadow-vertical-offset);
  --shadow-blur-radius:        var(--collection-card-shadow-blur-radius);
  --shadow-opacity:            var(--collection-card-shadow-opacity);
  --shadow-visible:            var(--collection-card-shadow-visible);
  --image-padding:             var(--collection-card-image-padding);
  --text-alignment:            var(--collection-card-text-alignment);
}

/* Article (blog) cards */
.article-card-wrapper .card,
.contains-card--article {
  --border-radius:             var(--blog-card-corner-radius);
  --border-width:              var(--blog-card-border-width);
  --border-opacity:            var(--blog-card-border-opacity);
  --shadow-horizontal-offset:  var(--blog-card-shadow-horizontal-offset);
  --shadow-vertical-offset:    var(--blog-card-shadow-vertical-offset);
  --shadow-blur-radius:        var(--blog-card-shadow-blur-radius);
  --shadow-opacity:            var(--blog-card-shadow-opacity);
  --shadow-visible:            var(--blog-card-shadow-visible);
  --image-padding:             var(--blog-card-image-padding);
  --text-alignment:            var(--blog-card-text-alignment);
}

/* Text/content containers */
.contains-content-container,
.content-container {
  --border-radius:             var(--text-boxes-radius);
  --border-width:              var(--text-boxes-border-width);
  --border-opacity:            var(--text-boxes-border-opacity);
  --shadow-horizontal-offset:  var(--text-boxes-shadow-horizontal-offset);
  --shadow-vertical-offset:    var(--text-boxes-shadow-vertical-offset);
  --shadow-blur-radius:        var(--text-boxes-shadow-blur-radius);
  --shadow-opacity:            var(--text-boxes-shadow-opacity);
  --shadow-visible:            var(--text-boxes-shadow-visible);
}

/* Media elements */
.contains-media,
.global-media-settings {
  --border-radius:             var(--media-radius);
  --border-width:              var(--media-border-width);
  --border-opacity:            var(--media-border-opacity);
  --shadow-horizontal-offset:  var(--media-shadow-horizontal-offset);
  --shadow-vertical-offset:    var(--media-shadow-vertical-offset);
  --shadow-blur-radius:        var(--media-shadow-blur-radius);
  --shadow-opacity:            var(--media-shadow-opacity);
  --shadow-visible:            var(--media-shadow-visible);
}


/* =============================================================================
   3. BASE LAYOUT & UTILITIES
============================================================================= */

/* 3.1 Page Width / Container */
.page-width {
  max-width: var(--page-width);
  margin:    0 auto;
  padding:   0 1.7rem;
}

.page-width.drawer-menu {
  max-width: 100%;
}

.page-width-desktop {
  padding: 0;
  margin:  0 auto;
}

@media screen and (min-width: 1025px) {
  .page-width         { padding: 0 5rem; }
  .page-width--narrow { padding: 0 9rem; }
  .page-width-desktop { padding: 0; }
  .page-width-tablet  { padding: 0 5rem; }

  .header:not(.drawer-menu).page-width {
    padding-left:  5rem;
    padding-right: 5rem;
  }

  .page-width--narrow {
    max-width: 72.6rem;
    padding:   0;
  }

  .page-width-desktop {
    max-width: var(--page-width);
  }
}

/* 3.2 Section Spacing */
.isolate {
  position: relative;
  z-index:  0;
}

.section + .section {
  margin-top: var(--spacing-sections-mobile);
}

.section.slideshow_banner + .section.subbanners-section {
  margin-top: 30px;
}

.section.slideshow_banner + .section.section-collection-list {
  margin-top: 0;
}

@media screen and (min-width: 750px) {
  .section + .section {
    margin-top: var(--spacing-sections-desktop);
  }
}

.element-margin-top { margin-top: 5rem; }

@media screen and (min-width: 750px) {
  .element-margin {
    margin-top: calc(5rem + var(--page-width-margin));
  }
}

.grid-auto-flow {
  display:        grid;
  grid-auto-flow: column;
}

.page-margin,
.shopify-challenge__container {
  margin: 7rem auto;
}

.rte-width {
  max-width: 82rem;
  margin:    0 auto 2rem;
}

/* 3.3 Visibility & Display Utilities */
.no-js:not(html)           { display: none !important; }
html.no-js .no-js:not(html){ display: block !important; }
.no-js-inline              { display: none !important; }
html.no-js .no-js-inline   { display: inline-block !important; }
html.no-js .no-js-hidden   { display: none !important; }

body:not(.template-index) .service-block {
  margin-top: 5rem;
}

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

.hidden          { display: none !important; }

/* Screen-reader only — hides visually but stays in DOM for assistive tech */
.visually-hidden {
  position:   absolute !important;
  overflow:   hidden;
  width:      1px;
  height:     1px;
  margin:     -1px;
  padding:    0;
  border:     0;
  clip:       rect(0 0 0 0);
  word-wrap:  normal !important;
}

.visually-hidden--inline {
  margin: 0;
  height: 1em;
}

.overflow-hidden { overflow: hidden; }

.skip-to-content-link:focus {
  z-index:  9999;
  position: inherit;
  overflow: auto;
  width:    auto;
  height:   auto;
  clip:     auto;
}

/* Covers entire parent for clickable card links */
.full-width-link {
  position: absolute;
  top:      0;
  right:    0;
  bottom:   0;
  left:     0;
  z-index:  2;
}

.full-unstyled-link {
  text-decoration: none;
  color:           currentColor;
  display:         block;
}

/* 3.4 Text Alignment & Transform Utilities */
.left      { text-align: left; }
.center    { text-align: center; }
.right     { text-align: right; }
.uppercase { text-transform: uppercase; }

strong,
.bold { font-weight: 600; }     /* FIX: was ".blod" — typo fixed */

.light { opacity: 1; }

/* Hide empty elements */
a:empty, ul:empty, dl:empty, div:empty,
section:empty, article:empty, p:empty,
h1:empty, h2:empty, h3:empty, h4:empty, h5:empty, h6:empty {
  display: none;
}

/* Responsive hide helpers */
@media screen and (max-width: 749px)               { .small-hide  { display: none !important; } }
@media screen and (min-width: 750px) and (max-width: 989px) { .medium-hide { display: none !important; } }
@media screen and (min-width: 990px)               { .large-up-hide { display: none !important; } }

/* 3.5 Overflow Utilities */
.overflow-hidden-mobile,
.overflow-hidden-tablet,
.overflow-hidden-desktop { overflow: hidden; }

@media screen and (min-width: 750px)  { .overflow-hidden-mobile  { overflow: auto; } }
@media screen and (min-width: 990px)  { .overflow-hidden-tablet  { overflow: auto; } }

/* 3.6 Placeholder & Misc Utilities */
.placeholder {
  background-color: rgba(var(--color-foreground), 0.04);
  color:            rgba(var(--color-foreground), 0.55);
  fill:             rgba(var(--color-foreground), 0.55);
}

details > * { box-sizing: border-box; }

.break            { word-break: break-word; }
.visibility-hidden{ visibility: hidden; }
.isolate          { position: relative; z-index: 0; }
.font-body-bold   { font-weight: var(--font-body-weight-bold); }

.color-foreground { color: rgb(var(--color-foreground)); }

.gradient {
  background:            var(--color-background);
  background-attachment: fixed;
}

.ratio {
  display:     flex;
  position:    relative;
  align-items: stretch;
}

.ratio::before {
  content:         "";
  width:           0;
  height:          0;
  padding-bottom:  var(--ratio-percent);
}


/* =============================================================================
   4. TYPOGRAPHY
============================================================================= */

/* 4.1 Body Text */
.text-body {
  font-size:   1.5rem;
  letter-spacing: 0.05rem;
  line-height: calc(1 + 0.8 / var(--font-body-scale));
  font-family: var(--font-body-family);
  font-style:  var(--font-body-style);
  font-weight: var(--font-body-weight);
}

/* 4.2 Headings */
h1, h2, h3, h4, h5,
.h0, .h1, .h2, .h3, .h4, .h5 {
  font-family:     var(--font-heading-family);
  font-style:      var(--font-heading-style);
  font-weight:     var(--font-heading-weight);
  letter-spacing:  calc(var(--font-heading-scale) * 0.03rem);
  color:           var(--color-base-text);
  line-height:     calc(1 + 0.3 / max(1, var(--font-heading-scale)));
  word-break:      break-word;
}

.hxl { font-size: calc(var(--font-heading-scale) * 5rem); }
@media only screen and (min-width: 750px) {
  .hxl { font-size: calc(var(--font-heading-scale) * 6.2rem); }
}

.h0 { font-size: calc(var(--font-heading-scale) * 4rem); }
@media only screen and (min-width: 750px) {
  .h0 { font-size: calc(var(--font-heading-scale) * 5.2rem); }
}

h1, .h1 { font-size: calc(var(--font-heading-scale) * 2.8rem); }
@media only screen and (min-width: 750px) {
  h1, .h1 { font-size: calc(var(--font-heading-scale) * 3.2rem); }
}

h2, .h2 { font-size: calc(var(--font-heading-scale) * 2.2rem); }
@media only screen and (min-width: 750px) {
  h2, .h2 { font-size: calc(var(--font-heading-scale) * 2.6rem); }
}

h3, .h3 { font-size: calc(var(--font-heading-scale) * 2rem); }
@media only screen and (min-width: 750px) {
  h3, .h3 { font-size: calc(var(--font-heading-scale) * 2.4rem); }
}

h4, .h4 {
  font-family: var(--font-heading-family);
  font-style:  var(--font-heading-style);
  font-size:   calc(var(--font-heading-scale) * 1.8rem);
}

h5, .h5 { font-size: calc(var(--font-heading-scale) * 1.5rem); }
@media only screen and (min-width: 750px) {
  h5, .h5 { font-size: calc(var(--font-heading-scale) * 1.6rem); }
}

h6, .h6 {
  color:             var(--color-foreground);
  opacity:           0.75;    /* FIX: was missing indentation — fixed */
  margin-block-start: 1.67em;
  margin-block-end:   1.67em;
}

/* 4.3 Captions */
.caption {
  font-size:      1rem;
  letter-spacing: 0.07rem;
  line-height:    calc(1 + 0.7 / var(--font-body-scale));
}

@media screen and (min-width: 750px) {
  .caption { font-size: 1.2rem; }
}

.caption-with-letter-spacing {
  font-size:      1.3rem;
  letter-spacing: 0.13rem;
  line-height:    calc(1 + 0.2 / var(--font-body-scale));
  text-transform: initial;
}

.caption-with-letter-spacing--medium {
  font-size:      1.2rem;
  letter-spacing: 0.16rem;
}

.caption-with-letter-spacing--large {
  font-size:      1.5rem;
  letter-spacing: 0.18rem;
}

/* Shared line-height/letter-spacing for form labels and captions */
.caption-large,
.customer .field input,
.customer select,
.field__input,
.form__label,
.select__select {
  line-height:    calc(1 + 0.5 / var(--font-body-scale));
  letter-spacing: 0.04rem;
}

/* 4.4 Links & Underlined Links */
.link,
.customer a {
  cursor:          pointer;
  display:         inline-block;
  border:          none;
  box-shadow:      none;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
  color:           var(--color-link);
  background-color: transparent;
  font-family:     inherit;
}

.link--text       { color: var(--color-base-accent-2); }
.link--text:hover { color: var(--color-base-accent-3); }

.link-with-icon {
  display:         inline-flex;
  font-size:       1.4rem;
  font-weight:     600;
  letter-spacing:  0.1rem;
  text-decoration: none;
  margin-bottom:   4.5rem;
  white-space:     nowrap;
}

.link-with-icon .icon {
  width:       1.5rem;
  margin-left: 1rem;
}

a:not([href]) { cursor: not-allowed; }

/* Circle separator between inline items */
.circle-divider::after {
  content: "\2022";
  margin:  0 1.3rem 0 1.5rem;
}
.circle-divider:last-of-type::after { display: none; }

hr {
  border:           none;
  height:           0.1rem;
  background-color: rgba(var(--color-foreground), 0.2);
  display:          block;
  margin:           5rem 0;
}

@media screen and (min-width: 750px) {
  hr { margin: 7rem 0; }
}

/* Animated underline links */
.underlined-link,
.customer a,
.inline-richtext a {
  text-underline-offset:     0.3rem;
  text-decoration-thickness: 0.1rem;
  transition: text-decoration-thickness ease 100ms;
}

.underlined-link,
.customer a { color: var(--color-base-accent-2); }

.inline-richtext a,
.rte.inline-richtext a { color: currentColor; }

.underlined-link:hover,
.customer a:hover,
.inline-richtext a:hover {
  color:           var(--color-base-accent-3);
  text-decoration: none;
}

.icon-arrow { width: 1.5rem; }

h3 .icon-arrow,
.h3 .icon-arrow {
  width: calc(var(--font-heading-scale) * 1.5rem);
}

/* 4.5 Blockquote */
blockquote {
  font-style:  italic;
  color:       var(--color-foreground);
  border-left: 0.2rem solid var(--color-base-border);
  padding-left: 1rem;
}

@media screen and (min-width: 750px) {
  blockquote { padding-left: 1.5rem; }
}

/* 4.6 Tables (generic — no class) */
table:not([class]) {
  table-layout:   fixed;
  border-collapse: collapse;
  font-size:      1.4rem;
  border-style:   hidden;
  box-shadow:     0 0 0 0.1rem rgba(var(--color-foreground), 0.2);
}

table:not([class]) td,
table:not([class]) th {
  padding: 1em;
  border:  0.1rem solid rgba(var(--color-foreground), 0.2);
}

/* 4.7 Rich Text (RTE) */
.rte:after {
  clear:   both;
  content: "";
  display: block;
}

.rte > p:first-child { margin-top: 0; }
.rte > p:last-child  { margin-bottom: 0; }

.rte table { table-layout: fixed; }

@media screen and (min-width: 750px) {
  .rte table td {
    padding-left:  1.2rem;
    padding-right: 1.2rem;
  }
}

.rte img {
  height:       auto;
  max-width:    100%;
  border:       var(--media-border-width) solid rgba(var(--color-foreground), var(--media-border-opacity));
  border-radius: var(--media-radius);
  box-shadow:   var(--media-shadow-horizontal-offset) var(--media-shadow-vertical-offset)
                var(--media-shadow-blur-radius) rgba(var(--color-shadow), var(--media-shadow-opacity));
  margin-bottom: var(--media-shadow-vertical-offset);
}

.rte ul,
.rte ol {
  list-style-position: inside;
  padding-left:        2rem;
}

.rte li              { list-style: inherit; }
.rte li:last-child   { margin-bottom: 0; }

.rte a {
  color:                    rgba(var(--color-link), var(--alpha-link));
  text-underline-offset:     0.3rem;
  text-decoration-thickness: 0.1rem;
  transition: text-decoration-thickness var(--duration-short) ease;
}

.rte a:hover {
  color:                    rgb(var(--color-link));
  text-decoration-thickness: 0.2rem;
}

.rte blockquote       { display: inline-flex; }
.rte blockquote > *   { margin: -0.5rem 0; }


/* =============================================================================
   5. FOCUS & ACCESSIBILITY
============================================================================= */

/* Reset all focus — custom rings below handle it */
*:focus { outline: 0; box-shadow: none; }

/* 5.1 Focus Ring — Default (with offset) */
*:focus-visible {
  outline:        0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: 0.3rem;
  box-shadow:
    0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
}

/* Fallback for browsers that don't support :focus-visible */
.focused,
.no-js *:focus {
  outline:        0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: 0.3rem;
  box-shadow:
    0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
}

/* Negate fallback for browsers that DO support :focus-visible */
.no-js *:focus:not(:focus-visible) { outline: 0; box-shadow: none; }

/* 5.2 Focus Ring — Inset */
.focus-inset:focus-visible {
  outline:        0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: -0.2rem;
  box-shadow:     0 0 0.2rem 0 rgba(var(--color-foreground), 0.3);
}

.focused.focus-inset,
.no-js .focus-inset:focus {
  outline:        0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: -0.2rem;
  box-shadow:     0 0 0.2rem 0 rgba(var(--color-foreground), 0.3);
}

.no-js .focus-inset:focus:not(:focus-visible) { outline: 0; box-shadow: none; }

/* 5.3 Focus Ring — Offset (large) */
.focus-offset:focus-visible {
  outline:        0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: 1rem;
  box-shadow:
    0 0 0 1rem rgb(var(--color-background)),
    0 0 0.2rem 1.2rem rgba(var(--color-foreground), 0.3);
}

.focus-offset.focused,
.no-js .focus-offset:focus {
  outline:        0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: 1rem;
  box-shadow:
    0 0 0 1rem rgb(var(--color-background)),
    0 0 0.2rem 1.2rem rgba(var(--color-foreground), 0.3);
}

.no-js .focus-offset:focus:not(:focus-visible) { outline: 0; box-shadow: none; }

/* 5.4 Focus Ring — None (DANGEROUS — only for elements that have visible focus indicators already) */
.focus-none { box-shadow: none !important; outline: 0 !important; }

/* 5.5 Reduced Motion */
@media (prefers-reduced-motion) {
  .motion-reduce { transition: none !important; animation: none !important; }

  details[open] > .header__submenu {
    opacity:   1;
    transform: translateY(0);
  }
}


/* =============================================================================
   6. COMPONENT — DETAILS / SUMMARY (Disclosure)
============================================================================= */

/* 6.1 Base Summary Styles */
summary {
  cursor:    pointer;
  list-style: none;
  position:  relative;
}

summary .icon-caret {
  position: absolute;
  height:   0.8rem;
  right:    1.5rem;
  top:      calc(50% - 0.2rem);
}

footer summary .icon-caret {
  position: absolute;
  height:   0.8rem;
  right:    0;
  top:      calc(50% - 1rem);
  fill:     var(--color-foreground);
}

summary::-webkit-details-marker { display: none; }

/* 6.2 Disclosure Popup */
.disclosure-has-popup { position: relative; }

/* Invisible backdrop to close popup on outside click */
.disclosure-has-popup[open] > summary::before {
  position:   fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index:    2;
  display:    block;
  cursor:     default;
  content:    " ";
  background: transparent;
}

.disclosure-has-popup > summary::before { display: none; }

.disclosure-has-popup[open] > summary + * { z-index: 100; }

@media screen and (min-width: 750px) {
  .disclosure-has-popup[open] > summary + * { z-index: 4; }
  .facets .disclosure-has-popup[open] > summary + * { z-index: 2; }
}


/* =============================================================================
   7. COMPONENT — GRID
============================================================================= */

/* 7.1 Base Grid */
.grid {
  display:     flex;
  flex-wrap:   wrap;
  margin-bottom: 2rem;
  padding:     0;
  list-style:  none;
  column-gap:  var(--grid-mobile-horizontal-spacing);
  row-gap:     var(--grid-mobile-vertical-spacing);
}

@media screen and (min-width: 990px) {
  .grid {
    column-gap: var(--grid-desktop-horizontal-spacing);
    row-gap:    var(--grid-desktop-vertical-spacing);
  }
}

.grid:last-child { margin-bottom: 0; }

.grid--gapless.grid { column-gap: 0; row-gap: 0; }

/* Base grid item */
.grid__item {
  width:     calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
  max-width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
  flex-grow: 1;
  flex-shrink: 0;
}

@media screen and (min-width: 990px) {
  .grid__item {
    width:     calc(33.33% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
    max-width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
  }
}

/* 7.2 Column Variants */
.grid--1-col .grid__item { max-width: 100%; width: 100%; }

.grid--2-col .grid__item { width: calc(50% - var(--grid-mobile-horizontal-spacing) / 2); }
@media screen and (min-width: 750px) {
  .grid--2-col .grid__item  { width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2); }
  .grid--2-col-tablet .grid__item { width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2); }
}

.grid--3-col .grid__item { width: calc(33.33% - var(--grid-mobile-horizontal-spacing) * 2 / 3); }
@media screen and (min-width: 750px) {
  .grid--3-col .grid__item      { width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3); }
  .grid--3-col-tablet .grid__item{ width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3); }
}

@media screen and (min-width: 750px) {
  .grid--4-col-tablet .grid__item { width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4); }
}

/* 7.3 Responsive Column Overrides */

/* Tablet-down: force 1 column */
@media screen and (max-width: 989px) {
  .grid--1-col-tablet-down .grid__item { width: 100%; max-width: 100%; }
}

/* Desktop only (min 1270px) — 2–6 col variants */
@media screen and (min-width: 1270px) {
  .grid--2-col-desktop .grid__item {
    width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
    max-width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  }
  .grid--3-col-desktop .grid__item {
    width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
    max-width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
  }
  .grid--4-col-desktop .grid__item {
    width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
    max-width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
  }
  .grid--5-col-desktop .grid__item {
    width: calc(20% - var(--grid-desktop-horizontal-spacing) * 4 / 5);
    max-width: calc(20% - var(--grid-desktop-horizontal-spacing) * 4 / 5);
  }
  .grid--6-col-desktop .grid__item,
  .template-list-collections .grid--6-col-desktop .grid__item {
    width: calc(16.66% - var(--grid-desktop-horizontal-spacing) * 6 / 7);
    max-width: calc(16.66% - var(--grid-desktop-horizontal-spacing) * 6 / 7);
  }
}

/* 4-col desktop collapses to 3 on medium */
@media screen and (max-width: 989px) {
  .grid--4-col-desktop .grid__item {
    width: calc(33.33% - var(--grid-mobile-horizontal-spacing) * 2 / 3);
    max-width: calc(33.33% - var(--grid-mobile-horizontal-spacing) * 2 / 3);
  }
}

/* 5-col responsive breakpoints */
@media screen and (max-width: 1500px) {
  .grid--5-col-desktop .grid__item {
    width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
    max-width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
  }
}
@media screen and (max-width: 1100px) {
  .grid--5-col-desktop .grid__item {
    width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
    max-width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
  }
  .grid--3-col-desktop .grid__item {
    width: calc(50% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
    max-width: calc(50% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
  }
}
@media screen and (max-width: 849px) and (min-width: 576px) {
  .grid--5-col-desktop .grid__item {
    width: calc(33.33% - var(--grid-mobile-horizontal-spacing) * 2 / 3);
    max-width: calc(33.33% - var(--grid-mobile-horizontal-spacing) * 2 / 3);
  }
}
@media screen and (max-width: 575px) {
  .grid--4-col-desktop .grid__item,
  .grid--5-col-desktop .grid__item {
    width: calc(50% - var(--grid-mobile-horizontal-spacing) * 1 / 2);
    max-width: calc(50% - var(--grid-mobile-horizontal-spacing) * 1 / 2);
  }
}

/* 1-col desktop */
@media screen and (min-width: 990px) {
  .grid--1-col-desktop { flex: 0 0 100%; max-width: 100%; }
  .grid--1-col-desktop .grid__item { width: 100%; max-width: 100%; }
}

/* 3-col desktop responsive */
@media screen and (min-width: 750px) and (max-width: 989px) {
  .grid--3-col-desktop .grid__item {
    width: calc(50% - var(--grid-mobile-horizontal-spacing) * 2 / 3);
    max-width: calc(50% - var(--grid-mobile-horizontal-spacing) * 2 / 3);
  }
}
@media screen and (min-width: 576px) and (max-width: 749px) {
  .grid--3-col-desktop .grid__item {
    width: calc(33.33% - var(--grid-mobile-horizontal-spacing) * 2 / 3);
    max-width: calc(33.33% - var(--grid-mobile-horizontal-spacing) * 2 / 3);
  }
}
@media screen and (max-width: 575px) {
  .grid--3-col-desktop .grid__item {
    width: calc(50% - var(--grid-mobile-horizontal-spacing) * 2 / 3);
    max-width: calc(50% - var(--grid-mobile-horizontal-spacing) * 2 / 3);
  }
}

/* Related products responsive */
@media screen and (min-width: 1367px) and (max-width: 1500px) {
  .related-products .grid__item {
    width: calc(20% - var(--grid-desktop-horizontal-spacing) * 4 / 5);
    max-width: calc(20% - var(--grid-desktop-horizontal-spacing) * 4 / 5);
  }
}
@media screen and (min-width: 990px) and (max-width: 1366px) {
  .related-products .grid__item {
    width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
    max-width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
  }
}
@media screen and (min-width: 750px) and (max-width: 989px) {
  .related-products .grid__item {
    width: calc(33.33% - var(--grid-mobile-horizontal-spacing) * 2 / 3);
    max-width: calc(33.33% - var(--grid-mobile-horizontal-spacing) * 2 / 3);
  }
}
@media screen and (min-width: 576px) and (max-width: 749px) {
  .related-products .grid__item {
    width: calc(33.33% - var(--grid-mobile-horizontal-spacing) * 2 / 3);
    max-width: calc(33.33% - var(--grid-mobile-horizontal-spacing) * 2 / 3);
  }
}
@media screen and (max-width: 575px) {
  .related-products .grid__item {
    width: calc(50% - var(--grid-mobile-horizontal-spacing) / 2);
    max-width: calc(50% - var(--grid-mobile-horizontal-spacing) / 2);
  }
}

/* Collection list grid — 6-col, 7-col, 8-col responsive */
.template-list-collections .collection-list.grid--8-col-desktop .grid__item {
  width: calc(12.5% - var(--grid-desktop-horizontal-spacing) * 7 / 8);
  max-width: calc(12.5% - var(--grid-desktop-horizontal-spacing) * 7 / 8);
}

@media screen and (min-width: 990px) {
  .template-list-collections .collection-list.grid--8-col-desktop .grid__item {
    width: calc(16.66% - var(--grid-desktop-horizontal-spacing) * 6 / 7);
    max-width: calc(16.66% - var(--grid-desktop-horizontal-spacing) * 6 / 7);
  }
}

@media (max-width: 1449px) and (min-width: 1270px) {
  .template-list-collections .collection-list.grid--6-col-desktop .grid__item {
    width: calc(16.66% - var(--grid-desktop-horizontal-spacing) * 5 / 6);
    max-width: calc(16.66% - var(--grid-desktop-horizontal-spacing) * 5 / 6);
  }
}
@media (max-width: 1269px) and (min-width: 990px) {
  .template-list-collections .collection-list.grid--6-col-desktop .grid__item {
    width: calc(20% - var(--grid-desktop-horizontal-spacing) * 4 / 5);
    max-width: calc(20% - var(--grid-desktop-horizontal-spacing) * 4 / 5);
  }
}
@media (max-width: 1049px) and (min-width: 990px) {
  .template-list-collections .collection-list.grid--8-col-desktop .grid__item {
    width: calc(20% - var(--grid-desktop-horizontal-spacing) * 4 / 5);
    max-width: calc(20% - var(--grid-desktop-horizontal-spacing) * 4 / 5);
  }
}
@media (max-width: 989px) and (min-width: 651px) {
  .template-list-collections .collection-list.grid--6-col-desktop .grid__item {
    width: calc(25% - var(--grid-mobile-horizontal-spacing) * 3 / 4);
    max-width: calc(25% - var(--grid-mobile-horizontal-spacing) * 3 / 4);
  }
}
@media (max-width: 899px) and (min-width: 750px) {
  .template-list-collections .collection-list.grid--8-col-desktop .grid__item {
    width: calc(25% - var(--grid-mobile-horizontal-spacing) * 3 / 4);
    max-width: calc(25% - var(--grid-mobile-horizontal-spacing) * 3 / 4);
  }
}
@media (max-width: 650px) and (min-width: 480px) {
  .template-list-collections .collection-list.grid--6-col-desktop .grid__item {
    width: calc(33.33% - var(--grid-mobile-horizontal-spacing) * 2 / 3);
    max-width: calc(33.33% - var(--grid-mobile-horizontal-spacing) * 2 / 3);
  }
}
@media screen and (max-width: 479px) {
  .template-list-collections .collection-list.grid--6-col-desktop .grid__item {
    width: calc(50% - var(--grid-mobile-horizontal-spacing) / 2);
    max-width: calc(50% - var(--grid-mobile-horizontal-spacing) / 2);
  }
}

/* 7-col collection list */
@media screen and (max-width: 749px) {
  .template-list-collections .collection-list.grid--7-col-desktop .grid__item { width: calc(25%); }
}
@media screen and (max-width: 575px) {
  .template-list-collections .collection-list.grid--7-col-desktop .grid__item { width: calc(33.33%); }
}
@media screen and (max-width: 380px) {
  .template-list-collections .collection-list.grid--7-col-desktop .grid__item { width: calc(50%); }
}
@media screen and (min-width: 990px) and (max-width: 1269px) {
  .template-list-collections .collection-list.grid--7-col-desktop .grid__item {
    width: calc(20%);
    max-width: calc(20%);
  }
  .template-list-collections .grid--5-col-desktop .grid__item {
    width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
    max-width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
  }
}
@media screen and (min-width: 768px) and (max-width: 989px) {
  .template-list-collections .collection-list.grid--7-col-desktop .grid__item {
    width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
  }
  .template-list-collections .grid--5-col-desktop .grid__item {
    width: calc(33.33% - var(--grid-mobile-horizontal-spacing) * 2 / 3);
    max-width: calc(33.33% - var(--grid-mobile-horizontal-spacing) * 2 / 3);
  }
  .grid--5-col-desktop .grid__item {
    width: calc(25% - var(--grid-mobile-horizontal-spacing) * 3 / 4);
    max-width: calc(25% - var(--grid-mobile-horizontal-spacing) * 3 / 4);
  }
}
@media screen and (max-width: 767px) and (min-width: 600px) {
  .template-list-collections .grid--5-col-desktop .grid__item {
    width: calc(33.33% - var(--grid-mobile-horizontal-spacing) * 2 / 3);
    max-width: calc(33.33% - var(--grid-mobile-horizontal-spacing) * 2 / 3);
  }
}
@media screen and (max-width: 599px) {
  .template-list-collections .grid--5-col-desktop .grid__item {
    width: calc(50% - var(--grid-mobile-horizontal-spacing) * 1 / 2);
    max-width: calc(50% - var(--grid-mobile-horizontal-spacing) * 1 / 2);
  }
}

/* 7.4 Slider / Peek Variants */
@media screen and (max-width: 749px) {
  .grid__item.slider__slide--full-width { width: 100%; max-width: none; }

  .grid--peek.slider--mobile {
    margin: 0;
    width:  100%;
  }

  .grid--peek.slider--mobile .grid__item {
    box-sizing: content-box;
    margin:     0;
    width:      100%;
  }

  .grid--peek .grid__item    { min-width: 35%; }

  .grid--peek.slider:after {
    margin-left: calc(-1 * var(--grid-mobile-horizontal-spacing));
  }

  .slider--tablet.grid--peek.grid--2-col-tablet-down .grid__item,
  .grid--peek .grid__item {
    width: calc(50%);
  }

  .slider--tablet.grid--peek.grid--1-col-tablet-down .grid__item,
  .slider--mobile.grid--peek.grid--1-col-tablet-down .grid__item {
    width: calc(100%);
  }
}

@media screen and (max-width: 989px) {
  .slider--tablet.grid--peek         { margin: 0; width: 100%; }
  .slider--tablet.grid--peek .grid__item { box-sizing: content-box; margin: 0; }
}

@media screen and (min-width: 768px) and (max-width: 989px) {
  .slider--tablet.grid--peek .grid__item {
    width: calc(25% - var(--grid-desktop-horizontal-spacing) - 3rem);
  }
  .slider--tablet.grid--peek.grid--3-col-tablet .grid__item {
    width: calc(33.33% - var(--grid-desktop-horizontal-spacing) - 3rem);
  }
  .slider--tablet.grid--peek.grid--2-col-tablet .grid__item,
  .slider--tablet.grid--peek.grid--2-col-tablet-down .grid__item {
    width: calc(50% - var(--grid-desktop-horizontal-spacing) - 3rem);
  }
  .grid--1-col-tablet-down.grid--peek .grid__item {
    width: calc(100% - var(--grid-desktop-horizontal-spacing) - 3rem);
  }
}

/* 7.5 Safari Flexbox Gap Fallback */
@supports not (inset: 10px) {
  .grid           { margin-left: calc(-1 * var(--grid-mobile-horizontal-spacing)); }
  .grid__item     { padding-left: var(--grid-mobile-horizontal-spacing); padding-bottom: var(--grid-mobile-vertical-spacing); }

  @media screen and (min-width: 750px) {
    .grid       { margin-left: calc(-1 * var(--grid-desktop-horizontal-spacing)); }
    .grid__item { padding-left: var(--grid-desktop-horizontal-spacing); padding-bottom: var(--grid-desktop-vertical-spacing); }
  }

  .grid--gapless .grid__item { padding-left: 0; padding-bottom: 0; }

  @media screen and (min-width: 749px) {
    .grid--peek .grid__item { padding-left: var(--grid-mobile-horizontal-spacing); }
  }

  .product-grid .grid__item { padding-bottom: var(--grid-mobile-vertical-spacing); }

  @media screen and (min-width: 750px) {
    .product-grid .grid__item { padding-bottom: var(--grid-desktop-vertical-spacing); }
  }
}


/* =============================================================================
   8. COMPONENT — MEDIA
============================================================================= */

/* 8.1 Base Media */
.media {
  display:          block;
  background-color: rgba(var(--color-foreground), 0.1);
  position:         relative;
  overflow:         hidden;
}

.media--transparent { background-color: transparent; }

/* All direct children fill the media box */
.media > *:not(.zoom):not(.deferred-media__poster-button),
.media model-viewer {
  display:   block;
  max-width: 100%;
  position:  absolute;
  top: 0; left: 0;
  height: 100%; width: 100%;
}

.media > img {
  object-fit:      cover;
  object-position: center center;
  transition:      opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 8.2 Aspect Ratio Variants */
.media--square   { padding-bottom: 100%; }
.media--portrait { padding-bottom: 125%; }
.media--landscape{ padding-bottom: 66.6%; }
.media--cropped  { padding-bottom: 56%; }
.media--16-9     { padding-bottom: 56.25%; }
.media--circle   { padding-bottom: 100%; border-radius: 50%; }

@media screen and (min-width: 990px) {
  .media--cropped { padding-bottom: 63%; }
}

/* 8.3 Hover Effect (second image fade-in) */
.media.media--hover-effect > img + img { opacity: 0; }

/* 8.4 Deferred Media */
deferred-media { display: block; }


/* =============================================================================
   9. COMPONENT — BUTTONS
============================================================================= */

/* 9.1 Button Variables & Base */
.button,
.shopify-challenge__button,
.customer button,
button.shopify-payment-button__button--unbranded,
.shopify-payment-button [role="button"],
.cart__dynamic-checkout-buttons [role="button"],
.cart__dynamic-checkout-buttons iframe {
  --shadow-horizontal-offset: var(--buttons-shadow-horizontal-offset);
  --shadow-vertical-offset:   var(--buttons-shadow-vertical-offset);
  --shadow-blur-radius:       var(--buttons-shadow-blur-radius);
  --shadow-opacity:           var(--buttons-shadow-opacity);
  --shadow-visible:           var(--buttons-shadow-visible);
  --border-offset:            var(--buttons-border-offset);
  --border-opacity:           calc(1 - var(--buttons-border-opacity));
  border-radius:              var(--buttons-radius-outset);
  position:                   relative;
}

.button,
.shopify-challenge__button,
.customer button,
button.shopify-payment-button__button--unbranded {
  min-width:  calc(12rem + var(--buttons-border-width) * 2);
  min-height: calc(4.5rem + var(--buttons-border-width) * 2);
}

.shopify-payment-button__button--branded { z-index: auto; }

.cart__dynamic-checkout-buttons iframe {
  box-shadow: var(--shadow-horizontal-offset) var(--shadow-vertical-offset)
              var(--shadow-blur-radius) rgba(var(--color-base-text), var(--shadow-opacity));
}

/* Core button styles */
.button,
.shopify-challenge__button,
.customer button {
  display:          inline-flex;
  justify-content:  center;
  align-items:      center;
  border:           0;
  padding:          0 3.1rem;
  cursor:           pointer;
  font:             inherit;
  font-size:        1.4rem;
  letter-spacing:   0.5px;
  line-height:      calc(1 + 0.2 / var(--font-body-scale));
  text-decoration:  none;
  color:            #ffffff;
  transition:       all 0.5s ease-in-out;
  -webkit-appearance: none;
  appearance:       none;
  background-color: #111111;
  text-transform:   uppercase;
  font-weight:      500;
  position:         relative;
  z-index:          1;
  overflow:         hidden;
}

.button,
.button-label,
.shopify-challenge__button,
.customer button {
  font-size:      1.4rem;
  letter-spacing: 0.5px;
  line-height:    calc(1 + 0.2 / var(--font-body-scale));
}

/* Hover — text color stays white */
.button:hover,
.shopify-challenge__button:hover,
.customer button:hover,
.search__button:hover,
.newsletter-form__button:hover {
  color: #ffffff;
}

/* Hover slide-in animation — pseudo-element sweeps from left with gradient */
.button::before,
.shopify-challenge__button::before,
.customer button::before,
.shopify-payment-button [role="button"]::before,
.cart__dynamic-checkout-buttons [role="button"]::before {
  content:          "";
  position:         absolute;
  top: 0; right: auto; bottom: 0; left: -6px;
  z-index:          -1;
  width:            0%;
  height:           100%;
  border-radius:    var(--buttons-radius);
  background:       linear-gradient(90deg, var(--color-base-accent-3) 0%, var(--color-base-accent-2) 100%);
  transition:       all 0.4s ease-in-out;
}

.button:hover::before,
.shopify-challenge__button:hover::before,
.customer button:hover::before,
.shopify-payment-button [role="button"]:hover::before,
.cart__dynamic-checkout-buttons [role="button"]:hover::before {
  width: 110%; height: 100%;
}

/* Border ring pseudo-element */
.button:after,
.shopify-challenge__button:after,
.customer button:after,
.shopify-payment-button__button--unbranded:after {
  content:       "";
  position:      absolute;
  top:    var(--buttons-border-width);
  right:  var(--buttons-border-width);
  bottom: var(--buttons-border-width);
  left:   var(--buttons-border-width);
  z-index:       1;
  border-radius: var(--buttons-radius);
  box-shadow:
    0 0 0 calc(var(--buttons-border-width) + var(--border-offset)) rgba(var(--color-button-text), var(--border-opacity)),
    0 0 0 var(--buttons-border-width) rgba(var(--color-button), var(--alpha-button-background));
  transition: box-shadow var(--duration-short) ease;
}

.button:not([disabled]):hover::after,
.shopify-challenge__button:hover::after,
.customer button:hover::after,
.shopify-payment-button__button--unbranded:hover::after {
  --border-offset: 1.3px;
  box-shadow:
    0 0 0 calc(var(--buttons-border-width) + var(--border-offset)) rgba(var(--color-button-text), var(--border-opacity)),
    0 0 0 calc(var(--buttons-border-width) + 1px) rgba(var(--color-button), var(--alpha-button-background));
}

.button--secondary:after { --border-opacity: var(--buttons-border-opacity); }

/* 9.2 Button Sizes & Variants */
.button--tertiary {
  font-size:  1.2rem;
  padding:    1.3rem 1.5rem;
  min-width:  calc(9rem + var(--buttons-border-width) * 2);
  min-height: calc(3.5rem + var(--buttons-border-width) * 2);
}

.button--small      { padding: 1.2rem 2.6rem; }
.button--full-width { display: flex; width: 100%; }

/* 9.3 Button States */

/* Focus */
.button:focus-visible,
.button:focus,
.button.focused,
.shopify-payment-button__button--unbranded:focus-visible,
.shopify-payment-button [role="button"]:focus-visible,
.shopify-payment-button__button--unbranded:focus,
.shopify-payment-button [role="button"]:focus {
  outline: 0;
  box-shadow:
    0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0 0.5rem rgba(var(--color-foreground), 0.5),
    0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
}

.button:focus:not(:focus-visible):not(.focused),
.shopify-payment-button__button--unbranded:focus:not(:focus-visible):not(.focused),
.shopify-payment-button [role="button"]:focus:not(:focus-visible):not(.focused) {
  box-shadow: inherit;
}

/* Selection */
.button::selection,
.shopify-challenge__button::selection,
.customer button::selection {
  background-color: rgba(var(--color-button-text), 0.3);
}

/* Disabled */
.button:disabled,
.button[aria-disabled="true"],
.button.disabled,
.customer button:disabled,
.customer button[aria-disabled="true"],
.customer button.disabled,
.quantity__button.disabled {
  cursor:  not-allowed;
  opacity: 0.5;
}

/* Loading state */
.button.loading {
  color:    transparent;
  position: relative;
}

@media screen and (forced-colors: active) {
  .button.loading { color: rgb(var(--color-foreground)); }
}

.button.loading > .loading-overlay__spinner {
  top:       50%;
  left:      50%;
  transform: translate(-50%, -50%);
  position:  absolute;
  height:    100%;
  display:   flex;
  align-items: center;
}

.button.loading > .loading-overlay__spinner .spinner { width: fit-content; }
.button.loading > .loading-overlay__spinner .path    { stroke: rgb(var(--color-button-text)); }

/* Mobile */
@media screen and (max-width: 479px) {
  .button,
  .button-label,
  .shopify-challenge__button,
  .customer button { font-size: 1.3rem; }

  .button,
  .shopify-challenge__button,
  .customer button { padding: 1.3rem 2rem; }
}

/* 9.4 Share Button */
.share-button {
  display:          block;
  position:         relative;
  background-color: var(--color-base-background-1);
  margin:           0 !important;
  padding:          0.5rem 0;
}

.share-button details { width: fit-content; }

.share-button__button {
  font-size:   1.4rem;
  display:     flex;
  align-items: center;
  color:       var(--color-base-accent-2);
  margin-left: 0;
  padding-left: 0;
  min-height:  4.4rem;
  font-weight: 500;
}

details[open] > .share-button__fallback {
  animation: animateMenuOpen var(--duration-default) ease;
}

.share-button__button,
.share-button__fallback button {
  cursor:           pointer;
  background-color: transparent;
  border:           none;
  text-transform:   uppercase;
}

.share-button__button .icon-share {
  height:    1.7rem;
  margin-right: 1rem;
  min-width: 1.7rem;
}

.share-button__fallback {
  display:      flex;
  align-items:  center;
  position:     absolute;
  top:          3rem;
  left:         0.1rem;
  z-index:      3;
  width:        100%;
  min-width:    max-content;
  border-radius: var(--inputs-radius);
  border:       0;
}

.share-button__fallback:after {
  pointer-events: none;
  content:        "";
  position:       absolute;
  top:    var(--inputs-border-width);
  right:  var(--inputs-border-width);
  bottom: var(--inputs-border-width);
  left:   var(--inputs-border-width);
  border: 0.1rem solid transparent;
  border-radius: var(--inputs-radius);
  box-shadow:    0 0 0 var(--inputs-border-width) rgba(var(--color-foreground), var(--inputs-border-opacity));
  transition:    box-shadow var(--duration-short) ease;
  z-index:       1;
}

.share-button__fallback:before {
  background:     rgb(var(--color-background));
  pointer-events: none;
  content:        "";
  position:       absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  border-radius:  var(--inputs-radius-outset);
  box-shadow:
    var(--inputs-shadow-horizontal-offset)
    var(--inputs-shadow-vertical-offset)
    var(--inputs-shadow-blur-radius)
    rgba(var(--color-base-text), var(--inputs-shadow-opacity));
  z-index: -1;
}

.share-button__fallback button {
  width:           4.4rem;
  height:          4.4rem;
  padding:         0;
  flex-shrink:     0;
  display:         flex;
  justify-content: center;
  align-items:     center;
  position:        relative;
  right:           var(--inputs-border-width);
}

.share-button__fallback button:hover          { color: rgba(var(--color-foreground), 0.75); }
.share-button__fallback button:hover svg      { transform: scale(1.07); }

.share-button__close:not(.hidden) + .share-button__copy { display: none; }

.share-button__close,
.share-button__copy {
  background-color: transparent;
  color:            rgb(var(--color-foreground));
}

.share-button__copy:focus-visible,
.share-button__close:focus-visible,
.share-button__copy:focus,
.share-button__close:focus {
  background-color: rgb(var(--color-background));
  z-index:          2;
}

.field:not(:focus-visible):not(.focused)
  + .share-button__copy:not(:focus-visible):not(.focused),
.field:not(:focus-visible):not(.focused)
  + .share-button__close:not(:focus-visible):not(.focused) {
  background-color: inherit;
}

.share-button__fallback .field:after,
.share-button__fallback .field:before { content: none; }

.share-button__fallback .field {
  border-radius: 0;
  min-width:     auto;
  min-height:    auto;
  transition:    none;
}

.share-button__fallback .field__input:focus,
.share-button__fallback .field__input:-webkit-autofill {
  outline:        0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: 0.1rem;
  box-shadow:
    0 0 0 0.1rem rgb(var(--color-background)),
    0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
}

.share-button__fallback .field__input {
  box-shadow:     none;
  text-overflow:  ellipsis;
  white-space:    nowrap;
  overflow:       hidden;
  filter:         none;
  min-width:      auto;
  min-height:     auto;
}

.share-button__fallback .field__input:hover { box-shadow: none; }
.share-button__fallback .icon { width: 1.5rem; height: 1.5rem; }

.share-button__message:not(:empty) {
  display:     flex;
  align-items: center;
  width:       100%;
  height:      100%;
  margin-top:  0;
  padding:     0.8rem 0 0.8rem 1.5rem;
  margin:      var(--inputs-border-width);
}

.share-button__message:not(:empty):not(.hidden) ~ * { display: none; }


/* =============================================================================
   10. COMPONENT — FORMS
============================================================================= */

/* 10.1 Field Input / Select Base */
.field__input,
.select__select,
.customer .field input,
.customer select {
  -webkit-appearance: none;
  appearance:         none;
  background-color:   var(--color-base-background-1);
  color:              var(--color-foreground);
  font-size:          1.4rem;
  width:              100%;
  box-sizing:         border-box;
  transition:         box-shadow var(--duration-short) ease;
  border-radius:      var(--inputs-radius);
  height:             4.5rem;
  min-height:         calc(var(--inputs-border-width) * 2);
  min-width:          calc(7rem + (var(--inputs-border-width) * 2));
  position:           relative;
  border-width:       var(--inputs-border-width);
  border-color:       var(--color-base-border);
  border-style:       solid;
}

/* Drop shadow pseudo-element (before = outer shadow) */
.field:before,
.select:before,
.customer .field:before,
.customer select:before,
.localization-form__select:before {
  pointer-events: none;
  content:        "";
  position:       absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  border-radius:  var(--inputs-radius-outset);
  box-shadow:
    var(--inputs-shadow-horizontal-offset)
    var(--inputs-shadow-vertical-offset)
    var(--inputs-shadow-blur-radius)
    rgba(var(--color-base-text), var(--inputs-shadow-opacity));
  z-index: -1;
}

/* Border ring pseudo-element (after = inner border) */
.field:after,
.select:after,
.customer .field:after,
.customer select:after,
.localization-form__select:after {
  pointer-events: none;
  content:        "";
  position:       absolute;
  top:    var(--inputs-border-width);
  right:  var(--inputs-border-width);
  bottom: var(--inputs-border-width);
  left:   var(--inputs-border-width);
  border: 0.1rem solid transparent;
  border-radius: var(--inputs-radius);
  box-shadow:    0 0 0 var(--inputs-border-width) rgba(var(--color-foreground), var(--inputs-border-opacity));
  transition:    box-shadow var(--duration-short) ease;
  z-index:       1;
}

/* Select-specific styles */
.select__select {
  font-family:  var(--font-body-family);
  font-style:   var(--font-body-style);
  font-weight:  var(--font-body-weight);
  font-size:    1.2rem;
  color:        rgba(var(--color-foreground), 0.75);
}

/* 10.3 Field States */
.field:hover.field:after,
.select:hover.select:after,
.select__select:hover.select__select:after,
.customer .field:hover.field:after,
.customer select:hover.select:after,
.localization-form__select:hover.localization-form__select:after {
  box-shadow:    0 0 0 calc(0.1rem + var(--inputs-border-width)) rgba(var(--color-foreground), var(--inputs-border-opacity));
  outline:       0;
  border-radius: var(--inputs-radius);
}

.field__input:focus-visible,
.select__select:focus-visible,
.customer .field input:focus-visible,
.customer select:focus-visible,
.localization-form__select:focus-visible.localization-form__select:after {
  box-shadow:    0 0 0 calc(0.1rem + var(--inputs-border-width)) rgba(var(--color-foreground));
  outline:       0;
  border-radius: var(--inputs-radius);
}

.field__input:focus,
.select__select:focus,
.customer .field input:focus,
.customer select:focus,
.localization-form__select:focus.localization-form__select:after {
  box-shadow:    0 0 0 calc(0.1rem + var(--inputs-border-width)) rgba(var(--color-foreground));
  outline:       0;
  border-radius: var(--inputs-radius);
}

.localization-form__select:focus { outline: 0; box-shadow: none; }

/* 10.4 Select */
.text-area,
.select { display: flex; position: relative; width: 100%; }

.select .icon-caret,
.customer select + svg {
  height:         0.6rem;
  pointer-events: none;
  position:       absolute;
  top:            calc(50% - 0.2rem);
  right:          calc(var(--inputs-border-width) + 1.5rem);
}

.select__select,
.customer select {
  cursor:     pointer;
  line-height: calc(1 + 0.6 / var(--font-body-scale));
  padding:    0 calc(var(--inputs-border-width) + 3rem) 0 2rem;
  margin:     var(--inputs-border-width);
  min-height: calc(var(--inputs-border-width) * 2);
}

/* 10.2 Field (floating label) */
.field {
  position:   relative;
  width:      100%;
  display:    flex;
  transition: box-shadow var(--duration-short) ease;
}

.customer .field       { display: flex; }
.field--with-error     { flex-wrap: wrap; }

.field__input,
.customer .field input {
  flex-grow:  1;
  text-align: left;
  padding:    1rem;
  margin:     var(--inputs-border-width);
  transition: box-shadow var(--duration-short) ease;
}

.field__label,
.customer .field label {
  font-size:      1.4rem;
  left:           calc(var(--inputs-border-width) + 2rem);
  top:            calc(1.2rem + var(--inputs-border-width));
  margin-bottom:  0;
  pointer-events: none;
  position:       absolute;
  transition:
    top var(--duration-short) ease,
    font-size var(--duration-short) ease;
  color:          var(--color-foreground);
  letter-spacing: 0.1rem;
  line-height:    20px;
}

/* Floating label — moves up when field is active or filled */
.field__input:focus ~ .field__label,
.field__input:not(:placeholder-shown) ~ .field__label,
.field__input:-webkit-autofill ~ .field__label,
.customer .field input:focus ~ label,
.customer .field input:not(:placeholder-shown) ~ label,
.customer .field input:-webkit-autofill ~ label {
  font-size:      1rem;
  top:            calc(var(--inputs-border-width) + 0.5rem);
  left:           calc(var(--inputs-border-width) + 2rem);
  letter-spacing: 0.04rem;
}

/* Expanded padding when label has floated up */
.field__input:focus,
.field__input:not(:placeholder-shown),
.field__input:-webkit-autofill,
.customer .field input:focus,
.customer .field input:not(:placeholder-shown),
.customer .field input:-webkit-autofill {
  padding: 2.2rem 1.5rem 0.8rem 2rem;
  margin:  var(--inputs-border-width);
}

/* Hide browser-native search clear & placeholder (we use floating label) */
.field__input::-webkit-search-cancel-button,
.customer .field input::-webkit-search-cancel-button { display: none; }
.field__input::placeholder,
.customer .field input::placeholder                  { opacity: 0; }

/* Field action button (e.g. search submit) */
.field__button {
  align-items:      center;
  background-color: transparent;
  border:           0;
  color:            currentColor;
  cursor:           pointer;
  display:          flex;
  height:           4rem;
  justify-content:  center;
  overflow:         hidden;
  padding:          0;
  position:         absolute;
  right:            0;
  top:              0;
  width:            4.4rem;
}

.field__button > svg { height: 2.5rem; width: 2.5rem; }

/* Autofill text stays black */
.field__input:-webkit-autofill ~ .field__button,
.field__input:-webkit-autofill ~ .field__label,
.customer .field input:-webkit-autofill ~ label { color: rgb(0, 0, 0); }

/* 10.5 Textarea & Checkbox */
.text-area {
  font-family:  var(--font-body-family);
  font-style:   var(--font-body-style);
  font-weight:  var(--font-body-weight);
  min-height:   10rem;
  resize:       none;
}

input[type="checkbox"] {
  display:      inline-block;
  width:        auto;
  margin-right: 0.5rem;
}

/* 10.6 Form Messages & Status */
.form__label { display: block; margin-bottom: 0.6rem; }

.form__message {
  align-items: center;
  display:     flex;
  font-size:   1.5rem;
  line-height: 1;
  margin-top:  1rem;
}

.form__message--large { font-size: 1.6rem; }

.customer .field .form__message {
  font-size:  1.5rem;
  text-align: left;
}

.form__message .icon,
.customer .form__message svg {
  flex-shrink:  0;
  height:       1.3rem;
  margin-right: 0.5rem;
  width:        1.3rem;
}

.form__message--large .icon,
.customer .form__message svg {
  height:       1.5rem;
  width:        1.5rem;
  margin-right: 1rem;
}

.customer .field .form__message svg { align-self: start; }

.form-status { margin: 0; font-size: 1.6rem; }

.form-status-list {
  padding: 0;
  margin:  2rem 0 4rem;
}

.form-status-list li                      { list-style-position: inside; }
.form-status-list .link::first-letter     { text-transform: capitalize; }

/* 10.7 Review Form (SPR) */
.spr-form-input-email,
.spr-form-input-text,
.spr-form-input-textarea {
  height:        40px;
  border:        1px solid var(--color-base-border);
  border-radius: var(--inputs-radius);
  padding:       10px;
}

.spr-form-actions .spr-button {
  min-height: calc(4.2rem + var(--buttons-border-width) * 2);
}


/* =============================================================================
   11. COMPONENT — QUANTITY
============================================================================= */

/* 11.1 Quantity Input */
.quantity {
  color:            var(--color-foreground);
  position:         relative;
  width:            calc(12.5rem / var(--font-body-scale) + var(--inputs-border-width) * 2);
  display:          flex;
  border-radius:    var(--inputs-radius);
  min-height:       calc((var(--inputs-border-width) * 2) + 4.5rem);
  background-color: var(--color-base-background-1);
  border:           2px solid var(--color-base-border);
}

/* Cart drawer compact variant */
#CartDrawer .quantity {
  width:      calc(9rem / var(--font-body-scale) + var(--inputs-border-width) * 2);
  min-height: calc((var(--inputs-border-width) * 2) + 2.5rem);
}

.quantity:after {
  pointer-events: none;
  content:        "";
  position:       absolute;
  top:    var(--inputs-border-width);
  right:  var(--inputs-border-width);
  bottom: var(--inputs-border-width);
  left:   var(--inputs-border-width);
  border: 0.1rem solid transparent;
  border-radius: var(--inputs-radius);
  box-shadow:    0 0 0 var(--inputs-border-width) rgba(var(--color-foreground), var(--inputs-border-opacity));
  transition:    box-shadow var(--duration-short) ease;
  z-index:       1;
}

.quantity:before {
  background:     rgb(var(--color-background));
  pointer-events: none;
  content:        "";
  position:       absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  border-radius:  var(--inputs-radius-outset);
  box-shadow:
    var(--inputs-shadow-horizontal-offset)
    var(--inputs-shadow-vertical-offset)
    var(--inputs-shadow-blur-radius)
    rgba(var(--color-base-text), var(--inputs-shadow-opacity));
  z-index: -1;
}

.quantity__input {
  color:            currentColor;
  font-size:        1.5rem;
  font-weight:      500;
  opacity:          0.85;
  text-align:       center;
  background-color: transparent;
  border:           0;
  padding:          0 0.5rem;
  width:            100%;
  flex-grow:        1;
  -webkit-appearance: none;
  appearance:       none;
}

/* 11.2 Quantity Buttons */
.quantity__button {
  width:            calc(3.5rem / var(--font-body-scale));
  flex-shrink:      0;
  font-size:        1.8rem;
  border:           0;
  background-color: transparent;
  cursor:           pointer;
  display:          flex;
  align-items:      center;
  justify-content:  center;
  color:            rgb(var(--color-foreground));
  padding:          0;
}

#CartDrawer .quantity__button { width: calc(2.5rem / var(--font-body-scale)); }

.quantity__button:first-child { margin-left:  calc(var(--inputs-border-width)); }
.quantity__button:last-child  { margin-right: calc(var(--inputs-border-width)); }
.quantity__button svg         { width: 1rem; pointer-events: none; }

/* Focus states */
.quantity__button:focus-visible,
.quantity__input:focus-visible,
.quantity__button:focus,
.quantity__input:focus {
  background-color: rgb(var(--color-background));
  z-index:          2;
}

.quantity__button:not(:focus-visible):not(.focused),
.quantity__input:not(:focus-visible):not(.focused) { box-shadow: inherit; }

/* Autofill override */
.quantity__input:-webkit-autofill,
.quantity__input:-webkit-autofill:hover,
.quantity__input:-webkit-autofill:active {
  box-shadow:         0 0 0 10rem rgb(var(--color-background)) inset !important;
  -webkit-box-shadow: 0 0 0 10rem rgb(var(--color-background)) inset !important;
}

/* Hide browser spin buttons on number inputs */
.quantity__input::-webkit-outer-spin-button,
.quantity__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity__input[type="number"] { -moz-appearance: textfield; }

/* 11.3 Quantity Rules (min/max/step info text) */
.quantity__rules {
  margin-top: 1.2rem;
  position:   relative;
  font-size:  1.2rem;
}

.quantity__rules .caption          { display: inline-block; margin-top: 0; margin-bottom: 0; }
.quantity__rules .divider + .divider::before { content: "\2022"; margin: 0 0.5rem; }

.quantity__rules-cart { position: relative; }

/* Hide content while quantity loading */
product-info .loading-overlay:not(.hidden) ~ *,
.quantity__rules-cart .loading-overlay:not(.hidden) ~ * { visibility: hidden; }


/* =============================================================================
   12. COMPONENT — MODAL
============================================================================= */

.modal__toggle          { list-style-type: none; }
.modal__toggle-close    { display: none; }
.modal__toggle-open     { display: flex; }

.no-js details[open] .modal__toggle       { position: absolute; z-index: 5; }
.no-js details[open] svg.modal__toggle-close { display: flex; z-index: 1; height: 1.7rem; width: 1.7rem; }
.no-js details[open] .modal__toggle-open  { display: none; }
.no-js .modal__close-button.link          { display: none; }

.modal__close-button.link {
  display:          flex;
  justify-content:  center;
  align-items:      center;
  padding:          0;
  height:           4.4rem;
  width:            4.4rem;
  background-color: transparent;
}

.modal__close-button .icon { width: 1.7rem; height: 1.7rem; }
.modal__close-button:hover .icon { transform: scale(1.07); }

.modal__content {
  position:        fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background:      rgb(var(--color-background));
  z-index:         4;
  display:         flex;
  justify-content: center;
  align-items:     center;
}

.media-modal              { cursor: zoom-out; }
.media-modal .deferred-media { cursor: initial; }


/* =============================================================================
   13. COMPONENT — CART COUNT & WISHLIST/COMPARE BUBBLES
============================================================================= */

.cart-count-bubble:empty { display: none; }

.cm-compare-button,
.cm-wishlist-button { position: relative; }

.cart-count-bubble,
.cm-compare-button .count-bubble,
.cm-wishlist-button .count-bubble {
  position:         absolute;
  background-color: var(--color-base-accent-3);
  color:            var(--color-base-background-1);
  height:           2rem;
  width:            auto;
  border-radius:    100%;
  display:          flex;
  justify-content:  center;
  align-items:      center;
  font-size:        1.3rem;
  top:              0;
  right:            0;
  left:             auto;
  line-height:      2rem;
  padding:          0 6px;
  font-weight:      500;
}

/* Cart bubble is left-aligned (next to icon) */
.cart-count-bubble { right: auto; left: 17px; }

.header__icon_title { font-weight: 500; }

@media screen and (max-width: 749px) {
  .cart-count-bubble,
  .cm-compare-button .count-bubble,
  .cm-wishlist-button .count-bubble {
    height:     1.7rem;
    font-size:  1.2rem;
    top:        -0.3rem;
    right:      -0.2rem;
    padding:    0 5px;
  }

  .cart-count-bubble { right: auto; left: 17px; }
}

@media screen and (max-width: 479px) {
  .cart_count_with_text { display: none; }
}


/* =============================================================================
   14. COMPONENT — BADGE
============================================================================= */

.badge {
  border:           0 solid transparent;
  border-radius:    var(--badge-corner-radius);
  display:          inline-block;
  font-size:        1rem;
  letter-spacing:   0.1rem;
  line-height:      1.5rem;
  padding:          0.3rem 0.7rem;
  text-align:       center;
  background-color: var(--badge-sale-background);
  color:            var(--color-base-solid-button-labels);
  word-break:       break-word;
  font-weight:      500;
  text-transform:   uppercase;
  position:         absolute;
  left:             15px;
  top:              13px;
}

/* Badge inside product info (relative position) */
.product .product__info-container .badge {
  position: relative;
  top:      0;
  left:     5px;
}

.badge.soldout {
  background-color: var(--badge-soldout-background);
  color:            #f00;
  padding:          0;
  font-size:        1.1rem;
  text-decoration:  underline;
}

/* Hide badge on card hover */
.card-wrapper:hover .badge { opacity: 0; }


/* =============================================================================
   15. COMPONENT — TITLE / SECTION HEADINGS
============================================================================= */

.title,
.title-wrapper-with-link {
  position:    relative;
  text-align:  center;
  line-height: 35px;
}

.template-page .contact .title {
  text-align:     center;
  padding-bottom: 15px;
}

.title-wrapper-with-link .title { margin: 0; }
.title .link                    { font-size: inherit; }
.title-wrapper                  { margin-bottom: 2.5rem; }

.title-wrapper-with-link {
  display:         flex;
  justify-content: center;
  align-items:     center;
  gap:             0.5rem;
  margin-bottom:   2.5rem;
  flex-wrap:       wrap;
  text-align:      center;
  flex-direction:  column;
}

.collection__description.body.rte {
  text-align:  center;
  font-size:   15px;
  font-weight: 400;
}

.title--primary { margin: 1.5rem 0; font-size: 3rem; }

/* "View all" link hidden by default — shown at breakpoints */
.collection__title > a.underlined-link,
.title-wrapper-with-link a {
  text-transform: uppercase;
  font-weight:    500;
  display:        none;
  line-height:    normal;
}

.title-wrapper--self-padded-tablet-down,
.title-wrapper--self-padded-mobile {
  padding-left:  1.5rem;
  padding-right: 1.5rem;
}

.title-wrapper-with-link .link-with-icon {
  margin:      0;
  flex-shrink: 0;
  display:     flex;
  align-items: center;
}

.title-wrapper-with-link .link-with-icon svg { width: 1.5rem; }
.title-wrapper-with-link a                   { margin-top: 0; flex-shrink: 0; }

.title-wrapper--no-top-margin { margin-top: 0; padding: 0; }
.title-wrapper--no-top-margin > .title { padding-top: 0; margin: 0; }

.subtitle {
  font-size:      1.8rem;
  line-height:    calc(1 + 0.8 / var(--font-body-scale));
  letter-spacing: 0.06rem;
  color:          rgba(var(--color-foreground), 0.7);
}

.subtitle--small  { font-size: 1.4rem; letter-spacing: 0.1rem; }
.subtitle--medium { font-size: 1.7rem; letter-spacing: 0.05rem; color: #1a1a1a; font-weight: 500; }

/* View all / blog links */
.center.collection__view-all .underlined-link,
.blog__view-all .underlined-link {
  font-size:      14px;
  text-transform: uppercase;
  font-weight:    500;
}

.center.collection__view-all,
.blog__view-all {
  position:   absolute;
  text-align: left;
  top:        4px;
  right:      0;
}

/* Responsive title adjustments */
@media only screen and (max-width: 989px) {
  .title-breadcrumbs-container {
    display:        flex;
    flex-direction: column;
    justify-content: center;
    align-items:    center;
    gap:            5px;
  }

  .title-wrapper,
  .title-wrapper-with-link { margin-bottom: 2rem; }

  .collection__description.body.rte { line-height: 26px; }
}

@media screen and (min-width: 750px) {
  .title-wrapper--self-padded-mobile { padding-left: 0; padding-right: 0; }
}

@media screen and (min-width: 990px) {
  .title--primary         { margin: 2rem 0; }
  .title-wrapper-with-link{ align-items: center; }
  .title-wrapper-with-link .title { margin-bottom: 0; }
  .title-wrapper--self-padded-tablet-down { padding-left: 0; padding-right: 0; }
}

@media screen and (max-width: 479px) {
  .collection__title > a.underlined-link,
  .title-wrapper-with-link a { display: none; }

  .center.collection__view-all,
  .blog__view-all {
    position:    relative;
    text-align:  right;
    top:         0;
    right:       0;
    padding-top: 16px;
  }

  .title { padding: 0 0 1rem; }
}


/* =============================================================================
   16. COMPONENT — SWATCH & VARIANT SELECTORS
============================================================================= */

/* 16.1 Swatch Base */
.swatch {
  --swatch--size:          var(--swatch-input--size, 4.4rem);
  --swatch--border-radius: var(--swatch-input--border-radius, 50%);

  display:         block;
  width:           var(--swatch--size);
  max-width:       100%;
  aspect-ratio:    1 / 1;
  background:      var(--swatch--background);
  background-position: var(--swatch-focal-point, initial);
  background-size: cover;
  background-origin: border-box;
  border:          0.1rem solid rgba(var(--color-foreground), 0.15);
  border-radius:   var(--swatch--border-radius);
}

.swatch--square      { --swatch--border-radius: 0; }
.swatch--unavailable { border-style: dashed; border-color: rgba(var(--color-foreground), 0.5); }

variant-selects { display: block; }

/* No-media product layout centering */
.product--no-media .product-form__input--pill,
.product--no-media .product-form__input--swatch,
.product--no-media .product-form__input--dropdown {
  display:         flex;
  align-items:     center;
  justify-content: center;
  text-align:      center;
}

.product--no-media .product-form__input.product-form__input--pill,
.product--no-media .product-form__input.product-form__input--swatch {
  flex-wrap: wrap;
  margin:    0 auto 1.2rem;
}

.product--no-media .product-form__input--dropdown {
  flex-direction: column;
  max-width:      100%;
}

:is(.product-form__input--pill, .product-form__input--swatch) .form__label { margin-bottom: 0.2rem; }

/* Hidden radio (visually replaced by label) */
.product-form__input input[type="radio"] {
  clip:     rect(0, 0, 0, 0);
  overflow: hidden;
  position: absolute;
  height:   1px;
  width:    1px;
}

/* Hide "unavailable" label when variant is available */
.product-form__input
  input[type="radio"]:not(.disabled):not(.visually-disabled)
  + label
  > .label-unavailable { display: none; }

/* 16.4 Dropdown Variant */
.product-form__input--dropdown {
  --swatch-input--size: 2rem;
  margin-bottom:        1.6rem;
}

.product-form__input--dropdown .dropdown-swatch + select {
  padding-left: calc(2.4rem + var(--swatch-input--size));
}

.product-form__input--dropdown .dropdown-swatch {
  position: absolute;
  left:     1.6rem;
  top:      calc(50% - var(--swatch-input--size) / 2);
  width:    var(--swatch-input--size);
  height:   var(--swatch-input--size);
  z-index:  1;
}

/* 16.2 Pill Variant */
.product-form__input--pill input[type="radio"] + label {
  border:           var(--variant-pills-border-width) solid rgba(var(--color-foreground), var(--variant-pills-border-opacity));
  background-color: rgb(var(--color-background));
  color:            rgb(var(--color-foreground));
  border-radius:    var(--variant-pills-radius);
  display:          inline-block;
  margin:           0.7rem 0.5rem 0.2rem 0;
  padding:          1rem 2rem;
  font-size:        1.4rem;
  letter-spacing:   0.1rem;
  line-height:      1;
  text-align:       center;
  transition:       border var(--duration-short) ease;
  cursor:           pointer;
  position:         relative;
}

.product-form__input--pill input[type="radio"] + label:before {
  content:       "";
  position:      absolute;
  top:    calc(var(--variant-pills-border-width) * -1);
  right:  calc(var(--variant-pills-border-width) * -1);
  bottom: calc(var(--variant-pills-border-width) * -1);
  left:   calc(var(--variant-pills-border-width) * -1);
  z-index:       -1;
  border-radius: var(--variant-pills-radius);
  box-shadow:
    var(--variant-pills-shadow-horizontal-offset)
    var(--variant-pills-shadow-vertical-offset)
    var(--variant-pills-shadow-blur-radius)
    rgba(var(--color-shadow), var(--variant-pills-shadow-opacity));
}

.product-form__input--pill input[type="radio"] + label:hover       { border-color: rgb(var(--color-foreground)); }
.product-form__input--pill input[type="radio"]:checked + label     { background-color: rgb(var(--color-foreground)); color: rgb(var(--color-background)); }

.product-form__input--pill input[type="radio"]:checked + label::selection {
  background-color: rgba(var(--color-background), 0.3);
}

.product-form__input--pill input[type="radio"]:disabled + label,
.product-form__input--pill input[type="radio"].disabled + label {
  border-color:    rgba(var(--color-foreground), 0.1);
  color:           rgba(var(--color-foreground), 0.6);
  text-decoration: line-through;
}

.product-form__input--pill input[type="radio"].disabled:checked + label,
.product-form__input--pill input[type="radio"]:disabled:checked + label {
  color: rgba(var(--color-background), 0.6);
}

.product-form__input--pill input[type="radio"]:focus-visible + label,
.product-form__input--pill input[type="radio"].focused + label {
  box-shadow:
    0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0 0.5rem rgba(var(--color-foreground), 0.55);
}

@media screen and (forced-colors: active) {
  .product-form__input--pill input[type="radio"]:checked + label     { text-decoration: underline; }
  .product-form__input--pill input[type="radio"]:focus-visible + label{ outline: transparent solid 1px; outline-offset: 2px; }
}

/* 16.2 Swatch Variant */
.product-form__input--swatch           { display: flex; flex-wrap: wrap; }

.product-form__input--swatch .swatch-input__input + .swatch-input__label {
  --swatch-input--size: 3.6rem;
  margin:               0.7rem 0.8rem 0.2rem 0;
  padding:              0;
}

@media screen and (min-width: 750px) {
  .product-form__input--swatch .swatch-input__input + .swatch-input__label {
    --swatch-input--size: 2.8rem;
  }
}

/* 16.3 Color Swatch Variant */
.product-form__input.Color .swatch-input__input + .swatch-input__label {
  --swatch-input--border-radius: 50%;
  display:            inline-block;
  max-width:          100%;
  border-radius:      var(--swatch-input--border-radius);
  cursor:             pointer;
  transition-property: outline-color, outline-width, box-shadow;
  transition-duration: var(--duration-short);
  transition-timing-function: ease;
  forced-color-adjust: none;
  padding:            3px;
  border:             2px solid rgb(214, 214, 214);
  box-shadow:         none;
}

.product-form__input.Color
  .swatch-input__input
  + .swatch-input__label.swatch-input__label--square {
  --swatch-input--border-radius: 0.5rem;
}

/* Active / checked */
.product-form__input.Color .swatch-input__input:active + .swatch-input__label,
.product-form__input.Color .swatch-input__input:checked + .swatch-input__label,
/* Hover */
.product-form__input.Color .swatch-input__input + .swatch-input__label:hover,
.product-form__input.Color .swatch-input__input:hover + .swatch-input__label {
  border: 0.2rem solid #000;
}

/* Focus visible */
.product-form__input.Color .swatch-input__input:focus-visible + .swatch-input__label {
  border:     0.2rem solid #000;
  box-shadow: 0 0 0 0.2rem rgb(var(--color-background)), 0 0 0.1rem 0.5rem rgba(var(--color-foreground), 0.25);
}

/* Active + focused */
.product-form__input.Color .swatch-input__input:active:focus-visible + .swatch-input__label,
.product-form__input.Color .swatch-input__input:checked:focus-visible + .swatch-input__label {
  border:     0.2rem solid #000;
  box-shadow: 0 0 0 0.2rem rgb(var(--color-background)), 0 0 0.1rem 0.4rem rgba(var(--color-foreground), 0.25);
}

/* Visually disabled */
.product-form__input.Color
  .swatch-input__input.visually-disabled:not(:active):not(:checked)
  + .swatch-input__label { transition: none; }

.product-form__input.Color
  .swatch-input__input.visually-disabled:not(:active):not(:checked)
  + .swatch-input__label:hover { outline: none; }

/* Actually disabled */
.product-form__input.Color
  .swatch-input__input:disabled
  + .swatch-input__label { pointer-events: none; }

/* Disabled / visually-disabled — swatch opacity + crossed-out line */
.product-form__input.Color .swatch-input__input:disabled + .swatch-input__label > .swatch,
.product-form__input.Color .swatch-input__input.visually-disabled + .swatch-input__label > .swatch {
  position: relative;
  overflow: hidden;
  opacity:  0.4;
}

.product-form__input.Color .swatch-input__input:disabled + .swatch-input__label > .swatch::after,
.product-form__input.Color .swatch-input__input.visually-disabled + .swatch-input__label > .swatch::after {
  --diagonal--size:    calc(var(--swatch-input--size) * 1.414);
  --crossed-line--size: 0.1rem;
  content:             "";
  position:            absolute;
  bottom:              calc(var(--crossed-line--size) * -0.5);
  left:                0;
  width:               var(--diagonal--size);
  height:              var(--crossed-line--size);
  background-color:    rgb(var(--color-foreground));
  transform:           rotate(-45deg);
  transform-origin:    left;
}

/* Facets horizontal form */
.facets__form.facets__form-horizontal .facets__summary span {
  color: var(--color-base-solid-button-labels);
}


/* =============================================================================
   17. LAYOUT — CONTENT CONTAINERS & MEDIA SETTINGS
============================================================================= */

.content-container {
  border-radius: var(--text-boxes-radius);
  border:        var(--text-boxes-border-width) solid rgba(var(--color-foreground), var(--text-boxes-border-opacity));
  position:      relative;
}

.content-container:after {
  content:  "";
  position: absolute;
  top:    calc(var(--text-boxes-border-width) * -1);
  right:  calc(var(--text-boxes-border-width) * -1);
  bottom: calc(var(--text-boxes-border-width) * -1);
  left:   calc(var(--text-boxes-border-width) * -1);
  border-radius: var(--text-boxes-radius);
  box-shadow:
    var(--text-boxes-shadow-horizontal-offset)
    var(--text-boxes-shadow-vertical-offset)
    var(--text-boxes-shadow-blur-radius)
    rgba(var(--color-shadow), var(--text-boxes-shadow-opacity));
  z-index: -1;
}

.content-container--full-width:after { left: 0; right: 0; border-radius: 0; }

@media screen and (max-width: 749px) {
  .content-container--full-width-mobile {
    border-left:   none;
    border-right:  none;
    border-radius: 0;
  }
  .content-container--full-width-mobile:after { display: none; }
}

/* Global media settings */
.global-media-settings {
  position:         relative;
  border:           var(--media-border-width) solid rgba(var(--color-foreground), var(--media-border-opacity));
  border-radius:    var(--media-radius);
  overflow:         visible !important;
  background-color: rgb(var(--color-background));
}

.global-media-settings:after {
  content:        "";
  position:       absolute;
  top:    calc(var(--media-border-width) * -1);
  right:  calc(var(--media-border-width) * -1);
  bottom: calc(var(--media-border-width) * -1);
  left:   calc(var(--media-border-width) * -1);
  border-radius:  var(--media-radius);
  box-shadow:
    var(--media-shadow-horizontal-offset)
    var(--media-shadow-vertical-offset)
    var(--media-shadow-blur-radius)
    rgba(var(--color-shadow), var(--media-shadow-opacity));
  z-index:        -1;
  pointer-events: none;
}

.global-media-settings--no-shadow            { overflow: hidden !important; }
.global-media-settings--no-shadow:after      { content: none; }

.global-media-settings img,
.global-media-settings iframe,
.global-media-settings model-viewer,
.global-media-settings video {
  border-radius: calc(var(--media-radius) - var(--media-border-width));
}

/* Full-width removes side borders and radius */
.content-container--full-width,
.global-media-settings--full-width,
.global-media-settings--full-width img,
.global-media-settings--full-width video,
.global-media-settings--full-width iframe {
  border-radius: 0;
  border-left:   none;
  border-right:  none;
}


/* =============================================================================
   18. SECTION — ANNOUNCEMENT BAR (Custom Marquee)
============================================================================= */

.custom-announcement-wrapper {
  background-color: var(--color-base-background-1);
  border-bottom:    2px solid var(--color-base-accent-2);
  width:            100%;
  overflow:         hidden;
  display:          block;
  position:         relative;
  z-index:          9999;
}

.custom-announcement-track {
  display:   flex;
  width:     max-content;
  animation: marquee-move-final 25s linear infinite;
}

/* Pause on hover so users can read the text */
.custom-announcement-wrapper:hover .custom-announcement-track {
  animation-play-state: paused;
}

.custom-announcement-item {
  padding: 12px 60px;
}

.custom-announcement-link {
  color:           var(--color-base-text);   /* Using variable instead of hardcoded #111111 */
  text-decoration: none;
  font-size:       1.4rem;
  font-weight:     700;
  text-transform:  uppercase;
  white-space:     nowrap;
  display:         flex;
  gap:             10px;
}

.custom-announcement-link .arrow {
  color: var(--color-base-accent-2);         /* Using variable instead of hardcoded #FFC700 */
}

@keyframes marquee-move-final {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* =============================================================================
   19. SECTION — HEADER
============================================================================= */

/* 19.1 Header Top Bar */
.header-top-inner {
  display:         flex;
  justify-content: space-between;
}

.header-top__link {
  display:         flex;
  flex-direction:  row;
  text-decoration: none;
  gap:             5px;
  position:        relative;
}

/* Divider between top bar links */
.header-top__link::after {
  content:          "";
  width:            1px;
  height:           16px;
  background-color: #ffffff30;
  position:         absolute;
  right:            -15px;
  left:             auto;
  top:              5px;
}

.header-top__link:last-child::after { display: none; }

.header-top__message,
.header-top-center p {
  margin: 0;
  color:  var(--color-foreground);
  font-size: 15px;
}

.header-top-center p a {
  color:          var(--color-foreground);
  text-decoration: underline;
  font-weight:    500;
  text-transform: uppercase;
  font-size:      14px;
}

.header-top-center p a:hover { text-decoration: none; }

.header-top__message:hover,
.header-top-center p :hover {
  text-decoration: none;
  color:           var(--color-foreground);
}

.header-top-left .header-top-icon { display: flex; align-items: center; }
.header-top-left                  { display: inline-flex; gap: 30px; }
.header__localization             { position: relative; margin-left: auto; }

@media screen and (max-width: 989px) {
  .header-top-inner          { justify-content: center; }
  .header-top__link::after   { display: none; }
  .header-top-icon           { display: none; }
  .header-top-left           { display: none; }
  .header__localization      { float: none; text-align: center; }
  .header-top__message       { margin: 0; color: var(--color-foreground); font-size: 15px; }
  .header-top-center p       { text-align: center; }

  #menu-drawer .header-top__link { padding: 0.6rem 2.5rem; }
}

/* 19.2 Header Bottom / Wrapper */
.header-bottom {
  background-color: var(--color-base-background-1);
  border-bottom:    1px solid var(--color-base-border);
}

.header-bottom-inner {
  max-width:       var(--page-width);
  margin:          0 auto;
  width:           100%;
  display:         flex;
  justify-content: flex-start;
  align-items:     center;
  min-height:      55px;
  gap:             15px;
}

.header-bottom.header-wrapper > .page-width {
  display:               grid;
  grid-template-areas:   "navigation icons";
  grid-template-columns: 2fr auto;
  column-gap:            1rem;
  justify-items:         start;
  align-items:           center;
}

@media screen and (max-width: 989px) {
  .header-bottom.header-wrapper > .page-width {
    display:         flex !important;
    justify-content: flex-start !important;
    align-items:     center !important;
    width:           100% !important;
  }

  .header-bottom-inner {
    width:           100% !important;
    justify-content: flex-start !important;
  }

  .mobile-toggle-wrapper {
    display:      flex !important;
    margin-left:  0 !important;
    margin-right: auto !important;
    width:        auto !important;
  }
}

/* Shadow when user has scrolled past header */
.shopify-section-header-sticky.scrolled-past-header .header-bottom {
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  box-shadow:         0 4px 16px rgba(0, 0, 0, 0.15);
}

.header-wrapper {
  display:          block;
  position:         relative;
  background-color: rgb(var(--color-background));
}

.section-header sticky-header.header-wrapper {
  border-bottom: 1px solid var(--color-base-border);
}

/* Sticky header behavior */
.shopify-section-header-sticky              { position: sticky; top: 0; }
.shopify-section-header-hidden              { top: calc(-1 * var(--header-height)); }
.shopify-section-header-hidden.menu-open    { top: 0; }
.section-header.animate                     { transition: top 0.15s ease-out; }
.shopify-section-group-header-group         { z-index: initial; }
.section-header ~ .shopify-section-group-header-group { position: relative; }

/* Service link in header bottom */
.menu_service {
  padding:    0.7rem 0 0.7rem 4rem;
  position:   relative;
  display:    flex;
  align-items: center;
}

.menu_service a {
  font-weight:    500;
  font-size:      1.4rem;
  color:          var(--color-foreground);
  text-transform: uppercase;
  text-decoration: none;
}

.menu_service img { vertical-align: middle; margin-right: 5px; }

@media screen and (max-width: 1269px) { .menu_service { padding: 0.7rem 0 0.7rem 2rem; } }

@media screen and (max-width: 989px) {
  .menu_service                    { display: none; }
  .header-top__message             { color: var(--color-foreground); }
  .menu-drawer__navigation span p  { padding: 0.3rem 3.2rem; margin: 0; }
  .header-bottom-inner             { justify-content: flex-start; }
}

@media screen and (max-width: 575px) {
  .header-bottom-inner { justify-content: flex-start; }
}

/* Close button in menu drawer */
#menu-drawer .icon.icon-close {
  width:    18px;
  height:   18px;
  position: absolute;
  left:     auto;
  right:    20px;
  top:      15px;
  cursor:   pointer;
  color:    var(--color-base-accent-2);
}

/* 19.3 Header Main Grid Layout */
.header {
  display:               grid;
  align-items:           center;
  grid-template-areas:   "navigation heading icons";
  grid-template-columns: 1fr auto 1fr;
  column-gap:            2rem;
}

@media screen and (max-width: 749px) {
  .header {
    grid-template-areas:   "heading left-icons icons";
    grid-template-columns: auto 1fr auto;
  }
  .header--has-app { grid-template-columns: auto 1fr auto; }

  .header-bottom.header-wrapper > .page-width,
  .header-bottom-inner {
    justify-content: flex-end !important;
  }

  .mobile-toggle-wrapper {
    grid-area:    icons;
    justify-self: end;
    margin-left:  auto;
  }

  /* Mobile center: logo center, hamburger right */
  .header--mobile-center {
    grid-template-areas:   "left-icons heading icons";
    grid-template-columns: auto 1fr auto;
  }

  /* Shopify built-in header-drawer — force to right icons area */
  .header--mobile-center header-drawer {
    grid-area:    icons;
    justify-self: end;
  }

  /* Search icon stays left */
  .header--mobile-center .header__search {
    grid-area:    left-icons;
    justify-self: start;
  }
}

@media screen and (min-width: 990px) {
  .header { grid-template-columns: 1fr auto 1fr; }

  .header--top-left {
    grid-template-areas:
      "heading icons"
      "navigation navigation";
    grid-template-columns: 1fr auto;
  }

  .header--top-left.drawer-menu,
  .header--middle-left.drawer-menu {
    grid-template-areas:   "navigation heading icons";
    grid-template-columns: auto 1fr auto;
    column-gap:            1rem;
  }

  .header--middle-left {
    grid-template-areas:   "heading navigation icons";
    grid-template-columns: auto 1fr auto;
    column-gap:            2rem;
  }

  .header--middle-center:not(.drawer-menu) {
    grid-template-areas:   "navigation heading icons";
    grid-template-columns: 1fr auto 1fr;
    column-gap:            2rem;
  }

  .header--middle-center a.header__heading-link { text-align: center; }

  .header--top-center {
    grid-template-areas:
      "left-icons heading icons"
      "navigation navigation navigation";
  }

  .header--top-center.drawer-menu {
    grid-template-areas:   "left-icons heading icons";
    grid-template-columns: 1fr auto 1fr;
  }

  .header:not(.header--middle-left, .header--middle-center) .header__inline-menu {
    margin-top: 1.05rem;
  }
}

.header *[tabindex="-1"]:focus { outline: none; }

/* 19.4 Header Logo & Heading */
.header__heading {
  margin:      0;
  line-height: 0;
}

.header > .header__heading-link { line-height: 0; }

.header__heading,
.header__heading-link {
  grid-area:   heading;
  justify-self: left;
}

.header__heading-link {
  display:         inline-block;
  padding:         0;
  text-decoration: none;
  word-break:      break-word;
}

.header__heading-link:hover .h2       { color: rgb(var(--color-foreground)); }
.header__heading-link .h2             { line-height: 1; color: rgba(var(--color-foreground), 0.75); }

.header__heading-logo                 { height: auto; max-width: 300px; }
.header__heading-logo-wrapper {
  width:      100%;
  display:    inline-block;
  transition: width 0.3s cubic-bezier(0.52, 0, 0.61, 0.99);
}

@media screen and (max-width: 989px) {
  .header__heading,
  .header__heading-link         { text-align: center; }

  .header--mobile-left .header__heading,
  .header--mobile-left .header__heading-link {
    text-align:   left;
    justify-self: start;
  }

  .header--mobile-left          { grid-template-columns: auto 3fr 1fr; }
  .header__heading-logo         { max-width: 99px; }
  header-drawer                 { display: flex; align-items: center; }
}

@media screen and (min-width: 990px) {
  .header--middle-left .header__heading-link,
  .header--top-left .header__heading-link   { margin-left: 0; }

  .header__heading,
  .header__heading-link                     { justify-self: start; }

  .header--middle-center .header__heading-link,
  .header--middle-center .header__heading,
  .header--top-center .header__heading-link,
  .header--top-center .header__heading      { justify-self: center; text-align: center; }
}

/* 19.5 Header Icons (Cart, Account, Search) */
.header__icons {
  display:     flex;
  grid-area:   icons;
  justify-self: end;
  align-items: center;
  gap:         15px;
}

.header__icons .shopify-app-block {
  max-width:  4.4rem;
  max-height: 4.4rem;
  overflow:   hidden;
}

.header__icon:not(.header__icon--summary),
.header__icon span {
  display:    flex;
  align-items: center;
  justify-content: center;
}

.header__icon span  { height: 100%; }
.header__icon::after{ content: none; }

.header__icon .icon {
  height:         2.8rem;
  width:          2.8rem;
  vertical-align: middle;
  fill:           var(--color-base-accent-2);
}

.header__icon--cart #Layer_1 { width: 30px; height: 30px; }

.header__icon,
.header__icon--cart .icon { height: 4.4rem; width: 4.4rem; padding: 0; }

.icon.icon-account {
  width:        2.6rem;
  height:       2.6rem;
  stroke-width: 0;
  stroke:       #000;
}

.header__icon--cart { position: relative; }

#cart-icon-bubble {
  width:           auto;
  text-decoration: none;
  gap:             13px;
}

.cart_count_with_text span {
  line-height:     20px;
  font-size:       15px;
  justify-content: flex-start;
}

/* Dark overlay when mobile menu is open */
.header__icon--menu[aria-expanded="true"]::before {
  content:    "";
  top:        100%;
  left:       0;
  height:     calc(var(--viewport-height, 100vh) - var(--header-bottom-position, 100%));
  width:      100%;
  display:    block;
  position:   absolute;
  background: rgba(var(--color-foreground), 0.5);
}

@media screen and (max-width: 749px) {
  .header__icon .icon          { height: 2.4rem; width: 2.4rem; }
  .header__icon--cart #Layer_1 { width: 26px; height: 26px; }
  .icon.icon-account           { width: 2.4rem; height: 2.2rem; }
  .header__icon,
  .header__icon--cart .icon    { height: 3.4rem; width: 3.4rem; }
}

@media screen and (max-width: 380px) {
  .header__icons { gap: 0; }
}

/* Account icon */
.header__icon.header__icon--account {
  width:           auto;
  height:          35px;
  text-decoration: none;
  font-size:       1.5rem;
  font-weight:     400;
  display:         none;
}

.header__icon.header__icon--account a        { color: currentColor; text-decoration: none; }
.header__icon.header__icon--account a:hover  { color: var(--color-base-accent-3); }
.header__icon .icon.icon-account path        { fill: #000; }

.tm_header-dropdown.site-header__icon {
  position: relative;
  width:    16px;
  cursor:   pointer;
}

.my-account .counter    { color: var(--color-assent1); }
.header .my-account li::marker { font-size: 0; }

.tm_header-dropdown.site-header__icon .my-account {
  position:         absolute;
  top:              40px;
  right:            0;
  padding:          10px 15px;
  margin:           0;
  background-color: var(--color-base-background-1);
  left:             auto;
  min-width:        150px;
  display:          none;
  border:           1px solid var(--color-base-border);
  z-index:          4;
  transform:        translateX(50%);
}

.tm_header-dropdown.site-header__icon .my-account li a {
  text-decoration: none;
  color:           var(--color-foreground);
  display:         flex;
  padding:         2px 0;
}

.tm_header-dropdown.site-header__icon .my-account li a:hover { color: var(--color-base-accent-3); }

@media screen and (max-width: 1269px) {
  .header__icon.header__icon--account .account_text { display: none; }
  .icon.icon-account                                 { display: block; }
  .header__icon.header__icon--account                { font-size: 0; margin-right: 0; padding-right: 0; border-right: 0; }
}

@media screen and (max-width: 989px) {
  .header__icon.header__icon--account            { font-size: 0; margin-right: 0; padding-right: 0; border-right: 0; }
  .header__icon.header__icon--account .account_text { display: none; }
  .cart_count_with_text .header__icon_title      { display: none; }
  .icon.icon-account                             { display: block; }
}

@media screen and (max-width: 479px) {
  .tm_header-dropdown.site-header__icon  { display: flex; }
  .header__icon.header__icon--account    { display: none; }
}

/* 19.6 Header Search Modal */
menu-drawer + .header__search { display: none; }

.search-modal.modal__content.gradient { background-color: var(--color-base-background-1); }

.header > .header__search       { grid-area: left-icons; justify-self: start; }
.header--top-center.drawer-menu > .header__search { margin-left: 3.2rem; }
.header--top-center header-drawer{ grid-area: left-icons; }
.header:not(.header--has-menu) * > .header__search { display: none; }
.header__search                  { display: inline-flex; line-height: 0; }
.header__search .search-modal__content { max-width: 100%; padding: 0 15px; }
.header--top-center > .header__search  { display: none; }
.header--top-center * > .header__search{ display: inline-flex; }

@media screen and (max-width: 989px) {
  .header.header--middle-left:not(.header--has-menu) .header__search,
  .header.header--middle-center:not(.header--has-menu) .header__search { display: none; }

  .header.header--middle-left .search-modal__content,
  .header.header--middle-center .search-modal__content { display: block; }

  .header.header--middle-left .header__icons .header__search .search-modal__content,
  .header.header--middle-center .header__icons .header__search .search-modal__content { display: inline-flex; }

  .header__icons { gap: 4px; }
}

@media screen and (min-width: 990px) {
  .header:not(.header--top-center) * > .header__search,
  .header--top-center > .header__search { display: inline-flex; }

  .header:not(.header--top-center) > .header__search,
  .header--top-center * > .header__search,
  .header.header--middle-left:not(.header--has-menu) .header__search,
  .header.header--middle-center:not(.header--has-menu) .header__search { display: none; }
}

.no-js .predictive-search { display: none; }

details[open] > .search-modal {
  opacity:   1;
  animation: animateMenuOpen var(--duration-default) ease;
}

details[open] .modal-overlay { display: block; }

details[open] .modal-overlay::after {
  position:         absolute;
  content:          "";
  background-color: rgba(0, 0, 0, 0.5);
  top:              100%;
  left:             0;
  right:            0;
  height:           100vh;
}

.no-js details[open] > .header__icon--search { top: 1rem; right: 0.5rem; }

.search-modal {
  opacity:       0;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
  min-height:    120px;
  height:        14%;
}

.search-modal__content .field__label { line-height: 20px; }

.search-modal__content {
  display:         flex;
  align-items:     center;
  justify-content: center;
  width:           100%;
  height:          50%;
  padding:         0;
  line-height:     calc(1 + 0.8 / var(--font-body-scale));
  position:        relative;
  max-width:       350px;
}

.search-modal__content-bottom { bottom: calc(var(--inputs-margin-offset) / 2); }
.search-modal__content-top    { top:    calc(var(--inputs-margin-offset) / 2); }

.search-modal__form           { width: 100%; }

.search-modal__form .search__input.field__input {
  border:           0 solid var(--color-base-accent-3);
  color:            var(--color-foreground);
  height:           4.5rem;
  background-color: #f5f5f5;
}

.search-modal__close-button   { position: absolute; right: 0.3rem; }
.search-modal__form .field__label { color: var(--color-base-text); }

@media screen and (min-width: 750px) { .search-modal__close-button { right: 1rem; } }

@media screen and (min-width: 990px) {
  .search-modal__form         { max-width: 87rem; }
  .search-modal__close-button { position: initial; margin-left: 0.5rem; }
}

@media screen and (max-width: 749px) {
  .header.header--middle-left .search-modal__content,
  .header.header--middle-center .search-modal__content {
    display:   block;
    width:     100%;
    position:  absolute;
    left:      0;
    top:       51%;
    max-width: 100%;
    height:    auto;
  }

  .search-modal__form .search__input.field__input { height: 4.2rem; }
  .search-modal__content                          { padding: 0 1.5rem; }
  .section-header .header                         { padding-bottom: 73px; }
}

/* 19.7 Header Menu Drawer Toggle */
.header__icon--menu .icon {
  display:    block;
  position:   absolute;
  opacity:    1;
  transform:  scale(1);
  transition: transform 150ms ease, opacity 150ms ease;
  height:     2rem;
  width:      2rem;
}

.verticle-menu-drawer header-drawer #Details-menu-drawer-container .header__icon .icon.icon-hamburger {
  width:        1.8rem;
  vertical-align: middle;
  fill:         var(--color-foreground);
  stroke:       var(--color-foreground);
  stroke-width: 0.9px;
  height:       24px;
}

/* Icon states (closed = hamburger visible, open = close visible) */
details:not([open]) > .header__icon--menu .icon-close {
  visibility: hidden;
  opacity:    0;
  transform:  scale(0.8);
}

.js details[open]:not(.menu-opening) > .header__icon--menu .icon-close    { visibility: hidden; }
.js details[open]:not(.menu-opening) > .header__icon--menu .icon-hamburger{ visibility: visible; opacity: 1; transform: scale(1.07); }

/* Submenu initial hidden state */
.js details > .header__submenu {
  opacity:   0;
  transform: translateY(-1.5rem);
}

details[open] > .header__submenu {
  animation:       animateMenuOpen var(--duration-default) ease;
  animation-fill-mode: forwards;
  z-index:         3;
}

/* 19.8 Header Inline Menu (Desktop) */
.header__inline-menu {
  margin-left: 0;
  grid-area:   navigation;
  display:     none;
}

.header--top-center .header__inline-menu,
.header--top-center .header__heading-link { margin-left: 0; }

@media screen and (min-width: 990px) {
  .header__inline-menu {
    display:    block;
    width:      100%;
    text-align: center;
  }

  .header--top-center .header__inline-menu           { justify-self: center; }
  .header--top-center .header__inline-menu > .list-menu--inline { justify-content: center; }
  .header--middle-left .header__inline-menu          { margin-left: 0; }
}

.header__menu { padding: 0 1rem; }

.header__menu-item,
.header__menu-item:hover {
  padding:         1.8rem 2.6rem;
  text-decoration: none;
  font-weight:     500;
  font-size:       14px;
  color:           var(--color-foreground);
  text-transform:  uppercase;
}

.header__inline-menu ul li:first-child .header__menu-item,
.header__inline-menu ul li:first-child .header__menu-item:hover { padding-left: 0; }

li:first-child .header__menu-item { padding-left: 2.3rem; }

.header__inline-menu ul li:last-child .header__menu-item.more_menu,
.header__inline-menu ul li:last-child .header__menu-item.more_menu:hover { padding-right: 2.6rem; }

.header__menu-item span           { transition: text-decoration var(--duration-short) ease; }
details[open]:hover > .header__menu-item { text-decoration-thickness: 0.2rem; }
details[open] > .header__menu-item .icon-caret { transform: rotate(180deg); }

/* Remove list markers globally (template-page keeps them) */
li::marker          { line-height: 0; font-size: 0; }
.template-page li::marker { line-height: 0; font-size: inherit; }

.header__submenu {
  transition: opacity var(--duration-default) ease, transform var(--duration-default) ease;
}

/* Popup submenu panel */
.global-settings-popup,
.header__submenu.global-settings-popup {
  border-radius: var(--popup-corner-radius);
  border-color:  var(--color-base-border);
  border-style:  solid;
  border-width:  var(--popup-border-width);
  box-shadow:
    var(--popup-shadow-horizontal-offset)
    var(--popup-shadow-vertical-offset)
    var(--popup-shadow-blur-radius)
    rgba(var(--color-shadow), var(--popup-shadow-opacity));
  z-index: -1;
}

.header__submenu.list-menu { padding: 1.5rem 0; }

.header__submenu .header__submenu {
  background-color: rgba(var(--color-foreground), 0.03);
  padding:          0.5rem 0;
  margin:           0.5rem 0;
}

.header__submenu .header__menu-item:after     { right: 2rem; }
.header__submenu .header__menu-item           { justify-content: space-between; padding: 0.8rem 2.4rem; }
.header__submenu .header__submenu .header__menu-item { padding-left: 3.4rem; }

.header__menu-item .icon-caret {
  position: absolute;
  height:   0.6rem;
  right:    1rem;
  top:      calc(50% - 0.2rem);
}

.header__submenu .icon-caret { flex-shrink: 0; margin-left: 1rem; position: static; }

header-menu > details,
details-disclosure > details { position: relative; }

.header__menu-item a { text-decoration: none; color: currentColor; }

/* 19.9 Mega Menu */
.mega-menu .mega-menu__content,
#Details-HeaderMenu-moremenu ul.mega-menu__list li .mega-menu__content {
  position:         absolute;
  z-index:          3;
  transform-origin: 20% 20% 0;
  transition:       all 0.5s ease 0s;
  top:              100%;
  box-shadow:       0 5px 15px 0 rgba(0, 0, 0, 0.07);
  display:          none;
  border:           0;
  opacity:          0;
  background-color: var(--color-base-background-1);
  left:             0%;
  transform:        translateX(-20%);
}

.header__inline-menu ul.list-menu--inline > li:hover .mega-menu__content,
#Details-HeaderMenu-moremenu ul.mega-menu__list li:hover .mega-menu__content {
  visibility: visible;
  transition: all 0.5s ease 0s;
  top:        100%;
  display:    block;
  opacity:    1;
}

#Details-HeaderMenu-moremenu .mega-menu__content { position: absolute; }

.list-menu--inline li { position: relative; }

header-menu { display: block; width: 100%; }

.mega-menu .header__menu-item { position: relative; }

.mega-menu__list {
  display:        flex;
  padding:        2rem;
  flex-direction: row;
  text-align:     left;
}

.mega-menu__list.mega-menu__list--condensed { flex-direction: column; }

.mega-menu__list li {
  min-width:      210px;
  display:        flex;
  flex-direction: column;
  padding:        4px 0;
}

#Details-HeaderMenu-1 .mega-menu__list,
#Details-HeaderMenu-moremenu .mega-menu__list { flex-direction: column; }

/* Top-level mega menu category label */
ul.mega-menu__list > li > a.mega-menu__link {
  font-weight:   500;
  color:         var(--color-base-accent-3);
  margin-bottom: 5px;
  font-size:     17px;
}

/* Mega menu links */
.mega-menu__link,
#Details-HeaderMenu-moremenu .mega-menu__list .header__menu-item,
.mega-menu__list.mega-menu__list--condensed > li > a.mega-menu__link {
  text-decoration: none;
  color:           var(--color-foreground);
  padding:         0;
  font-weight:     400;
  line-height:     26px;
  margin:          0;
  text-transform:  capitalize;
  font-size:       16px;
}

.header__menu-item:hover,
#Details-HeaderMenu-moremenu .mega-menu__list .header__menu-item:hover,
.mega-menu__list.mega-menu__list--condensed > li > a.mega-menu__link:hover,
.mega-menu__link:hover { color: var(--color-base-text); }

@media screen and (max-width: 1269px) { .mega-menu__list li { min-width: 160px; } }

/* Nav menu (custom) */
.nav-menu-list {
  display:     flex;
  list-style:  none;
  padding:     0;
  margin:      0;
  gap:         15px;
}

.nav-menu-link {
  text-decoration: none;
  color:           var(--color-base-text);
  font-size:       14px;
  font-weight:     600;
  text-transform:  uppercase;
  padding:         15px 20px;
  position:        relative;
  display:         inline-block;
  transition:      color var(--duration-default) ease;
}

.nav-menu-link:hover { color: var(--color-base-accent-3); }

/* Underline reveal on hover */
.nav-menu-link::after {
  content:    "";
  position:   absolute;
  bottom:     8px;
  left:       50%;
  width:      0;
  height:     2px;
  background: var(--color-base-accent-2);
  transition: width var(--duration-default) ease;
  transform:  translateX(-50%);
}

.nav-menu-link:hover::after { width: 70%; }

/* Mobile menu toggle */
.mobile-toggle-wrapper {
  display: none;
}

/* Mobile menu button — base (overridden by Section 23 pill style) */
.mobile-menu-button {
  display:    flex;
  align-items: center;
  cursor:     pointer;
}

.mobile-nav-drawer {
  position:   fixed;
  top:        0;
  left:       -100%;
  width:      300px;
  height:     100%;
  background: var(--color-base-background-2);
  z-index:    1000;
  transition: left var(--duration-long) ease;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-nav-drawer.active { left: 0; }

.drawer-header {
  padding:         20px;
  background:      var(--color-base-background-1);
  display:         flex;
  justify-content: space-between;
  align-items:     center;
  border-bottom:   2px solid var(--color-base-accent-2);
}

.drawer-title { font-weight: 800; color: var(--color-base-text); }

.mobile-drawer-links { list-style: none; padding: 15px 0; margin: 0; }

.mobile-drawer-links li a {
  display:         block;
  padding:         18px 25px;
  border-bottom:   1px solid var(--color-base-border);
  text-decoration: none;
  color:           var(--color-base-text);
  font-weight:     600;
  position:        relative;
  transition:      var(--duration-default);
}

.mobile-drawer-links li a:hover {
  color:            var(--color-base-accent-3);
  padding-left:     35px;
  background:       var(--color-base-background-1);
}

/* Drawer overlay (dark backdrop) */
.drawer-overlay {
  position:   fixed;
  top: 0; left: 0;
  width:      100%;
  height:     100%;
  background: rgba(0, 0, 0, 0.5);
  display:    none;
  z-index:    999;
}

.drawer-overlay.active { display: block; }

@media screen and (max-width: 749px) {
  .desktop-nav          { display: none; }
  .mobile-toggle-wrapper{ display: flex; justify-content: flex-start; margin-left: 0; }
}


/* =============================================================================
   MENU CSS — Majori Shopify Theme
   =============================================================================
   base.css mein Section 19 ke END mein paste karo
   (jahan Section 20 shuru hota hai usse pehle)
============================================================================= */


/* =============================================================================
   1. HEADER BOTTOM WRAPPER
============================================================================= */

.header-bottom {
  background-color: var(--color-base-background-1);
  border-bottom:    1px solid var(--color-base-border);
  position:         relative;
  z-index:          10;
}

.header-bottom-inner {
  display:         flex;
  align-items:     center;
  justify-content: flex-start;
  width:           100%;
  min-height:      52px;
  position:        relative;
  overflow:        visible;
}

/* Mobile: inner flex left-align for hamburger button */
@media screen and (max-width: 989px) {
  .header-bottom-inner {
    justify-content: flex-start;
  }
}


/* =============================================================================
   2. DESKTOP NAV
============================================================================= */

/* Hidden on mobile, shown on desktop */
.hb-nav {
  display: none;
  width:   100%;
}

@media screen and (min-width: 990px) {
  .hb-nav { display: block; }
}

.hb-nav__list {
  display:         flex;
  align-items:     center;
  justify-content: center;
  list-style:      none;
  margin:          0;
  padding:         0;
  flex-wrap:       wrap;
  gap:             0;
}

.hb-nav__item {
  position:   relative;
  flex-shrink: 0;
}


/* =============================================================================
   3. DESKTOP NAV LINKS — Green hover + Yellow underline
============================================================================= */

.hb-nav__link,
.hb-nav__link--parent {
  display:         inline-flex;
  align-items:     center;
  gap:             5px;
  padding:         15px 16px;
  font-size:       1.35rem;
  font-weight:     600;
  letter-spacing:  0.05rem;
  text-transform:  uppercase;
  text-decoration: none;
  color:           var(--color-base-text);
  cursor:          pointer;
  white-space:     nowrap;
  position:        relative;

  /* Yellow underline — slides from center */
  background-image:    linear-gradient(var(--color-base-accent-2), var(--color-base-accent-2));
  background-position: 50% 100%;
  background-repeat:   no-repeat;
  background-size:     0% 2.5px;
  transition:
    color           200ms ease,
    background-size 200ms ease;
}

/* Remove default link underline inside parent span */
.hb-nav__link--parent a {
  text-decoration: none;
  color:           inherit;
}

/* Hover → Green text + Yellow underline */
.hb-nav__item:hover > .hb-nav__link,
.hb-nav__item:hover > .hb-nav__link--parent,
.hb-nav__link:hover {
  color:           var(--color-base-accent-3);
  background-size: 80% 2.5px;
}

/* Active / current page */
.hb-nav__link--active {
  color:           var(--color-base-accent-3);
  background-size: 80% 2.5px;
}

/* Caret icon */
.hb-caret {
  flex-shrink: 0;
  fill:        currentColor;
  transition:  transform 200ms ease;
}

.hb-nav__item--dropdown:hover .hb-caret {
  transform: rotate(180deg);
}

/* Responsive padding */
@media screen and (max-width: 1269px) {
  .hb-nav__link,
  .hb-nav__link--parent { padding: 15px 12px; font-size: 1.28rem; }
}

@media screen and (max-width: 1100px) {
  .hb-nav__link,
  .hb-nav__link--parent { padding: 14px 9px; font-size: 1.2rem; }
}

@media screen and (max-width: 1024px) {
  .hb-nav__link,
  .hb-nav__link--parent { padding: 13px 7px; font-size: 1.15rem; }
}

@media screen and (min-width: 1270px) {
  .hb-nav__link,
  .hb-nav__link--parent { padding: 16px 20px; }
}

@media screen and (min-width: 1440px) {
  .hb-nav__link,
  .hb-nav__link--parent { padding: 16px 24px; }
}


/* =============================================================================
   4. DESKTOP DROPDOWN
============================================================================= */

.hb-nav__dropdown {
  position:         absolute;
  top:              calc(100% + 2px);
  left:             50%;
  transform:        translateX(-50%) translateY(8px);
  min-width:        190px;
  background-color: var(--color-base-background-1);
  border:           1px solid var(--color-base-border);
  border-top:       2.5px solid var(--color-base-accent-2);
  border-radius:    0 0 8px 8px;
  box-shadow:       0 8px 24px rgba(0,0,0,0.10);
  padding:          6px 0;
  list-style:       none;
  margin:           0;
  z-index:          200;

  /* Hidden by default */
  opacity:          0;
  visibility:       hidden;
  pointer-events:   none;
  transition:
    opacity    200ms ease,
    transform  200ms ease,
    visibility 200ms ease;
}

/* Show on hover */
.hb-nav__item--dropdown:hover .hb-nav__dropdown {
  opacity:        1;
  visibility:     visible;
  pointer-events: auto;
  transform:      translateX(-50%) translateY(0);
}

/* Dropdown links */
.hb-nav__dropdown-link {
  display:         block;
  padding:         10px 20px;
  font-size:       1.35rem;
  font-weight:     500;
  color:           var(--color-base-text);
  text-decoration: none;
  white-space:     nowrap;
  transition:
    color            150ms ease,
    background-color 150ms ease,
    padding-left     150ms ease;
}

.hb-nav__dropdown-link:hover {
  color:            var(--color-base-accent-3);

  padding-left:     28px;
}

.hb-nav__dropdown-link--active {
  color:       var(--color-base-accent-3);
  font-weight: 600;
}


/* =============================================================================
   5. MOBILE HAMBURGER BUTTON
   — Left aligned, icon only (no text)
============================================================================= */

/* Shown on mobile only — left aligned */
.mobile-toggle-wrapper {
  display:         flex;
  align-items:     center;
  justify-content: flex-end;
  width:           auto;
  margin-left:     auto;
  padding:         0;
  background:      transparent;
}

@media screen and (min-width: 990px) {
  .mobile-toggle-wrapper { display: none; }
}

/* Mobile button base — overridden by Section 23 pill style */
.mobile-menu-button {
  display:    flex;
  align-items: center;
  cursor:     pointer;
}


/* =============================================================================
   6. MOBILE OVERLAY
============================================================================= */

.hb-overlay {
  position:       fixed;
  inset:          0;
  background:     rgba(0,0,0,0.55);
  z-index:        998;
  opacity:        0;
  pointer-events: none;
  transition:     opacity 250ms ease;
}

.hb-overlay--active {
  opacity:        1;
  pointer-events: auto;
}


/* =============================================================================
   7. MOBILE DRAWER
============================================================================= */

.hb-drawer {
  position:         fixed;
  top:              0;
  left:             -100%;
  width:            min(300px, 85vw);
  height:           100vh;
  background-color: var(--color-base-background-1);
  z-index:          999;
  overflow-y:       auto;
  overflow-x:       hidden;
  transition:       left 300ms ease;
  box-shadow:       4px 0 20px rgba(0,0,0,0.15);
}

/* Open state */
.hb-drawer--open {
  left: 0;
}

/* Drawer header */
.hb-drawer__header {
  display:          flex;
  align-items:      center;
  justify-content:  space-between;
  padding:          16px 20px;
  border-bottom:    2.5px solid var(--color-base-accent-2);
  background-color: var(--color-base-background-1);
  position:         sticky;
  top:              0;
  z-index:          1;
}

.hb-drawer__title {
  font-size:      1.4rem;
  font-weight:    800;
  color:          var(--color-base-text);
  text-transform: uppercase;
  letter-spacing: 0.08rem;
}

/* Drawer close button */
.hb-drawer__close {
  display:         flex;
  align-items:     center;
  justify-content: center;
  background:      none;
  border:          none;
  cursor:          pointer;
  padding:         5px;
  color:           var(--color-base-accent-2);
  transition:
    color     150ms ease,
    transform 150ms ease;
}

.hb-drawer__close:hover {
  color:     var(--color-base-accent-3);
  transform: rotate(90deg);
}

.hb-drawer__close svg {
  display: block;
  width:   20px;
  height:  20px;
  stroke:  currentColor;
}


/* =============================================================================
   8. MOBILE DRAWER LINKS — Green hover + Yellow left bar
============================================================================= */

.hb-drawer__links {
  list-style: none;
  margin:     0;
  padding:    0;
}

.hb-drawer__item {
  border-bottom: 1px solid var(--color-base-border);
}

/* Top-level link */
.hb-drawer__link {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  padding:         14px 22px;
  font-size:       1.4rem;
  font-weight:     600;
  text-transform:  uppercase;
  letter-spacing:  0.04rem;
  color:           var(--color-base-text);
  text-decoration: none;
  position:        relative;
  cursor:          pointer;
  list-style:      none;
  background:      none;
  border:          none;
  width:           100%;
  text-align:      left;
  transition:
    color            150ms ease,
    padding-left     150ms ease,
}

/* Yellow left bar */
.hb-drawer__link::before {
  content:          "";
  position:         absolute;
  left:             0;
  top:              0;
  bottom:           0;
  width:            0;
  background-color: var(--color-base-accent-2);
  transition:       width 150ms ease;
}

/* Hover */
.hb-drawer__link:hover {
  color:            var(--color-base-accent-3);
  background-color: rgba(31,170,89,0.05);
  padding-left:     30px;
}

.hb-drawer__link:hover::before { width: 4px; }

/* Active */
.hb-drawer__link--active {
  color:       var(--color-base-accent-3);
  font-weight: 700;
}

.hb-drawer__link--active::before {
  width:            4px;
  background-color: var(--color-base-accent-2);
}

/* Remove summary marker */
.hb-drawer__details > summary { list-style: none; }
.hb-drawer__details > summary::-webkit-details-marker { display: none; }

/* Caret rotate when open */
.hb-drawer__details[open] > .hb-drawer__link .hb-caret {
  transform: rotate(180deg);
}

.hb-drawer__details[open] > .hb-drawer__link {
  color:         var(--color-base-accent-3);
  border-bottom: 1px solid var(--color-base-accent-2);
}

/* Sub-links */
.hb-drawer__sub {
  list-style:       none;
  margin:           0;
  padding:          4px 0;
  background-color: rgba(0,0,0,0.02);
}

.hb-drawer__sublink {
  display:         block;
  padding:         11px 22px 11px 36px;
  font-size:       1.3rem;
  font-weight:     500;
  color:           var(--color-base-text);
  text-decoration: none;
  transition:
    color            150ms ease,
    padding-left     150ms ease,
}

.hb-drawer__sublink:hover {
  color:            var(--color-base-accent-3);
  background-color: rgba(31,170,89,0.05);
  padding-left:     44px;
}

.hb-drawer__sublink--active {
  color:       var(--color-base-accent-3);
  font-weight: 600;
}


/* =============================================================================
   9. OVERFLOW / SCROLLBAR FIX
============================================================================= */

html, body {
  overflow-x: hidden;
  max-width:  100%;
}

.marquee-track-v2 { overflow: hidden; }

.owl-stage-outer  { overflow: hidden !important; }


/* =============================================================================
   20. SECTION — WISHLIST & COMPARE
============================================================================= */

/* Compare grid — horizontal scroll */
.compare__grid.grid {
  column-gap:    0;
  row-gap:       20px;
  margin:        0 -10px;
  overflow-x:    auto;
  scrollbar-width: thin;
  flex-wrap:     nowrap;
  display:       flex;
  overflow-y:    hidden;
  scroll-behavior: smooth;
}

.compare__grid .product-card-compare {
  list-style:       none;
  padding:          0;
  margin:           0;
  border:           1px solid var(--color-base-border);
  margin-inline-end: -1px;
  background-color: var(--color-base-background-1);
}

.compare__grid .product-card-compare li {
  display:    flex;
  border-bottom: 1px solid var(--color-base-border);
  padding:    15px 15px 8px;
  position:   relative;
  min-width:  278px;
  max-width:  278px;
}

.compare__grid .product-card-compare li:last-child {
  border-bottom: none;
  min-height:    110px;
}

.compare__grid .product-card-compare li span.visually-hidden { display: none; }

.compare__grid .product-card-compare li .price .price-item,
.compare__grid .product-card-compare li .price__container { text-align: left; }

.compare__grid .product-card-compare li .price__container { width: 100%; }

.compare__grid .product-card-compare li span {
  width:      50%;
  text-align: right;
}

.compare__grid .product-card-compare li span.card-information__text {
  text-align:  left;
  font-weight: 500;
}

.compare__grid .product-card-compare li .form__label {
  text-align:  left;
  color:       #000;
  font-weight: 500;
  margin-bottom: 0;
}

/* Wishlist grid */
.wishlist__grid.grid.flex.container.loaded {
  column-gap:            30px;
  row-gap:               30px;
  margin:                0;
  display:               grid;
  grid-template-columns: repeat(5, 1fr);
  border-radius:         5px;
}

.wishlist__grid .product {
  background-color: transparent;
  padding:          0;
  border-radius:    var(--product-card-corner-radius);
  border:           var(--product-card-border-width) solid var(--color-base-border);
  text-align:       center;
}

.wishlist__grid .products {
  float:            left;
  width:            100%;
  border-radius:    var(--product-card-corner-radius);
  padding:          var(--product-card-corner-radius);
  overflow:         hidden;
  background-color: var(--color-base-button-text-hover);
  border:           1px solid var(--color-base-border);
}

.wishlist__grid .card__information,
.compare__grid .card-information { min-height: auto; }

.wishlist__grid .card__information { padding: 0; }
.wishlist__grid .card__content     { grid-template-rows: auto; padding: 0; }
.wishlist .card-information__wrapper { padding: 6px 0 0; }
.wishlist__grid .card-information__text.h5 { padding: 5px 0; display: block; }

.wishlist img {
  border-radius: var(--product-card-corner-radius);
  max-width:     100%;
}

.compare__grid .card-information { padding: 0; min-height: 72px; }

.wishlist__grid .product-hover  { right: 15px; opacity: 1; top: 15px; }
.compare__grid .product-hover   { right: 0; top: 0; opacity: 1; }

.wishlist__grid .caption-with-letter-spacing.light { opacity: 1; text-align: center; padding-block: 0; }
.wishlist__grid .product-form                       { display: block; padding-top: 11px; }
.wishlist__grid .product-form .button               { display: block; width: 100%; }
.wishlist__grid .card-information__text.card__heading { padding-block: 7px; }

.wishlist__grid .product-hover > button:hover .icon,
.compare__grid .product-hover > button:hover .icon  { color: var(--color-background); }

/* Empty states */
.wish-info,
.comp-info {
  text-align: center;
  padding:    15rem 0 20rem;
  margin:     0;
}

.no_products_data { font-size: 20px; font-weight: 400; }

.wish-info a.link,
.comp-info a.link {
  text-decoration: underline;
  font-size:       16px;
  text-transform:  capitalize;
  color:           var(--color-foreground);
  font-weight:     500;
}

.wish-info a.link:hover,
.comp-info a.link:hover { text-decoration: none; }

.wishlist__grid img,
.compare__grid img { max-width: 100%; }

.compare__grid.grid,
.wishlist__grid.grid,
.wishlist__grid.grid.flex.container.loaded { margin-top: 3rem; }

.compare__grid .card--card.card--text .card__inner,
.wishlist__grid .card--card.card--text .card__inner { display: block; }

/* Responsive */
@media (max-width: 1269px) {
  .wishlist__grid.grid.flex.container.loaded { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 989px) {
  .wishlist__grid.grid.flex.container.loaded { grid-template-columns: repeat(4, 1fr); }
  .compare__grid .product-card-compare li    { min-width: 260px; max-width: 260px; }
}
@media (max-width: 749px) {
  .wishlist__grid.grid.flex.container.loaded { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 650px) {
  .compare__grid .product-card-compare       { width: 50%; }
  .wishlist__grid.grid.flex.container.loaded { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 479px) {
  .compare__grid .product-card-compare { width: 100%; max-width: 280px; }
}


/* =============================================================================
   21. MISC
============================================================================= */

/* 21.1 Loader */
.ttloader {
  height:   100%;
  left:     0;
  position: fixed;
  top:      0;
  width:    100%;
  z-index:  999999;
}

.rotating {
  background-position: center center;
  background-repeat:   no-repeat;
  bottom:   0;
  height:   auto;
  left:     0;
  margin:   auto;
  position: absolute;
  right:    0;
  top:      0;
  width:    auto;
}

/* 21.2 Back-to-Top Button */
.top_button {
  top:           auto;
  bottom:        60px;
  display:       none;
  height:        42px;
  width:         42px;
  position:      fixed;
  right:         50px;
  text-align:    center;
  z-index:       7;
  border:        2px solid var(--color-base-background-1);
  border-radius: 22px;
  background:    var(--color-base-accent-3);
}

.top_button .icon {
  height:    14px;
  width:     14px;
  position:  relative;
  top:       8px;
  color:     #fff;
  transform: rotate(180deg);
}

@media screen and (max-width: 989px) {
  .top_button { bottom: 80px; right: 40px; }
}

/* 21.3 Breadcrumbs */
.title-breadcrumbs-container {
  display:         flex;
  justify-content: space-between;
}

.breadcrumb_title {
  margin:    0;
  font-size: calc(var(--font-heading-scale) * 2.6rem);
}

.breadcrumb a,
.breadcrumb span {
  color:           var(--color-base-text);
  text-decoration: none;
  font-size:       1.5rem;
}

#TopColumnContent {
  padding-block:  3.2rem;
  border-top:     0;
  margin-bottom:  3rem;
}

.breadcrumb a:after {
  content: "";
  padding: 0;
}
.breadcrumb a:last-child::after   { content: ""; }

/* 21.4 Arrow Animation */
.animate-arrow .icon-arrow path {
  transform:  translateX(-0.25rem);
  transition: transform var(--duration-short) ease;
}

.animate-arrow:hover .icon-arrow path { transform: translateX(-0.05rem); }

/* 21.5 Gradient */
.gradient {
  background:            var(--color-background);
  background-attachment: fixed;
}

/* 21.6 Ratio helper (see also Section 3) */
/* (Already defined in Section 3.6) */

/* 21.7 Overflow Hidden Breakpoint Utilities */
/* (Already defined in Section 3.5) */

/* 21.8 404 Template */
.template-404 > h1.title {
  float:      none;
  text-align: center;
  margin-top: 0;
}

.template-404 > p {
  font-size:   100px;
  margin:      0;
  line-height: 110px;
  font-weight: 400;
  color:       var(--color-base-accent-2);
}

/* 21.9 Ambient Animation (subtle rotating image effect) */
@media (prefers-reduced-motion: no-preference) {
  .animate--ambient > img,
  .animate--ambient > svg {
    animation: animateAmbient 30s linear infinite;
  }

  @keyframes animateAmbient {
    0%   { transform: rotate(0deg)   translateX(1em) rotate(0deg)    scale(1.2); }
    100% { transform: rotate(360deg) translateX(1em) rotate(-360deg) scale(1.2); }
  }
}

/* Menu open animation (shared) */
@keyframes animateMenuOpen {
  0%   { opacity: 0; transform: translateY(-1.5rem); }
  100% { opacity: 1; transform: translateY(0); }
}

/* 21.10 Responsive Table */
.table-responsive {
  overflow-x:                 auto;
  -webkit-overflow-scrolling: touch;
  background-color:           var(--color-base-background-1);
}

.rte table {
  table-layout: fixed;
  text-align:   center;
  width:        100%;
  min-width:    500px;
}

.rte table > :not(caption) > * > * {
  padding:            0.5rem;
  border-bottom-width: 1px;
}

.rte table > thead > tr > th {
  background-color: #f2f2f2;
  color:            #000;
  font-weight:      500;
}

.rte table > tbody > tr:nth-of-type(2n) > * { background-color: #f7f7f7; }

/* ── FIX: Horizontal Scrollbar ── */

/* Marquee overflow fix */
.marquee-track-v2,
.marquee-item-v2,
.marquee-link-v2 {
  max-width: none;
  box-sizing: border-box;
}

/* Only the WRAPPER clips — inner track must scroll freely */
.custom-announcement-wrapper {
  overflow: hidden !important;
  max-width: 100%;
}

/* Track must NOT be clipped or width-limited */
.custom-announcement-track {
  max-width: none !important;
  width: max-content !important;
  overflow: visible !important;
}

/* Owl Carousel overflow fix */
.owl-stage-outer {
  overflow: hidden !important;
}

.owl-stage {
  max-width: none;
  box-sizing: border-box;
}

/* Root level — prevent any element from causing page scroll */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* =============================================================================
   22. ACCESSIBILITY — WINDOWS HIGH CONTRAST MODE
   Ensures buttons and inputs have visible borders in forced-colors mode.
============================================================================= */

@media screen and (forced-colors: active) {
  /* Icons */
  .icon {
    color: CanvasText;
    fill:  CanvasText !important;
  }

  .icon-close-small path { stroke: CanvasText; }

  /* Loading button text */
  .button.loading { color: rgb(var(--color-foreground)); }
}

@media (forced-colors: active) {
  /* FIX: broken selector restored — was ".button, ," — missing middle selector */
  .button,
  .shopify-challenge__button,
  .customer button {
    border: transparent solid 1px;
  }

  .button:focus-visible,
  .button:focus,
  .button.focused,
  .shopify-payment-button__button--unbranded:focus-visible,
  .shopify-payment-button [role="button"]:focus-visible,
  .shopify-payment-button__button--unbranded:focus,
  .shopify-payment-button [role="button"]:focus {
    outline: solid transparent 1px;
  }

  .field__input:focus,
  .select__select:focus,
  .customer .field input:focus,
  .customer select:focus,
  .localization-form__select:focus.localization-form__select:after,
  .localization-form__select:focus {
    outline: transparent solid 1px;
  }
}

/* =============================================================================
   23. UNIFIED BUTTON SYSTEM — Black bg + White text + Green→Yellow gradient hover
   Applies to ALL buttons site-wide: sections, footer, nav, CTAs
   Same professional hover pattern as nav menu underline effect
============================================================================= */

/* Ensure ALL .button instances follow the black/white/gradient system */
.button,
.shopify-challenge__button,
.customer button,
button.shopify-payment-button__button--unbranded,
.shopify-payment-button [role="button"],
.cart__dynamic-checkout-buttons [role="button"],
footer .button,
.footer .button,
.section-best-for .button,
.section-deal .button,
.section-popular .button,
.section-featured .button,
.section .button,
.card__footer .button,
.card-information .button,
.product-card-wrapper .button {
  background-color: #111111 !important;
  color: #ffffff !important;
  border-radius: 50px !important;
}

/* Section CTA "View All" links styled as buttons */
.collection__view-all .button,
.blog__view-all .button,
.title-wrapper-with-link .button,
.center .button {
  background-color: #111111;
  color: #ffffff;
  border-radius: 50px;
}

/* Hover — white text stays */
.button:hover,
.shopify-challenge__button:hover,
.customer button:hover,
footer .button:hover,
.footer .button:hover,
.section .button:hover,
.card__footer .button:hover,
.product-card-wrapper .button:hover {
  color: #ffffff !important;
}

/* Footer nav link hover */
footer a:hover,
.footer__menu a:hover,
.footer-block__link:hover,
.footer-block a:hover,
.list-menu a:hover {
  color: var(--color-base-accent-3);
}

/* ── MOBILE HAMBURGER — Pill style, black bg + gradient hover ── */
.mobile-menu-button,
button.mobile-menu-button {
  background-color: transparent !important;
  color:            #111111 !important;
  border-radius:    8px !important;
  padding:          8px 10px !important;
  border:           1.5px solid #111111 !important;
  box-shadow:       none !important;
  display:          flex !important;
  align-items:      center !important;
  gap:              0 !important;
  cursor:           pointer !important;
  position:         relative !important;
  overflow:         hidden !important;
  min-width:        unset;
  min-height:       unset;
  transition:       color 200ms ease, border-color 200ms ease;
}

.mobile-menu-button::before,
button.mobile-menu-button::before {
  display:       block !important;
  content:       "" !important;
  position:      absolute !important;
  inset:         0 !important;
  left:          -6px !important;
  width:         0% !important;
  z-index:       0 !important;
  background:    linear-gradient(90deg, #1faa59, #ffc700) !important;
  transition:    all 0.4s ease !important;
  border-radius: 8px !important;
}

.mobile-menu-button:hover::before,
button.mobile-menu-button:hover::before {
  width: 110% !important;
}

.mobile-menu-button svg,
button.mobile-menu-button svg {
  position:  relative !important;
  z-index:   1 !important;
  stroke:    #111111 !important;
  width:     22px;
  height:    22px;
}

/* ── MOBILE DRAWER OVERLAY ── */
.hb-overlay {
  z-index: 998;
  cursor: pointer;
}

.hb-drawer {
  z-index: 999;
}

/* ── HB-NAV LINK HOVER ── */
.hb-nav__link:hover,
.hb-nav__item:hover > .hb-nav__link,
.hb-nav__item:hover > .hb-nav__link--parent {
  color: var(--color-base-accent-3);
}

/* ── DROPDOWN LINKS hover ── */
.hb-nav__dropdown-link:hover {
  color: var(--color-base-accent-3);
  background: linear-gradient(90deg, rgba(31,170,89,0.08) 0%, rgba(255,199,0,0.08) 100%);
  padding-left: 28px;
}

/* ── Slideshow / Hero banner buttons ── */
.slideshow__text-wrapper .button,
.slideshow .button,
.banner .button,
.hero .button,
[class*="slideshow"] .button,
[class*="banner"] .button,
a.button,
button.button {
  background-color: #111111;
  color: #ffffff;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border-radius: 50px;
}

[class*="slideshow"] .button::before,
[class*="banner"] .button::before,
a.button::before,
button.button::before {
  content: "";
  position: absolute;
  top: 0; right: auto; bottom: 0; left: -6px;
  z-index: -1;
  width: 0%;
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--color-base-accent-3) 0%, var(--color-base-accent-2) 100%);
  transition: all 0.4s ease-in-out;
}

[class*="slideshow"] .button:hover::before,
[class*="banner"] .button:hover::before,
a.button:hover::before,
button.button:hover::before {
  width: 110%;
}

/* ── Banner button fix — ::after reset ── */
.banner__buttons .button--primary::after,
.banner__buttons .button::after {
  z-index: 0 !important;
  background: none !important;
  box-shadow: none !important;
}

/* Base button size — desktop */
.banner__buttons .button--primary,
.banner__buttons .button {
  border-radius:   50px !important;
  padding:         14px 36px !important;
  font-size:       1rem !important;
  letter-spacing:  1.5px !important;
  border:          2px solid transparent !important;
  min-width:       unset !important;
  min-height:      unset !important;
  white-space:     nowrap !important;
}

/* Mobile — button chota aur proportionate */
@media screen and (max-width: 749px) {
  .banner__buttons .button--primary,
  .banner__buttons .button {
    font-size:   clamp(0.7rem, 3.5vw, 0.88rem) !important;
    padding:     clamp(8px, 2.2vw, 12px) clamp(18px, 6vw, 28px) !important;
    min-width:   unset !important;
    min-height:  unset !important;
    letter-spacing: 1px !important;
  }
}

.banner__buttons .button--primary::before,
.banner__buttons .button::before {
  z-index: -1 !important;
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  left: -6px !important;
  width: 0% !important;
  height: 100% !important;
  background: linear-gradient(90deg, #1faa59, #ffc700) !important;
  transition: all 0.4s ease !important;
  border-radius: 50px !important;
}

.banner__buttons .button--primary:hover::before,
.banner__buttons .button:hover::before {
  width: 110% !important;
}

.banner__buttons .button--primary:hover,
.banner__buttons .button:hover {
  color: #ffffff !important;
}


/* Breadcrumb — poora hide karo, Home link bhi nahi chahiye */
nav.breadcrumb,
.breadcrumbs,
.breadcrumb,
.title-breadcrumbs-container,
[class*="breadcrumb"] {
  display: none !important;
}

/* Breadcrumb padding fix */
#TopColumnContent,
.top-column-content {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.title-breadcrumbs {
  padding: 0 !important;
  margin: 0 !important;
}
/* Product & Collection card titles — black */
.card-information__text,
.card__heading,
.card-information__text.h5,
.card-information__text.h3,
.card-information a,
.full-unstyled-link .card-information__text {
  color: var(--color-base-text) !important;
}

/* =============================================================================
   24. SECTION SPACING — Reduce gap between all sections
============================================================================= */
.shopify-section {
  padding-top:    0 !important;
  padding-bottom: 0 !important;
  margin-top:     10px !important;
  margin-bottom:  0 !important;
}

#MainContent {
  padding-top:    0 !important;
  padding-bottom: 0 !important;
}

.section-template--* {
  padding-top:    20px !important;
  padding-bottom: 20px !important;
}


/* =============================================================================
   HEADER ICONS & SEARCH — Black Color Fix
============================================================================= */

/* Search icon */
.header__icon .icon,
.search__button .icon,
.header__search .icon {
  fill:   #111111 !important;
  color:  #111111 !important;
  stroke: #111111 !important;
}

/* Search input icon (magnifying glass) */
.field__button svg,
.field__button .icon {
  fill:   #111111 !important;
  color:  #111111 !important;
}

/* Account, Wishlist, Compare icons */
.header__icon svg,
.header__icon .icon,
.icon.icon-account,
.cm-wishlist-button .icon,
.cm-compare-button .icon {
  fill:   #111111 !important;
  color:  #111111 !important;
  stroke: #111111 !important;
}

/* Cart icon */
.header__icon--cart .icon,
.header__icon--cart svg,
.header__icon--cart #Layer_1 {
  fill:   #111111 !important;
  color:  #111111 !important;
  stroke: #111111 !important;
}

/* "My Cart" text aur "$0.00" */
.cart_count_with_text,
.cart_count_with_text span,
.header__icon_title {
  color: #111111 !important;
}

/* Cart count bubble green rakho (change nahi) */
.cart-count-bubble,
.cm-wishlist-button .count-bubble,
.cm-compare-button .count-bubble {
  background-color: var(--color-base-accent-3) !important;
  color:            #ffffff !important;
}

/* ── Search Box Black Border ── */
.search-modal__content {
  border:           2px solid #111111 !important;
  border-radius:    8px !important;
  background-color: #ffffff !important;
  overflow:         hidden;
}

/* Focus pe green border */
.search-modal__content:focus-within {
  border-color: var(--color-base-accent-3) !important;
  box-shadow:   0 0 0 3px rgba(31, 170, 89, 0.15) !important;
}

/* Input ke andar border na ho — sirf outer box pe */
.search-modal__content .field__input,
.search-modal__content .search__input {
  border:           none !important;
  box-shadow:       none !important;
  background-color: transparent !important;
}

/* =============================================================================
   PRODUCT PAGE — UAE/KSA MARKET CUSTOMIZATIONS
   File: base.css
   Description: Saari product page styling yahan hai — liquid file mein koi
                inline CSS nahi. Har section clearly comment kiya gaya hai.
   =============================================================================


/* -----------------------------------------------------------------------------
   1. SMART DUAL-MARKET PRICE DISPLAY (KSA + UAE)
   - Shopify default price block completely hidden
   - Apna custom .product__smart-price block dikhaye
   ----------------------------------------------------------------------------- */

/* Shopify ka default price block hide karo — double display avoid */
.product__price-wrapper .price {
  display: none !important;
}

/* Smart Price Container */
.product__smart-price {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 4px;
}

/* Har row — SAR ya AED */
.smart-price__row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* SAR row styling (KSA market) */
.smart-price__sale--sar {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

/* AED row styling (UAE market) */
.smart-price__sale--aed {
  display: flex;
  align-items: baseline;
  gap: 6px;
  opacity: 0.80;
}

/* Currency labels */
.smart-price__currency-label {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sar-label {
  color: #1b6ca8;  /* KSA — blue */
}

.aed-label {
  color: #007b5e;  /* UAE — green */
}

/* Main price amount — SAR (primary, bada) */
.smart-price__sale--sar .smart-price__amount {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
}

/* Main price amount — AED (secondary, thoda chota) */
.smart-price__sale--aed .smart-price__amount {
  font-size: 1.6rem;
  font-weight: 600;
  color: #444;
}

/* Strikethrough compare price */
.smart-price__compare {
  font-size: 1.1rem;
  color: #999;
  text-decoration: line-through;
  font-weight: 400;
}

.smart-price__compare--aed {
  font-size: 1rem;
}

/* Sale badge */
.smart-price__badge {
  display: inline-block;
  background: #e53e3e;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 3px;
  letter-spacing: 0.04em;
}

.smart-price__badge--aed {
  background: #c53030;
  font-size: 0.78rem;
}

/* Divider between SAR and AED rows */
.smart-price__aed-row {
  padding-top: 6px;
  border-top: 1px dashed #e2e8f0;
  margin-top: 4px;
}

/* Tax/shipping line — already removed from liquid, safety hide */
.product__tax {
  display: none !important;
}


/* -----------------------------------------------------------------------------
   2. ADD TO CART & BUY NOW BUTTONS — Theme ke baaki buttons jaise hover effect
   ----------------------------------------------------------------------------- */

/* product-form__cart-submit button ko theme ke .button hover jaise treat karo */
.product-form__cart-submit {
  position:   relative;
  overflow:   hidden;
  transition: color 0.3s ease;
}

/* Hover pe gradient sweep animation — same as theme buttons */
.product-form__cart-submit::before {
  content:       "";
  position:      absolute;
  top: 0; right: auto; bottom: 0; left: -6px;
  z-index:       -1;
  width:         0%;
  height:        100%;
  border-radius: var(--buttons-radius);
  background:    linear-gradient(
    90deg,
    var(--color-base-accent-3) 0%,
    var(--color-base-accent-2) 100%
  );
  transition: width 0.4s ease-in-out;
}

.product-form__cart-submit:hover::before {
  width: 110%;
}

/* Hover pe border ring — same as theme */
.product-form__cart-submit::after {
  content:       "";
  position:      absolute;
  top:    var(--buttons-border-width);
  right:  var(--buttons-border-width);
  bottom: var(--buttons-border-width);
  left:   var(--buttons-border-width);
  z-index:       1;
  border-radius: var(--buttons-radius);
  box-shadow:
    0 0 0 calc(var(--buttons-border-width) + var(--border-offset, 0px))
      rgba(var(--color-button-text), var(--border-opacity)),
    0 0 0 var(--buttons-border-width)
      rgba(var(--color-button), var(--alpha-button-background));
  transition: box-shadow var(--duration-short) ease;
}

.product-form__cart-submit:not([disabled]):hover::after {
  --border-offset: 1.3px;
  box-shadow:
    0 0 0 calc(var(--buttons-border-width) + var(--border-offset))
      rgba(var(--color-button-text), var(--border-opacity)),
    0 0 0 calc(var(--buttons-border-width) + 1px)
      rgba(var(--color-button), var(--alpha-button-background));
}

/* -----------------------------------------------------------------------
   Buy Now / Dynamic Checkout button — gradient sweep same as Add to Cart
   Shopify renders this as button.shopify-payment-button__button--unbranded
   Ya phir [role="button"] wrapper ke andar. Dono target kar rahe hain.
   ----------------------------------------------------------------------- */

/* Base — position relative aur overflow hidden zaroori hai sweep ke liye */
.shopify-payment-button .shopify-payment-button__button--unbranded,
.shopify-payment-button [role="button"] {
  position:   relative !important;
  overflow:   hidden !important;
  transition: color 0.3s ease !important;
}

/* Sweep pseudo element — same gradient as Add to Cart */
.shopify-payment-button .shopify-payment-button__button--unbranded::before,
.shopify-payment-button [role="button"]::before {
  content:        "" !important;
  position:       absolute !important;
  top: 0; right: auto; bottom: 0; left: -6px;
  z-index:        -1 !important;   /* -1 so text stays visible above it */
  width:          0% !important;
  height:         100% !important;
  border-radius:  var(--buttons-radius) !important;
  background:     linear-gradient(
    90deg,
    var(--color-base-accent-3) 0%,
    var(--color-base-accent-2) 100%
  ) !important;
  transition: width 0.4s ease-in-out !important;
  pointer-events: none;
}

/* Hover — sweep fills button */
.shopify-payment-button .shopify-payment-button__button--unbranded:hover::before,
.shopify-payment-button [role="button"]:hover::before {
  width: 110% !important;
}

/* Button text upar rehna chahiye sweep ke upar — z-index fix */
.shopify-payment-button .shopify-payment-button__button--unbranded > *,
.shopify-payment-button [role="button"] > * {
  position: relative;
  z-index:  1;
}

/* Hover border ring — same as theme buttons */
.shopify-payment-button .shopify-payment-button__button--unbranded:hover,
.shopify-payment-button [role="button"]:hover {
  box-shadow:
    0 0 0 calc(var(--buttons-border-width, 1px) + 1.3px)
      rgba(var(--color-button-text, 0 0 0), 0.2),
    0 0 0 calc(var(--buttons-border-width, 1px) + 1px)
      rgba(var(--color-button, 0 0 0), var(--alpha-button-background, 1)) !important;
}


/* -----------------------------------------------------------------------------
   3. PRODUCT DESCRIPTION — Professional About Section
      Image ke neeche LEFT side pe show hota hai.
      Card layout with dark heading strip + 2-column list on desktop.
   ----------------------------------------------------------------------------- */

/* Main container — card feel with shadow */
.product-below-image-description {
  margin-top:    32px;
  padding:       0;
  background:    #ffffff;
  border-radius: 12px;
  border:        1px solid #e8e8e8;
  overflow:      hidden;
  box-shadow:    0 2px 16px rgba(0, 0, 0, 0.05);
}

/* Headings — dark banner strip (professional look) */
.product-below-image-description h2,
.product-below-image-description h3,
.product-below-image-description h4 {
  font-size:      1.6rem;   /* Heading — bada aur bold */
  font-weight:    700;
  color:          #ffffff;
  background:     #1a1a1a;
  margin:         0;
  padding:        16px 28px;
  letter-spacing: 0.02em;
  break-after:    avoid;
  column-span:    all;
}

/* Body paragraphs */
.product-below-image-description p {
  font-size:      1.08rem;  /* Body text — comfortable reading size */
  line-height:    1.8;
  color:          #3a3a3a;
  margin:         0;
  padding:        18px 28px 0;
}

.product-below-image-description p:last-child {
  padding-bottom: 24px;
}

/* List — 2 columns on desktop so content flows left-to-right */
.product-below-image-description ul,
.product-below-image-description ol {
  margin:       0;
  padding:      16px 28px 24px 48px;
  columns:      2;
  column-gap:   2rem;
}

@media screen and (max-width: 749px) {
  .product-below-image-description ul,
  .product-below-image-description ol {
    columns: 1;
  }
}

.product-below-image-description li {
  font-size:    1.08rem;  /* List items — same as paragraph */
  line-height:  1.75;
  color:        #3a3a3a;
  margin-bottom: 8px;
  break-inside: avoid;
  padding-left: 4px;
}

/* Green bullet markers */
.product-below-image-description ul li::marker {
  color: #007b5e;
  font-size: 1.1em;
}

/* Table — professional striped */
.product-below-image-description table {
  width:           100%;
  border-collapse: collapse;
  margin:          0;
  font-size:       0.92rem;
}

.product-below-image-description table td,
.product-below-image-description table th {
  padding:    11px 20px;
  border:     1px solid #eaeaea;
  color:      #333;
  text-align: left;
}

/* Remove top border on first row */
.product-below-image-description table tr:first-child td,
.product-below-image-description table tr:first-child th {
  border-top: none;
}

.product-below-image-description table tr:nth-child(odd) td  { background-color: #fafafa; }
.product-below-image-description table tr:nth-child(even) td { background-color: #f3f3f3; }

.product-below-image-description table th {
  background-color: #1a1a1a;
  color:            #ffffff;
  font-weight:      700;
  letter-spacing:   0.04em;
  text-transform:   uppercase;
  font-size:        0.82rem;
}

/* Row hover effect */
.product-below-image-description table tr:hover td {
  background-color: #eef6f2;
  transition:       background-color 0.2s ease;
}


/* -----------------------------------------------------------------------------
   4. COD TRUST BAR — Colorful icons, hover moving effect, bada font
   ----------------------------------------------------------------------------- */

/* Main trust bar container */
.product__cod-trust {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  gap:             0;
  margin:          20px 0;
  padding:         16px 20px;
  background:      #f8f8f8;
  border:          1px solid #e4e4e4;
  border-radius:   10px;
  transition:      border-color 0.3s ease, box-shadow 0.3s ease;
}

.product__cod-trust:hover {
  border-color: #d0d0d0;
  box-shadow:   0 2px 12px rgba(0, 0, 0, 0.07);
}

/* Individual item — icon + label */
.cod-trust__item {
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  gap:             7px;
  flex:            1;
  cursor:          default;
  transition:      transform 0.3s ease;
}

/* Hover pe icon upar uthta hai — moving effect */
.cod-trust__item:hover {
  transform: translateY(-3px);
}

/* Icon wrapper */
.cod-trust__icon {
  display:         flex;
  align-items:     center;
  justify-content: center;
  transition:      transform 0.3s ease;
}

/* Fast Shipping icon — green */
.cod-trust__item:nth-child(1) .cod-trust__icon svg {
  stroke: #00a86b;
  filter: drop-shadow(0 0 4px rgba(0, 168, 107, 0.3));
}

/* COD icon — blue */
.cod-trust__item:nth-child(3) .cod-trust__icon svg {
  stroke: #1b6ca8;
  filter: drop-shadow(0 0 4px rgba(27, 108, 168, 0.3));
}

/* Returns icon — orange */
.cod-trust__item:nth-child(5) .cod-trust__icon svg {
  stroke: #e07b39;
  filter: drop-shadow(0 0 4px rgba(224, 123, 57, 0.3));
}

/* Hover pe icon thoda rotate hota hai */
.cod-trust__item:hover .cod-trust__icon {
  transform: scale(1.15) rotate(-5deg);
}

/* Label text — pehle se bada font */
.cod-trust__label {
  font-size:      0.85rem;           /* Pehle 0.72rem tha — ab readable */
  font-weight:    700;
  letter-spacing: 0.04em;
  color:          #333;
  text-align:     center;
  text-transform: uppercase;
  transition:     color 0.3s ease;
}

/* Hover pe label color change */
.cod-trust__item:nth-child(1):hover .cod-trust__label { color: #00a86b; }
.cod-trust__item:nth-child(3):hover .cod-trust__label { color: #1b6ca8; }
.cod-trust__item:nth-child(5):hover .cod-trust__label { color: #e07b39; }

/* Divider line */
.cod-trust__divider {
  width:      1px;
  height:     44px;
  background: #ddd;
  flex-shrink: 0;
}


/* -----------------------------------------------------------------------------
   5. PRODUCT LABELS (Quantity, Wishlist, Share etc.) — Yellow se Black
   ----------------------------------------------------------------------------- */

/* Quantity label */
.quantity__label,
label.quantity__label,
.product-form__quantity .form__label,
.product-form__quantity label {
  color:       #1a1a1a !important;
  font-weight: 600;
}

/* Variant picker labels (Size, Color etc.) */
.product-form__input .form__label,
:is(.product-form__input--pill, .product-form__input--swatch) .form__label {
  color:       #1a1a1a !important;
  font-weight: 600;
}

/* Share button label */
.share-button__button,
.share-button__button .icon-share + span,
details.share-button > summary {
  color: #1a1a1a !important;
}

/* Wishlist / Compare button labels */
.product-com-wish .wishlist,
.product-com-wish .compare {
  color:       #1a1a1a !important;
  font-weight: 600;
}

/* Baaki sari yellow heading classes jo product info mein hon */
.product__type span,
.product__type a,
.product-vendor_name,
.tag-name,
.sku-name,
.collections,
.product-type,
.availability,
.product__viewing,
.product__viewing a,
.product__viewing-left,
.product__viewing span,
span.live-view,
.product__vendor a,
.product__type .collections a {
  color: #1a1a1a !important;
}

.product__type a:hover,
.product__type .collections a:hover {
  color:           #1a1a1a !important;
  text-decoration: underline;
}

/* Description tab headings — black */
.product-single__description .tabs a,
.product-single__description .tabs a.active {
  color:        #1a1a1a !important;
  border-color: #1a1a1a !important;
}


/* =============================================================================
   END OF PRODUCT PAGE CUSTOMIZATIONS
   ============================================================================= */


/* =============================================================================
   DROPFLIT CUSTOM OVERRIDES  (sab ek jagah — do not add CSS anywhere else)
   ─────────────────────────────────────────────────────────────────────────────
   INDEX:
    1.  BUTTONS          — Uniform black bg, white text, hover
    2.  LINKS & HEADINGS — Black text, green hover (no yellow)
    3.  SECTION DIVIDERS — Hide white lines between sections
    4.  IMAGE BANNER     — Overlay & button layout fix
    5.  PRODUCT LABELS   — Black text on product page
    6.  MOBILE PRODUCT   — Scroll order (image → info → description)
    7.  SECTION SPACING  — Equal 20px mobile / 32px desktop
    8.  LOGO POSITION    — Left align on mobile
    9.  GRID GAP         — Featured collection product gap (owl + grid both)
   10.  PROMO BOX        — Offer / Rich-text section styling
   11.  HEADER ICONS     — Hover tooltip
============================================================================= */


/* ─────────────────────────────────────────────────────────────────────────────
   1. BUTTONS
   ─────────────────────────────────────────────────────────────────────────────
   All buttons: black bg, white text, no yellow border.
   ::after ring kept black and consistent.
───────────────────────────────────────────────────────────────────────────── */

.button,
.shopify-challenge__button,
.customer button,
button.shopify-payment-button__button--unbranded,
.shopify-payment-button [role="button"],
.cart__dynamic-checkout-buttons [role="button"] {
  background-color: #111111 !important;
  color:            #ffffff !important;
  border:           none !important;
  outline:          none !important;
}

.button:hover,
.shopify-challenge__button:hover,
.customer button:hover,
button.shopify-payment-button__button--unbranded:hover,
.shopify-payment-button [role="button"]:hover {
  color: #ffffff !important;
}

.button::after,
.shopify-challenge__button::after,
.customer button::after,
button.shopify-payment-button__button--unbranded::after,
.shopify-payment-button__button--unbranded::after {
  box-shadow:
    0 0 0 2px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(17, 17, 17, 1) !important;
}

.button:not([disabled]):hover::after,
.shopify-challenge__button:hover::after,
.customer button:hover::after,
.shopify-payment-button__button--unbranded:hover::after {
  box-shadow:
    0 0 0 calc(1px + 1.3px) rgba(0, 0, 0, 0.2),
    0 0 0 calc(1px + 1px)   rgba(17, 17, 17, 1) !important;
}

/* Add-to-cart z-index so text stays above sweep animation */
.product-form__cart-submit          { z-index: 1 !important; }
.product-form__cart-submit::before  { z-index: -1 !important; }

/* Buy Now button */
.shopify-payment-button .shopify-payment-button__button--unbranded,
.shopify-payment-button [role="button"] {
  z-index:  1 !important;
  position: relative !important;
  overflow: hidden !important;
  color:    #ffffff !important;
}
.shopify-payment-button .shopify-payment-button__button--unbranded::before,
.shopify-payment-button [role="button"]::before { z-index: -1 !important; }
.shopify-payment-button__button--unbranded span,
.shopify-payment-button [role="button"] span {
  color:    #ffffff !important;
  position: relative !important;
  z-index:  2 !important;
}


/* ─────────────────────────────────────────────────────────────────────────────
   2. LINKS & HEADINGS
   ─────────────────────────────────────────────────────────────────────────────
   Black text everywhere, green on hover. No yellow/gold text.
───────────────────────────────────────────────────────────────────────────── */

a, .link, .link--text                              { color: #1a1a1a !important; }
a:hover, .link:hover, .link--text:hover,
.underlined-link:hover, .customer a:hover,
.inline-richtext a:hover                           { color: #1FAA59 !important; text-decoration: none; }
.customer a                                        { color: #1a1a1a !important; }
[class*="color-foreground-accent-2"]               { color: #1a1a1a !important; }

.tab-content__entry--active, .tab-content__entry:focus,
.product-single__description .tabs a.active        { color: #1a1a1a !important; border-color: #1a1a1a !important; }

.header__menu-item--active,
.header__active-menu-item {
  text-decoration-color: #1a1a1a !important;
  border-bottom-color:   #1a1a1a !important;
}

.header__menu-item:hover, .header__menu-item:hover span,
details[open] > .header__menu-item, details[open] > .header__menu-item span,
.hb-nav__link:hover, .hb-nav__link--parent:hover,
.nav-menu-link:hover, .mega-menu__link:hover,
#Details-HeaderMenu-moremenu .mega-menu__list .header__menu-item:hover,
.mega-menu__list.mega-menu__list--condensed > li > a.mega-menu__link:hover {
  color: #1FAA59 !important;
}


/* ─────────────────────────────────────────────────────────────────────────────
   3. SECTION DIVIDERS — hide white/border lines between sections
───────────────────────────────────────────────────────────────────────────── */

.shopify-section + .shopify-section,
.section + .section                 { border-top: none !important; }
hr                                  { display: none !important; }
[style*="border-bottom: 2px solid"],
.border-bottom-accent               { border-bottom-color: transparent !important; }


/* ─────────────────────────────────────────────────────────────────────────────
   4. IMAGE BANNER — overlay fix
───────────────────────────────────────────────────────────────────────────── */

.banner                             { position: relative !important; overflow: hidden !important; }
.banner__media.media                { position: relative !important; overflow: hidden !important; }
.banner__media.media img {
  width: 100% !important; height: 100% !important;
  object-fit: cover !important; object-position: center !important;
  display: block !important; position: absolute !important;
  top: 0 !important; left: 0 !important;
}
.banner__content {
  position:        absolute !important; inset: 0 !important; z-index: 2 !important;
  display:         flex !important; flex-direction: column !important;
  align-items:     center !important; justify-content: flex-end !important;
  padding:         0 40px 48px !important; box-sizing: border-box !important;
  text-align:      center !important; width: 100% !important; height: 100% !important;
  background:      linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.32) 100%) !important;
}
.banner__buttons {
  display: flex !important; justify-content: center !important;
  align-items: center !important; width: 100% !important;
  margin: 0 !important; padding: 0 !important; gap: 12px !important;
}
@media screen and (max-width: 749px) {
  .banner__content {
    padding: 0 16px 28px !important;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.35) 100%) !important;
  }
  .banner__buttons { gap: 8px !important; }
  .banner--mobile-bottom .banner__content {
    position: relative !important; inset: unset !important;
    background: none !important; padding: 16px !important;
  }
}
@media screen and (min-width: 750px) {
  .banner__content { justify-content: flex-end !important; padding: 0 40px 48px !important; }
}


/* ─────────────────────────────────────────────────────────────────────────────
   5. PRODUCT LABELS — black text on product page
───────────────────────────────────────────────────────────────────────────── */

.product__type span, .product__type a, .product-vendor_name,
.tag-name, .sku-name, .collections, .product-type, .availability,
.product__viewing, .product__viewing a, .product__viewing-left,
.product__viewing span, span.live-view, .product__vendor a,
.product__type .collections a, .product__inventory, .product__inventory span,
.quantity__label, .quantity__label span, .quantity__rules,
.quantity__rules-cart, .form__label                { color: #1a1a1a !important; }


/* ─────────────────────────────────────────────────────────────────────────────
   6. MOBILE PRODUCT PAGE — scroll order: image → info → description
───────────────────────────────────────────────────────────────────────────── */

.product__description-inline { display: none; }

@media screen and (max-width: 749px) {
  .product.grid,
  .product.grid.grid--1-col                  { display: flex !important; flex-direction: column !important; }
  .product .product__media-wrapper           { order: 1 !important; width: 100% !important; }
  .product .product__info-wrapper            { order: 2 !important; width: 100% !important; }
  .product .product__media-wrapper .product-below-image-description { display: none !important; }

  .product__description-inline {
    display: block !important; padding: 20px 16px;
    font-size: 1.35rem; line-height: 1.75; color: #3a3a3a;
    background: #ffffff; border: 1px solid #ebebeb;
    border-radius: 10px; margin: 12px 0 8px;
    overflow-x: hidden;
  }
  .product__description-inline h2,
  .product__description-inline h3,
  .product__description-inline h4 {
    font-size: 1.5rem; font-weight: 700; color: #ffffff;
    background: #1a1a1a; margin: 0 -16px 14px;
    padding: 12px 16px; border-radius: 10px 10px 0 0; letter-spacing: 0.02em;
  }
  .product__description-inline ul,
  .product__description-inline ol  { padding-left: 20px; margin: 8px 0; }
  .product__description-inline li  { margin-bottom: 6px; padding-left: 4px; }
  .product__description-inline ul li::marker { color: #1FAA59; font-size: 1.1em; }

  /* Description images — mobile par full width, kabhi nahi katengi */
  .product__description-inline img,
  .product__description-inline figure img,
  .product__description-inline p img {
    max-width:  100% !important;
    width:      100% !important;
    height:     auto !important;
    display:    block !important;
    margin:     8px auto !important;
    padding:    0 !important;
  }
}


/* ─────────────────────────────────────────────────────────────────────────────
   7. SECTION SPACING — equal gap between every section
   Overrides var(--spacing-sections-mobile/desktop) which may be 0 or uneven
───────────────────────────────────────────────────────────────────────────── */

.section + .section                   { margin-top: 20px !important; }
.section.slideshow_banner + .section  { margin-top: 0  !important; }

@media screen and (min-width: 750px) {
  .section + .section                  { margin-top: 32px !important; }
  .section.slideshow_banner + .section { margin-top: 0   !important; }
}


/* ─────────────────────────────────────────────────────────────────────────────
   8. LOGO — left align on mobile
   Original code centers logo in "heading" grid area.
   We shift heading area to left without breaking the icons area.
───────────────────────────────────────────────────────────────────────────── */

@media screen and (max-width: 989px) {
  /* Force heading to left side */
  .header__heading,
  .header__heading-link {
    text-align:   left !important;
    justify-self: start !important;
  }

  /* Collapse the 3-col "left-icons heading icons" to 2-col "heading icons"
     so logo sits against the left edge */
  .header--mobile-center {
    grid-template-areas:   "heading icons" !important;
    grid-template-columns: 1fr auto !important;
  }
}


/* ─────────────────────────────────────────────────────────────────────────────
   9. FEATURED COLLECTION — product grid gap fix
   ─────────────────────────────────────────────────────────────────────────────
   TWO cases exist in the liquid:
   A) enable_desktop_slider = true  → ul gets class "product-grid owl-carousel"
      (NO .grid class) — owl JS controls layout, gap via .owl-item padding
   B) enable_desktop_slider = false → ul gets class "product-grid grid grid--X-col"
      — standard flex grid, gap via column-gap

   Both are fixed below with !important to beat any var()-based gap = 0.
───────────────────────────────────────────────────────────────────────────── */

/* Case A: owl-carousel — pad each owl-item to create gap between products */
.featured-collection .product-grid.owl-carousel .owl-item {
  padding-left:  6px !important;
  padding-right: 6px !important;
}

/* Compensate outer edges so cards align with page margin */
.featured-collection .product-grid.owl-carousel {
  margin-left:  -6px !important;
  margin-right: -6px !important;
}

/* Case B: standard grid (no owl-carousel) */
.featured-collection .product-grid.grid {
  column-gap: 12px !important;
  row-gap:    16px !important;
}

/* Recalculate 2-col item width to account for 12px gap */
.featured-collection .product-grid.grid.grid--2-col-tablet-down .grid__item {
  width:     calc(50% - 6px) !important;
  max-width: calc(50% - 6px) !important;
}


/* ─────────────────────────────────────────────────────────────────────────────
   10. PROMO / OFFER BOX — rich-text section below slider
   Shopify renders: <section class="shopify-section section section-rich-text">
   Inside:          <div class="rich-text__wrapper page-width ...">
───────────────────────────────────────────────────────────────────────────── */

.section-rich-text .rich-text__wrapper {
  background:    linear-gradient(135deg, #1FAA59 0%, #158a47 100%);
  border-radius: 16px;
  padding:       20px 24px;
  position:      relative;
  overflow:      hidden;
  box-shadow:    0 4px 20px rgba(31, 170, 89, 0.30);
}

/* Decorative top-right circle */
.section-rich-text .rich-text__wrapper::before {
  content:       "";
  position:      absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  background:    rgba(255,255,255,0.08);
  border-radius: 50%;
}

/* Decorative bottom-left circle */
.section-rich-text .rich-text__wrapper::after {
  content:       "";
  position:      absolute;
  bottom: -20px; left: -20px;
  width: 70px; height: 70px;
  background:    rgba(255,255,255,0.06);
  border-radius: 50%;
}

/* All text white */
.section-rich-text .rich-text__wrapper *    { color: #ffffff !important; }

/* Heading */
.section-rich-text .rich-text__heading      { font-size: 2rem; font-weight: 800; margin: 0 0 8px; }

/* Coupon code <strong> — pill highlight */
.section-rich-text .rich-text__wrapper strong {
  display:       inline-block;
  background:    rgba(255,255,255,0.2);
  padding:       2px 12px;
  border-radius: 6px;
  font-size:     1.6rem;
  letter-spacing: 0.06em;
  border:        1px dashed rgba(255,255,255,0.55);
}


/* ─────────────────────────────────────────────────────────────────────────────
   11. HEADER ICONS — hover tooltip label
   ─────────────────────────────────────────────────────────────────────────────
   IMPORTANT: .header__icon--menu already uses ::before for dark overlay.
   We use ::after ONLY on cart, account, search to avoid conflict.
   Tooltip text is read from aria-label attribute (already on each icon).
───────────────────────────────────────────────────────────────────────────── */

.header__icon--cart,
.header__icon--account,
.header__icon--search { position: relative; }

/* Tooltip completely disable — yeh black line ka cause tha */
.header__icon--cart::after,
.header__icon--account::after,
.header__icon--search::after {
  display: none !important;
}

.header__icon--cart:hover::after,
.header__icon--account:hover::after,
.header__icon--search:hover::after {
  display: none !important;
}




/* =============================================================================
   ISSUE 3 FIX — FILTER / FACETS TEXT COLORS
   Collection page "inverse" color scheme ki wajah se text yellow/inconsistent
   tha. Ab sab text consistently dark black.
============================================================================= */

/* Filter sidebar headings (Availability, Price, etc.) */
.facets__heading,
.facets__summary,
.facets__summary span,
.facets__disclosure .facets__summary,
.facets__form .facets__heading {
  color: #1a1a1a !important;
}

/* Checkbox labels — "In stock", "Out of stock" etc. */
.facet-checkbox > label,
.facets__label,
.facet-filters__label,
.facet-filters__summary,
.facets__list .facet-checkbox label,
.facets__list label {
  color: #1a1a1a !important;
}

/* Count numbers — "(2)", "(0 products)" etc. */
.facets__count,
.facet-checkbox__count,
.facets__label .count {
  color: #555555 !important;
}

/* Sort by label and selected option */
.facet-filters.sorting label,
.facet-filters__label,
.facet-filters__sort .select__select,
.facet-filters__sort select {
  color: #1a1a1a !important;
}

/* Price range text — "The highest price is 57.00 SR" */
.facets__price .caption,
.facets .price-range__caption,
.facets .facets__price-label,
.facet-filters .caption,
[class*="price-range"] label,
[class*="price-range"] span,
.facets__price label,
.facets__price caption,
.facets__price p {
  color: #1a1a1a !important;
}

/* Mobile filter labels */
.mobile-facets__heading,
.mobile-facets__summary,
.mobile-facets__label,
.mobile-facets__list label {
  color: #1a1a1a !important;
}

/* Active filter tags */
.active-facets__button,
.active-facets__button-inner,
.active-facets .button {
  color: #1a1a1a !important;
}

/* Currency sign ر.س etc. */
.facets__price .currency,
.price-range .currency,
.facets .currency {
  color: #1a1a1a !important;
}

/* =============================================================================
   ISSUE 4 FIX — DESCRIPTION IMAGES MOBILE RESPONSIVE
   Mobile par images kut rahi thin. Ab max-width:100% + overflow hidden fix.
============================================================================= */

/* Description area ke andar sab images — inline width/height bhi override */
.product-below-image-description img,
.product-below-image-description figure img,
.product-below-image-description p img,
.product__description-inline img,
.product__description-inline figure img,
.product__description-inline p img,
.rte img,
.product__description img {
  max-width:  100% !important;
  width:      100% !important;
  height:     auto !important;
  display:    block !important;
  overflow:   hidden;
  box-sizing: border-box;
}

/* Containers overflow hidden */
.product-below-image-description,
.product-below-image-description figure,
.product-below-image-description p,
.product__description-inline figure,
.product__description-inline p {
  max-width:  100% !important;
  overflow-x: hidden !important;
  box-sizing: border-box;
}

/* Mobile specific */
@media screen and (max-width: 749px) {
  .product-below-image-description img,
  .product-below-image-description figure img,
  .product-below-image-description p img,
  .product__description-inline img,
  .product__description-inline figure img,
  .product__description-inline p img,
  .rte img {
    max-width:  100% !important;
    width:      100% !important;
    height:     auto !important;
    margin:     8px 0 !important;
    padding:    0 !important;
  }

  .product-below-image-description,
  .product__description-inline {
    overflow-x: hidden !important;
  }
}

/* =============================================================================
   END DROPFLIT CUSTOM OVERRIDES
============================================================================= */
