/** Shopify CDN: Minification failed

Line 119:0 All "@import" rules must come first

**/
/* ============================================================
   BUYITONLINE PREMIUM — Product Details Info Panel
   ALL rules are scoped to .product__info-container
   to prevent any CSS leaking to other pages/components.
   ============================================================ */

/* ── Global Fade-in to prevent FOUC (1 second clutter) ───────── */
html.js body {
  animation: premiumFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
}

@keyframes premiumFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* ── Global Card Actions (Wishlist & ATC) ──────────────────── */
.gl-card-actions {
  display: flex !important;
  align-items: center;
  gap: 0.8rem;
  margin-top: auto !important;
  padding: 0.8rem 0 0.4rem 0;
  width: 100%;
  box-sizing: border-box;
  flex-shrink: 0;
  z-index: 99 !important;
  position: relative !important;
  pointer-events: auto !important;
}
.gl-card-actions product-form,
.gl-card-actions product-form form {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
}
.gl-card-actions__atc {
  flex: 1 1 auto;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.4rem;
  min-height: 4.2rem;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
  background-color: #fff;
  border: 1.5px solid #000;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.35s ease, background-color 0.35s ease, transform 0.25s ease;
  white-space: nowrap;
  text-decoration: none;
  font-family: inherit;
  line-height: 1;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.gl-card-actions__atc::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #000;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}
.gl-card-actions__atc:hover::before { transform: scaleX(1); }
.gl-card-actions__atc:hover { color: #fff; }
.gl-card-actions__atc:active { transform: scale(0.97); }
.gl-card-actions__atc[disabled] { opacity: 0.45; cursor: not-allowed; pointer-events: none; }
.gl-wishlist-btn {
  flex-shrink: 0;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 4.2rem;
  height: 4.2rem;
  padding: 0;
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 50%;
  cursor: pointer;
  transition: border-color 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}
.gl-wishlist-btn:hover {
  border-color: #e53935;
  box-shadow: 0 0 0 3px rgba(229,57,53,0.12);
  transform: scale(1.1);
}
.gl-wishlist-btn svg {
  width: 1.8rem; height: 1.8rem;
  stroke: #e53935; stroke-width: 2; fill: transparent;
  pointer-events: none;
  transition: fill 0.3s ease;
}
.gl-wishlist-btn.wishlisted svg { fill: #e53935 !important; stroke: #e53935 !important; }

@media screen and (max-width: 749px) {
  .gl-card-actions { gap: 0.5rem; }
  .gl-card-actions__atc { padding: 0.8rem 0.5rem; font-size: 1rem; min-height: 3.6rem; }
  .gl-wishlist-btn { width: 3.6rem; height: 3.6rem; }
  .gl-wishlist-btn svg { width: 1.5rem; height: 1.5rem; }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ── 1. Fix the CSS variable zeroing from gully-product-info.css ── */
/* gully-product-info.css sets --buttons-radius: 0px which makes everything square.
   We override those variables HERE so our rounded styles work. */
.product__info-wrapper,
.product__info-container,
.product__info-container product-form,
.product__info-container .product-form__input {
  --buttons-radius: 12px;
  --buttons-radius-outset: 14px;
  --inputs-radius: 12px;
  --inputs-radius-outset: 14px;
  --variant-pills-radius: 12px;
  --buttons-border-offset: 2px;
}

/* ── 2. Font ───────────────────────────────────────────────── */
.product__info-container {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.product__info-container * {
  font-family: inherit;
}

/* ── 1. Color Palette & Roots ────────────────────────────────── */

/* ── Smooth Scrolling In/Out Animations (Override Dawn) ────── */
@media screen and (prefers-reduced-motion: no-preference) {
  /* IN Animation (Runs on load and when entering screen) */
  .scroll-trigger:not(.scroll-trigger--offscreen).animate--slide-in {
    animation: premiumSlideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards !important;
    animation-delay: calc(var(--animation-order, 0) * 80ms) !important;
    opacity: 0; /* Prevents flashing before delay */
  }
  
  /* OUT Animation (Runs when leaving screen) */
  .scroll-trigger.scroll-trigger--offscreen.animate--slide-in {
    animation: premiumSlideOut 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards !important;
  }
}

@keyframes premiumSlideIn {
  0% { opacity: 0; transform: translateY(3rem); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes premiumSlideOut {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(3rem); }
}

/* ── 3. Product Title ──────────────────────────────────────── */
.product__info-container .product__title h1 {
  font-size: 28px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  letter-spacing: -0.2px !important;
  color: #0f172a !important;
  margin-bottom: 4px !important;
}

/* ── 4. Price ──────────────────────────────────────────────── */
.product__info-container .price-item--sale,
.product__info-container .price-item--regular {
  color: #040072 !important;
  font-weight: 700 !important;
  font-size: 26px !important;
}

.product__info-container .price--on-sale .price-item--regular {
  color: #94a3b8 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  text-decoration: line-through !important;
}

/* Discount percentage text */
.product__info-container .price__badge-sale,
.product__info-container .price__sale-badge {
  color: #040072 !important;
  font-weight: 600 !important;
  font-size: 13px !important;
}

/* ── 5. Sale / Sold-Out Badge ─ scoped to product page ────── */
.product__info-container .badge {
  border-radius: 6px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 3px 9px !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

.product__info-container .badge--sale,
.product__info-container .price__badge-sale {
  background: #e0e7ff !important;
  color: #040072 !important;
}

/* ── 6. Vendor / Category label ────────────────────────────── */
.product__info-container .product__text {
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: #64748b !important;
}

/* ── 7. Shipping / Inventory text ───────────────────────────── */
.product__info-container .product__inventory,
.product__info-container .gully-shipping-info {
  font-size: 13px !important;
  color: #64748b !important;
}

/* ── 8. Variant Picker Labels ───────────────────────────────── */
.product__info-container .form__label,
.product__info-container .product-form__input .form__label {
  font-weight: 700 !important;
  font-size: 14px !important;
  color: #374151 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

/* ── 9. Variant Pills (radio buttons) ───────────────────────── */
.product__info-container .product-form__input input[type="radio"] + label {
  border-radius: 10px !important;
  border: 1.5px solid #e2e8f0 !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  color: #374151 !important;
  background-color: #ffffff !important;
  transition: all 0.15s ease !important;
}

.product__info-container .product-form__input input[type="radio"]:checked + label {
  border-color: #2563eb !important;
  background-color: #eff6ff !important;
  color: #2563eb !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12) !important;
}

.product__info-container .product-form__input input[type="radio"]:not(:checked) + label:hover {
  border-color: #94a3b8 !important;
}

/* Swatch-style variant labels */
.product__info-container .swatch-input__input + .swatch-input__label {
  border-radius: 10px !important;
  border: 2px solid #e2e8f0 !important;
}

.product__info-container .swatch-input__input:checked + .swatch-input__label {
  border-color: #2563eb !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12) !important;
}

/* ── 10. Quantity Selector ────────────────────────────────────── */
.product__info-container .quantity {
  border-radius: 12px !important;
  overflow: hidden !important;
  border: 1.5px solid #e2e8f0 !important;
  background: #ffffff !important;
  box-shadow: none !important;
}

.product__info-container .quantity__button {
  background: transparent !important;
  color: #374151 !important;
  border-radius: 0 !important;
  font-size: 18px !important;
  transition: background 0.15s ease, color 0.15s ease !important;
}

.product__info-container .quantity__button:hover {
  background: #f1f5f9 !important;
  color: #2563eb !important;
}

.product__info-container .quantity__input {
  font-weight: 600 !important;
  font-size: 15px !important;
  color: #0f172a !important;
  background: transparent !important;
  border: none !important;
  border-left: 1.5px solid #e2e8f0 !important;
  border-right: 1.5px solid #e2e8f0 !important;
}

/* ── 11. ADD TO CART button ───────────────────────────────────── */
.product__info-container .product-form__submit {
  /* Removed specific backgrounds so it uses the global button styles below */
  border: none !important;
  border-radius: 12px !important;
  min-height: 52px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  /* Fix border-radius override from Dawn pseudo-element outlines */
  clip-path: none !important;
}

.product__info-container .product-form__submit:hover:not([disabled]) {
  background: #040072 !important; /* KILL THE BLUE GRADIENT OVERRIDE */
  color: #ffffff !important;
  opacity: 1 !important;
  filter: none !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 20px rgba(4, 0, 114, 0.25) !important;
}

.product__info-container .product-form__submit:active:not([disabled]) {
  transform: translateY(0) !important;
}

.product__info-container .product-form__submit[disabled],
.product__info-container .product-form__submit[aria-disabled="true"] {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}

/* Fix Dawn's ::before/::after that add rounded-outline effect and can bleed */
.product__info-container .product-form__submit::before,
.product__info-container .product-form__submit::after,
.button::after,
.btn::after,
.shopify-payment-button__button::after,
.customer button::after {
  border-radius: inherit !important;
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.button:hover::after,
.btn:hover::after,
.product-form__submit:hover::after,
.shopify-payment-button__button:hover::after {
  box-shadow: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  display: none !important;
}

.button,
.btn,
.product-form__submit {
  border: none !important;
  background: #040072 !important;
  color: #ffffff !important;
  box-shadow: none !important;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s ease !important;
}

.button:hover,
.btn:hover,
.product-form__submit:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 20px rgba(4, 0, 114, 0.25) !important;
  background: #040072 !important;
  color: #ffffff !important;
  opacity: 1 !important;
  filter: none !important;
}

.button:active,
.btn:active,
.product-form__submit:active {
  transform: translateY(0) !important;
  box-shadow: 0 4px 10px rgba(4, 0, 114, 0.15) !important;
}

/* Add hover effect to Buy It Now button with standard blue color */
.shopify-payment-button__button,
.shopify-payment-button__button--unbranded {
  background: #2563eb !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s ease !important;
}

.shopify-payment-button__button:hover,
.shopify-payment-button__button--unbranded:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25) !important;
  background: #2563eb !important;
  color: #ffffff !important;
  opacity: 1 !important;
  filter: none !important;
}

.shopify-payment-button__button:active,
.shopify-payment-button__button--unbranded:active {
  transform: translateY(0) !important;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.15) !important;
}

/* ── 12. BUY NOW — side by side with Add to Cart ─────────────── */
.product__info-container .product-form__buttons {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 16px !important;
  align-items: stretch !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-top: 16px !important;
  margin-bottom: 24px !important;
}

/* Make product-form (which wraps ATC button) fill the grid cell */
.product__info-container .product-form__buttons > product-form,
.product__info-container .product-form__buttons > product-form > form {
  display: contents !important;
}

/* ATC button in the grid */
.product__info-container .product-form__buttons .product-form__submit {
  width: 100% !important;
  grid-column: 1 / -1 !important;
}

/* Shopify payment button (BUY NOW) in grid - hidden since it's removed */
.product__info-container .product-form__buttons .shopify-payment-button {
  display: none !important;
}

.product__info-container .shopify-payment-button__button,
.product__info-container .shopify-payment-button__button--unbranded {
  border-radius: 12px !important;
  min-height: 52px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}

/* ── 13. Product Description ─────────────────────────────────── */
.product__info-container .product__description {
  font-size: 14px !important;
  line-height: 1.65 !important;
  color: #475569 !important;
}

.product__info-container .product__description p {
  margin-bottom: 8px !important;
}

/* ── 14. Accordion / Tabs ────────────────────────────────────── */
/* Target every possible wrapper to forcefully kill black borders */
.product__info-container .accordion,
.product__info-container .product__accordion,
.product__info-container .product__accordion details,
.product__info-container .product__accordion summary,
.product__info-container .gully-acc,
.product__info-container .gully-acc summary,
.accordion details,
.accordion summary {
  border: none !important;
  outline: none !important;
}

.product__info-container .accordion,
.product__info-container .product__accordion,
.product__info-container .gully-acc {
  margin-top: 0 !important;
  margin-bottom: 12px !important;
  background-color: #f8fafc !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  box-shadow: 0 2px 5px rgba(0,0,0,0.02) !important;
  transition: all 0.3s ease !important;
  border: none !important;
}

.product__info-container .accordion:hover,
.product__info-container .gully-acc:hover {
  background-color: #f1f5f9 !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06) !important;
}

.product__info-container .accordion summary,
.product__info-container .gully-acc summary {
  padding: 18px 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  border: none !important;
  cursor: pointer !important;
  list-style: none !important;
}

.product__info-container .gully-acc summary::-webkit-details-marker {
  display: none !important;
}

/* Custom animated caret for .gully-acc */
.product__info-container .gully-acc summary::after {
  content: '▼';
  font-size: 12px;
  color: #64748b;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.product__info-container .gully-acc[open] summary::after {
  transform: rotate(180deg);
  color: #0f172a;
}

.product__info-container .accordion__title,
.product__info-container .gully-acc summary {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  letter-spacing: 0.02em !important;
  margin: 0 !important;
}

.product__info-container .accordion .icon-caret {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  width: 16px !important;
  height: 16px !important;
  color: #475569 !important;
}

.product__info-container .accordion details[open] > summary .icon-caret {
  transform: rotate(180deg) !important;
  color: #0f172a !important;
}

.product__info-container .accordion__content,
.product__info-container .gully-acc__body {
  font-size: 14px !important;
  color: #475569 !important;
  line-height: 1.65 !important;
  padding: 0 20px 20px 20px !important;
  animation: slideDownAccordion 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
  opacity: 0;
  transform: translateY(-8px);
}

@keyframes slideDownAccordion {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── 15. Delivery Details Widget ──────────────────────────────── */
.product__info-container .gully-delivery {
  margin: 20px 0 !important;
}
.product__info-container .gully-delivery__title {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin-bottom: 12px !important;
}
.product__info-container .gully-delivery__row {
  border: none !important;
  background: #f8fafc !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  box-shadow: 0 2px 5px rgba(0,0,0,0.02) !important;
  display: flex !important;
}
.product__info-container .gully-delivery__input {
  background: transparent !important;
  padding: 14px 18px !important;
  font-size: 14px !important;
  border: none !important;
}
.product__info-container .gully-delivery__btn {
  background: #0f172a !important;
  color: #fff !important;
  border-radius: 10px !important;
  margin: 5px !important;
  padding: 10px 20px !important;
  font-size: 13px !important;
  transition: all 0.2s ease !important;
}
.product__info-container .gully-delivery__btn:hover {
  background: #2563eb !important;
  transform: translateY(-1px) !important;
}

/* ── 16. Spacing between blocks (Dawn uses margin, keep it) ──── */
.product__info-container > * + * {
  margin-top: 16px !important;
}

/* The product form itself should have tighter spacing inside */
.product__info-container .product-form > .form > * + * {
  margin-top: 12px !important;
}

/* ── 16. Mobile ──────────────────────────────────────────────── */
@media screen and (max-width: 749px) {
  .product__info-container .product__title h1 {
    font-size: 19px !important;
  }

  .product__info-container .price-item--sale {
    font-size: 20px !important;
  }

  .product__info-container .product-form__buttons {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }

  .product__info-container .product-form__submit {
    min-height: 48px !important;
    font-size: 14px !important;
    border-radius: 10px !important;
  }

  .product__info-container .shopify-payment-button__button,
  .product__info-container .shopify-payment-button__button--unbranded {
    border-radius: 10px !important;
    min-height: 48px !important;
    font-size: 14px !important;
  }
}

@media screen and (max-width: 480px) {
  .product__info-container .product-form__buttons {
    grid-template-columns: 1fr !important;
  }

  .product__info-container .product-form__buttons .shopify-payment-button {
    grid-column: 1 !important;
    grid-row: 2 !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   PRODUCT PAGE LAYOUT — Real fix for column sizes
   
   Root cause: Dawn's .grid--2-col-tablet sets
   grid-template-columns: repeat(2, 1fr)  (50%/50%)
   then product--medium/small sets width:55% on the ELEMENT
   inside its 50% cell → gallery only gets 55% of 50% = 27.5%!
   
   Fix: Override grid-template-columns to 55fr 45fr directly,
   then set each column element to width:100% to fill its cell.
   ═══════════════════════════════════════════════════════════ */

/* Tighten page-width padding on the product page only */
product-info > .page-width {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM UX: SEARCH BAR & PREDICTIVE SEARCH REDESIGN
   ═══════════════════════════════════════════════════════════ */

/* The dropdown container */
.predictive-search {
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08) !important;
  background-color: #ffffff !important;
  margin-top: 10px;
  overflow: hidden; /* so rounded corners apply to children */
  padding: 10px;
}

/* Headings (Products, Suggestions) */
.predictive-search__heading {
  font-size: 11px !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700 !important;
  color: #64748b !important;
  border-bottom: 1px solid #f1f5f9 !important;
  padding: 10px 15px !important;
  margin: 0 !important;
}

/* The items themselves */
.predictive-search__item {
  padding: 12px 15px !important;
  border-radius: 8px !important;
  transition: background-color 0.2s ease, transform 0.2s ease !important;
  margin-bottom: 5px;
}

.predictive-search__item:hover,
.predictive-search__list-item[aria-selected="true"] .predictive-search__item {
  background-color: #f8fafc !important;
  transform: translateX(4px);
}

/* Fix product link with thumbnail layout */
.predictive-search__item--link-with-thumbnail {
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
}

.predictive-search__image {
  width: 50px !important;
  height: 50px !important;
  object-fit: cover !important;
  border-radius: 6px !important;
  border: 1px solid #e2e8f0;
  margin: 0 !important;
}

.predictive-search__item-content {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-start !important;
}

.predictive-search__item-heading {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #0f172a !important;
  margin: 0 0 4px 0 !important;
  line-height: 1.3 !important;
  text-decoration: none !important;
}

.predictive-search__item:hover .predictive-search__item-heading {
  text-decoration: none !important;
  color: #2563eb !important;
}

.predictive-search .price {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #2563eb !important;
  margin: 0 !important;
}

/* Search for button */
.predictive-search__search-for-button .predictive-search__item {
  background: #f1f5f9;
  justify-content: center;
  font-weight: 600;
  color: #2563eb !important;
  border-radius: 8px;
  padding: 15px;
}

.predictive-search__search-for-button .predictive-search__item:hover {
  background: #e2e8f0 !important;
  transform: none;
}

/* ── PRODUCT CARD MOBILE PADDING FIX ── */
.card__content {
    padding-bottom: 20px !important;
}

/* ── MOBILE CATEGORY FILTER & SORT LAYOUT ── */
@media screen and (max-width: 767px) {
    /* Make the form wrap so Sort and Filter can stack if needed */
    .facets-vertical-form,
    .facets__form {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin-bottom: 25px !important;
    }
    
    /* Sort block */
    .facet-filters.sorting {
        background: #ffffff !important;
        padding: 10px 15px !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
        display: flex !important;
        width: 100% !important;
        align-items: center !important;
        justify-content: space-between !important;
    }
    
    .facet-filters__field {
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 10px !important;
    }

    .facet-filters__label label {
        white-space: nowrap !important;
        margin: 0 !important;
        font-weight: 700 !important;
        font-size: 13px !important;
        color: #0f172a !important;
    }
    
    .facet-filters__field .select {
        flex: 1 !important;
    }
    
    .facet-filters__field select {
        width: 100% !important;
        background: transparent !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 8px !important;
        padding: 8px 12px !important;
        font-size: 14px !important;
        color: #0f172a !important;
        height: auto !important;
    }
    
    /* Filter Button */
    .mobile-facets__wrapper {
        width: 100% !important;
        display: block !important;
    }
    
    .mobile-facets__open-wrapper {
        display: flex !important;
        width: 100% !important;
    }
    
    .mobile-facets__open {
        background: #091a60 !important;
        color: #ffffff !important;
        border-radius: 12px !important;
        padding: 14px 20px !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        box-shadow: 0 6px 15px rgba(9, 26, 96, 0.2) !important;
    }
    
    .mobile-facets__open * {
        color: #ffffff !important;
        fill: #ffffff !important;
        stroke: #ffffff !important;
    }
    
    .mobile-facets__open .svg-wrapper {
        margin-right: 8px !important;
        width: 18px !important;
        height: 18px !important;
    }
}
