/** Shopify CDN: Minification failed

Line 1224:0 Expected "}" to go with "{"

**/
/*// =============================================================================
// Ella Custom CSS - Customize The Style For Layout
// =============================================================================

// =============================================================================
//
// IMPORTANT DISCLAIMER
// Shopify is notifying shop owners about the need to convert scss files to css files.
// Please use only CSS to style the layout.
//
// =============================================================================*/

/* ═══════════════════════════════════════════════════════════════════════════
   ROOMART DESIGN SYSTEM
   Typography: Nunito (headings) · Nunito Sans (body)
   Visual language: soft corners · shadow depth (no harsh border lines)
   Caregiver + Creator archetype
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  /* ── Fonts ── */
  --ra-font-heading: 'Nunito', sans-serif;
  --ra-font-body:    'Nunito Sans', sans-serif;

  /* Override theme font CSS variables (set by variable.liquid) */
  --font-body-family:        'Nunito Sans', sans-serif;
  --font-heading-family:     'Nunito', sans-serif;
  --btn-1-font-family:       'Nunito Sans', sans-serif;
  --btn-2-font-family:       'Nunito Sans', sans-serif;
  --btn-3-font-family:       'Nunito Sans', sans-serif;
  --footer-heading-font-family: 'Nunito', sans-serif;
  --footer-link-font-family:    'Nunito Sans', sans-serif;

  /* ── Border Radius ── */
  --ra-radius-sm:  8px;   /* badges, tags, small chips */
  --ra-radius-md:  10px;  /* buttons, inputs, selects */
  --ra-radius-lg:  14px;  /* cards, dropdowns, panels */
  --ra-radius-xl:  20px;  /* modals, drawers, large surfaces */

  /* Push radius into theme button variables */
  --btn-1-border-radius: var(--ra-radius-md);
  --btn-2-border-radius: var(--ra-radius-md);
  --btn-3-border-radius: var(--ra-radius-md);

  /* ── Shadow Scale ── */
  --ra-shadow-xs:   0 1px 3px  rgba(107, 110, 112, 0.07);
  --ra-shadow-sm:   0 2px 8px  rgba(107, 110, 112, 0.09);
  --ra-shadow-md:   0 4px 18px rgba(107, 110, 112, 0.11);
  --ra-shadow-lg:   0 8px 30px rgba(107, 110, 112, 0.13);
  --ra-shadow-sage: 0 6px 24px rgba(120, 159, 144, 0.16);
  --ra-shadow-focus: 0 0 0 3px rgba(120, 159, 144, 0.22);

  /* ── Component sizing (consistent across all UI) ── */
  --ra-btn-height:   48px;
  --ra-input-height: 48px;
}

/* ── Typography ─────────────────────────────────────────────────────────── */

body,
p, a, li, span, td, th,
input, textarea, select, button, label {
  font-family: var(--ra-font-body);
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.heading {
  font-family: var(--ra-font-heading) !important;
}

/* ── Buttons ────────────────────────────────────────────────────────────── */

.btn,
.btn-1,
.btn-2,
.btn-3,
button.button,
a.button,
.button--primary,
.button--secondary,
.product-form__submit,
.cart__checkout-button,
.cart-notification__cta .button,
.quick-add__submit,
.shopify-payment-button__button--unbranded {
  min-height: var(--ra-btn-height) !important;
  border-radius: var(--ra-radius-md) !important;
  font-family: var(--ra-font-body) !important;
  transition: box-shadow 0.2s ease, transform 0.15s ease !important;
}

/* Primary solid buttons */
.btn-1,
.button--primary,
.product-form__submit,
.cart__checkout-button {
  box-shadow: var(--ra-shadow-sm) !important;
}

.btn-1:hover,
.button--primary:hover,
.product-form__submit:hover,
.cart__checkout-button:hover {
  box-shadow: var(--ra-shadow-sage) !important;
  transform: translateY(-1px) !important;
}

/* Secondary / outline buttons */
.btn-2,
.button--secondary {
  box-shadow: var(--ra-shadow-xs) !important;
}

.btn-2:hover,
.button--secondary:hover {
  box-shadow: var(--ra-shadow-md) !important;
}

/* ── Form Elements ──────────────────────────────────────────────────────── */

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="number"],
input[type="url"],
select,
.field__input,
.select__select {
  min-height: var(--ra-input-height) !important;
  border-radius: var(--ra-radius-md) !important;
  border: 1.5px solid transparent !important;
  box-shadow: 0 0 0 1.5px rgba(107, 110, 112, 0.14), var(--ra-shadow-xs) !important;
  font-family: var(--ra-font-body) !important;
  transition: box-shadow 0.2s ease !important;
}

/* Search formu içindeki input: pill container kendi stilini yönetir */
.search__form input[type="search"],
.search.search-modal__form input[type="search"],
.search__input {
  min-height: var(--ra-input-height) !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  background: transparent;
}

