/** Shopify CDN: Minification failed

Line 12:0 Unexpected "@font-face"

**/
de
/* ==========================================================================
   GLOBAL DESIGN SYSTEM & STYLES (ATHLETIFREAK STYLE)
   ========================================================================== */

/* Font Declarations: Windsor for headings, GT Flexa for body */
@font-face {
  font-family: 'Windsor';
  src: url('https://www.stumptownBREW.com/cdn/shop/t/468/assets/Windsor-Regular.woff2') format('woff2'),
    url('https://www.stumptownBREW.com/cdn/shop/t/468/assets/Windsor-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Windsor';
  src: url('https://www.stumptownBREW.com/cdn/shop/t/468/assets/Windsor-Bold.woff2') format('woff2'),
    url('https://www.stumptownBREW.com/cdn/shop/t/468/assets/Windsor-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT Flexa';
  src: url('https://www.stumptownBREW.com/cdn/shop/t/468/assets/GT-Flexa-Standard-Regular.woff2') format('woff2'),
    url('https://www.stumptownBREW.com/cdn/shop/t/468/assets/GT-Flexa-Standard-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT Flexa';
  src: url('https://www.stumptownBREW.com/cdn/shop/t/468/assets/GT-Flexa-Standard-Medium.woff2') format('woff2'),
    url('https://www.stumptownBREW.com/cdn/shop/t/468/assets/GT-Flexa-Standard-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT Flexa';
  src: url('https://www.stumptownBREW.com/cdn/shop/t/468/assets/GT-Flexa-Standard-Bold.woff2') format('woff2'),
    url('https://www.stumptownBREW.com/cdn/shop/t/468/assets/GT-Flexa-Standard-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT Flexa Mono';
  src: url('https://www.stumptownBREW.com/cdn/shop/t/468/assets/GT-Flexa-Mono-Regular.woff2') format('woff2'),
    url('https://www.stumptownBREW.com/cdn/shop/t/468/assets/GT-Flexa-Mono-Regular.woff') format('woff');
  font-weight: 400;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: var(--font-size-scale);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  margin-top: 0;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

body.heading_uppercase h1,
body.heading_uppercase h2,
body.heading_uppercase h3,
body.heading_uppercase h4,
body.heading_uppercase h5,
body.heading_uppercase h6 {
  text-transform: none;
  /* Premium editorial styling avoids harsh uppercase headings */
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}

button {
  cursor: pointer;
}

.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

/* ==========================================================================
   GRID & CONTAINERS
   ========================================================================== */

.container {
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.container--narrow {
  max-width: 800px;
}

.section-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/* ==========================================================================
   BUTTONS — Highsky BREW Brand System
   ========================================================================== */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 50px;
  transition:
    background-color 0.35s cubic-bezier(0.25, 1, 0.2, 1),
    color 0.35s cubic-bezier(0.25, 1, 0.2, 1),
    border-color 0.35s cubic-bezier(0.25, 1, 0.2, 1),
    transform 0.35s cubic-bezier(0.25, 1, 0.2, 1),
    box-shadow 0.35s cubic-bezier(0.25, 1, 0.2, 1);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

/* Primary — Vivid Orange fill, Dark near-black text */
.button--primary {
  background-color: #E9B246 !important;
  color: #1D0D07 !important;
  border-color: #E9B246 !important;
}

.button--primary:hover {
  background-color: #1D0D07 !important;
  color: #ffffff !important;
  border-color: #1D0D07 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29, 13, 7, 0.15);
}

/* Secondary — Dark Blue fill, White text */
.button--secondary {
  background-color: #1D0D07 !important;
  color: #ffffff !important;
  border-color: #1D0D07 !important;
}

.button--secondary:hover {
  background-color: #E9B246 !important;
  color: #1D0D07 !important;
  border-color: #E9B246 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(233, 178, 70, 0.2);
}

/* Outline — Transparent background, Vivid Orange border & text */
.button--outline {
  background-color: transparent !important;
  color: #E9B246 !important;
  border: 2px solid #E9B246 !important;
}

.button--outline:hover {
  background-color: #E9B246 !important;
  color: #1D0D07 !important;
  border-color: #E9B246 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(233, 178, 70, 0.2);
}

/* ATC (Add to Cart) — Deep Earth solid, slides to orange on hover */
.button--atc {
  background-color: #1D0D07;
  color: #f6f1e8;
  border-color: #1D0D07;
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 0.14em;
  padding: 13px 20px;
}

.button--atc:hover:not([disabled]) {
  background-color: #E9B246;
  color: #1D0D07;
  border-color: #E9B246;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(235, 158, 17, 0.28);
}

.button--atc:active:not([disabled]) {
  transform: translateY(0);
  box-shadow: none;
}

.button--atc.disabled,
.button--atc[disabled] {
  background-color: rgba(60, 27, 0, 0.35);
  border-color: transparent;
  color: rgba(246, 241, 232, 0.4);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.button--full-width {
  display: flex;
  width: 100%;
}

.button--small {
  padding: 10px 18px;
  font-size: 11px;
}

/* ==========================================================================
   ANNOUNCEMENT BAR & HEADER
   ========================================================================== */

.announcement-bar {
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 6px 0;
  position: relative;
  overflow: hidden;
  z-index: 101;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.announcement-bar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 28px;
}

/* Social links (Desktop only) */
.announcement-bar__socials {
  display: none;
  align-items: center;
  gap: 14px;
  flex: 1;
}

@media (min-width: 990px) {
  .announcement-bar__socials {
    display: flex;
  }
}

.announcement-bar__social-link {
  display: flex;
  align-items: center;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.announcement-bar__social-link:hover {
  opacity: 1;
  transform: scale(1.1);
}

.announcement-bar__social-link svg {
  width: 14px;
  height: 14px;
}

/* Slider and Arrows wrapper */
.announcement-bar__slider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex: 2;
  width: 100%;
}

@media (min-width: 990px) {
  .announcement-bar__slider-wrapper {
    flex: none;
    width: 40%;
  }
}

.announcement-bar__nav-btn {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.announcement-bar__nav-btn:hover {
  opacity: 1;
}

.announcement-bar__nav-btn svg {
  width: 12px;
  height: 12px;
}

.announcement-bar__slider {
  position: relative;
  height: 20px;
  width: 250px;
  overflow: hidden;
}

.announcement-bar__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.announcement-bar__slide.active {
  opacity: 1;
  visibility: visible;
}

.announcement-bar__link {
  text-decoration: none;
  display: block;
}

.announcement-bar__text {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

/* Localization mock (Desktop only) */
.announcement-bar__localization {
  display: none;
  justify-content: flex-end;
  flex: 1;
}

@media (min-width: 990px) {
  .announcement-bar__localization {
    display: flex;
  }
}

.header-localization-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.header-localization-trigger:hover {
  opacity: 1;
}

.header-flag {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1px;
  overflow: hidden;
}

.header-currency-code {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.header-localization-trigger svg.icon-caret {
  width: 8px;
  height: 8px;
  opacity: 0.8;
  transition: transform 0.2s ease;
}

/* ==========================================================================
   MAIN SITE HEADER (NEW DESIGN)
   ========================================================================== */
.site-header {
  background-color: var(--color-header-bg);
  color: var(--color-header-text);
  z-index: 100;
  position: relative;
  font-family: 'Outfit', sans-serif;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid rgba(233, 178, 70, 0.3);
}

.site-header--transparent {
  position: absolute !important;
  left: 0;
  right: 0;
  width: 100%;
  background-color: transparent !important;
  border-bottom: 1px solid rgba(233, 178, 70, 0.2) !important;
  box-shadow: none !important;
}

.site-header--sticky {
  position: sticky;
  top: 0;
  background-color: var(--color-header-bg) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}


/* Hide mobile header on desktop, desktop header on mobile */
.site-header__desktop-wrapper {
  display: none;
}

.site-header__mobile-wrapper {
  display: block;
}

@media (min-width: 990px) {
  .site-header__desktop-wrapper {
    display: block;
  }

  .site-header__mobile-wrapper {
    display: none;
  }
}

/* --- Desktop Layout --- */
.site-header__inline-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
  gap: 30px;
}

/* Logo Cursive Stylings */
.site-logo-cursive {
  font-family: 'Playball', cursive;
  font-size: 38px;
  font-weight: 400;
  color: var(--color-header-text);
  text-transform: none;
  letter-spacing: 0;
  display: inline-block;
  line-height: 1.1;
  transition: opacity 0.3s ease;
}

.site-logo-cursive:hover {
  opacity: 0.85;
}

/* Brand Logo Style: HIGHSKY / BREW CRAFT BREW */
.site-header__logo-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
  line-height: 1;
}

.site-header__logo-brand:hover {
  opacity: 0.85;
}

.logo-brand__main {
  font-family: 'Windsor', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-header-text);
  text-transform: uppercase;
  line-height: 0.9;
}

.logo-brand__sub {
  font-family: 'Outfit', 'GT Flexa', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--color-header-text);
  text-transform: uppercase;
  margin-top: 5px;
  opacity: 0.9;
}

@media screen and (max-width: 768px) {
  .logo-brand__main {
    font-size: 26px;
    letter-spacing: 0.04em;
  }
  .logo-brand__sub {
    font-size: 7px;
    letter-spacing: 0.22em;
    margin-top: 3px;
  }
}

/* Search bar capsule style */
.site-header__search-wrapper {
  flex-grow: 1;
  max-width: 650px;
}

.header-search-form {
  width: 100%;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.search-input-wrapper svg {
  position: absolute;
  left: 20px;
  width: 18px;
  height: 18px;
  color: var(--color-header-text);
  pointer-events: none;
  opacity: 0.8;
}

.header-search-input {
  width: 100%;
  padding: 12px 20px 12px 52px;
  border: 1px solid rgba(233, 178, 70, 0.4);
  border-radius: 30px;
  background-color: rgba(246, 241, 232, 0.08);
  color: var(--color-header-text);
  font-size: 15px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.header-search-input::placeholder {
  color: var(--color-header-text);
  opacity: 0.55;
}

.header-search-input:focus {
  outline: none;
  background-color: rgba(246, 241, 232, 0.12);
  border-color: rgba(233, 178, 70, 0.75);
  box-shadow: 0 0 0 1px rgba(233, 178, 70, 0.4);
}

/* Predictive Search Results Dropdown */
.predictive-search-results {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  background-color: var(--color-bg, #f0dbc4);
  border: 1.5px solid var(--color-brand-deep-earth, #1D0D07);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(60, 27, 0, 0.15);
  z-index: 1000;
  padding: 20px;
  display: none;
  max-height: 480px;
  overflow-y: auto;
  box-sizing: border-box;
}

/* Scrollbar styling for a premium feel */
.predictive-search-results::-webkit-scrollbar {
  width: 6px;
}

.predictive-search-results::-webkit-scrollbar-track {
  background: transparent;
}

.predictive-search-results::-webkit-scrollbar-thumb {
  background: rgba(60, 27, 0, 0.2);
  border-radius: 3px;
}

/* Triangle indicator pointing up to the input bar */
.predictive-search-results::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 28px;
  border-width: 0 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent var(--color-brand-deep-earth, #1D0D07) transparent;
  z-index: 2;
}

.predictive-search-results::after {
  content: '';
  position: absolute;
  top: -8.5px;
  left: 28px;
  border-width: 0 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent var(--color-bg, #f0dbc4) transparent;
  z-index: 3;
}

.predictive-search-group {
  margin-bottom: 20px;
}

.predictive-search-group:last-child {
  margin-bottom: 0;
}

.predictive-search-title {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-brand-deep-earth, #1D0D07);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  opacity: 0.6;
}

/* Page results (suggestions) */
.predictive-search-page-item {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--color-brand-deep-earth, #1D0D07);
  text-decoration: none;
  margin-bottom: 10px;
  transition: opacity 0.2s ease;
}

.predictive-search-page-item:hover {
  opacity: 0.7;
}

/* Product results */
.predictive-search-product-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.predictive-search-product-item {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  padding: 4px;
  border-radius: 12px;
  transition: background-color 0.2s ease;
}

.predictive-search-product-item:hover {
  background-color: rgba(60, 27, 0, 0.05);
}

.predictive-search-product-image {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 12px;
  background-color: rgba(60, 27, 0, 0.08);
  flex-shrink: 0;
}

.predictive-search-product-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.predictive-search-product-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-brand-deep-earth, #1D0D07);
}

.predictive-search-product-title {
  font-size: 14px;
  color: var(--color-brand-deep-earth, #1D0D07);
  opacity: 0.85;
}

.predictive-search-no-results {
  font-size: 14px;
  color: var(--color-brand-deep-earth, #1D0D07);
  opacity: 0.7;
  text-align: center;
  padding: 10px 0;
}

/* Action Buttons */
.site-header__actions-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Header button base styling (Search, Account) */
.header-search-btn,
.header-account-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: #E9B246;
  cursor: pointer;
  transition: opacity 0.2s ease;
  padding: 0;
  text-decoration: none;
}

.header-search-btn:hover,
.header-account-btn:hover {
  opacity: 0.75;
}

.header-search-btn svg,
.header-account-btn svg {
  width: 20px;
  height: 20px;
}

/* Cart button base styling */
.header-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: #E9B246;
  cursor: pointer;
  transition: opacity 0.2s ease;
  position: relative;
  padding: 0;
}

.header-cart-btn:hover {
  opacity: 0.75;
}

/* Container wrapper to align badge perfectly on the 24px SVG shoulder */
.header-cart-icon-wrapper {
  position: relative;
  display: inline-flex;
  width: 24px;
  height: 24px;
}

.header-cart-btn svg {
  width: 24px; /* Updated from 35x44 to matching 24px design */
  height: 24px;
}

.header-cart-btn .cart-badge {
  background-color: #E9B246;
  color: #1D0D07;
}




/* Desktop Nav Links */
.site-nav__list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 30px;
}
.site-nav__link {
  font-family: 'Amatic SC', 'Covered By Your Grace', 'Architects Daughter', 'Shadows Into Light', cursive, sans-serif !important;
  font-size: 23px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  color: #E9B246;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: opacity 0.25s ease;
  position: relative;
}

.site-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #E9B246;
  transition: width 0.3s ease;
}

.site-nav__link:hover,
.site-nav__link--active {
  color: #E9B246;
  opacity: 0.75;
}

.site-nav__link:hover::after,
.site-nav__link--active::after {
  width: 100%;
}

.site-nav__link svg.icon-chevron-down {
  width: 8px;
  height: 8px;
  transition: transform 0.2s ease;
  color: #E9B246;
}

.site-nav__item:hover svg.icon-chevron-down {
  transform: rotate(180deg);
}

/* Dropdown Menu styling */
.dropdown-menu {
  position: absolute;
  top: 100%;
  background-color: var(--color-header-bg);
  border: 1px solid var(--color-header-border);
  list-style: none;
  padding: 10px 0;
  margin: 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.site-nav__item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu__link {
  font-family: 'Amatic SC', 'Covered By Your Grace', 'Architects Daughter', 'Shadows Into Light', cursive, sans-serif !important;
  display: block;
  padding: 8px 20px;
  font-size: 21px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase;
  color: var(--color-header-text);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.dropdown-menu__link:hover {
  opacity: 0.7;
}

/* Store Pickup & Delivery widgets */
.site-header__delivery-widgets {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-widget {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.header-widget:hover {
  opacity: 0.8;
}

.widget-icon-wrapper svg {
  width: 26px;
  height: 26px;
  color: var(--color-header-text);
}

.widget-text-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.widget-label {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.8;
  color: var(--color-header-text);
}

.widget-value-wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
}

.widget-value {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-header-text);
}

.widget-value-wrapper svg {
  width: 8px;
  height: 8px;
  color: var(--color-header-text);
}

/* --- Mobile Layout --- */
.site-header__mobile-row-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 10px;
}

.mobile-menu-trigger {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #E9B246;
}

.mobile-menu-trigger svg {
  width: 22px;
  height: 22px;
}

.site-header__mobile-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 52px;
}

.site-header__mobile-logo .site-header__logo-img {
  max-height: 48px !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
}

.site-header__mobile-logo .site-logo-cursive {
  font-size: 32px;
}

.site-header__mobile-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-mobile-search,
.header-mobile-account {
  color: #E9B246;
  display: flex;
}

.header-mobile-search svg,
.header-mobile-account svg {
  width: 20px;
  height: 20px;
}

.header-mobile-cart {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #E9B246;
  position: relative;
  display: flex;
}

.header-mobile-cart svg {
  width: 24px;
  height: 24px;
}

.cart-badge {
  position: absolute;
  top: -5px; /* Realigned badge to fit 24px wrapper */
  right: -5px;
  background-color: #E9B246; /* Orange badge background */
  color: #1D0D07; /* Dark brown text "1" */
  font-size: 9px;
  font-weight: 700;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}



.site-header__mobile-row-bottom {
  padding-bottom: 12px;
}

.header-search-form--mobile .header-search-input {
  padding: 9px 15px 9px 42px;
  font-size: 13.5px;
}

.header-search-form--mobile .search-input-wrapper svg {
  left: 15px;
  width: 15px;
  height: 15px;
}

/* Mobile localization select inside mobile drawer */
.mobile-drawer-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.mobile-localization-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
}

.mobile-localization-trigger svg.icon-caret {
  width: 10px;
  height: 10px;
}

/* ==========================================================================
   DRAWER NAVIGATION (CART & MOBILE NAV)
   ========================================================================== */

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 200;
  display: flex;
  justify-content: flex-end;
  visibility: hidden;
  transition: visibility 0.4s ease;
}

.drawer.active {
  visibility: visible;
}

.drawer--left {
  justify-content: flex-start;
}

.drawer__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.drawer.active .drawer__overlay {
  opacity: 1;
}

.drawer__inner {
  position: relative;
  width: 100%;
  max-width: 450px;
  height: 100%;
  background-color: #FAF6F0;
  border-left: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer--left .drawer__inner {
  border-left: none;
  border-right: 1px solid var(--color-border);
  transform: translateX(-100%);
}

.drawer.active .drawer__inner {
  transform: translateX(0);
}

.drawer__header {
  padding: 25px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer__title {
  margin: 0;
  font-size: 18px;
}

.drawer__close svg {
  width: 22px;
  height: 22px;
}

.drawer__body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 25px;
}

/* Cart Items inside Drawer */
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    margin 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 200px;
}

.cart-item.removing {
  opacity: 0 !important;
  transform: translateX(-30px) !important;
  max-height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
  border-bottom-width: 0 !important;
  border-color: transparent !important;
  pointer-events: none;
}

.cart-item__image-wrapper {
  background-color: transparent;
  border: 1px solid rgba(5, 22, 55, 0.08);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
}

.cart-item__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cart-item__vendor {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.cart-item__title {
  font-weight: 800;
  font-size: 14px;
}

.cart-item__options,
.cart-table__options {
  font-size: 12px;
  color: rgba(29, 13, 7, 0.7);
  margin-top: 4px;
  margin-bottom: 6px;
  line-height: 1.4;
}

.cart-item__option-value,
.cart-table__option-value {
  display: block;
  font-weight: 500;
  margin-bottom: 2px;
}

.cart-item__price-wrapper {
  margin-top: 8px;
  font-weight: 800;
}

.cart-item__quantity-remove {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

.quantity-selector {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid rgba(0, 0, 0, 0.5);
  border-radius: 50px;
  padding: 0 4px;
  background-color: transparent;
}

.quantity-selector__btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  background: none;
  border: none;
  color: #1D0D07;
  cursor: pointer;
}

.quantity-selector__input {
  width: 40px;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  border: none;
  background: transparent !important;
  background-color: transparent !important;
  color: #1D0D07;
  -moz-appearance: textfield;
  -webkit-appearance: none;
}

.quantity-selector__input::-webkit-outer-spin-button,
.quantity-selector__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-item__remove {
  font-size: 12px;
  color: var(--color-text-muted);
  border-bottom: 1px solid transparent;
}

.cart-item__remove:hover {
  color: var(--color-sale-badge);
}

.drawer__footer {
  padding: 25px;
  border-top: 1px solid var(--color-border);
  background-color: #FAF6F0;
}

.drawer__summary-row {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 10px;
}

.drawer__tax-note {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

/* Cart Drawer Actions */
.drawer__actions .button {
  padding: 14px 32px !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  min-height: 45px !important;
  border-radius: 50px !important;
  text-transform: uppercase !important;
  transition: all 0.3s ease !important;
}

.drawer__actions .drawer__checkout-btn {
  background-color: #E9B246 !important;
  color: #1D0D07 !important;
  border: 2px solid #E9B246 !important;
}

.drawer__actions .drawer__checkout-btn:hover {
  background-color: #1D0D07 !important;
  color: #ffffff !important;
  border-color: #1D0D07 !important;
  transform: translateY(-2px);
}

.drawer__actions .button--secondary {
  background-color: #1D0D07 !important;
  color: #ffffff !important;
  border: 2px solid #1D0D07 !important;
}

.drawer__actions .button--secondary:hover {
  background-color: #E9B246 !important;
  color: #1D0D07 !important;
  border-color: #E9B246 !important;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .drawer__actions .button {
    padding: 12px 24px !important;
    font-size: 11px !important;
    min-height: 40px !important;
  }
}

/* Mobile Nav Drawer Details */
.mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav__item {
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav__link {
  font-family: 'Amatic SC', 'Covered By Your Grace', 'Architects Daughter', 'Shadows Into Light', cursive, sans-serif !important;
  display: block;
  padding: 15px 0;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mobile-nav__summary {
  font-family: 'Amatic SC', 'Covered By Your Grace', 'Architects Daughter', 'Shadows Into Light', cursive, sans-serif !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.mobile-nav__summary svg {
  width: 14px;
  height: 14px;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

.mobile-nav__details[open] .mobile-nav__summary svg {
  transform: rotate(270deg);
}

.mobile-nav__submenu {
  list-style: none;
  padding-left: 15px;
  margin: 0 0 15px 0;
}

/* ==========================================================================
   HERO BANNER CAROUSEL
   ========================================================================== */

.hero-slider {
  position: relative;
  width: 100vw;
  height: var(--desktop-height);
  overflow: hidden;
  background-color: #000;
}

.hero-slider--aspect-ratio {
  height: auto !important;
  aspect-ratio: 1600 / 750 !important;
}

@media (max-width: 768px) {
  .hero-slider {
    height: var(--mobile-height);
  }

  .hero-slider--aspect-ratio {
    height: auto !important;
    aspect-ratio: 1080 / 1350 !important;
  }
}

.hero-slider__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slider__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
  z-index: 1;
}

.hero-slider__slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slider__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slider__image,
.hero-slider__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 749px) {

  .hero-slider__image--desktop,
  .hero-slider__video--desktop {
    display: none !important;
  }

  .hero-slider__image--mobile,
  .hero-slider__video--mobile {
    display: block !important;
  }
}

@media screen and (min-width: 750px) {

  .hero-slider__image--desktop,
  .hero-slider__video--desktop {
    display: block !important;
  }

  .hero-slider__image--mobile,
  .hero-slider__video--mobile {
    display: none !important;
  }
}

.hero-slider__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slider__content-wrapper {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-slider__content-wrapper.alignment-left {
  justify-content: flex-start;
  text-align: left;
}

.hero-slider__content-wrapper.alignment-center {
  justify-content: center;
  text-align: center;
}

.hero-slider__content-wrapper.alignment-right {
  justify-content: flex-end;
  text-align: right;
}

.hero-slider__content {
  max-width: 650px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.hero-slider__slide.active .hero-slider__content {
  transform: translateY(0);
  opacity: 1;
}

.hero-slider__title {
  font-size: 3.5vw; /* Reduced from 5vw to optimize layout fit */
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  line-height: 1.25;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  color: #ffffff !important; /* Force white text */
}

/* Fix split-text inline display to allow words to flow naturally on a single row */
.hero-slider__title .split-text-line {
  display: inline-block !important;
  margin-right: 0.25em; /* Ensure spaces between words */
}

.hero-slider__title .split-text-word {
  color: #ffffff !important; /* Force split-text spans to remain white */
}

@media (max-width: 768px) {
  .hero-slider__title {
    font-size: 32px;
  }
}

.hero-slider__subheading {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 30px;
  color: #ffffff !important; /* Force white text */
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5); /* Added shadow to guarantee readability on bright skies */
}

@media (max-width: 768px) {
  .hero-slider__subheading {
    font-size: 14px;
  }
}

.hero-slider__dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 12px;
}

.hero-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.hero-slider__dot.active {
  background-color: #fff;
  transform: scale(1.2);
}


/* ==========================================================================
   PRODUCT CARDS & GRIDS
   ========================================================================== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 15px;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 990px) {
  .product-grid {
    grid-template-columns: repeat(var(--columns-desktop, 4), 1fr);
    gap: 40px 30px;
  }
}

/* Recommendations grid: center cards when fewer than 4 products */
.product-grid--recommendations {
  justify-items: center;
}

.product-recommendations {
  background-color: #ffffff !important;
}

.product-recommendations .product-card__info {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
}

.product-recommendations .product-card,
.product-grid--recommendations .product-card {
  border: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}

.product-recommendations .product-card:hover,
.product-grid--recommendations .product-card:hover {
  border: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

@media (min-width: 990px) {
  .product-grid--recommendations {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    justify-content: center !important;
    gap: 30px !important;
  }
}

@media (max-width: 767px) {
  .product-grid--recommendations {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 16px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    margin-left: -20px !important;
    margin-right: -20px !important;
    padding-bottom: 20px !important;
    justify-content: flex-start !important;
  }

  .product-grid--recommendations::-webkit-scrollbar {
    display: none !important;
  }

  .product-grid--recommendations .product-card {
    flex: 0 0 78% !important;
    max-width: 280px !important;
    width: 78% !important;
    scroll-snap-align: start !important;
  }
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card__image-wrapper {
  position: relative;
 
  overflow: hidden;
}

.product-card__media-container {
  aspect-ratio: 4 / 5;
  position: relative;
}

.product-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card__image--secondary {
  opacity: 0;
  z-index: 1;
}

.product-card:hover .product-card__image--primary {
  transform: scale(1.03);
}

.product-card:hover .product-card__image--secondary {
  opacity: 1;
  transform: scale(1.03);
}

.product-card__badges {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
}

.badge--sale {
  background-color: #E9B246;
  color: #1D0D07;
}

.badge--sold {
  background-color: var(--color-sold-badge);
  color: #fff;
}

/* ============================================================
   PRODUCT TAG BADGES  (e.g. Must Try / New Launch / Trending)
   ============================================================ */
.pcard-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

/* Vivid Orange — Must Try, Summer Special */
.pcard-tag--orange {
  background-color: #E9B246;
  color: #1D0D07;
}

/* Dark Blue — New Launch, Best Seller */
.pcard-tag--darkblue {
  background-color: #1D0D07;
  color: #ffffff;
}

/* Deep Earth — Trending */
.pcard-tag--earth {
  background-color: #1D0D07;
  color: #E9B246;
}

/* Achromatic Black — Limited Edition */
.pcard-tag--black {
  background-color: #1D0D07;
  color: #E9B246;
}

/* Quick Add drawer panel inside card */
.product-card__quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(5px);
  padding: 15px;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
}

.product-card:hover .product-card__quick-add {
  transform: translateY(0);
}

.quick-add-sizes__title {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.quick-add-sizes__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.quick-add-size-btn {
  background-color: transparent;
  border: 1px solid var(--color-border);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 8px 0;
  text-align: center;
  transition: all 0.3s ease;
}

.quick-add-size-btn:hover {
  background-color: #fff;
  color: #000;
  border-color: #fff;
}

.quick-add-size-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Card details */
.product-card__info {
  padding-top: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.product-card__vendor {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  text-align: center;
}

.product-card__title {
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 8px 0;
  letter-spacing: 0.02em;
  text-align: center;
}

.product-card__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #ffb703;
  margin-bottom: 8px;
}

.product-card__rating svg {
  width: 12px;
  height: 12px;
}

.product-card__rating-text {
  font-size: 11px;
  color: var(--color-text-muted);
}

.product-card__price {
  font-weight: 800;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-card__price.price--on-sale .price__sale {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.product-card__price:not(.price--on-sale) .price__sale {
  display: none !important;
}

.product-card__price .price__regular {
  display: flex;
  justify-content: center;
}
.price-discount-tag {
  background-color: #1D0D07;
  color: #F0DBC4;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 10px;
  font-weight: 800;
  display: inline-block;
  vertical-align: middle;
  margin-left: 6px;
  white-space: nowrap;
}

@media screen and (max-width: 749px) {
  .product-card__price .price__sale {
    flex-wrap: nowrap !important;
    gap: 4px !important;
  }
  .product-card__price {
    font-size: 12px !important;
  }
  .product-card__price .price-discount-tag {
    font-size: 9px !important;
    padding: 2px 6px !important;
    margin-left: 4px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }
}

/* Swatches styling */
.color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
  justify-content: center;
}

.swatch-element {
  position: relative;
  display: flex;
}

.swatch-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.swatch-label {
  display: block;
  cursor: pointer;
  border: 1px solid var(--color-border);
  transition: border-color 0.3s ease;
}

.color .swatch-label {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.color .swatch-input:checked+.swatch-label {
  box-shadow: 0 0 0 2px var(--color-bg), 0 0 0 3px var(--color-primary);
}

/* Size buttons */
.size-selectors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.size-btn .swatch-label {
  font-size: 12px;
  font-weight: 800;
  padding: 8px 16px;
  border: 1px solid var(--color-border);
}

.size-btn .swatch-input:checked+.swatch-label {
  background-color: var(--color-primary);
  color: var(--color-primary-text);
  border-color: var(--color-primary);
}

/* ── Variant Dropdown Select ── */
.variant-select-wrapper {
  position: relative;
  margin-top: 10px;
}

.variant-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 48px;
  padding: 0 48px 0 18px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  background-color: transparent;
  border: 1.5px solid rgba(0, 0, 0, 0.5);
  border-radius: 50px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  line-height: 44px;
}

.variant-select:focus {
  outline: none;
  border-color: #1a1a1a;
  box-shadow: 0 0 0 1px #1a1a1a;
}

.variant-select:hover {
  border-color: #1a1a1a;
}

.variant-select-chevron {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Urgency Stock Banner ── */
.product-urgency {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  width: fit-content;
}

.product-urgency__icon {
  flex-shrink: 0;
  color: #1a1a1a;
}

.product-urgency__text {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.01em;
}

/* Carousel Slider controls */
.product-slider {
  position: relative;
  width: 100%;
}

.product-slider__track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 15px;
  scrollbar-width: none;
  /* Firefox */
}

.product-slider__track::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.product-slider__slide {
  flex: 0 0 270px;
}

@media (min-width: 990px) {
  .product-slider__slide {
    flex: 0 0 calc((100% - (var(--columns-desktop, 4) - 1) * 30px) / var(--columns-desktop, 4));
  }
}

.product-slider__controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.product-slider__arrow {
  width: 40px;
  height: 40px;
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
}

.product-slider__arrow:hover {
  background-color: var(--color-text);
  color: var(--color-bg);
  border-color: var(--color-text);
}

/* ==========================================================================
   FABRIC TECH GRID
   ========================================================================== */

.fabric-tech__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .fabric-tech__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fabric-tech__card {
  border: 1px solid var(--color-border);
  padding: 40px 30px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.fabric-tech__card:hover {
  transform: translateY(-5px);
  border-color: #fff;
}

.fabric-tech__icon-wrapper {
  margin-bottom: 25px;
  color: var(--color-primary);
}

.fabric-tech__icon {
  width: 40px;
  height: 40px;
}

.fabric-tech__card-title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 12px;
}

.fabric-tech__card-description {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   BRAND STORY BANNER
   ========================================================================== */

.brand-story {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

.brand-story__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.brand-story__container {
  position: relative;
  z-index: 2;
}

.brand-story__content {
  max-width: 700px;
  margin: 0 auto;
}

.brand-story__subheading {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}

.brand-story__title {
  font-size: 32px;
  margin-bottom: 25px;
}

@media (min-width: 768px) {
  .brand-story__title {
    font-size: 40px;
  }
}

.brand-story__desc {
  font-size: 16px;
  color: var(--color-text-muted);
  margin-bottom: 30px;
}

/* ==========================================================================
   TESTIMONIALS SLIDER
   ========================================================================== */

.testimonials {
  overflow: hidden;
}

.testimonials .section-header__title {
  color: #F0DBC4;
}

.testimonials__slider {
  position: relative;
  width: 100%;
}

.testimonials__track {
  position: relative;
  min-height: 250px;
  display: flex;
}

.testimonials__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s;
  text-align: center;
  padding: 0 40px;
}

.testimonials__slide.active {
  opacity: 1;
  visibility: visible;
}

.testimonial-card__stars {
  color: #ffb703;
  margin-bottom: 20px;
}

.testimonial-card__stars svg {
  width: 16px;
  height: 16px;
}

.testimonial-card__quote {
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto 25px auto;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .testimonial-card__quote {
    font-size: 24px;
  }
}

.testimonial-card__author {
  display: block;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.testimonial-card__info {
  font-size: 12px;
  color: var(--color-text-muted);
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.testimonials__dot.active {
  background-color: #fff;
  transform: scale(1.2);
}

/* ==========================================================================
   FAQ & NEWSLETTER
   ========================================================================== */

.faq__list {
  max-width: 800px;
  margin: 40px auto 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__icon {
  font-size: 20px;
  color: var(--color-text-muted);
  transition: transform 0.3s ease;
}

.faq__item[open] .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  padding-top: 15px;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.newsletter__container {
  max-width: 600px;
}

.newsletter__title {
  font-size: 28px;
  margin-bottom: 15px;
}

.newsletter__desc {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 30px;
}

.newsletter__input-group {
  display: flex;
  border-bottom: 1px solid var(--color-border);
}

.newsletter__input {
  flex-grow: 1;
  padding: 15px;
  font-size: 14px;
}

.newsletter__input:focus {
  outline: none;
}

.newsletter__btn {
  padding: 10px 25px;
}

.newsletter__message {
  display: block;
  margin-top: 10px;
  font-size: 12px;
}

.newsletter__message.success {
  color: #2ec4b6;
}

.newsletter__message.error {
  color: var(--color-sale-badge);
}

/* ==========================================================================
   PRODUCT DETAIL PAGE
   ========================================================================== */

/* Breadcrumbs Styling & Micro-Animation */
@keyframes breadcrumbsReveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.breadcrumbs {
  margin-bottom: 24px;
  animation: breadcrumbsReveal 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.breadcrumbs__link {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.25s ease;
}

.breadcrumbs__link:hover {
  color: var(--color-primary);
}

.breadcrumbs__separator {
  color: var(--color-text-muted);
  opacity: 0.5;
  margin: 0 10px;
  font-size: 14px;
  user-select: none;
}

.breadcrumbs__current {
  color: var(--color-brand-dark-blue);
  font-weight: 700;
}

@media (max-width: 768px) {
  .breadcrumbs {
    margin-bottom: 16px;
  }
  .breadcrumbs__item {
    font-size: 11px;
  }
  .breadcrumbs__separator {
    margin: 0 6px;
    font-size: 12px;
  }
}

.product-block {
  margin-bottom: 18px;
}

.product-form {
  margin-bottom: 22px;
}

@media (max-width: 768px) {
  .product-block {
    margin-bottom: 16px;
  }
  .product-form {
    margin-bottom: 20px;
  }
}

.template-product main#MainContent {
  background-color: #FAF6F0 !important;
}

.template-product .product-page,
.product-page.section-padding {
  background-color: #FAF6F0 !important;
  padding-top: 24px;
  padding-bottom: 40px;
}

@media (max-width: 768px) {
  .template-product .product-page,
  .product-page.section-padding,
  .js-product-page-wrapper {
    padding-top: 12px !important;
    padding-bottom: 24px !important;
  }
}

.product-page .container {
  max-width: 1200px;
}

.product-page__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  min-width: 0;
}

.product-page__gallery,
.product-gallery {
  min-width: 0;
  width: 100%;
}

@media (min-width: 990px) {
  .product-page__container {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .product-page__gallery--sticky {
    position: sticky;
    top: 100px;
    height: fit-content;
  }
}

.product-gallery__main {
  position: relative;
  
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: var(--border-radius);
  aspect-ratio: 1 / 1;
}

.product-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1D0D07; /* Dark Blue */
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff; /* White default icon */
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 12px rgba(29, 13, 7, 0.2);
  padding: 0;
}

.product-gallery__arrow:hover {
  background: #E9B246; /* Vivid Orange */
  color: #1D0D07; /* Deep Earth icon */
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 16px rgba(235, 158, 17, 0.35);
}

.product-gallery__arrow:active {
  transform: translateY(-50%) scale(0.96);
}

.product-gallery__arrow--prev {
  left: 16px;
}

.product-gallery__arrow--next {
  right: 16px;
}

@media (max-width: 767px) {
  .product-gallery__arrow {
    display: none;
  }
}

.product-gallery__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              visibility 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.product-gallery__item.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.product-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mobile: swipeable scroll-snap strip */
@media (max-width: 767px) {
  .product-gallery__main {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    margin-bottom: 12px;
    border-radius: var(--border-radius);
  }

  .product-gallery__main::-webkit-scrollbar {
    display: none;
  }

  .product-gallery__item {
    position: relative !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    /* override desktop hide */
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  /* Dot indicators (mobile only) */
  .product-gallery__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
  }

  .product-gallery__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: rgba(29, 13, 7, 0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  .product-gallery__dot.active {
    background-color: #E9B246;
    transform: scale(1.35);
  }

  /* Hide desktop thumbnails on mobile */
  .product-gallery__thumbnails {
    display: none;
  }
}

/* Hide dot container on desktop */
.product-gallery__dots {
  display: none;
}

.product-gallery__thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 5px;
}

.product-gallery__thumbnail {
  flex: 0 0 70px;
  width: 70px;
  height: 70px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  opacity: 0.6;
  background-color: rgba(0, 0, 0, 0.03);
  cursor: pointer;
  overflow: hidden;
  transition: opacity var(--duration-fast) var(--ease-luxury),
    border-color var(--duration-fast) var(--ease-luxury);
}

.product-gallery__thumbnail:hover {
  opacity: 0.9;
}

.product-gallery__thumbnail.active {
  border-color: var(--color-primary);
  opacity: 1;
}

.product-gallery__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-buy-box__vendor {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  display: block;
}

.product-buy-box__title {
  font-size: 26px;
  margin-bottom: 8px;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .product-buy-box__title {
    font-size: 32px;
  }
}

.product-buy-box__rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  color: #ffb703;
  margin-bottom: 14px;
}

.product-buy-box__rating svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.product-buy-box__rating-text {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-left: 4px;
}

.product-buy-box__price {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 14px;
  margin-bottom: 16px;
}

/* Pricing layout adjustments */
.price-item {
  display: inline-flex !important;
  align-items: baseline;
  white-space: nowrap !important;
}

.price-item .money {
  display: inline !important;
  white-space: nowrap !important;
}

.price__sale {
  display: flex !important;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.compare-at-price {
  font-weight: 500;
  color: var(--color-text-muted, #777) !important;
  text-decoration: line-through;
  margin-left: 4px;
}

/* Product Card specific price styles */
.product-card__price .price-item {
  font-size: 15px !important;
  font-weight: 700;
}

.product-card__price .compare-at-price {
  display: none !important;
}

/* Product page large price styles */
.price--large .price-item {
  font-size: 24px !important;
  font-weight: 800;
}

.price--large .compare-at-price {
  font-size: 18px !important;
}

.price:not(.price--on-sale) .price__sale {
  display: none !important;
}

.price--on-sale .price__regular {
  display: none !important;
}

.product-form__options-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

@media (min-width: 769px) {
  .product-form__options-container {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }
  
  .product-form__options-container > * {
    flex: 1;
    min-width: 0;
    margin-bottom: 0 !important;
  }
}

.product-form__variants {
  margin-bottom: 16px;
}

.product-form__option {
  margin-bottom: 14px;
}

.product-form__option-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.product-form__option-label {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-form__option-value {
  font-size: 12px;
  color: var(--color-text-muted);
}

.product-form__size-guide-btn {
  margin-left: auto;
  font-size: 11px;
  font-weight: 800;
  text-decoration: underline;
}

.product-form__quantity {
  margin-bottom: 20px;
}

.quantity-selector--large {
  display: flex;
  width: 100%;
  max-width: 100%;
  height: 48px;
  margin-top: 10px;
  border: none;
  border-radius: 50px;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  padding: 0 8px;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.2s ease;
}

@media (min-width: 769px) {
  .quantity-selector--large {
    max-width: 180px;
  }
}

.quantity-selector--large:hover {
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.quantity-selector--large:focus-within {
  outline: none;
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.quantity-selector--large .quantity-selector__btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.quantity-selector--large .quantity-selector__input {
  width: 44px;
  height: 100%;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  background: transparent !important;
  background-color: transparent !important;
  border: none;
  outline: none;
  padding: 0;
  -moz-appearance: textfield;
  -webkit-appearance: none;
}

.quantity-selector--large .quantity-selector__input:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

.product-form__actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

@media (min-width: 769px) {
  .product-form__actions {
    flex-direction: row;
    gap: 16px;
    margin-bottom: 30px;
  }
  
  .product-form__actions > * {
    flex: 1;
    margin: 0 !important;
  }
}

.product-tabs {
  border-top: 1px solid var(--color-border);
}

.product-tab {
  border-bottom: 1px solid var(--color-border);
  padding: 15px 0;
}

.product-tab__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.05em;
  cursor: pointer;
  list-style: none;
}

.product-tab__header::-webkit-details-marker {
  display: none;
}

.product-tab__icon {
  font-size: 16px;
  color: var(--color-text-muted);
  transition: transform 0.3s ease;
}

.product-tab[open] .product-tab__icon {
  transform: rotate(45deg);
}

.product-tab__body {
  padding-top: 15px;
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Modals */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  transition: visibility 0.3s ease;
}

.modal.active {
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.active .modal__overlay {
  opacity: 1;
}

.modal__inner {
  position: relative;
  z-index: 301;
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 30px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal.active .modal__inner {
  transform: scale(1);
}

.modal__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.modal__close svg {
  width: 20px;
  height: 20px;
}

.size-table {
  width: 100%;
  border-collapse: collapse;
}

.size-table th,
.size-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-size: 13px;
}

.size-table th {
  font-weight: 800;
  color: var(--color-text-muted);
}

/* ==========================================================================
   COLLECTION TEMPLATE & TOOLBARS
   ========================================================================== */

.collection-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.collection-product-count {
  font-size: 13px;
  color: var(--color-text-muted);
}

.collection-sort__select {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 8px 15px;
  font-size: 13px;
}

.collection-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 990px) {
  .collection-main {
    grid-template-columns: 240px 1fr;
  }
}

.collection-filters__group {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.collection-filters__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.collection-filters__header::-webkit-details-marker,
.collection-filters__header::marker {
  display: none !important;
}

.collection-filters__icon {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

/* Dynamic Close (−) when open, Plus (+) when closed */
details.collection-filters__group[open] > summary .collection-filters__icon::before {
  content: "−" !important;
}

details.collection-filters__group:not([open]) > summary .collection-filters__icon::before {
  content: "+" !important;
}

.collection-filters__content {
  padding-top: 15px;
}

.collection-filters__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #1D0D07;
  cursor: pointer;
}

/* Price Range Filter Fields - Completely Borderless */
html body .price-range {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

html body .price-range__field {
  display: flex;
  align-items: center;
  gap: 6px;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 8px;
  padding: 8px 12px;
  flex: 1;
  background: rgba(29, 13, 7, 0.05) !important;
}

html body .price-range__field:focus-within {
  background: rgba(29, 13, 7, 0.08) !important;
}

html body .price-range__currency {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1D0D07;
  flex-shrink: 0;
}

html body .price-range__input,
html body input.price-range__input,
html body input[type="number"].price-range__input {
  width: 100% !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #1D0D07 !important;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  min-height: unset !important;
  height: auto !important;
  -webkit-appearance: none !important;
  -moz-appearance: textfield !important;
  appearance: none !important;
}

html body .price-range__input::-webkit-outer-spin-button,
html body .price-range__input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

html body .price-range__field label {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #1D0D07;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
  flex-shrink: 0;
}

.pagination__list {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 50px 0 0 0;
  gap: 10px;
}

.pagination__item {
  display: inline-flex;
  padding: 10px 18px;
  border: 1px solid var(--color-border);
  font-size: 13px;
  font-weight: 800;
}

.pagination__item--current {
  background-color: var(--color-primary);
  color: var(--color-primary-text);
  border-color: var(--color-primary);
}

.pagination__item:hover:not(.pagination__item--current) {
  border-color: #fff;
}

/* ==========================================================================
   BLOGS & ARTICLES
   ========================================================================== */

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 990px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-card__image-wrapper {
  aspect-ratio: 16 / 10;
  background-color: rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__image {
  transform: scale(1.03);
}

.blog-card__info {
  padding-top: 15px;
}

.blog-card__meta {
  font-size: 11px;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.blog-card__title {
  font-size: 18px;
  margin: 8px 0;
}

.blog-card__excerpt {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 15px;
}

.blog-card__cta-link {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: underline;
}

/* Single Article */
.article-header {
  margin-bottom: 40px;
}

.article-meta {
  font-size: 12px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.article-title {
  font-size: 32px;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .article-title {
    font-size: 42px;
  }
}

.article-banner {
  margin-bottom: 40px;
}

.article-banner__img {
  width: 100%;
}

.article-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-muted);
}

.article-content p {
  margin-bottom: 25px;
}

.article-share {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
  margin: 40px 0;
}

.article-share__title {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.article-share__buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.article-footer {
  margin-top: 40px;
}

/* ==========================================================================
   FOOTER STYLING
   ========================================================================== */

.site-footer {
  border-top: 1px solid var(--color-border);
  padding-top: 60px;
}

.site-footer__grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .site-footer__grid {
    flex-direction: row;
  }
}

.site-footer__nav-columns {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex-grow: 1;
}

@media (min-width: 480px) {
  .site-footer__nav-columns {
    flex-direction: row;
    gap: 80px;
  }
}

.site-footer__col--links {
  min-width: 140px;
}

.site-footer__logo-text {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
}

.site-footer__col--contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 420px;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .site-footer__col--contact {
    align-items: flex-end;
    text-align: right;
    margin-top: 0;
  }
}

.site-footer__logo-wrapper {
  margin-bottom: 25px;
}

.site-footer__logo {
  display: block;
  height: auto;
}

.site-footer__heading {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  color: inherit !important;
}

.site-footer__contact-heading {
  color: inherit !important;
}

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

.site-footer__menu-item {
  margin-bottom: 10px;
}

.site-footer__menu-link {
  font-size: 13px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.site-footer__menu-link:hover {
  color: #fff !important;
  opacity: 1 !important;
}

.site-footer__contact-info {
  margin-top: 5px;
}

.site-footer__contact-heading {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  text-transform: none;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .site-footer__contact-heading {
    justify-content: flex-end;
  }
}

.site-footer__contact-details p {
  font-size: 13px;
  line-height: 1.6;
  margin: 6px 0;
  font-weight: 400;
}

.site-footer__contact-details p.tagline {
  font-size: 13px;
  margin-top: 10px;
}

.site-footer__contact-details a {
  text-decoration: none;
  transition: opacity 0.2s;
}

.site-footer__contact-details a:hover {
  text-decoration: underline;
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  padding-top: 30px;
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  .site-footer__bottom {
    grid-template-columns: 1fr 3fr 1fr;
  }
}

.site-footer__bottom-left {
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .site-footer__bottom-left {
    justify-content: flex-start;
  }
}

.site-footer__bottom-center {
  text-align: center;
}

.site-footer__bottom-right {
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .site-footer__bottom-right {
    justify-content: flex-end;
  }
}

.site-footer__copy {
  font-size: 13px;
  margin-bottom: 10px;
  font-weight: 500;
}

.site-footer__disclaimer {
  font-size: 11px;
  line-height: 1.5;
  opacity: 0.6;
  max-width: 800px;
  margin: 0 auto;
}

.site-footer__capsules-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.capsules-badge-svg {
  width: 36px;
  height: 36px;
}

/* Floating WhatsApp Widget */
.whatsapp-floating-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.whatsapp-floating-widget:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  color: #ffffff;
}

.whatsapp-floating-widget svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* ==========================================================================
   LUXURY MOTION DESIGN SYSTEM
   ========================================================================== */

/* Motion Tokens */
:root {
  --ease-luxury: cubic-bezier(0.25, 1, 0.2, 1);
  --ease-in-out-luxury: cubic-bezier(0.76, 0, 0.24, 1);
  --duration-slow: 1.2s;
  --duration-medium: 0.8s;
  --duration-fast: 0.3s;
}

/* Slick Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(235, 158, 17, 0.25);
  border-radius: 3px;
  transition: background var(--duration-fast) var(--ease-luxury);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(235, 158, 17, 0.6);
}

/* Background Grain Texture Overlay */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9990;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Page Transition Overlay - Disabled for instant page navigation */
.page-transition-overlay {
  display: none !important;
}

/* Global Smooth scrolling support (Inertia Viewport container) */
.inertia-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Advanced Section Reveals */
[data-reveal] {
  opacity: 0;
  will-change: transform, opacity, filter;
}

[data-reveal="fade-up"] {
  transform: translateY(40px);
}

[data-reveal="fade-left"] {
  transform: translateX(-40px);
}

[data-reveal="fade-right"] {
  transform: translateX(40px);
}

[data-reveal="scale"] {
  transform: scale(0.97);
}

[data-reveal="blur"] {
  filter: blur(15px);
}

[data-reveal].reveal-visible {
  opacity: 1;
  transform: translate(0) scale(1);
  filter: blur(0);
  transition: opacity var(--reveal-duration, var(--duration-slow)) var(--ease-luxury),
    transform var(--reveal-duration, var(--duration-slow)) var(--ease-luxury),
    filter var(--reveal-duration, var(--duration-slow)) var(--ease-luxury);
  transition-delay: var(--reveal-delay, 0s);
}

/* Stagger reveals */
.stagger-container [data-reveal] {
  transition-delay: calc(var(--reveal-index, 0) * 0.15s);
}

/* Split Text Reveal classes */
.split-text-line {
  display: block;
  overflow: hidden;
  margin-bottom: 0.1em;
}

.split-text-word {
  display: inline-block;
  transform: translateY(105%);
  transition: transform 1.2s var(--ease-luxury);
  transition-delay: calc(var(--word-index, 0) * 0.05s);
  will-change: transform;
}

.reveal-visible .split-text-word {
  transform: translateY(0);
}

/* Hero Section Entrance Enhancements */
.hero-slider__slide .hero-slider__image {
  transform: scale(1.08);
  transition: transform 3.5s var(--ease-luxury), opacity 1.5s var(--ease-luxury);
  opacity: 0;
}

.hero-slider__slide.active .hero-slider__image {
  transform: scale(1);
  opacity: 1;
}

.hero-slider__slide .hero-slider__overlay {
  opacity: 0;
  transition: opacity 1.8s var(--ease-luxury);
}

.hero-slider__slide.active .hero-slider__overlay {
  opacity: 1;
}

.hero-slider__slide .hero-slider__subheading {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s var(--ease-luxury), transform 1s var(--ease-luxury);
  transition-delay: 0.6s;
}

.hero-slider__slide.active .hero-slider__subheading {
  opacity: 1;
  transform: translateY(0);
}

.hero-slider__slide .hero-slider__buttons {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s var(--ease-luxury), transform 1s var(--ease-luxury);
  transition-delay: 0.8s;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.hero-slider__slide.active .hero-slider__buttons {
  opacity: 1;
  transform: translateY(0);
}
.alignment-center .hero-slider__buttons {
  justify-content: center;
}
.alignment-left .hero-slider__buttons {
  justify-content: flex-start;
}
.alignment-right .hero-slider__buttons {
  justify-content: flex-end;
}
/* Hero Floating BREW Bean Accent */
.hero-floating-bean-wrapper {
  position: absolute;
  z-index: 5;
  pointer-events: none;
  display: none;
  /* Shown dynamically on desktop */
  will-change: transform;
}

@media (min-width: 990px) {
  .hero-floating-bean-wrapper {
    display: block;
  }
}

.hero-floating-bean-wrapper--1 {
  top: 15%;
  left: 10%;
  width: 145px;
  height: 145px;
}

.hero-floating-bean-wrapper--2 {
  bottom: 20%;
  right: 12%;
  width: 135px;
  height: 135px;
}

.hero-floating-bean {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  mix-blend-mode: screen;
  will-change: transform;
}

.hero-floating-bean-wrapper--1 .hero-floating-bean {
  opacity: 0.85;
  animation: float-ambient-1 12s ease-in-out infinite;
}

.hero-floating-bean-wrapper--2 .hero-floating-bean {
  opacity: 0.80;
  animation: float-ambient-2 10s ease-in-out infinite;
}

@keyframes float-ambient-1 {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(8px, -15px, 0) rotate(5deg);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

@keyframes float-ambient-2 {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(-10px, -12px, 0) rotate(-6deg);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

/* Scroll Storytelling Styling */
.scroll-story {
  position: relative;
  background-color: var(--color-brand-achromatic-black);
}

.scroll-story__track {
  height: calc(100vh * var(--total-stages, 7));
  position: relative;
}

.scroll-story__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.scroll-story__media-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.scroll-story__media-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  filter: blur(10px) brightness(0.6);
  transform: scale(1.05);
  transition: opacity 1s var(--ease-luxury),
    filter 1s var(--ease-luxury),
    transform 1.2s var(--ease-luxury);
  will-change: transform, opacity, filter;
}

.scroll-story__media-item.active {
  opacity: 1;
  filter: blur(0) brightness(0.65);
  transform: scale(1);
  z-index: 2;
}

.scroll-story__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scroll-story__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 30%, rgba(2, 2, 2, 0.8) 100%),
    linear-gradient(to right, rgba(2, 2, 2, 0.75) 0%, transparent 40%, transparent 60%, rgba(2, 2, 2, 0.75) 100%);
  z-index: 3;
}

.scroll-story__content-container {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 4;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.scroll-story__content-card {
  position: absolute;
  max-width: 480px;
  width: 100%;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-luxury),
    transform 0.8s var(--ease-luxury),
    filter 0.8s var(--ease-luxury);
  pointer-events: none;
  will-change: transform, opacity, filter;
  padding: 40px;
  border-radius: var(--border-radius);
  background-color: rgba(29, 13, 7, 0.15);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.scroll-story__content-card.alignment-left {
  left: 20px;
}

.scroll-story__content-card.alignment-right {
  right: 20px;
}

@media (min-width: 768px) {
  .scroll-story__content-card.alignment-left {
    left: 80px;
  }

  .scroll-story__content-card.alignment-right {
    right: 80px;
  }
}

.scroll-story__content-card.active {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-story__card-inner {
  display: flex;
  flex-direction: column;
}

.scroll-story__subtitle {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.scroll-story__title {
  color: #ffffff;
  font-size: 32px;
  line-height: 1.15;
  margin-bottom: 15px;
}

.scroll-story__description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
}

/* Sidebar progress indicator */
.scroll-story__progress-container {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

@media (max-width: 768px) {
  .scroll-story__progress-container {
    right: 15px;
  }
}

.scroll-story__progress-bar {
  width: 2px;
  height: 120px;
  background-color: rgba(255, 255, 255, 0.15);
  position: relative;
  border-radius: 1px;
}

.scroll-story__progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--story-progress, 0%);
  background-color: var(--color-brand-vivid-orange);
  transition: height 0.1s linear;
  border-radius: 1px;
}

.scroll-story__steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.scroll-story__step {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.25);
  transition: background-color var(--duration-fast) var(--ease-luxury),
    transform var(--duration-fast) var(--ease-luxury);
  cursor: pointer;
}

.scroll-story__step.active {
  background-color: var(--color-brand-vivid-orange);
  transform: scale(1.4);
}

/* Premium Product Card Hover Effects */
.product-card {
  overflow: hidden;
  border-radius: var(--border-radius);
  transition: transform 0.8s var(--ease-luxury);
  background-color: transparent;
}

.product-card:hover {
  transform: translateY(-6px);
}

/* Force Cart and Quick Add Button Text to be Uppercase */
.js-add-to-cart-btn,
.js-quick-add-btn,
.product-form__cart-btn,
.button {
  text-transform: uppercase !important;
}

.product-card__image-wrapper {
  overflow: hidden;
}

.product-card__image {
  transition: transform 1.2s var(--ease-luxury);
}

.product-card:hover .product-card__image {
  transform: scale(1.04);
}

.product-card__btn {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease-luxury),
    transform 0.4s var(--ease-luxury),
    background-color var(--duration-fast) var(--ease-luxury);
}

.product-card:hover .product-card__btn {
  opacity: 1;
  transform: translateY(0);
}

.color-swatches__item {
  transition: transform var(--duration-fast) var(--ease-luxury),
    border-color var(--duration-fast) var(--ease-luxury);
}

.color-swatches__item:hover {
  transform: scale(1.15);
}

/* Mega-Menu & Drawer Elastic Animations with Backdrop Blurs */
.mega-menu {
  backdrop-filter: blur(15px);
  background-color: rgba(251, 235, 207, 0.92) !important;
  transform: translateY(15px);
  transition: opacity 0.4s var(--ease-luxury),
    transform 0.4s var(--ease-luxury),
    visibility 0.4s var(--ease-luxury) !important;
}

.site-nav__item--mega:hover .mega-menu {
  transform: translateY(0);
}

.drawer__overlay {
  backdrop-filter: blur(0px);
  transition: backdrop-filter 0.5s var(--ease-luxury), opacity 0.5s var(--ease-luxury) !important;
}

.drawer.active .drawer__overlay {
  backdrop-filter: blur(15px);
}

.drawer__inner {
  transform: translateX(105%);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.15, 1) !important;
}

.drawer--left .drawer__inner {
  transform: translateX(-105%);
}

.drawer.active .drawer__inner {
  transform: translateX(0);
}

/* Premium Button Interactions */
.button {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-brand-vivid-orange);
  z-index: -1;
  transform: translateY(101%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.25, 1);
}

.button--primary:hover::before {
  transform: translateY(101%);
}

.button--secondary::before {
  display: none !important;
}

.button--secondary:hover::before {
  transform: translateY(0);
}

.button--primary {
  transition: color 0.4s var(--ease-luxury),
    border-color 0.4s var(--ease-luxury),
    transform 0.4s var(--ease-luxury);
}

.button--secondary {
  transition: color 0.4s var(--ease-luxury),
    border-color 0.4s var(--ease-luxury),
    transform 0.4s var(--ease-luxury);
}

.button:hover {
  transform: scale(1.02);
}

.button:active {
  transform: scale(0.98);
}


/* ==========================================================================
   LUXURY BREW THEME ADDITIONAL COMPONENTS
   ========================================================================== */

/* =========================================================
   BREW META — Premium Roast & Flavor UI (Brand Light)
   ========================================================= */
.product-BREW-meta {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #ffffff;
  border: 1px solid rgba(60, 27, 0, 0.08);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(60, 27, 0, 0.03);
}

.product-BREW-meta__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  position: relative;
  background: #ffffff;
}

.product-BREW-meta__item+.product-BREW-meta__item {
  border-top: 1px solid rgba(60, 27, 0, 0.06);
}

/* Section label default style */
.product-BREW-meta__label {
  font-family: 'GT Flexa', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  min-width: 110px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Roast level heading - brand blue */
.product-BREW-meta__item:nth-child(1) .product-BREW-meta__label {
  color: #1D0D07;
}

/* Flavor notes heading - brand deep earth */
.product-BREW-meta__item:nth-child(2) .product-BREW-meta__label {
  color: #1D0D07;
}

.product-BREW-meta__label::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 12px;
  background: #E9B246;
  border-radius: 1px;
  flex-shrink: 0;
}

/* ===== ROAST GAUGE ===== */
.product-BREW-meta__roast-gauge {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.roast-label {
  font-family: 'GT Flexa', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: #8c7e75;
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.roast-label.active {
  color: #1D0D07;
  font-weight: 700;
}

/* Sleek minimalist track */
.roast-bar {
  position: relative;
  height: 4px;
  background: #f4ebd9;
  border-radius: 99px;
  flex: 1;
  max-width: 200px;
}

/* Minimalist solid gold knob indicator */
.roast-indicator {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #E9B246;
  border: 2px solid #ffffff;
  transform: translate(-50%, -50%);
  transition: left 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 2px 6px rgba(60, 27, 0, 0.15);
  z-index: 2;
}

.roast-indicator.roast-light {
  left: 10%;
}

.roast-indicator.roast-medium {
  left: 50%;
}

.roast-indicator.roast-dark {
  left: 90%;
}

/* ===== FLAVOR PILLS ===== */
.product-BREW-meta__flavors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}

.flavor-pill {
  font-family: 'GT Flexa', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 6px;
  background: #ffffff;
  color: #1D0D07;
  border: 1px solid rgba(60, 27, 0, 0.12);
  display: inline-flex;
  align-items: center;
  transition: all 0.25s ease;
  cursor: default;
}

.flavor-pill:hover {
  background: rgba(235, 158, 17, 0.04);
  border-color: #E9B246;
  color: #E9B246;
  transform: translateY(-1px);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .product-BREW-meta__item {
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px 16px;
  }

  .product-BREW-meta__label {
    min-width: unset;
    width: 100%;
  }

  .product-BREW-meta__roast-gauge {
    width: 100%;
  }

  .roast-bar {
    max-width: 100%;
  }

  .product-BREW-meta__flavors {
    width: 100%;
  }
}

/* Product tab header — matches variant title & quantity label font style */
.product-tab__header {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-tab__body {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(60,27,0,0.8);
}

.product-tab__body p,
.product-tab__body li,
.product-tab__body strong {
  font-family: 'Outfit', sans-serif;
}

.product-tab__body strong {
  font-weight: 700;
  color: #1D0D07;
}

.product-tab__body ul {
  padding-left: 20px;
  margin-top: 10px;
}

.product-tab__body li {
  margin-bottom: 8px;
}

/* Floating BREW Bags in Hero */
.hero-floating-bag-wrapper {
  position: absolute;
  z-index: 5;
  pointer-events: none;
}

.hero-floating-bag-wrapper--left {
  left: 8%;
  bottom: 12%;
  width: 220px;
}

.hero-floating-bag-wrapper--right {
  right: 8%;
  bottom: 15%;
  width: 240px;
}

@media (max-width: 768px) {
  .hero-floating-bag-wrapper--left {
    left: 4%;
    bottom: 8%;
    width: 130px;
  }

  .hero-floating-bag-wrapper--right {
    right: 4%;
    bottom: 10%;
    width: 140px;
  }
}

.hero-floating-bag {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45));
  animation: float-ambient-bag 8s ease-in-out infinite alternate;
}

.hero-floating-bag-wrapper--left .hero-floating-bag {
  animation-duration: 9s;
  animation-delay: -2s;
}

.hero-floating-bag-wrapper--right .hero-floating-bag {
  animation-duration: 11s;
  animation-delay: -5s;
}

@keyframes float-ambient-bag {
  0% {
    transform: translateY(0) rotate(-3deg);
  }

  50% {
    transform: translateY(-12px) rotate(2deg);
  }

  100% {
    transform: translateY(-25px) rotate(-1deg);
  }
}

/* ==========================================================================
   MOBILE & RESPONSIVE DESIGN OPTIMIZATIONS (HIGHSKY STYLE)
   ========================================================================== */
@media (max-width: 768px) {

  /* 1. Hero Banner Content: Align content cleanly on mobile */
  .hero-slider__content-wrapper {
    align-items: flex-start !important;
    padding-top: 55px !important;
  }

  .hero-slider__content {
    margin: 0 auto !important;
    max-width: 100% !important;
    text-align: center !important;
  }

  .hero-slider__buttons {
    justify-content: center !important;
    gap: 10px !important;
  }

  /* 2. Hero Floating Bag: Center the single BREW bag at the bottom */
  .hero-floating-bag-wrapper--right {
    left: 50% !important;
    right: auto !important;
    bottom: 30px !important;
    width: 160px !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
  }

  /* Apply a vertical translation only to prevent transform translateX conflicts */
  .hero-floating-bag-wrapper--right .hero-floating-bag {
    animation-name: float-ambient-bag-mobile !important;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
  }

  /* 3. Scroll Storytelling: Ensure text cards are fully responsive and bounded */
  .scroll-story__content-card {
    left: 15px !important;
    right: 15px !important;
    width: auto !important;
    max-width: calc(100% - 30px) !important;
    padding: 24px !important;
    transform: translateY(20px);
  }

  .scroll-story__content-card.active {
    transform: translateY(0) !important;
  }

  .scroll-story__title {
    font-size: 24px !important;
    margin-bottom: 10px !important;
  }

  .scroll-story__description {
    font-size: 13px !important;
    line-height: 1.5 !important;
  }
}

@keyframes float-ambient-bag-mobile {
  0% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-8px) rotate(2deg);
  }

  100% {
    transform: translateY(-16px) rotate(-1deg);
  }
}

/* Product Card ATC wrapper */
.product-card__atc-wrapper {
  margin-top: auto;
  padding-top: 15px;
}

.product-card__atc-wrapper .button.js-quick-add-btn,
.product-card__atc-wrapper .product-card__atc-btn,
.product-card__atc-wrapper .button--atc {
  border-radius: 50px !important;
  background-color: #E9B246 !important;
  color: #1D0D07 !important;
  border: 2px solid #E9B246 !important;
  transition:
    background-color 0.35s cubic-bezier(0.25, 1, 0.2, 1),
    color 0.35s cubic-bezier(0.25, 1, 0.2, 1),
    border-color 0.35s cubic-bezier(0.25, 1, 0.2, 1),
    transform 0.35s cubic-bezier(0.25, 1, 0.2, 1),
    box-shadow 0.35s cubic-bezier(0.25, 1, 0.2, 1);
  padding: 14px 32px !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  min-height: 45px !important;
  text-transform: uppercase !important;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* ── Product Card Variant Selectors ── */
.product-card__option-selectors {
  margin-top: 15px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.product-card__option-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1D0D07;
  margin-bottom: 5px;
  display: block;
}

.product-card .variant-select-wrapper {
  margin-top: 0;
  position: relative;
}

.product-card .variant-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 10px 36px;
  text-align: center;
  text-align-last: center;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  background-color: transparent;
  border: 1.5px solid rgba(0, 0, 0, 0.4);
  border-radius: 50px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  line-height: 1.3;
}

.product-card .variant-select:focus {
  outline: none;
  border-color: #1a1a1a;
}

.product-card .variant-select:hover {
  border-color: #1a1a1a;
}

.product-card .variant-select-chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .product-card__atc-wrapper .button.js-quick-add-btn,
  .product-card__atc-wrapper .product-card__atc-btn,
  .product-card__atc-wrapper .button--atc {
    font-size: 10px !important;
    letter-spacing: 0.08em !important;
    padding: 12px 10px !important;
  }
}

.product-card__atc-wrapper .button.js-quick-add-btn:hover,
.product-card__atc-wrapper .product-card__atc-btn:hover,
.product-card__atc-wrapper .button--atc:hover:not([disabled]) {
  background-color: #1D0D07 !important;
  color: #ffffff !important;
  border-color: #1D0D07 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(5, 22, 55, 0.28);
}

/* Button Loading States */
.button.loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

.button.loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  border-right-color: transparent;
  animation: button-spin 0.6s linear infinite;
}

.button--secondary.loading::after,
.button--outline.loading::after,
.button.button--secondary.loading::after,
.quick-add-size-btn.loading::after {
  border-color: #1D0D07;
  border-right-color: transparent;
}

@keyframes button-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Premium Styling for Shopify Dynamic Checkout (Buy Now) Button */
.product-form__actions .shopify-payment-button {
  width: 100% !important;
}

.product-form__actions .shopify-payment-button__button,
.product-form__actions .shopify-payment-button__button--unbranded {
  border-radius: 50px !important;
  background-color: #1D0D07 !important;
  color: #ffffff !important;
  border: 2px solid #1D0D07 !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  padding: 0 32px !important;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 52px !important;
  cursor: pointer !important;
  box-shadow: none !important;
}

.product-form__actions .shopify-payment-button__button:hover,
.product-form__actions .shopify-payment-button__button--unbranded:hover {
  background-color: #E9B246 !important;
  color: #1D0D07 !important;
  border-color: #E9B246 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(235, 158, 17, 0.25) !important;
}

/* ==========================================================================
   CART PAGE STYLING (MAIN CART & CART TABLE)
   ========================================================================== */
.main-cart {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #FAF6F0;
  min-height: 70vh;
}

.main-cart .container--narrow {
  max-width: 1100px;
}

.main-cart .section-header {
  margin-bottom: 50px;
}

.main-cart .section-header__title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  color: var(--color-brand-dark-blue);
  font-weight: 700;
}

.js-cart-items-wrapper {
  position: relative;
  transition: opacity 0.25s ease;
}

.js-cart-items-wrapper.loading {
  opacity: 0.5;
  pointer-events: none;
}

/* Form Layout: Grid on Desktop */
.cart-form {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 50px;
  align-items: start;
}

.cart-table {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(5, 22, 55, 0.03);
  border: 1px solid rgba(5, 22, 55, 0.05);
}

.cart-table__header {
  display: grid;
  grid-template-columns: 3fr 1.2fr 1.2fr;
  gap: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--color-border);
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.cart-table__row {
  display: grid;
  grid-template-columns: 3fr 1.2fr 1.2fr;
  gap: 20px;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid var(--color-border);
}

.cart-table__row:last-child {
  border-bottom: none;
}

.cart-table__product {
  display: flex;
  gap: 20px;
  align-items: center;
}

.cart-table__image-wrapper {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  background-color: #fcfbfa;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(5, 22, 55, 0.06);
}

.cart-table__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-table__details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.cart-table__vendor {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-brand-vivid-orange);
  line-height: 1;
}

.cart-table__title {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--color-brand-dark-blue);
  text-decoration: none;
  line-height: 1.3;
  transition: color 0.2s;
}

.cart-table__title:hover {
  color: var(--color-brand-vivid-orange);
}

.cart-table__options {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  color: var(--color-text-muted);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cart-table__remove {
  background: none;
  border: none;
  padding: 0;
  margin-top: 5px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #c93b2b;
  text-decoration: underline;
  cursor: pointer;
  align-self: flex-start;
  transition: opacity 0.2s;
}

.cart-table__remove:hover {
  opacity: 0.8;
}

.cart-table__quantity {
  display: flex;
  justify-content: center;
}

.cart-table .quantity-selector {
  border-radius: 50px;
  padding: 3px 8px;
  border: 1.5px solid rgba(0, 0, 0, 0.5);
  background-color: transparent;
  display: inline-flex;
  align-items: center;
}

.cart-table .quantity-selector:hover {
  border: none;
}

.cart-table .quantity-selector:focus-within {
  border: none;
  box-shadow: none;
}

.cart-table .quantity-selector__btn {
  background: none;
  border: none;
  color: #1D0D07;
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  transition: color 0.2s;
}

.cart-table .quantity-selector__btn:hover {
  color: #E9B246;
}

.cart-table .quantity-selector__input {
  border: none;
  background: none;
  color: #1D0D07;
  width: 35px;
  text-align: center;
  font-weight: bold;
  font-size: 13px;
}

.cart-table__total {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--color-brand-dark-blue);
  font-size: 16px;
}

.cart-table__original-price {
  color: var(--color-text-muted);
  font-size: 13px;
  margin-right: 6px;
  text-decoration: line-through;
}

.cart-table__final-price {
  color: var(--color-brand-dark-blue);
}

/* Order Summary Box */
.cart-summary {
  background-color: #FDFBF7;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 35px 30px;
  box-shadow: 0 10px 30px rgba(5, 22, 55, 0.02);
}

.cart-summary__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(5, 22, 55, 0.08);
  padding-bottom: 15px;
}

.cart-summary__label {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-brand-dark-blue);
}

.cart-summary__value {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-brand-dark-blue);
}

.cart-summary__note {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

.cart-summary__actions .button {
  width: 100% !important;
  padding: 14px 32px !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  border-radius: 50px !important;
  min-height: 45px !important;
  background-color: #E9B246 !important;
  color: #1D0D07 !important;
  border: 2px solid #E9B246 !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.cart-summary__actions .button:hover {
  background-color: #1D0D07 !important;
  color: #ffffff !important;
  border-color: #1D0D07 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(5, 22, 55, 0.12) !important;
}

.cart-empty {
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cart-empty p {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  color: var(--color-brand-dark-blue);
  margin: 0;
  font-weight: 700;
}

.cart-empty .button {
  padding: 14px 32px !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  border-radius: 50px !important;
  min-height: 45px !important;
  background-color: #1D0D07 !important;
  color: #ffffff !important;
  border: 2px solid #1D0D07 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
}

.cart-empty .button:hover {
  background-color: transparent !important;
  color: #1D0D07 !important;
  border-color: #1D0D07 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(5, 22, 55, 0.12) !important;
}

/* Responsive styles */
@media (max-width: 991px) {
  .cart-form {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cart-summary {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .main-cart {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    overflow-x: hidden;
  }

  .main-cart .section-header {
    margin-bottom: 30px !important;
  }

  .main-cart .section-header__title {
    font-size: 2.2rem !important;
    text-align: center !important;
  }

  .cart-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
    width: 100% !important;
    overflow-x: hidden !important;
  }

  .cart-table {
    padding: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    background-color: #ffffff !important;
    border: 1px solid rgba(29, 13, 7, 0.08) !important;
    border-radius: 12px !important;
    overflow-x: hidden !important;
  }

  .cart-table__header {
    display: none !important;
  }

  .cart-table__row {
    display: grid !important;
    grid-template-columns: 80px 1fr !important;
    grid-template-rows: auto auto !important;
    gap: 12px 16px !important;
    padding: 20px 0 !important;
    border-bottom: 1px solid rgba(29, 13, 7, 0.08) !important;
    position: relative !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .cart-table__row:last-child {
    border-bottom: none !important;
  }

  .cart-table__product {
    grid-column: 1 / -1 !important;
    display: flex !important;
    gap: 16px !important;
    align-items: start !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .cart-table__image-wrapper {
    width: 80px !important;
    height: 80px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    background: #FAF6F0 !important;
    border: 1px solid rgba(29, 13, 7, 0.06) !important;
  }

  .cart-table__details {
    min-width: 0 !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
  }

  .cart-table__title {
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    word-break: break-word !important;
    white-space: normal !important;
  }

  .cart-table__options {
    margin-top: 2px !important;
  }

  .cart-table__remove {
    margin-top: 6px !important;
    align-self: flex-start !important;
  }

  .cart-table__quantity {
    grid-column: 2 / 3 !important;
    grid-row: 2 / 3 !important;
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding-left: 0 !important;
    margin-top: 4px !important;
  }

  .cart-table__total {
    grid-column: 2 / 3 !important;
    grid-row: 2 / 3 !important;
    justify-self: end !important;
    align-self: center !important;
    text-align: right !important;
    padding-left: 0 !important;
    font-size: 15px !important;
    font-weight: 700 !important;
  }

  .cart-summary {
    padding: 24px 20px !important;
    box-sizing: border-box !important;
    width: 100% !important;
    border-radius: 12px !important;
    background-color: #ffffff !important;
    border: 1px solid rgba(29, 13, 7, 0.08) !important;
  }

  /* Coupon code vertical stacked layout for mobile screen sizes */
  .cart-summary .cart-discount-code {
    padding: 12px !important;
    margin: 15px 0 !important;
  }

  .cart-summary .cart-discount-code div[style*="display: flex"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
  }

  #CartDiscountInput {
    padding: 10px 16px !important;
    font-size: 14px !important;
    height: 40px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 50px !important;
  }

  #CartDiscountApply {
    width: 100% !important;
    height: 40px !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 0.05em !important;
    border-radius: 50px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    min-height: 40px !important;
  }
}

/* Responsive Drawer Styles */
@media (max-width: 480px) {
  .drawer__inner {
    max-width: 100% !important;
  }

  .drawer__header {
    padding: 15px !important;
  }

  .drawer__body {
    padding: 15px !important;
  }

  .drawer__footer {
    padding: 15px !important;
  }

  .cart-item {
    gap: 10px !important;
    grid-template-columns: 70px 1fr !important;
  }

  .cart-item__image-wrapper {
    width: 70px !important;
    height: 70px !important;
  }

  .cart-item__quantity-remove {
    flex-wrap: wrap !important;
    gap: 10px !important;
  }
}

/* Product Card Tag Pills */
.product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
  justify-content: center;
}

.tag-pill {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 18px;
  min-width: 90px;
  text-align: center;
  border-radius: 99px;
  text-transform: capitalize;
  display: inline-block;
  line-height: 1.2;
}

@media screen and (max-width: 749px) {
  .product-card__tags {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: center;
    gap: 4px;
  }
  .product-card__tags::-webkit-scrollbar {
    display: none;
  }
  .tag-pill {
    font-size: 11px;
    padding: 4px 14px;
    min-width: 70px;
    text-align: center;
  }
}

/* Brand Color tag styles */
.tag-pill--fruity {
  background-color: var(--color-brand-vivid-orange);
  /* #E9B246 */
  color: var(--color-brand-dark-blue);
  /* #1D0D07 */
}

.tag-pill--nutty {
  background-color: var(--color-brand-deep-earth);
  /* #1D0D07 */
  color: #ffffff;
}

.tag-pill--sweet {
  background-color: var(--color-brand-dark-blue);
  /* #1D0D07 */
  color: #ffffff;
}

/* Standard flavor styles */
.tag-pill--chocolate {
  background-color: #6F4E37;
  /* Chocolate Brown */
  color: #ffffff;
}

.tag-pill--citrus {
  background-color: #81c784;
  /* Citrus Green */
  color: #ffffff;
}

.tag-pill--floral {
  background-color: #f48fb1;
  /* Floral Pink */
  color: #1D0D07;
}

.tag-pill--berry {
  background-color: #ce93d8;
  /* Berry Purple */
  color: #1D0D07;
}

.tag-pill--spicy {
  background-color: #ff8a65;
  /* Spicy Red-Orange */
  color: #ffffff;
}

.tag-pill--caramel {
  background-color: #ffb74d;
  /* Caramel Orange */
  color: #1D0D07;
}


/* ==========================================================================
   FEATURED BENEFITS SECTION — Premium Animations
   ========================================================================== */

/* ── Keyframes ── */
@keyframes benefitFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes haloExpand {
  0% {
    transform: scale(0.85);
    opacity: 0.7;
  }

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

@keyframes shimmerSweep {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes svgDrawIn {
  to {
    stroke-dashoffset: 0;
  }
}

/* ── Section shell ── */
.featured-benefits {
  padding: 80px 0;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  perspective: 1200px;
}

.featured-benefits__slider-wrapper {
  width: 100%;
}

.featured-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  transform: none !important;
}

/* ── Card ── */
.featured-benefits__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 18px 32px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transform-style: preserve-3d;
  will-change: transform;
  transition: box-shadow 0.45s ease;
}

/* idle floating — disabled */
.featured-benefits__item:nth-child(1),
.featured-benefits__item:nth-child(2),
.featured-benefits__item:nth-child(3),
.featured-benefits__item:nth-child(4) {
  animation: none;
}

/* Shimmer sweep overlay — disabled */
.featured-benefits__item::before {
  display: none;
}

.featured-benefits__item:hover::before {
  display: none;
}

/* On-hover deep glow — disabled */
.featured-benefits__item:hover {
  box-shadow: none;
}

/* ── Icon wrapper ── */
.featured-benefits__icon {
  width: 88px;
  height: 88px;
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* Static border circle — disabled */
.featured-benefits__icon::after {
  display: none;
}


/* ── SVG icon ── */
.featured-benefits__svg-wrapper {
  width: 100%;
  height: 100%;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.featured-benefits__item:hover .featured-benefits__svg-wrapper {
  transform: scale(1.15) rotate(-3deg);
}

.featured-benefits__svg-wrapper svg {
  width: 72px;
  height: 72px;
  stroke: currentColor;
  overflow: visible;
}

/* Stroke draw-on: paths start hidden, JS re-draws them on hover */
.featured-benefits__svg-wrapper svg path,
.featured-benefits__svg-wrapper svg ellipse,
.featured-benefits__svg-wrapper svg circle,
.featured-benefits__svg-wrapper svg rect,
.featured-benefits__svg-wrapper svg polyline,
.featured-benefits__svg-wrapper svg line {
  stroke-dasharray: 800;
  stroke-dashoffset: 0;
  /* visible by default */
  transition: stroke-dashoffset 0s;
}

/* when JS adds .is-drawing — offsets jump to length, then CSS transition draws them in */
.featured-benefits__item.is-drawing .featured-benefits__svg-wrapper svg path,
.featured-benefits__item.is-drawing .featured-benefits__svg-wrapper svg ellipse,
.featured-benefits__item.is-drawing .featured-benefits__svg-wrapper svg circle,
.featured-benefits__item.is-drawing .featured-benefits__svg-wrapper svg rect,
.featured-benefits__item.is-drawing .featured-benefits__svg-wrapper svg polyline,
.featured-benefits__item.is-drawing .featured-benefits__svg-wrapper svg line {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Image fallback icon ── */
.featured-benefits__img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.featured-benefits__item:hover .featured-benefits__img {
  transform: scale(1.15) rotate(-3deg);
}

/* ── Title ── */
.featured-benefits__title {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 12px 0;
  color: inherit;
  position: relative;
  z-index: 2;
  letter-spacing: 0em;
}

/* ── Description ── */
.featured-benefits__desc {
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.8;
  color: inherit;
  position: relative;
  z-index: 2;
}

/* ── Mobile nav (hidden on desktop) ── */
.featured-benefits__nav {
  display: none;
}

/* ============================
   MOBILE
   ============================ */
@media (max-width: 989px) {
  .featured-benefits {
    padding: 60px 0;
    overflow: hidden;
    perspective: none;
    /* disable 3D on mobile */
  }

  .featured-benefits__slider-wrapper {
    overflow: visible;
    width: 100%;
    margin-bottom: 0;
  }

  .featured-benefits__grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 40px 15px;
    width: 100% !important;
    transform: none !important;
    text-align: center;
  }

  .featured-benefits__item {
    width: 100% !important;
    flex-shrink: 1;
    padding: 0 10px;
    /* disable heavy animation on mobile */
    animation: none !important;
    transform: none !important;
    transition: none;
  }

  .featured-benefits__item::before {
    display: none;
  }

  .featured-benefits__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }

  .featured-benefits__svg-wrapper svg {
    width: 60px;
    height: 60px;
  }

  .featured-benefits__img {
    width: 56px;
    height: 56px;
  }

  .featured-benefits__title {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .featured-benefits__desc {
    font-size: 12.5px;
    transform: none;
    opacity: 0.8;
  }

  /* Mobile controls */
  .featured-benefits__nav {
    display: none !important;
  }

  .featured-benefits__nav-btn {
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
  }

  .featured-benefits__nav-btn:hover {
    opacity: 0.7;
  }

  .featured-benefits__nav-btn svg {
    width: 16px;
    height: 16px;
  }

  .featured-benefits__indicator {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
}

/* =========================================================
   CUSTOM PRODUCT PAGE BLOCKS (PROMO BANNER & ATTRS)
   ========================================================= */
.product-promo-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: rgba(60, 27, 0, 0.02);
  border: 1px solid rgba(60, 27, 0, 0.12);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 100%;
  box-sizing: border-box;
}

.product-promo-banner:hover {
  background: rgba(60, 27, 0, 0.04);
  border-color: rgba(60, 27, 0, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(60, 27, 0, 0.04);
}

.product-promo-banner__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1D0D07;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

.product-promo-banner__icon svg {
  width: 100%;
  height: 100%;
}

.product-promo-banner__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-promo-banner__title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #1D0D07;
  margin: 0;
  text-transform: uppercase;
}

.product-promo-banner__text {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #1D0D07;
  margin: 0;
}

/* Attributes Block */
.product-attributes-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
}

.product-attributes-block__intro {
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  line-height: 1.6;
  color: #1D0D07;
  opacity: 0.95;
  margin: 0 0 8px 0;
}

.product-attributes-block__items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.attribute-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.attribute-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.attribute-label {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #1D0D07;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: capitalize;
}

.attribute-label svg {
  width: 20px;
  height: 20px;
  color: #1D0D07;
  flex-shrink: 0;
}

/* Info Icon & Tooltip */
.attribute-info-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8c7e75;
  cursor: pointer;
  width: 16px;
  height: 16px;
  transition: color 0.2s ease;
}

.attribute-info-trigger:hover {
  color: #E9B246;
}

.attribute-info-trigger svg {
  width: 14px;
  height: 14px;
}

.attribute-tooltip {
  position: absolute;
  bottom: 150%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #1D0D07;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  width: 200px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(29, 13, 7, 0.15);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 100;
}

.attribute-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #1D0D07 transparent transparent transparent;
}

.attribute-info-trigger:hover .attribute-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Gauge style */
.attribute-gauge-wrapper {
  width: 100%;
}

.attribute-gauge {
  display: flex;
  gap: 6px;
  width: 100%;
  margin-bottom: 8px;
}

.attribute-segment {
  height: 6px;
  flex: 1;
  border-radius: 99px;
  background: #dcd3cb;
  transition: background-color 0.3s ease;
}

/* Keyframe for moving gauge shine effect */
@keyframes gaugeShine {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Animation for gauge segments fill-up on load */
@keyframes segmentReveal {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

.attribute-segment.active {
  transform-origin: left;
}

/* Color roast level active segments dark brown with active shine */
.attribute-row--roast .attribute-segment.active {
  background: linear-gradient(90deg, #1D0D07 0%, #6d3300 50%, #1D0D07 100%);
  background-size: 200% auto;
  animation: segmentReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) both,
             gaugeShine 2.5s infinite linear;
  box-shadow: 0 0 6px rgba(109, 51, 0, 0.45);
}

/* Color brightness active segments reddish brown with active shine */
.attribute-row--brightness .attribute-segment.active {
  background: linear-gradient(90deg, #b85c37 0%, #f08b5f 50%, #b85c37 100%);
  background-size: 200% auto;
  animation: segmentReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) both,
             gaugeShine 2.5s infinite linear;
  box-shadow: 0 0 6px rgba(240, 139, 95, 0.55);
}

/* Stagger each active segment fill animation in the row */
.attribute-gauge .attribute-segment.active:nth-child(1) { animation-delay: 0.05s; }
.attribute-gauge .attribute-segment.active:nth-child(2) { animation-delay: 0.10s; }
.attribute-gauge .attribute-segment.active:nth-child(3) { animation-delay: 0.15s; }
.attribute-gauge .attribute-segment.active:nth-child(4) { animation-delay: 0.20s; }
.attribute-gauge .attribute-segment.active:nth-child(5) { animation-delay: 0.25s; }
.attribute-gauge .attribute-segment.active:nth-child(6) { animation-delay: 0.30s; }
.attribute-gauge .attribute-segment.active:nth-child(7) { animation-delay: 0.35s; }
.attribute-gauge .attribute-segment.active:nth-child(8) { animation-delay: 0.40s; }
.attribute-gauge .attribute-segment.active:nth-child(9) { animation-delay: 0.45s; }
.attribute-gauge .attribute-segment.active:nth-child(10) { animation-delay: 0.50s; }

.attribute-gauge-labels {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  color: #8c7e75;
  font-weight: 500;
}

/* Taste Notes Grid */
.taste-notes-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.taste-notes-container {
  width: 100%;
  border: 1px solid rgba(60, 27, 0, 0.1);
  border-radius: 12px;
  background: rgba(60, 27, 0, 0.02);
  padding: 16px 0;
  box-sizing: border-box;
}

.taste-notes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}

@keyframes tasteNoteReveal {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.taste-note-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 16px;
  opacity: 0;
  animation: tasteNoteReveal 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.taste-note-col:nth-child(1) { animation-delay: 0.35s; }
.taste-note-col:nth-child(2) { animation-delay: 0.42s; }
.taste-note-col:nth-child(3) { animation-delay: 0.49s; }
.taste-note-col:nth-child(4) { animation-delay: 0.56s; }

.taste-note-col + .taste-note-col {
  border-left: 1px solid rgba(60, 27, 0, 0.1);
}

.taste-note-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1D0D07;
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
  transition: transform 0.25s ease;
}

.taste-note-col:hover .taste-note-icon {
  transform: scale(1.1);
}

.taste-note-icon svg {
  width: 100%;
  height: 100%;
}

.taste-note-label {
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #1D0D07;
  margin: 0;
}

/* Pulse animation for Taste Notes icons on mobile */
@keyframes tasteNotePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
}

/* Mobile responsive layout */
@media (max-width: 768px) {
  /* Attributes Block Mobile Adjustments */
  .product-attributes-block {
    gap: 14px;
  }

  .product-attributes-block__items {
    gap: 16px;
  }

  .attribute-row {
    gap: 6px;
  }

  .attribute-gauge {
    margin-bottom: 4px;
    gap: 4px;
  }

  .attribute-gauge-labels {
    font-size: 11px;
  }

  /* Taste Notes Grid Mobile Adjustments */
  .taste-notes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .taste-note-col {
    border-left: none !important;
    padding: 10px 8px;
  }
  
  /* Add borders for 2x2 grid layout */
  .taste-note-col:nth-child(1),
  .taste-note-col:nth-child(2) {
    border-bottom: 1px solid rgba(60, 27, 0, 0.1) !important;
  }
  
  .taste-note-col:nth-child(odd) {
    border-right: 1px solid rgba(60, 27, 0, 0.1) !important;
  }

  .taste-note-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 4px;
    animation: tasteNotePulse 2s ease-in-out infinite;
  }

  .taste-note-col:nth-child(1) .taste-note-icon {
    animation-delay: 4.0s;
  }
  .taste-note-col:nth-child(2) .taste-note-icon {
    animation-delay: 4.2s;
  }
  .taste-note-col:nth-child(3) .taste-note-icon {
    animation-delay: 4.4s;
  }
  .taste-note-col:nth-child(4) .taste-note-icon {
    animation-delay: 4.6s;
  }

  .taste-note-label {
    font-size: 12.5px;
  }

  /* Promo Banner Block Mobile Adjustments */
  .product-promo-banner {
    padding: 12px 16px;
    gap: 12px;
    border-radius: 12px;
  }
  
  .product-promo-banner__title {
    font-size: 14.5px;
  }
  
  .product-promo-banner__text {
    font-size: 13px;
  }
}

/* ============================================================
   PRODUCT PAGE — SMOOTH TRANSITIONS & MICRO-ANIMATIONS
   ============================================================ */

/* 1. Main product image — subtle zoom on hover */
.product-gallery__main-image {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.product-gallery__main:hover .product-gallery__main-image {
  transform: scale(1.03);
}

/* 2. Thumbnail — lift + sharpen on hover */
.product-gallery__thumbnail {
  transition: opacity 0.25s ease,
              border-color 0.25s ease,
              transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.25s ease;
}
.product-gallery__thumbnail:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px rgba(60, 27, 0, 0.15);
}

/* 3. Variant select capsule — smooth border glow */
.variant-select-wrapper {
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}
.variant-select-wrapper:focus-within {
  box-shadow: 0 0 0 2px rgba(235, 158, 17, 0.35);
  transform: translateY(-1px);
}

/* 4. Add-to-cart button — lift + glow */
.product-form__cart-btn {
  background-color: transparent !important;
  color: #1D0D07 !important;
  border: 2px solid #1D0D07 !important;
  border-radius: 50px !important;
  text-transform: uppercase !important;
  padding: 0 32px !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  height: 52px !important;
  transition: background-color 0.3s ease,
              color 0.3s ease,
              border-color 0.3s ease,
              transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
  will-change: transform;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.product-form__cart-btn:hover:not(:disabled) {
  background-color: #1D0D07 !important;
  color: #ffffff !important;
  border-color: #1D0D07 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29, 13, 7, 0.15);
}
.product-form__cart-btn:active:not(:disabled) {
  transform: translateY(0px) scale(0.98);
  box-shadow: 0 2px 8px rgba(5, 22, 55, 0.1);
  transition-duration: 0.1s;
}

/* 5. Quantity buttons — springy bounce */
.quantity-selector__btn {
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
              color 0.2s ease;
}
.quantity-selector__btn:hover {
  transform: scale(1.2);
}
.quantity-selector__btn:active {
  transform: scale(0.9);
}

/* 6. Product tab accordion — smooth expand/collapse */
.product-tab__body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.35s ease,
              padding-top 0.3s ease;
}
.product-tab[open] .product-tab__body {
  max-height: 600px;
  opacity: 1;
  padding-top: 15px;
}

/* 7. Product tab header — subtle colour shift on hover */
.product-tab__header {
  transition: color 0.2s ease, letter-spacing 0.2s ease;
}
.product-tab__header:hover {
  color: #1D0D07;
  letter-spacing: 0.08em;
}

/* 8. Product tab icon — smooth rotate on open */
.product-tab__icon {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              color 0.2s ease;
}
.product-tab[open] .product-tab__icon {
  transform: rotate(45deg);
  color: #E9B246;
}

/* 9. Star rating — shimmer on hover */
.product-buy-box__rating svg {
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.product-buy-box__rating:hover svg {
  transform: scale(1.15);
}

/* 10. Product info column — staggered reveal of elements on load */
@keyframes productInfoChildReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-buy-box > * {
  opacity: 0;
  transform: translateY(18px);
  animation: productInfoChildReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Staggered delay for each element inside the buy box */
.product-buy-box > *:nth-child(1) { animation-delay: 0.05s; }
.product-buy-box > *:nth-child(2) { animation-delay: 0.12s; }
.product-buy-box > *:nth-child(3) { animation-delay: 0.19s; }
.product-buy-box > *:nth-child(4) { animation-delay: 0.26s; }
.product-buy-box > *:nth-child(5) { animation-delay: 0.33s; }
.product-buy-box > *:nth-child(6) { animation-delay: 0.40s; }
.product-buy-box > *:nth-child(7) { animation-delay: 0.47s; }
.product-buy-box > *:nth-child(8) { animation-delay: 0.54s; }
.product-buy-box > *:nth-child(9) { animation-delay: 0.61s; }
.product-buy-box > *:nth-child(10) { animation-delay: 0.68s; }

/* 11. Product gallery — fade in from left */
@keyframes galleryReveal {
  from {
    opacity: 0;
    transform: translateX(-16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.product-page__gallery {
  animation: galleryReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* 12. Flavor pills — pop on hover */
.flavor-pill {
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.2s ease,
              color 0.2s ease,
              box-shadow 0.2s ease;
}
.flavor-pill:hover {
  transform: translateY(-2px) scale(1.05);
  background: #E9B246;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(235, 158, 17, 0.3);
}

/* --- Mobile Spacing Optimization for Product Form --- */
@media (max-width: 768px) {
  .product-form__options-container {
    flex-direction: row;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 16px;
  }

  .product-form__options-container > * {
    flex: 1;
    min-width: 0;
  }

  .product-form__variants {
    margin-bottom: 0;
  }

  .product-form__option {
    margin-bottom: 0;
  }

  .product-form__option:not(:last-child) {
    margin-bottom: 12px;
  }

  .variant-select-wrapper {
    margin-top: 6px;
  }

  .product-form__quantity {
    margin-bottom: 0;
  }

  .product-form__quantity .product-form__option-label {
    display: none;
  }

  .quantity-selector--large {
    margin-top: 0;
  }

  .product-form__actions {
    gap: 10px;
    margin-bottom: 24px;
  }

  /* Mobile Scroll Reveal Animation for Attributes Block */
  .reveal-on-scroll-mobile {
    opacity: 1;
  }

  .reveal-on-scroll-mobile .product-attributes-block__intro,
  .reveal-on-scroll-mobile .attribute-row--roast,
  .reveal-on-scroll-mobile .attribute-row--brightness,
  .reveal-on-scroll-mobile .taste-notes-box {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
  }

  .reveal-on-scroll-mobile.reveal-visible .product-attributes-block__intro {
    opacity: 0.95;
    transform: translateY(0);
    transition-delay: 0.05s;
  }
  
  .reveal-on-scroll-mobile.reveal-visible .attribute-row--roast {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
  }

  .reveal-on-scroll-mobile.reveal-visible .attribute-row--brightness {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.25s;
  }

  .reveal-on-scroll-mobile.reveal-visible .taste-notes-box {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.35s;
  }
}

/* Mobile-only Product Page Entry Animation */
@media screen and (max-width: 767px) {
  @keyframes fadeInUpProduct {
    from {
      opacity: 0;
      transform: translateY(16px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .breadcrumbs {
    opacity: 0;
    animation: fadeInUpProduct 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    animation-delay: 0.05s;
  }

  .product-page__gallery {
    opacity: 0;
    animation: fadeInUpProduct 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    animation-delay: 0.15s;
  }

  .product-buy-box__vendor,
  .product-buy-box__title,
  .product-buy-box__rating,
  .product-buy-box__price {
    opacity: 0;
    animation: fadeInUpProduct 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  }

  .product-buy-box__vendor { animation-delay: 0.25s; }
  .product-buy-box__title { animation-delay: 0.35s; }
  .product-buy-box__rating { animation-delay: 0.45s; }
  .product-buy-box__price { animation-delay: 0.55s; }

  .product-block--attributes {
    opacity: 0;
    animation: fadeInUpProduct 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    animation-delay: 0.65s;
  }

  .product-form {
    opacity: 0;
    animation: fadeInUpProduct 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    animation-delay: 0.75s;
  }

  .product-tabs {
    opacity: 0;
    animation: fadeInUpProduct 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    animation-delay: 0.85s;
  }
}
/* ==========================================================================
   MEGA MENU STYLING (CLICK-TRIGGERED, PREMIUM LOOK)
   ========================================================================== */

/* Outer Panel: Full width overlay below the site-header */
.site-header__desktop-wrapper {
  position: relative;
}

.site-header__desktop-wrapper .mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--color-header-bg, #1D0D07) !important; /* Matches your dark brown header background */
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
  padding: 40px 0;
  z-index: 999;
  
  /* Animation states */
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: 
    opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.35s linear !important;
}

/* Active Class toggled by JavaScript */
.site-header__desktop-wrapper .mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Inner alignment container */
.mega-menu__container {
  max-width: var(--container-width, 1200px);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

/* Left portion: nested navigation grid shifted to center-left */
.mega-menu__links-grid {
  display: flex;
  flex: 1;
  gap: 60px;
  justify-content: flex-start;
  padding-left: 20%; /* Shifts the links to the center-left to align with header menu links */
}

.mega-menu__col {
  min-width: 150px;
}

/* Sub-category Header (Column Titles) */
.mega-menu__title {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff !important; /* White text for visibility */
  margin-bottom: 18px;
  display: inline-block;
  text-decoration: none;
  transition: color 0.25s ease;
}

.mega-menu__title:hover {
  color: #E9B246 !important; /* Warm gold hover effect */
}

.mega-menu__sublist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Grandchild Links styling */
.mega-menu__sublink {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7) !important; /* White semi-transparent text */
  text-decoration: none;
  transition: color 0.25s ease, padding-left 0.25s ease;
  display: inline-block;
}

.mega-menu__sublink:hover {
  color: #E9B246 !important; /* Warm gold hover effect */
  padding-left: 5px;
}

/* Right portion: Promotional image columns */
.mega-menu__promos {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
  padding-right: 2%;
}

.mega-menu__promo-card {
  position: relative;
  width: 210px;
  height: 260px;
  overflow: hidden;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  text-decoration: none;
  color: #ffffff;
  

}

.mega-menu__promo-img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.mega-menu__promo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.85;
}

.mega-menu__promo-card:hover .mega-menu__promo-img {
  transform: scale(1.06);
}

/* Dark gradient overlay for title legibility */
.mega-menu__promo-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65%;
  
  z-index: 2;
  transition: height 0.3s ease;
}

.mega-menu__promo-card:hover::after {
  height: 75%;
}

.mega-menu__promo-content {
  position: relative;
  z-index: 3;
}

.mega-menu__promo-title {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 6px 0;
  letter-spacing: 0.08em;
  color: #ffffff !important;
}

.mega-menu__promo-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 600;
  margin: 0;
  opacity: 0.9;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #E9B246 !important;
}

/* Rotate Chevron on Active Click Trigger */
.site-nav__item.is-active svg.icon-chevron-down {
  transform: rotate(180deg);
}


/* ==========================================================================
   MASTER DESIGN SYSTEM OVERRIDES — BRAND Palette: #1D0D07 & #E9B246
   ========================================================================== */

/* 1. Global Reset & Basic Adaptation */
:root {
  --color-bg: #FFFFFF;
  --color-text: #4A4A4A;
  --color-text-muted: #666666;
  --color-primary: #E9B246;
  --color-border: #E5E5E5;
}

/* 2. Alternating Section Background System */
[data-color-scheme="white"] {
  background-color: #FAF6F0 !important;
  color: #444444 !important;
  --color-bg: #FAF6F0;
  --color-text: #444444;
  --color-text-muted: #666666;
  --color-heading: #1D0D07;
  --color-link: #1D0D07;
  --color-link-hover: #E9B246;
  --color-border: #E5E5E5;
}

[data-color-scheme="white"] h1,
[data-color-scheme="white"] h2,
[data-color-scheme="white"] h3,
[data-color-scheme="white"] h4,
[data-color-scheme="white"] h5,
[data-color-scheme="white"] h6 {
  color: #1D0D07 !important;
}

[data-color-scheme="white"] p,
[data-color-scheme="white"] li,
[data-color-scheme="white"] td,
[data-color-scheme="white"] th,
[data-color-scheme="white"] .faq__answer,
[data-color-scheme="white"] .product-tab__body {
  color: #4A4A4A !important;
}

[data-color-scheme="white"] small,
[data-color-scheme="white"] .text-muted,
[data-color-scheme="white"] .product-card__vendor {
  color: #666666 !important;
}

[data-color-scheme="white"] a:not(.button):not(.badge):not(.pcard-tag):not(.site-nav__link) {
  color: #1D0D07 !important;
}

[data-color-scheme="white"] a:not(.button):not(.badge):not(.pcard-tag):not(.site-nav__link):hover {
  color: #E9B246 !important;
}

[data-color-scheme="white"] *,
[data-color-scheme="white"] *:before,
[data-color-scheme="white"] *:after {
  border-color: #E5E5E5;
}

/* Brown Section Background */
[data-color-scheme="brown"] {
  background-color: #1D0D07 !important;
  color: rgba(255, 255, 255, 0.82) !important;
  --color-bg: #1D0D07;
  --color-text: rgba(255, 255, 255, 0.82);
  --color-text-muted: rgba(255, 255, 255, 0.65);
  --color-heading: #FFFFFF;
  --color-link: #FFFFFF;
  --color-link-hover: #E9B246;
  --color-border: rgba(255, 255, 255, 0.15);
}

[data-color-scheme="brown"] h1,
[data-color-scheme="brown"] h2,
[data-color-scheme="brown"] h3,
[data-color-scheme="brown"] h4,
[data-color-scheme="brown"] h5,
[data-color-scheme="brown"] h6 {
  color: #FFFFFF !important;
}

[data-color-scheme="brown"] p,
[data-color-scheme="brown"] li,
[data-color-scheme="brown"] td,
[data-color-scheme="brown"] th,
[data-color-scheme="brown"] .faq__answer,
[data-color-scheme="brown"] .product-tab__body {
  color: rgba(255, 255, 255, 0.82) !important;
}

[data-color-scheme="brown"] small,
[data-color-scheme="brown"] .text-muted,
[data-color-scheme="brown"] .product-card__vendor {
  color: rgba(255, 255, 255, 0.65) !important;
}

[data-color-scheme="brown"] a:not(.button):not(.badge):not(.pcard-tag) {
  color: #FFFFFF !important;
}

[data-color-scheme="brown"] a:not(.button):not(.badge):not(.pcard-tag):hover {
  color: #E9B246 !important;
}

[data-color-scheme="brown"] *,
[data-color-scheme="brown"] *:before,
[data-color-scheme="brown"] *:after {
  border-color: rgba(255, 255, 255, 0.15);
}

/* 3. Button System */
.button--primary,
.button--atc,
.product-form__cart-btn,
.checkout-button,
.cart__checkout-button {
  background-color: #E9B246 !important;
  color: #1D0D07 !important;
  border: none !important;
  transition: all 300ms ease !important;
}

.button--primary:hover,
.button--atc:hover:not([disabled]),
.product-form__cart-btn:hover:not(:disabled),
.checkout-button:hover,
.cart__checkout-button:hover {
  background-color: #1D0D07 !important;
  color: #FFFFFF !important;
  border: 1px solid #E9B246 !important;
}

.button--secondary,
.button--outline {
  background-color: transparent !important;
  border: 1px solid #1D0D07 !important;
  color: #1D0D07 !important;
  transition: all 300ms ease !important;
}

.button--secondary:hover,
.button--outline:hover {
  background-color: #1D0D07 !important;
  color: #FFFFFF !important;
  border: 1px solid #1D0D07 !important;
}

/* Dark Background Buttons (inside brown sections or dark panels) */
[data-color-scheme="brown"] .button--primary,
[data-color-scheme="brown"] .button--atc,
[data-color-scheme="brown"] .product-form__cart-btn,
[data-color-scheme="brown"] .button:not(.button--secondary):not(.button--outline),
footer .button,
.announcement-bar .button {
  background-color: #E9B246 !important;
  color: #1D0D07 !important;
  border: none !important;
  transition: all 300ms ease !important;
}

[data-color-scheme="brown"] .button--secondary,
[data-color-scheme="brown"] .button--outline {
  background-color: transparent !important;
  border: 2px solid #FFFFFF !important;
  color: #FFFFFF !important;
  transition: all 300ms ease !important;
}

[data-color-scheme="brown"] .button--primary:hover,
[data-color-scheme="brown"] .button--atc:hover:not([disabled]),
[data-color-scheme="brown"] .product-form__cart-btn:hover:not(:disabled),
[data-color-scheme="brown"] .button:not(.button--secondary):not(.button--outline):hover,
footer .button:hover,
.announcement-bar .button:hover {
  background-color: #FFFFFF !important;
  color: #1D0D07 !important;
  border: none !important;
}

[data-color-scheme="brown"] .button--secondary:hover,
[data-color-scheme="brown"] .button--outline:hover {
  background-color: #FFFFFF !important;
  color: #1D0D07 !important;
  border: 2px solid #FFFFFF !important;
}

/* Hero Banner Slider Buttons legibility overrides */
.hero-slider__buttons .button--primary {
  background-color: #E9B246 !important;
  color: #1D0D07 !important;
  border: none !important;
}

.hero-slider__buttons .button--primary:hover {
  background-color: #FFFFFF !important;
  color: #1D0D07 !important;
  border: none !important;
}

.hero-slider__buttons .button--secondary {
  background-color: transparent !important;
  border: 1px solid #FFFFFF !important;
  color: #FFFFFF !important;
}

.hero-slider__buttons .button--secondary:hover {
  background-color: #FFFFFF !important;
  color: #1D0D07 !important;
  border: 1px solid #FFFFFF !important;
}

/* 4. Header & Navigation */
.site-header {
  background-color: #FFFFFF !important;
  color: #1D0D07 !important;
  border-bottom: 1px solid rgba(29, 13, 7, 0.1) !important;
}

.site-header--transparent {
  background-color: transparent !important;
}

.site-header--sticky {
  background-color: #FFFFFF !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

.site-nav__link {
  color: #1D0D07 !important;
  font-weight: 600 !important;
  opacity: 1 !important;
  transition: color 0.25s ease, opacity 0.25s ease !important;
}

.site-nav__link:hover,
.dropdown-menu__link:hover,
.mega-menu__title:hover,
.mega-menu__sublink:hover {
  color: #E9B246 !important;
  opacity: 1 !important;
}

.dropdown-menu {
  background-color: #FFFFFF !important;
  border: 1px solid rgba(29, 13, 7, 0.12) !important;
  box-shadow: 0 10px 30px rgba(29, 13, 7, 0.08) !important;
}

.dropdown-menu__link {
  color: #1D0D07 !important;
  font-weight: 600 !important;
  transition: color 0.2s ease !important;
}

.site-nav__link--active,
.site-nav__item.is-active > .site-nav__link,
.mega-menu__title.is-active,
.mega-menu__sublink.is-active {
  color: #E9B246 !important;
}

/* Header Action Buttons (Search, Account, Cart) Styling & Hover */
.header-search-btn,
.header-search-trigger,
.header-account-btn,
.header-cart-btn,
.header-mobile-search,
.header-mobile-account,
.header-mobile-cart {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, opacity 0.25s ease !important;
}

.site-header__actions-wrapper svg,
.site-header__mobile-actions svg,
.mobile-menu-trigger svg,
.search-input-wrapper svg {
  color: #1D0D07 !important;
  stroke: #1D0D07 !important;
  transition: color 0.25s ease, stroke 0.25s ease, transform 0.25s ease !important;
}

.site-header__actions-wrapper a:hover svg,
.site-header__actions-wrapper button:hover svg,
.site-header__mobile-actions a:hover svg,
.site-header__mobile-actions button:hover svg,
.mobile-menu-trigger:hover svg,
.header-cart-btn:hover svg,
.header-mobile-cart:hover svg {
  color: #E9B246 !important;
  stroke: #E9B246 !important;
  transform: scale(1.1);
}

.logo-brand__main,
.site-header__logo-brand {
  color: #1D0D07 !important;
}

.cart-badge,
.site-header .cart-badge {
  background-color: #E9B246 !important;
  color: #1D0D07 !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  width: 16px !important;
  height: 16px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: absolute !important;
  top: -4px !important;
  right: -6px !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) !important;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease !important;
}

.header-cart-btn:hover .cart-badge,
.header-mobile-cart:hover .cart-badge {
  background-color: #1D0D07 !important;
  color: #E9B246 !important;
  transform: scale(1.1);
}

/* Mega menu styles */
.site-header__desktop-wrapper .mega-menu {
  background: #FFFFFF !important;
  background-color: #FFFFFF !important;
  border-top: 1px solid rgba(29, 13, 7, 0.15) !important;
  border-bottom: 1px solid rgba(29, 13, 7, 0.15) !important;
}

.mega-menu__title {
  color: #1D0D07 !important;
}

.mega-menu__sublink {
  color: rgba(29, 13, 7, 0.8) !important;
}

.mega-menu__title:hover,
.mega-menu__sublink:hover {
  color: #E9B246 !important;
}

/* 5. Footer Override */
.site-footer {
  background-color: #1D0D07 !important;
  color: rgba(255, 255, 255, 0.82) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.site-footer__heading,
.site-footer__contact-heading,
.site-footer__logo-text,
.site-footer__copy {
  color: #FFFFFF !important;
}

.site-footer__contact-details p,
.site-footer__disclaimer {
  color: rgba(255, 255, 255, 0.82) !important;
}

.site-footer__menu-link,
.site-footer__contact-details a {
  color: #FFFFFF !important;
  opacity: 1 !important;
}

.site-footer__menu-link:hover,
.site-footer__contact-details a:hover {
  color: #E9B246 !important;
  opacity: 1 !important;
  text-decoration: none !important;
}

.site-footer svg,
.site-footer .icon {
  color: #FFFFFF !important;
}

.site-footer a:hover svg,
.site-footer .icon:hover {
  color: #E9B246 !important;
}

/* 6. Product Cards */
.product-card {
  background-color: #FFFFFF !important;
  border: 1px solid #E5E5E5 !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.product-card:hover {
  border-color: #E9B246 !important;
  box-shadow: 0 4px 15px rgba(233, 178, 70, 0.15) !important;
}

.product-card__title,
.product-card__title a {
  color: #1D0D07 !important;
}

.product-card__price,
.product-card__price .price-item,
.product-card__price .price__regular {
  color: #1D0D07 !important;
}

.product-card__price .price-item.price-item--sale,
.product-card__price .price__sale {
  color: #E9B246 !important;
}

.product-card__rating {
  color: #E9B246 !important;
}

.product-card__atc-wrapper .button.js-quick-add-btn,
.product-card__atc-wrapper .product-card__atc-btn,
.product-card__atc-wrapper .button--atc,
.product-card__btn {
  background-color: #E9B246 !important;
  color: #1D0D07 !important;
  border: none !important;
}

.product-card__atc-wrapper .button.js-quick-add-btn:hover,
.product-card__atc-wrapper .product-card__atc-btn:hover,
.product-card__atc-wrapper .button--atc:hover,
.product-card__btn:hover {
  background-color: #1D0D07 !important;
  color: #FFFFFF !important;
  border: 1px solid #E9B246 !important;
}

.quick-add-size-btn {
  border: 1px solid #E9B246 !important;
  color: #E9B246 !important;
  background-color: transparent !important;
}

.quick-add-size-btn:hover {
  background-color: #1D0D07 !important;
  color: #FFFFFF !important;
  border-color: #1D0D07 !important;
}

/* 7. Form Override */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
input[type="search"],
textarea,
select {
  background-color: #FFFFFF !important;
  border: 1px solid #E5E5E5 !important;
  color: #1D0D07 !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
  border-color: #E9B246 !important;
  outline: none !important;
  box-shadow: 0 0 0 1px #E9B246 !important;
}

/* Exception: newsletter email input — no border, no bg, transparent */
input[type="email"].np-newsletter__input,
input.np-newsletter__input {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
input[type="email"].np-newsletter__input:focus,
input[type="email"].np-newsletter__input:active,
input.np-newsletter__input:focus,
input.np-newsletter__input:active {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Exception: quantity selector number input — no border, no bg, transparent */
input[type="number"].quantity-selector__input,
input.quantity-selector__input,
.quantity-selector--large input.quantity-selector__input,
.quantity-selector--large input[type="number"].quantity-selector__input {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
input[type="number"].quantity-selector__input:focus,
input.quantity-selector__input:focus,
.quantity-selector--large input.quantity-selector__input:focus,
.quantity-selector--large input[type="number"].quantity-selector__input:focus {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

label,
.field__label {
  color: #1D0D07 !important;
}

::placeholder {
  color: #888888 !important;
  opacity: 1 !important;
}

::-webkit-input-placeholder { color: #888888 !important; }
::-moz-placeholder { color: #888888 !important; }
:-ms-input-placeholder { color: #888888 !important; }
:-moz-placeholder { color: #888888 !important; }

/* 8. Announcement Bar */
.announcement-bar {
  background-color: #1D0D07 !important;
  color: #FFFFFF !important;
}

.announcement-bar__link {
  color: #E9B246 !important;
}

/* 9. Badges */
.badge,
.badge--sale,
.badge--sold,
.pcard-tag,
.pcard-tag--orange,
.pcard-tag--darkblue,
.pcard-tag--earth,
.pcard-tag--black {
  background-color: #E9B246 !important;
  color: #1D0D07 !important;
}

/* 10. Accordions */
.faq__question,
.product-tab__header {
  color: #1D0D07 !important;
}

.faq__question:hover,
.product-tab__header:hover {
  color: #E9B246 !important;
}

.faq__icon,
.product-tab__icon {
  color: #E9B246 !important;
}

.faq__item:hover .faq__icon,
.product-tab:hover .product-tab__icon {
  color: #E9B246 !important;
}

[data-color-scheme="brown"] .faq__question,
[data-color-scheme="brown"] .product-tab__header {
  color: #FFFFFF !important;
}

[data-color-scheme="brown"] .faq__question:hover,
[data-color-scheme="brown"] .product-tab__header:hover {
  color: #E9B246 !important;
}

/* 11. Sliders & Pagination */
.hero-slider__dot,
.testimonials__dot,
.product-gallery__dot,
.philosophy-dot {
  background-color: #CCCCCC !important;
  opacity: 1 !important;
}

.hero-slider__dot.active,
.testimonials__dot.active,
.product-gallery__dot.active,
.philosophy-dot.active {
  background-color: #E9B246 !important;
}

.product-slider__arrow,
.product-gallery__arrow,
.philosophy-control-btn,
.announcement-bar__nav-btn {
  color: #1D0D07 !important;
  background-color: transparent !important;
  border: 1px solid #1D0D07 !important;
  transition: all 300ms ease !important;
}

.product-slider__arrow:hover,
.product-gallery__arrow:hover,
.philosophy-control-btn:hover,
.announcement-bar__nav-btn:hover {
  color: #E9B246 !important;
  border-color: #E9B246 !important;
}

[data-color-scheme="brown"] .product-slider__arrow,
[data-color-scheme="brown"] .product-gallery__arrow,
[data-color-scheme="brown"] .philosophy-control-btn,
[data-color-scheme="brown"] .announcement-bar__nav-btn {
  color: #FFFFFF !important;
  border-color: #FFFFFF !important;
}

[data-color-scheme="brown"] .product-slider__arrow:hover,
[data-color-scheme="brown"] .product-gallery__arrow:hover,
[data-color-scheme="brown"] .philosophy-control-btn:hover,
[data-color-scheme="brown"] .announcement-bar__nav-btn:hover {
  color: #E9B246 !important;
  border-color: #E9B246 !important;
}

/* 12. Icons */
svg:not(.site-logo-cursive):not(.philosophy-card__logo-svg),
.icon {
  color: #1D0D07;
}

a:hover svg:not(.site-logo-cursive):not(.philosophy-card__logo-svg),
button:hover svg:not(.site-logo-cursive):not(.philosophy-card__logo-svg),
.icon:hover {
  color: #E9B246 !important;
}

[data-color-scheme="brown"] svg:not(.site-logo-cursive):not(.philosophy-card__logo-svg),
[data-color-scheme="brown"] .icon {
  color: #FFFFFF !important;
}

[data-color-scheme="brown"] a:hover svg:not(.site-logo-cursive):not(.philosophy-card__logo-svg),
[data-color-scheme="brown"] button:hover svg:not(.site-logo-cursive):not(.philosophy-card__logo-svg),
[data-color-scheme="brown"] .icon:hover {
  color: #E9B246 !important;
}

/* 13. Disable generic shadow reset but allow text shadow overrides */
.button,
button,
a,
input,
select,
textarea {
  outline: none !important;
}

/* 14. Highsky featured benefits overrides */
.featured-benefits__title {
  color: #E9B246 !important;
}
.featured-benefits__svg-wrapper svg,
.featured-benefits__svg-wrapper svg path,
.featured-benefits__svg-wrapper svg ellipse,
.featured-benefits__svg-wrapper svg circle,
.featured-benefits__svg-wrapper svg rect,
.featured-benefits__svg-wrapper svg polyline,
.featured-benefits__svg-wrapper svg line {
  color: #E9B246 !important;
  stroke: #E9B246 !important;
}

/* Explicit overrides for the cart page to ensure visibility of text/elements */
.main-cart,
.main-cart .section-header__title,
.main-cart h1,
.main-cart h2,
.main-cart h3,
.main-cart p,
.main-cart span,
.main-cart label {
  color: #1D0D07 !important;
}

[data-color-scheme="brown"] .main-cart,
[data-color-scheme="brown"] .main-cart * {
  --color-text: #1D0D07;
  --color-heading: #1D0D07;
}

.main-cart .cart-table__title {
  color: #1D0D07 !important;
}
.main-cart .cart-table__title:hover {
  color: #E9B246 !important;
}
.main-cart .cart-table__header {
  color: #666666 !important;
}
.main-cart .cart-table__header span {
  color: #666666 !important;
}
.main-cart .cart-table__options {
  color: #666666 !important;
}
.main-cart .cart-table__options span {
  color: #666666 !important;
}
.main-cart .cart-summary__label,
.main-cart .cart-summary__value {
  color: #1D0D07 !important;
}
.main-cart .cart-summary__note {
  color: #666666 !important;
}
.main-cart .cart-table__final-price {
  color: #1D0D07 !important;
}
.main-cart .quantity-selector__btn {
  color: #1D0D07 !important;
}
.main-cart .quantity-selector__input {
  color: #1D0D07 !important;
}

/* Explicit overrides for the product recommendations page to ensure visibility */
.product-recommendations,
.product-recommendations .section-header__title,
.product-recommendations h2,
.product-recommendations h3,
.product-recommendations p,
.product-recommendations a:not(.button) {
  color: #1D0D07 !important;
}

/* Ensure product card title link is visible and hover styling is correct */
.product-recommendations .product-card__title a,
[data-color-scheme="brown"] .product-recommendations .product-card__title a {
  color: #1D0D07 !important;
}
.product-recommendations .product-card__title a:hover,
[data-color-scheme="brown"] .product-recommendations .product-card__title a:hover {
  color: #E9B246 !important;
}

/* Ensure badges and tags keep their correct visibility */
.product-recommendations .badge,
.product-recommendations .badge--sale,
.product-recommendations .badge--sold,
.product-recommendations .pcard-tag,
[data-color-scheme="brown"] .product-recommendations .badge,
[data-color-scheme="brown"] .product-recommendations .badge--sale,
[data-color-scheme="brown"] .product-recommendations .badge--sold,
[data-color-scheme="brown"] .product-recommendations .pcard-tag {
  background-color: #E9B246 !important;
  color: #1D0D07 !important;
}

/* Ensure price discount tag remains readable on its dark background */
.product-recommendations .price-discount-tag,
[data-color-scheme="brown"] .product-recommendations .price-discount-tag {
  background-color: #1D0D07 !important;
  color: #F0DBC4 !important;
}

/* Ensure regular and sale prices are visible on the white section background */
.product-recommendations .product-card__price,
.product-recommendations .product-card__price .price-item,
.product-recommendations .product-card__price .price__regular,
[data-color-scheme="brown"] .product-recommendations .product-card__price,
[data-color-scheme="brown"] .product-recommendations .product-card__price .price-item,
[data-color-scheme="brown"] .product-recommendations .product-card__price .price__regular {
  color: #1D0D07 !important;
}
.product-recommendations .product-card__price .price-item.price-item--sale,
.product-recommendations .product-card__price .price__sale,
[data-color-scheme="brown"] .product-recommendations .product-card__price .price-item.price-item--sale,
[data-color-scheme="brown"] .product-recommendations .product-card__price .price__sale {
  color: #E9B246 !important;
}

/* Sizing overrides for recommendations with exactly 2 products */
@media (min-width: 990px) {
  .product-grid--recommendations.product-grid--columns-2 {
    grid-template-columns: repeat(2, minmax(0, 280px)) !important;
  }
}

/* Newsletter button styling */
.newsletter__btn {
  background-color: #E9B246 !important;
  color: #1D0D07 !important;
  border: 2px solid #E9B246 !important;
  transition: all 0.3s ease !important;
}
.newsletter__btn:hover {
  background-color: #1D0D07 !important;
  color: #FFFFFF !important;
  border-color: #1D0D07 !important;
}

/* Header hover menu link overrides */
.site-nav__link:hover,
.dropdown-menu__link:hover,
.mega-menu__title:hover,
.mega-menu__sublink:hover,
.mobile-nav__link:hover,
.mobile-nav__summary:hover {
  color: #E9B246 !important;
  opacity: 1 !important;
}

.site-nav__link::after {
  background-color: #E9B246 !important;
}

/* Header shine overlay animation */
.header-shine-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.header-shine-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
  animation: headerShine 10s infinite ease-in-out;
}

@keyframes headerShine {
  0% {
    left: -150%;
  }
  15% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}

/* ==========================================================================
   GLOBAL BUTTON HOVER OVERRIDES (#20100A background, white text)
   ========================================================================== */

/* Ultra-specific hover style for ALL buttons across the site to guarantee #20100A background and white text */
html body .button:hover,
html body .btn:hover,
html body button:hover,
html body input[type="submit"]:hover,
html body input[type="button"]:hover,
html body a.button:hover,
html body a.btn:hover,
html body .button--primary:hover,
html body .button--secondary:hover,
html body .button--outline:hover,
html body .button--atc:hover,
html body .js-quick-add-btn:hover,
html body .product-card__atc-btn:hover,
html body .custom-contact__button:hover,
html body .bgg-card__btn:hover,
html body .ws-hero__cta:hover,
html body .ws-whatsapp-btn:hover,
html body .ws-submit-btn:hover,
html body .wp-form__button:hover,
html body .product-form__cart-btn:hover,
html body .checkout-button:hover,
html body .cart__checkout-button:hover,
html body .drawer__checkout-btn:hover,
html body .shopify-payment-button__button:hover,
html body .shopify-payment-button__button--unbranded:hover,
html body .quick-add-size-btn:hover,
html body .quantity-selector__btn:hover,
html body .newsletter__btn:hover,
html body #CartDiscountApply:hover,
html body #DrawerDiscountApply:hover,
html body .np-newsletter__button:hover,
html body [data-color-scheme] .np-newsletter__button:hover,
html body [data-color-scheme] .button:hover,
html body [data-color-scheme] .button--primary:hover,
html body [data-color-scheme] .button--secondary:hover,
html body [data-color-scheme] .button--outline:hover,
html body [data-color-scheme] .button--atc:hover,
html body [data-color-scheme] .product-form__cart-btn:hover,
html body [data-color-scheme] .button:not(.button--secondary):not(.button--outline):hover,
html body [data-color-scheme] .cart-summary__actions .button:not(.button--secondary):not(.button--outline):hover,
html body [data-color-scheme] .drawer__actions .button:not(.button--secondary):not(.button--outline):hover,
html body footer .button:hover,
html body .announcement-bar .button:hover,
html body .hero-slider__buttons .button:hover,
html body .hero-slider__buttons .button--primary:hover,
html body .hero-slider__buttons .button--secondary:hover,
html body .cart-summary__actions .button:hover,
html body .cart-summary__actions .button--primary:hover,
html body .cart-summary__checkout-btn:hover,
html body .drawer__actions .button:hover,
html body .drawer__checkout-btn:hover {
  background-color: #20100A !important;
  color: #ffffff !important;
  border-color: #20100A !important;
}

/* Also apply white color to nested text elements (spans, strong tags, text labels, etc.) inside any hovered button */
html body .button:hover *,
html body .btn:hover *,
html body button:hover *,
html body a.button:hover *,
html body a.btn:hover *,
html body input[type="submit"]:hover *,
html body input[type="button"]:hover * {
  color: #ffffff !important;
}

/* Ensure the sliding overlay background (::before pseudo-elements) on buttons becomes #20100A on hover */
html body .button:hover::before,
html body .button--primary:hover::before,
html body .button--secondary:hover::before,
html body .button--outline:hover::before,
html body .button--atc:hover::before,
html body .js-quick-add-btn:hover::before,
html body .product-card__atc-btn:hover::before,
html body .checkout-button:hover::before,
html body .cart__checkout-button:hover::before,
html body .drawer__checkout-btn:hover::before,
html body .wp-form__button:hover::before,
html body .newsletter__btn:hover::before,
html body #CartDiscountApply:hover::before,
html body #DrawerDiscountApply:hover::before,
html body .np-newsletter__button:hover::before,
html body [data-color-scheme] .np-newsletter__button:hover::before {
  background-color: #20100A !important;
  transform: translateY(0) !important;
}

/* Specific hover override for CRAFTED AT ALTITUDE / HIGHSKY BREW ROASTERS button (white background, brown text) */
html body .brand-story-luxury__btn:hover,
html body [data-color-scheme] .brand-story-luxury__btn:hover,
html body [data-color-scheme] a.button--primary.brand-story-luxury__btn:hover,
html body [data-color-scheme] a.button.brand-story-luxury__btn:hover {
  background-color: #ffffff !important;
  color: #1D0D07 !important;
  border-color: #ffffff !important;
}
html body .brand-story-luxury__btn:hover::before,
html body [data-color-scheme] .brand-story-luxury__btn:hover::before,
html body [data-color-scheme] a.button--primary.brand-story-luxury__btn:hover::before {
  background-color: #ffffff !important;
  transform: translateY(0) !important;
}
html body .brand-story-luxury__btn:hover *,
html body [data-color-scheme] .brand-story-luxury__btn:hover * {
  color: #1D0D07 !important;
}

/* Explicit visibility overrides for the cart table title and cart drawer item title */
html body [data-color-scheme] .main-cart .cart-table__product .cart-table__details a.cart-table__title,
html body .main-cart .cart-table__product .cart-table__details a.cart-table__title,
html body [data-color-scheme] .cart-drawer .cart-item .cart-item__details a.cart-item__title,
html body .cart-drawer .cart-item .cart-item__details a.cart-item__title,
html body [data-color-scheme] .main-cart .cart-table__title,
html body .main-cart .cart-table__title,
html body [data-color-scheme] .cart-item__title,
html body .cart-item__title {
  color: #1D0D07 !important;
}
html body [data-color-scheme] .main-cart .cart-table__product .cart-table__details a.cart-table__title:hover,
html body .main-cart .cart-table__product .cart-table__details a.cart-table__title:hover,
html body [data-color-scheme] .cart-drawer .cart-item .cart-item__details a.cart-item__title:hover,
html body .cart-drawer .cart-item .cart-item__details a.cart-item__title:hover,
html body [data-color-scheme] .main-cart .cart-table__title:hover,
html body .main-cart .cart-table__title:hover,
html body [data-color-scheme] .cart-item__title:hover,
html body .cart-item__title:hover {
  color: #E9B246 !important;
}

/* Make location and email contact icons in the footer match the gold phone icon color */
.site-footer svg.contact-icon,
.site-footer .contact-icon {
  color: #E9B246 !important;
}

/* Coupon Code Accordion Styling: Desktop-first styles */
.cart-discount-toggle-icon {
  display: none !important;
}
.cart-discount-toggle {
  cursor: default !important;
  pointer-events: none !important;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  outline: none !important;
  box-shadow: none !important;
  text-align: left !important;
  min-height: unset !important;
  -webkit-tap-highlight-color: transparent !important;
}
.cart-discount-toggle::before,
.cart-discount-toggle::after {
  display: none !important;
}
.cart-discount-toggle:hover,
.cart-discount-toggle:focus,
.cart-discount-toggle:active,
html body .cart-discount-toggle:hover,
html body [data-color-scheme] .cart-discount-toggle:hover {
  background: transparent !important;
  background-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
}
.cart-discount-toggle span {
  color: #1D0D07 !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
}
.cart-discount-toggle:hover span,
.cart-discount-toggle:focus span,
.cart-discount-toggle:active span,
html body .cart-discount-toggle:hover span,
html body [data-color-scheme] .cart-discount-toggle:hover span {
  color: #1D0D07 !important;
  background: transparent !important;
  background-color: transparent !important;
}
.cart-discount-content {
  display: block;
}

/* Collapsible Coupon Code Accordion for Mobile viewports */
@media (max-width: 767px) {
  .cart-discount-toggle-icon {
    display: flex !important;
  }
  .cart-discount-toggle {
    cursor: pointer !important;
    pointer-events: auto !important;
  }
  .cart-discount-content {
    display: none !important; /* hidden by default on mobile */
  }
  /* Open state when collapsed container has .is-open class */
  .cart-discount-code.is-open .cart-discount-content {
    display: block !important;
  }
}

/* ==========================================================================
   INTERACTIVE SEARCH OVERLAY & SEARCH PAGE STYLES (DESKTOP & MOBILE)
   ========================================================================== */

/* Full-Screen Search Overlay Modal */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.search-overlay.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.search-overlay__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(29, 13, 7, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.search-overlay__content {
  position: relative;
  z-index: 2;
  padding-top: 50px;
  max-width: 720px;
  margin: 0 auto;
}

.search-overlay__panel {
  background: #FAF6F0;
  border: 1.5px solid #1D0D07;
  border-radius: 24px;
  padding: 28px 24px 24px 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  transform: translateY(-20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-overlay.active .search-overlay__panel {
  transform: translateY(0);
}

.search-overlay__header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.search-overlay__form {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.search-overlay__icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  color: #1D0D07;
  opacity: 0.65;
  pointer-events: none;
  z-index: 2;
}

.search-overlay__input {
  width: 100%;
  height: 54px;
  padding: 0 110px 0 52px;
  border: 2px solid #1D0D07;
  border-radius: 30px;
  background-color: #FFFFFF !important;
  color: #1D0D07 !important;
  font-size: 16px !important; /* Prevents iOS mobile auto-zoom */
  font-weight: 500;
  outline: none;
  box-sizing: border-box;
  transition: all 0.25s ease;
}

.search-overlay__input:focus {
  border-color: #E9B246;
  box-shadow: 0 0 0 3px rgba(233, 178, 70, 0.35);
}

.search-overlay__submit-btn {
  position: absolute;
  right: 6px;
  top: 6px;
  bottom: 6px;
  background: #E9B246 !important;
  color: #1D0D07 !important;
  border: none;
  border-radius: 24px;
  padding: 0 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  z-index: 3;
}

.search-overlay__submit-btn span {
  color: inherit !important;
  transition: color 0.25s ease;
}

.search-overlay__submit-btn:hover {
  background: #1D0D07 !important;
  color: #E9B246 !important;
  box-shadow: 0 4px 12px rgba(29, 13, 7, 0.25);
}

.search-overlay__submit-btn:hover span {
  color: #E9B246 !important;
}

.search-overlay__close-btn {
  position: relative;
  background: #1D0D07 !important;
  border: none;
  color: #FFFFFF !important;
  cursor: pointer;
  padding: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.search-overlay__close-btn .icon-close,
.search-overlay__close-btn svg,
.search-overlay__close-btn line {
  width: 16px;
  height: 16px;
  stroke: #FFFFFF !important;
  stroke-width: 2.5;
  display: block;
  transition: stroke 0.25s ease;
}

.search-overlay__close-btn:hover {
  background: #E9B246 !important;
  color: #1D0D07 !important;
  transform: rotate(90deg);
  box-shadow: 0 4px 14px rgba(233, 178, 70, 0.4);
}

.search-overlay__close-btn:hover .icon-close,
.search-overlay__close-btn:hover svg,
.search-overlay__close-btn:hover line {
  stroke: #1D0D07 !important;
}

.search-overlay__quick-links {
  margin-top: 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.search-overlay__quick-title {
  font-size: 12px;
  font-weight: 700;
  color: #1D0D07;
  opacity: 0.65;
  letter-spacing: 0.05em;
  margin-right: 4px;
}

.search-tag,
.search-page-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(29, 13, 7, 0.07);
  color: #1D0D07 !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.search-tag:hover,
.search-page-tag:hover {
  background: #1D0D07 !important;
  color: #E9B246 !important;
  transform: translateY(-1px);
}

/* Mobile Navigation Drawer Search Input */
.mobile-drawer-search {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(29, 13, 7, 0.08);
}

.mobile-drawer-search__form {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.mobile-drawer-search__icon {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 18px;
  color: #1D0D07;
  opacity: 0.6;
  pointer-events: none;
}

.mobile-drawer-search__input {
  width: 100%;
  height: 44px;
  padding: 0 16px 0 42px;
  border: 1.5px solid #1D0D07;
  border-radius: 22px;
  background: #FFFFFF;
  font-size: 15px;
  color: #1D0D07;
  outline: none;
}

/* Standalone /search Page Styling */
.main-search {
  background-color: #FAF6F0;
  min-height: 70vh;
}

.search-page-title {
  font-size: 36px;
  font-weight: 800;
  color: #1D0D07;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.search-page-bar-container {
  max-width: 680px;
  margin: 0 auto 36px auto;
}

.search-page-form {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.search-page-form__icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  color: #1D0D07;
  opacity: 0.65;
  pointer-events: none;
  z-index: 2;
}

.search-page-form__input {
  width: 100%;
  height: 56px;
  padding: 0 145px 0 54px;
  border: 2px solid #1D0D07;
  border-radius: 30px;
  background-color: #FFFFFF !important;
  color: #1D0D07 !important;
  font-size: 16px !important; /* Prevents mobile iOS zoom */
  font-weight: 500;
  outline: none;
  box-shadow: 0 6px 20px rgba(29, 13, 7, 0.06);
  transition: all 0.25s ease;
}

.search-page-form__input:focus {
  border-color: #E9B246;
  box-shadow: 0 0 0 4px rgba(233, 178, 70, 0.3);
}

.search-page-form__btn {
  position: absolute;
  right: 6px;
  top: 6px;
  bottom: 6px;
  background: #E9B246 !important;
  color: #1D0D07 !important;
  border: none;
  border-radius: 24px;
  padding: 0 26px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 3;
}

.search-page-form__btn:hover {
  background: #1D0D07 !important;
  color: #E9B246 !important;
}

.search-page-quick-tags {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.search-page-quick-label {
  font-size: 12px;
  font-weight: 700;
  color: #1D0D07;
  opacity: 0.65;
  letter-spacing: 0.05em;
}

.search-results-count {
  font-size: 16px;
  color: #4A4A4A;
  margin-top: 12px;
}

.search-empty-card {
  background: #FFFFFF;
  border: 1.5px solid rgba(29, 13, 7, 0.12);
  border-radius: 20px;
  padding: 48px 24px;
  max-width: 540px;
  margin: 40px auto 0 auto;
}

.search-empty-icon {
  font-size: 44px;
  margin-bottom: 12px;
}

.search-empty-title {
  font-size: 22px;
  font-weight: 700;
  color: #1D0D07;
  margin-bottom: 8px;
}

.search-empty-desc {
  font-size: 15px;
  color: #666666;
  margin-bottom: 24px;
}

.search-empty-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* Mobile Media Queries for Search Components */
@media (max-width: 768px) {
  .search-overlay__content {
    padding-top: 16px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .search-overlay__panel {
    padding: 20px 16px 16px 16px;
    border-radius: 18px;
  }
  .search-overlay__header {
    gap: 8px;
  }
  .search-overlay__input {
    height: 48px;
    padding-right: 85px;
    padding-left: 40px;
    font-size: 14px !important;
  }
  .search-overlay__icon {
    left: 12px;
    width: 18px;
    height: 18px;
  }
  .search-overlay__submit-btn {
    right: 4px;
    top: 4px;
    bottom: 4px;
    padding: 0 12px;
    font-size: 11px;
    border-radius: 20px;
  }
  .search-overlay__close-btn {
    width: 34px;
    height: 34px;
  }
  .search-overlay__close-btn .icon-close {
    width: 14px;
    height: 14px;
  }

  .search-page-title {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .search-page-form__input {
    height: 50px;
    padding-right: 110px;
    padding-left: 44px;
    font-size: 15px !important;
  }
  .search-page-form__icon {
    left: 14px;
    width: 18px;
    height: 18px;
  }
  .search-page-form__btn {
    right: 4px;
    top: 4px;
    bottom: 4px;
    padding: 0 16px;
    font-size: 12px;
    border-radius: 22px;
  }
  .search-page-quick-tags {
    gap: 6px;
  }
  .search-tag,
  .search-page-tag {
    padding: 5px 12px;
    font-size: 12px;
  }
}

/* Ensure View Cart Button is prominently visible in Cart Drawer Web View (desktop) */
@media (min-width: 769px) {
  .drawer__actions .drawer__view-cart-btn,
  .drawer__actions a[href="/cart"],
  .drawer__actions .button--secondary {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    background-color: #1D0D07 !important;
    color: #ffffff !important;
    border: 2px solid #1D0D07 !important;
    padding: 14px 32px !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 0.12em !important;
    min-height: 45px !important;
    border-radius: 50px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
  }

  .drawer__actions .drawer__view-cart-btn:hover,
  .drawer__actions a[href="/cart"]:hover,
  .drawer__actions .button--secondary:hover {
    background-color: #E9B246 !important;
    color: #1D0D07 !important;
    border-color: #E9B246 !important;
    transform: translateY(-2px);
  }
}

/* ==========================================================================
   FORCE REMOVE ALL SQUARE BACKGROUNDS ON HEADER CART & ACTION BUTTONS
   ========================================================================== */
.site-header .header-cart-btn,
.site-header .header-mobile-cart,
.site-header .header-search-btn,
.site-header .header-search-trigger,
.site-header .header-account-btn,
.site-header .header-mobile-search,
.site-header .header-mobile-account,
.site-header .header-cart-icon-wrapper,
.site-header button.js-cart-drawer-open,
.site-header__actions-wrapper button,
.site-header__actions-wrapper a,
.site-header__mobile-actions button,
.site-header__mobile-actions a {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
}

.site-header .header-cart-btn:hover,
.site-header .header-mobile-cart:hover,
.site-header .header-search-btn:hover,
.site-header .header-search-trigger:hover,
.site-header .header-account-btn:hover,
.site-header button.js-cart-drawer-open:hover,
.site-header__actions-wrapper button:hover,
.site-header__actions-wrapper a:hover {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