textarea,
.field__input[is="textarea"] {
  min-height: 120px !important;
  border-radius: var(--ra-radius-md) !important;
  border: 1.5px solid transparent !important;
  box-shadow: 0 0 0 1.5px rgba(107, 110, 112, 0.14), var(--ra-shadow-xs) !important;
  font-family: var(--ra-font-body) !important;
  transition: box-shadow 0.2s ease !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="url"]:focus,
select:focus,
textarea:focus,
.field__input:focus,
.select__select:focus {
  border-color: transparent !important;
  box-shadow: var(--ra-shadow-focus), 0 0 0 1.5px rgba(120, 159, 144, 0.30) !important;
  outline: none !important;
}

/* Search form — pill shape (border-based, original style) */
.search__form,
.search.search-modal__form,
form[action*="/search"],
.halo-sidebar-search form {
  border-radius: 100px !important;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.search__form:focus-within,
.search.search-modal__form:focus-within {
  box-shadow: 0 0 0 3px rgba(120, 159, 144, 0.15) !important;
}

/* ── Cards & Product Grid ───────────────────────────────────────────────── */

.card,
.card-wrapper,
.card--product,
.halo-product-card,
.article-card {
  border: none !important;
  border-radius: var(--ra-radius-lg) !important;
  box-shadow: var(--ra-shadow-sm) !important;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.2s ease !important;
}

.card:hover,
.card-wrapper:hover,
.card--product:hover,
.halo-product-card:hover,
.article-card:hover {
  box-shadow: var(--ra-shadow-md) !important;
  transform: translateY(-2px) !important;
}

.card__media,
.card--product .card__media {
  border-radius: var(--ra-radius-lg) var(--ra-radius-lg) 0 0 !important;
  overflow: hidden;
}

/* ── Dropdowns & Predictive Search ─────────────────────────────────────── */

.list-menu--disclosure,
.quickSearchResultsWrap,
.predictive-search__results-groups-wrapper,
.predictive-search {
  border: none !important;
  border-radius: var(--ra-radius-lg) !important;
  box-shadow: var(--ra-shadow-lg) !important;
  overflow: hidden;
}

/* ── Modals & Drawers ───────────────────────────────────────────────────── */

.modal__content,
.quick-cart,
.mini-cart,
.cart-notification {
  border: none !important;
  border-radius: var(--ra-radius-xl) var(--ra-radius-xl) 0 0 !important;
  box-shadow: var(--ra-shadow-lg) !important;
}

/* Full-panel drawers (desktop side) */
.menu-drawer,
.sidebar-drawer {
  border: none !important;
  box-shadow: var(--ra-shadow-lg) !important;
}

/* ── Section & HR Dividers — soften harsh lines ─────────────────────────── */

hr {
  border: none !important;
  height: 1px !important;
  background: rgba(107, 110, 112, 0.10) !important;
}

/* ── Header — replace bottom border with soft shadow ───────────────────── */

.site-header,
.header-section,
.sticky-header,
.header-sticky-wrapper {
  border-bottom: none !important;
  box-shadow: 0 2px 14px rgba(107, 110, 112, 0.08) !important;
}

/* ── Badges ─────────────────────────────────────────────────────────────── */

.badge,
.label,
.product-label {
  border-radius: var(--ra-radius-sm) !important;
}

/* ── Swatches ────────────────────────────────────────────────────────────── */

.swatch__element,
.product-swatch {
  border-radius: 50% !important;
  box-shadow: var(--ra-shadow-xs) !important;
}

/* ── Slideshow — Modern / Glassmorphism ─────────────────────────────────────
   • Header genişliğiyle hizalı (max 1500px, 15px kenar)
   • Yuvarlak köşeler
   • Glassmorphism ok butonları + dots
   ────────────────────────────────────────────────────────────────────────── */

/* 0. Bölüm üstüne boşluk */
.sections-slide-show {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* 1. Wrapper → header genişliğiyle hizala */
.sections-slide-show .slideshow-wrapper {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

/* İçteki container çift padding oluşturmasın */
.sections-slide-show .slideshow-wrapper > div {
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: 100% !important;
}

/* 2. Slideshow: yuvarlak köşeler */
.sections-slide-show .slideshow {
  border-radius: var(--ra-radius-xl) !important;
  overflow: hidden;
  position: relative;
}

/* ── Ok Butonları: Glassmorphism ── */
.sections-slide-show .slideshow .slick-arrow {
  /* Konum */
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 20 !important;

  /* Boyut */
  width: 48px !important;
  height: 48px !important;
  padding: 0 !important;
  border-radius: 50% !important;

  /* Glassmorphism */
  background: rgba(255, 255, 255, 0.50) !important;
  backdrop-filter: blur(14px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(14px) saturate(160%) !important;
  border: 1px solid rgba(255, 255, 255, 0.75) !important;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.85) !important;

  /* Layout */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 1 !important;
  visibility: visible !important;
  overflow: visible !important;

  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease !important;
}

.sections-slide-show .slideshow .slick-arrow:hover {
  background: rgba(255, 255, 255, 0.78) !important;
  box-shadow:
    0 6px 30px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
  transform: translateY(-50%) scale(1.08) !important;
}

/* .slick-arrow.slick-prev (4 class) → section'ın 3-class !important kuralını geçer */
.sections-slide-show .slideshow .slick-arrow.slick-prev {
  left: 24px !important;
  right: auto !important;
}

.sections-slide-show .slideshow .slick-arrow.slick-next {
  right: 24px !important;
  left: auto !important;
}

/* SVG ok ikonu: sage yeşili */
.sections-slide-show .slideshow .slick-arrow svg,
.sections-slide-show .slideshow .slick-arrow svg path,
.sections-slide-show .slideshow .slick-arrow svg polygon {
  fill: #3d3d3d !important;
  color: #3d3d3d !important;
  stroke: none !important;
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
}

/* ── Slick Dots: Glassmorphism ── */
.sections-slide-show .slideshow .slick-dots li button {
  background: rgba(255, 255, 255, 0.42) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  border: 1px solid rgba(255, 255, 255, 0.65) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
  border-radius: 50% !important;
  transition: background 0.22s ease, transform 0.18s ease, box-shadow 0.22s ease !important;
}

.sections-slide-show .slideshow .slick-dots li button:hover {
  background: rgba(255, 255, 255, 0.65) !important;
}

.sections-slide-show .slideshow .slick-dots li.slick-active button {
  background: rgba(255, 255, 255, 0.92) !important;
  border-color: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.22) !important;
  transform: scale(1.25) !important;
}

/* Tema pseudo-element içeriğini sıfırla */
.sections-slide-show .slideshow .slick-dots li button::before,
.sections-slide-show .slideshow .slick-dots li button::after {
  display: none !important;
}

/* Tablet / Mobil */
@media (max-width: 767px) {
  .sections-slide-show {
    margin-top: 14px;
  }

  .sections-slide-show .slideshow {
    border-radius: 14px !important;
  }

  .sections-slide-show .slideshow .slick-arrow {
    width: 40px !important;
    height: 40px !important;
  }

  .sections-slide-show .slideshow .slick-arrow.slick-prev {
    left: 12px !important;
  }

  .sections-slide-show .slideshow .slick-arrow.slick-next {
    right: 12px !important;
  }
}

@media (max-width: 551px) {
  .sections-slide-show {
    margin-top: 10px;
  }

  .sections-slide-show .slideshow-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }

  .sections-slide-show .slideshow {
    border-radius: 10px !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   END ROOMART DESIGN SYSTEM
   ═══════════════════════════════════════════════════════════════════ */


@media screen and (max-width:521px){
  s.price-item.price-item--regular {
    font-size: 12px !important;
}
}

s.price-item.price-item--regular {
    font-size: 12px !important;
}

.page-article.resultListing {
    display: none!important;
}

div#roketfyReviewsWidget1 {
    max-width: 1170px;
    width: 85%;
    margin: auto;
}


.roketfyReviewsWidget4 {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: 20px !important;
    margin: 5px 0 !important;
    text-align: center !important;
    align-items: center;
    justify-content: center;
}

.rCjEAf {
    display:none !important;
}
.tWrghb{
    display: none !important;
}

/* ═══════════════════════════════════════════════════════════════════
   ROOMART HEADER: 2-Row Layout
   Satır 1 → Logo (sol) | Arama (~yarım ekran) | Aksiyon İkonları (sağ)
   Satır 2 → Navigasyon menüsü (her zaman görünür)
   ═══════════════════════════════════════════════════════════════════ */
@media screen and (min-width: 1025px) {

  /* ── Container: sarmalama + satırlar arası boşluğu sıfırla ── */
  .header-nav-hamburger--style2 > .container {
    flex-wrap: wrap;
    align-items: center;
    row-gap: 0 !important;
  }

  /* ── Satır 1 – Sol: Logo ── */
  .header-nav-hamburger--style2 .header-logo.header-item {
    order: 1;
    flex: 0 0 auto;
    max-width: 220px !important;
  }

  /* ── Satır 1 – Orta+Sağ: İkon bloğu ──
     width:auto kritik → section CSS'deki width:100% override eder,
     aksi hâlde logo ile aynı satıra giremiyor */
  .header-nav-hamburger--style2 .header-icons.header-item {
    position: relative;
    align-self: stretch;
    align-items: center;
    order: 2;
    flex: 1 1 auto;
    width: auto !important;
    max-width: none !important;
    padding-left: 32px;
    gap: 20px;
    justify-content: flex-end;
  }

  /* ── Arama kutusu: sayfa ortasına hizalı, absolute konumlu ──
     header-icons referans → sadece 1. satıra göre konumlanır
     left: 50vw - logo(220) - container-pad(~15) ≈ 50vw - 235px → viewport ortası */
.header-nav-hamburger--style2 .header-icons details-modal.header__search-input {
  position: relative !important;
  flex: none;
  width: 620px !important;
  max-width: calc(100vw - 320px) !important;
  margin: 0 auto;
  z-index: 2;
}


  /* details / predictive-search sarmalayıcılar tam genişlik */
  .header-nav-hamburger--style2 .header-icons .header__search-input details,
  .header-nav-hamburger--style2 .header-icons .header__search-input predictive-search {
    display: block;
    width: 100%;
  }

  /* summary flex yapısına dönüştür */
  .header-nav-hamburger--style2 .header-icons .header__search-input .header__search-full {
    display: flex;
    width: 100%;
    align-items: center;
  }

  /* ── Arama formu (pill): absolute container'ı tamamen kaplar ── */
  .header-nav-hamburger--style2 .header-icons .header__search-input .search.search-modal__form {
    flex: 1;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* ── Arama sonuçları dropdown: form ile aynı genişlik ── */
  .header-nav-hamburger--style2 .header-icons .header__search-input .quickSearchResultsWrap {
    left: 0 !important;
    right: auto !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .header-nav-hamburger--style2 .header-icons .header__search-input .predictive-search {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* ── Satır 2: Navigasyon → tam genişlik, her zaman görünür ── */
.header-nav-hamburger--style2 .main-menu.header-item {
  order: 3;
  flex: 0 0 100%;
  max-width: 100% !important;
  width: 100%;
  border-top: 1px solid rgba(107, 110, 112, 0.10);
  justify-content: center; /* ← add this */
}
.header-nav-hamburger--style2 .main-menu.header-item .list-menu--inline {
  justify-content: center !important;
  display: flex !important;
  width: 100%;
}


/* ═══════════════════════════════════════════════════════════════════
   STİL 1 ARAMA: Alt çizgili, köşesiz, geniş, ortalı
   Style-2 ile aynı konumlama (620px merkez), sadece görsel fark
   ═══════════════════════════════════════════════════════════════════ */
@media screen and (min-width: 1025px) {

  /* predictive-search: liquid'deki 200px genişlik override'ını düzelt */
  .header-nav-hamburger--style2 .header-icons .header__search-input.style-1 predictive-search {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Form: global border-radius (100px) ve kutu kenarlığı kaldır, sadece alt çizgi */
  .header-nav-hamburger--style2 .header__search-input.style-1 .search.search-modal__form {
    border: none !important;
    border-bottom: 1px solid #cdc9c2 !important;
    border-radius: 0 !important;
    background: transparent !important;
    overflow: visible !important;
    box-shadow: none !important;
    transition: border-color 0.2s ease;
  }
  .header-nav-hamburger--style2 .header__search-input.style-1 .search.search-modal__form:focus-within {
    border-bottom-color: #789f90 !important;
    box-shadow: none !important;
  }

  /* Input: sol hizalı, sağda ikon için boşluk */
  .header-nav-hamburger--style2 .header__search-input.style-1 .search__input {
    padding: 9px 10px 9px 0 !important;
  }
  .header-nav-hamburger--style2 .header__search-input.style-1 .search__input::placeholder {
    color: #a09b93 !important;
    font-style: normal !important;
  }

  /* Büyüteç butonu: sağda görünür, sage yeşili */
  .header-nav-hamburger--style2 .header__search-input.style-1 .search__button {
    min-width: fit-content !important;
    padding: 1px 4px 4px !important;
  }
  .header-nav-hamburger--style2 .header__search-input.style-1 .search__button svg {
    width: 20px !important;
    height: 20px !important;
    fill: #789f90 !important;
  }
  .header-nav-hamburger--style2 .header__search-input.style-1 .search__button:hover svg {
    fill: #5d8478 !important;
  }

}

/* ── Arama motoru renk iyileştirmeleri ──
   Marka renkleri: sage yeşili #789f90, sıcak bej #f0ede8 */
@media screen and (min-width: 1025px) {

  /* Pill formu: biraz daha belirgin kenarlık */
  .header-nav-hamburger--style2 .header__search-input.style-2 .search.search-modal__form {
    border-color: #cdc9c2 !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  /* Focus durumunda sage yeşili kenarlık + hafif parlama */
  .header-nav-hamburger--style2 .header__search-input.style-2 .search.search-modal__form:focus-within {
    border-color: #789f90 !important;
    box-shadow: 0 0 0 3px rgba(120, 159, 144, 0.15);
  }

  /* Placeholder metni yumuşat */
  .header-nav-hamburger--style2 .header__search-input .search__input::placeholder {
    color: #a09b93 !important;
    font-style: italic;
  }

  /* Arama butonu: icon rengi sage yeşil */
  .header-nav-hamburger--style2 .header__search-input.style-2 .search__button svg {
    fill: #789f90 !important;
  }
  .header-nav-hamburger--style2 .header__search-input.style-2 .search__button:hover svg {
    fill: #5d8478 !important;
  }

}

/* ═══════════════════════════════════════════════════════════════════
   ROOMART FOOTER — Refined & Spacious
   Footer bg beyaz (#fff), linkler siyah, sosyal ikonlar slate (#6b6e70)
   ═══════════════════════════════════════════════════════════════════ */

/* ── Sütunlar arası boşluk: padding ile (gap % layout'u bozuyor) ── */
.footer-1 .footer-block__column {
  padding-right: 24px;
  box-sizing: border-box;
}
.footer-1 .footer-block__column:last-of-type {
  padding-right: 0;
}

/* ── Sütun başlıkları ── */
.footer-1 .footer-block__heading {
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.09em !important;
  text-transform: uppercase !important;
  margin-bottom: 18px !important;
  padding-bottom: 10px !important;
  position: relative;
}

.footer-1 .footer-block__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 2px;
  background: #789f90;
  border-radius: 2px;
}

/* ── Bağlantı listesi öğeleri ── */
.footer-1 .list-menu__item--link {
  font-size: 13px !important;
  line-height: 1.1 !important;
  padding: 4px 0 !important;
  display: inline-block;
  opacity: 0.75;
  transition: opacity 0.2s ease, padding-left 0.18s ease !important;
}

.footer-1 .list-menu__item--link:hover {
  opacity: 1 !important;
  padding-left: 5px !important;
}

/* ── Detay metinleri (adres, telefon, e-posta) ── */
.footer-1 .footer-block__details,
.footer-1 .footer-block__details p,
.footer-1 .footer-block__details a {
  font-size: 13px !important;
  line-height: 1.70 !important;
  opacity: 0.78;
}
.footer-1 .footer-block__details a:hover { opacity: 1 !important; }

/* ═══════════════════════════════════════════════════════════════════
   END ROOMART FOOTER
   ═══════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════
   ROOMART COLLECTION PAGE — Modern UI
   Palette: sage #789f90 · slate #6b6e70 · cream #ede9e3 · coral #ff6a3d
   ═══════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────
   1. FILTER SIDEBAR
   ───────────────────────────────────────────────────────────────── */

/* Subtle right divider — keeps the flex layout intact */
.collection-default .page-sidebar--vertical {
  border-right: 1px solid #ede9e3;
  padding-right: 28px;
}

/* Scrollbar */
.collection-default .halo-sidebar-wrapper::-webkit-scrollbar { width: 3px; }
.collection-default .halo-sidebar-wrapper::-webkit-scrollbar-track { background: #f5f2ee; }
.collection-default .halo-sidebar-wrapper::-webkit-scrollbar-thumb { background: rgba(120,159,144,.35); border-radius: 3px; }

/* Header inside sidebar (title + close) — soften */
.collection-default .halo-sidebar-header {
  border-bottom: 1px solid #ede9e3;
  margin-bottom: 6px;
  padding-bottom: 12px;
}
.collection-default .halo-sidebar-header .title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #3a3a3a;
}

/* Each filter group */
.collection-default .page-sidebar--vertical #CollectionFiltersForm .sidebarBlock {
  border-bottom: 1px solid #f0ede8;
  margin-bottom: 0;
  padding-bottom: 0;
}
.collection-default .page-sidebar--vertical #CollectionFiltersForm .sidebarBlock:last-child {
  border-bottom: none;
}

/* Filter group heading */
.collection-default .page-sidebar--vertical .sidebarBlock-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #2a2a2a;
  padding-top: 16px;
  padding-bottom: 16px;
  transition: color .18s ease;
}
.collection-default .page-sidebar--vertical .sidebarBlock-headingWrapper .sidebarBlock-heading {
  padding-right: 22px;   /* room for chevron */
  cursor: pointer;
}
.collection-default .page-sidebar--vertical .sidebarBlock-heading:hover { color: #789f90; }

/* Chevron — sage green instead of black */
.collection-default .sidebar--layout_1 .sidebarBlock-headingWrapper .sidebarBlock-heading::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 551.13 551.13'%3E%3Cpath fill='%23789f90' d='m275.565 361.679-223.897-223.896h-51.668l275.565 275.565 275.565-275.565h-51.668z'/%3E%3C/svg%3E");
}

/* Active-filter count badge */
.collection-default .page-sidebar--vertical .facets__count {
  font-size: 10px;
  font-weight: 700;
  color: #789f90;
}

/* "Refined by" active-filters panel */
.collection-default .sidebarBlock.refined-widgets {
  background: rgba(120,159,144,.07);
  border-radius: 8px;
  padding: 10px 12px;
  border-bottom: none !important;
  margin-bottom: 14px !important;
}
.collection-default .sidebarBlock.refined-widgets .sidebarBlock-heading {
  font-size: 10px;
  color: #789f90;
  padding-top: 0;
  padding-bottom: 6px;
}

/* Active filter pill */
.collection-default .facets__list--refined .active-facets__button {
  border-radius: 100px;
  background: rgba(120,159,144,.09);
  border: 1px solid rgba(120,159,144,.35);
  color: #3a3a3a;
  padding: 3px 10px;
  font-size: 11px;
  transition: background .16s ease, border-color .16s ease;
}
.collection-default .facets__list--refined .active-facets__button:hover {
  background: rgba(120,159,144,.16);
  border-color: #789f90;
  color: #fff;
}
.collection-default .facets__list--refined .active-facets__button:hover .close::before,
.collection-default .facets__list--refined .active-facets__button:hover .close::after {
  background-color: #fff;
}

/* Clear-all / reset links */
.collection-default .facets__clear-all .text,
.collection-default .facets__reset .text {
  font-size: 11px;
  color: #9a9590;
  transition: color .16s ease;
}
.collection-default .facets__clear-all:hover .text,
.collection-default .facets__reset:hover .text { color: #789f90; }

/* ── Checkboxes — recolor the theme's existing ::before/::after ── */
.collection-default .facets__item input[type=checkbox] + .form-label--checkbox {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 13px;
  color: #4a4a4a;
  line-height: 1.4;
  transition: color .15s ease;
}
.collection-default .facets__item input[type=checkbox] + .form-label--checkbox::before {
  border-radius: 4px;
  border: 1.5px solid #cdc9c2;
  background: #fff;
  transition: border-color .18s ease, background .18s ease;
}
.collection-default .facets__item input[type=checkbox]:checked + .form-label--checkbox::before {
  background: #789f90;
  border-color: #789f90;
}
.collection-default .facets__item input[type=checkbox] + .form-label--checkbox:hover::before {
  border-color: #789f90;
}
.collection-default .facets__item input[type=checkbox] + .form-label--checkbox .count {
  color: #b0aaa3;
  font-size: 11px;
}

/* ── Swatch selected ring ── */
.collection-default .facets__item--swatch input:checked + .facet-checkbox {
  border-color: #789f90;
  box-shadow: 0 0 0 2px rgba(120,159,144,.28);
}

/* ── Rectangle/size chip selected ── */
.collection-default .facets__item--rectangle input:checked + .facet-checkbox .text {
  color: #5d8478;
  background: rgba(120,159,144,.1);
  border-color: #789f90;
}

/* ── Filter list scrollbar ── */
.collection-default .facets__list::-webkit-scrollbar { width: 3px; }
.collection-default .facets__list::-webkit-scrollbar-track { background: #f5f2ee; }
.collection-default .facets__list::-webkit-scrollbar-thumb { background: rgba(120,159,144,.4); border-radius: 3px; }

/* ── Show-more link ── */
.collection-default .show-more--list_tags { color: #789f90; font-size: 12px; font-weight: 600; }
.collection-default .show-more--list_tags:hover { color: #5d8478; }

/* ── Price range slider thumb — sage ── */
.collection-default .facets__price--slide input[type=range]::-webkit-slider-thumb { border-color: #789f90; }
.collection-default .facets__price--slide input[type=range]::-moz-range-thumb      { border-color: #789f90; }
.collection-default .facets__price--slide input[type=range]::-ms-thumb              { border-color: #789f90; }
.collection-default .facets__price--slide input[type=range]::-webkit-slider-runnable-track { background: #789f90; }
.collection-default .facets__price--slide input[type=range]::-ms-track               { background: #789f90; }

/* ── Price "Apply" button ── */
.collection-default .filter__price--apply {
  background: #789f90 !important;
  color: #fff !important;
  border-radius: 8px !important;
  border: none !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: .04em !important;
  min-height: 36px !important;
  transition: background .18s ease !important;
}
.collection-default .filter__price--apply:hover { background: #5d8478 !important; }

/* ─────────────────────────────────────────────────────────────────
   2. TOOLBAR
   ───────────────────────────────────────────────────────────────── */

/* Container — pill-card feel */
.collection-default .toolbar {
  background: #fff;
  border: 1px solid #ede9e3;
  border-top: 1px solid #ede9e3;   /* override theme's border-top:#dedede */
  border-radius: 12px;
  box-shadow: 0 1px 5px rgba(107,110,112,.06);
  padding: 10px 20px;
  margin-bottom: 20px;
}

/* Results count */
.collection-default .toolbar .results-count .results { font-size: 13px; color: #6b6e70; }

/* ── View-as icon pills ── */
.collection-default .toolbar .toolbar-icon {
  border-radius: 7px;
  border: 1.5px solid #ddd9d3;
  width: 30px;
  height: 30px;
  padding: 4px;
  background: #faf8f5;
  transition: border-color .18s ease, background .18s ease;
}
.collection-default .toolbar .toolbar-icon.active {
  border-color: #789f90;
  background: rgba(120,159,144,.1);
}
/* Dot icons use ::before with background-color / box-shadow */
.collection-default .toolbar .toolbar-icon.icon-mode:not(.active)::before {
  background-color: #9a9590;
}
.collection-default .toolbar .toolbar-icon.icon-mode-list:not(.active)::before {
  box-shadow: 0 7px 0 #9a9590, 0 14px 0 #9a9590;
}
.collection-default .toolbar .toolbar-icon.icon-mode.active::before { background-color: #789f90; }
.collection-default .toolbar .toolbar-icon.icon-mode-list.active::before {
  background-color: #789f90;
  box-shadow: 0 7px 0 #789f90, 0 14px 0 #789f90;
}
/* grid-2 */
@media (min-width: 360px) {
  .collection-default .toolbar .toolbar-icon.icon-mode-grid.grid-2:not(.active)::before { box-shadow: 7px 0 0 #9a9590; }
  .collection-default .toolbar .toolbar-icon.icon-mode-grid.grid-2.active::before        { box-shadow: 7px 0 0 #789f90; }
}
/* grid-3 */
.collection-default .toolbar .toolbar-icon.icon-mode-grid.grid-3:not(.active)::before { box-shadow: 7px 0 0 #9a9590, 14px 0 0 #9a9590; }
.collection-default .toolbar .toolbar-icon.icon-mode-grid.grid-3.active::before        { box-shadow: 7px 0 0 #789f90, 14px 0 0 #789f90; }
/* grid-4 */
.collection-default .toolbar .toolbar-icon.icon-mode-grid.grid-4:not(.active)::before { box-shadow: 7px 0 0 #9a9590, 14px 0 0 #9a9590, 21px 0 0 #9a9590; }
.collection-default .toolbar .toolbar-icon.icon-mode-grid.grid-4.active::before        { box-shadow: 7px 0 0 #789f90, 14px 0 0 #789f90, 21px 0 0 #789f90; }
/* grid-5 */
.collection-default .toolbar .toolbar-icon.icon-mode-grid.grid-5:not(.active)::before { box-shadow: 7px 0 0 #9a9590, 14px 0 0 #9a9590, 21px 0 0 #9a9590, 28px 0 0 #9a9590; }
.collection-default .toolbar .toolbar-icon.icon-mode-grid.grid-5.active::before        { box-shadow: 7px 0 0 #789f90, 14px 0 0 #789f90, 21px 0 0 #789f90, 28px 0 0 #789f90; }

/* ── Toolbar label ── */
.collection-default .toolbar .toolbar-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #9a9590;
  margin-right: 10px;
}

/* ── Dropdown trigger (sort, per-page) ── */
.collection-default .toolbar .toolbar-dropdown .label-tab {
  border-radius: 8px;
  background: #f8f5f1;
  border: 1.5px solid #ddd9d3;
  min-height: 36px;
  padding: 6px 36px 6px 14px;
  line-height: 1.4;
  transition: border-color .18s ease, background .18s ease;
}
.collection-default .toolbar .toolbar-dropdown .label-tab:hover {
  border-color: #789f90;
  background: rgba(120,159,144,.06);
}
.collection-default .toolbar .toolbar-dropdown .label-tab .label-text {
  font-size: 13px;
  font-weight: 500;
  color: #3a3a3a;
}
/* Chevron inside trigger */
.collection-default .toolbar .toolbar-dropdown .label-tab .icon-dropdown {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 551.13 551.13'%3E%3Cpath fill='%236b6e70' d='m275.565 361.679-223.897-223.896h-51.668l275.565 275.565 275.565-275.565h-51.668z'/%3E%3C/svg%3E");
}

/* ── Dropdown menu ── */
.collection-default .toolbar .toolbar-dropdown .dropdown-menu.hidden-on-mobile {
  border-radius: 10px;
  border: 1px solid #ede9e3;
  box-shadow: 0 6px 22px rgba(107,110,112,.12);
  padding: 6px;
}
.collection-default .toolbar .toolbar-dropdown .dropdown-menu li {
  padding-right: 0;
}
.collection-default .toolbar .toolbar-dropdown .dropdown-menu li .text {
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 13px;
  color: #3a3a3a;
  transition: background .14s ease;
}
.collection-default .toolbar .toolbar-dropdown .dropdown-menu li .text:hover {
  background: rgba(120,159,144,.08);
}
.collection-default .toolbar .toolbar-dropdown .dropdown-menu li.is-active .text {
  background: rgba(120,159,144,.13);
  color: #5d8478;
  font-weight: 600;
  text-decoration: none;
}

/* ── Mobile sort bottom-sheet header ── */
.collection-default .toolbar .dropdown-menu.hidden-on-desktop .dropdown-menu-header {
  border-bottom: 1px solid #ede9e3;
}
.collection-default .toolbar .dropdown-menu.hidden-on-desktop .dropdown-menu-body li.is-active {
  background: rgba(120,159,144,.09);
  color: #5d8478;
}

/* ── Mobile filter-sidebar trigger icon ── */
.collection-default .toolbar .toolbar-icon.icon-filter {
  border: 1.5px solid #ddd9d3;
  border-radius: 8px;
  background: #f8f5f1;
  padding: 6px 14px;
  width: auto;
  height: auto;
  gap: 7px;
  transition: border-color .18s ease, background .18s ease;
}
.collection-default .toolbar .toolbar-icon.icon-filter:hover {
  border-color: #789f90;
  background: rgba(120,159,144,.07);
}
.collection-default .toolbar .toolbar-icon.icon-filter .filter-text {
  font-size: 13px;
  font-weight: 600;
  color: #3a3a3a;
}

/* ─────────────────────────────────────────────────────────────────
   3. PRODUCT CARDS (keep from before)
   ───────────────────────────────────────────────────────────────── */

.collection-default .product-item .card {
  border: none;
  box-shadow: none;
  background: transparent;
  overflow: visible;
  border-radius: 0;
}
.collection-default .product-item:hover .card {
  box-shadow: none;
  transform: none;
  border-color: transparent;
}
.collection-default .product-item .card-media img {
  transition: transform .45s cubic-bezier(.25,.46,.45,.94);
}
.collection-default .product-item:hover .card-media img { transform: scale(1.05); }

.collection-default .card-vendor .vendor-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #789f90;
}
.collection-default .card__heading .card-title {
  font-family: var(--ra-font-heading);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: #2a2a2a;
  transition: color .18s ease;
}
.collection-default .card__heading .card-title:hover { color: #789f90; }

.collection-default .card-price .price--on-sale .price-item--sale  { color: #ff6a3d; font-weight: 700; }
.collection-default .card-price .price--on-sale .price-item--regular { color: #b0aaa3; font-size: 12px; }

.collection-default .card-information { padding: 12px 14px 14px; }
.collection-default .card-information__wrapper { padding: 0; }

.collection-default .card-wishlist .wishlist-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 6px rgba(107,110,112,.15);
  transition: background .18s ease, box-shadow .18s ease;
}
.collection-default .card-wishlist .wishlist-icon:hover {
  background: #fff;
  box-shadow: 0 3px 10px rgba(107,110,112,.2);
}

/* ─────────────────────────────────────────────────────────────────
   4. RESPONSIVE
   ───────────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .collection-default .page-sidebar--vertical {
    border-right: none;
    border-bottom: 1px solid #ede9e3;
    padding-right: 0;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
  .collection-default .toolbar {
    padding: 8px 14px;
    border-radius: 10px;
  }
}

@media (max-width: 767px) {
  .collection-default .card-information { padding: 10px 12px 12px; }
}

/* ═══════════════════════════════════════════════════════════════════
   END COLLECTION PAGE REDESIGN
   ═══════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════
   ROOMART PRODUCT CARDS — Square Images + Modern Clean Look
   No border · No shadow · Square image · Rounded image corners
   ═══════════════════════════════════════════════════════════════════ */

/* Card container: borderless, shadowless, transparent */
.product-item .card,
.product-item .card-product {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  overflow: visible !important;
  border-radius: 0 !important;
}

.product-item:hover .card,
.product-item:hover .card-product {
  box-shadow: none !important;
  transform: none !important;
}

/* Image area: forced square + rounded corners */
.card-media {
  padding-bottom: 0 !important;
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
  border-radius: var(--ra-radius-lg) !important;
  overflow: hidden !important;
}

/* Subtle image scale on hover */
.product-item:hover .card-media img,
.product-item:hover .card-media video {
  transform: scale(1.04);
}

/* Lookbook image rounded corners */
#shopify-section-template--25876688437535__large_lookbook_banners_YVqJAM .img-box,
#shopify-section-template--25876688437535__large_lookbook_banners_YVqJAM .img-box a,
#shopify-section-template--25876688437535__large_lookbook_banners_YVqJAM .img-box img {
  border-radius: 14px !important;
  overflow: hidden !important;
}
#HeaderNavigation > nav > ul {
  justify-content: center !important;
  display: flex !important;
  width: 100%;
}

