.eosTheme nav.main-nav {
    background: none !important;
    box-shadow: none !important;
}
.header-inner {
    box-shadow: none !important;
}
 
.header-inner nav.main-nav {
    box-shadow: none;
}
/* ================================================
   EOS Blog Page
   ================================================ */

/* Page bg */
.blog-page-bg {
  background: #FEF0FB;
}




button#btnLogin {
    background: #303082 !important;
  }
a.sign-link.sign-up-text {
    color: #303082 !important;
  }
button#btnSignup {
    background: #303082 !important;
  }

html body li.wishBtni a {
    background: #303082 !important;
  }

button#btnforgotpassword {
    background: #303082 !important;
}



/* ===== HERO BANNER ===== */
.blog-hero {
  background: #FEF0FB;
  text-align: center;
  padding: 56px 40px 32px;
}

.blog-hero h1 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  margin-bottom: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.blog-hero p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

/* ===== CATEGORY TABS ===== */
.blog-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 0 40px 32px;
  background: #FEF0FB;
  flex-wrap: wrap;
}

.blog-tab {
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--eos-black);
  background: transparent;
  border: none;
  cursor: pointer;
  text-transform: lowercase;
  transition: all 0.2s;
  border-bottom: 2px solid transparent;
}

.blog-tab.active {
  background: var(--eos-black);
  color: var(--eos-white);
}

.blog-tab:hover:not(.active) {
  background: rgba(0,0,0,0.05);
}

/* ===== BLOG GRID ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0 40px 48px;
  background: #FEF0FB;
  max-width: 1400px;
  margin: 0 auto;
}

/* ===== BLOG CARD ===== */
.blog-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-card[style*="display: none"] {
  display: none !important;
}

.blog-card-image {
  width: 100%;
  min-height: 410px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-image .blog-img-placeholder {
  width: 100%;
  height: 100%;
}

.blog-card-image .blog-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Alternating image bg colors */
.blog-card:nth-child(1) .blog-img-placeholder { background: linear-gradient(135deg, #d0e0f0, #b8d0e8); }
.blog-card:nth-child(2) .blog-img-placeholder { background: linear-gradient(135deg, #f0d8e0, #e8c0d0); }
.blog-card:nth-child(3) .blog-img-placeholder { background: linear-gradient(135deg, #e0f0d8, #c8e0c0); }
.blog-card:nth-child(4) .blog-img-placeholder { background: linear-gradient(135deg, #f0e8d0, #e8dcc0); }
.blog-card:nth-child(5) .blog-img-placeholder { background: linear-gradient(135deg, #e0d8f0, #d0c8e8); }
.blog-card:nth-child(6) .blog-img-placeholder { background: linear-gradient(135deg, #d8f0e8, #c0e0d8); }
.blog-card:nth-child(7) .blog-img-placeholder { background: linear-gradient(135deg, #f0d0d0, #e8b8c0); }
.blog-card:nth-child(8) .blog-img-placeholder { background: linear-gradient(135deg, #d8e0f0, #c0d0e8); }
.blog-card:nth-child(9) .blog-img-placeholder { background: linear-gradient(135deg, #f0e0d8, #e8d0c0); }
.blog-card:nth-child(10) .blog-img-placeholder { background: linear-gradient(135deg, #e8d8f0, #d8c8e8); }
.blog-card:nth-child(11) .blog-img-placeholder { background: linear-gradient(135deg, #d0f0e0, #b8e0d0); }
.blog-card:nth-child(12) .blog-img-placeholder { background: linear-gradient(135deg, #f0d8d0, #e8c8c0); }

.blog-card-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 8px;
  color: var(--eos-black);
}

.blog-card-subtitle {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 16px;
}

.blog-card-link {
  display: inline-block;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 600;
  color: var(--eos-black);
  text-transform: lowercase;
  text-decoration: none;
  border: 1px solid var(--eos-black);
  background: var(--eos-white);
  transition: all 0.3s ease;
  margin-top: auto;
}

.blog-card-link:hover {
  background: var(--eos-black);
  color: var(--eos-white);
}

/* ===== PAGINATION ===== */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0 40px 48px;
  background: #FEF0FB;
}

.blog-page-btn {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--eos-black);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.blog-page-btn:hover {
  color: var(--eos-magenta);
}

.blog-page-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.blog-page-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--eos-black);
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.blog-page-num:hover {
  border-color: var(--eos-black);
}

.blog-page-num.active {
  background: var(--eos-black);
  color: var(--eos-white);
}

.blog-showing {
  font-size: 13px;
  color: #999;
  margin-left: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); padding: 0 24px 40px; }
  .blog-hero h1 { font-size: 36px; }
}

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 0 20px 32px; }
  .blog-hero { padding: 40px 24px 24px; }
  .blog-hero h1 { font-size: 30px; }
  .blog-tabs { padding: 0 16px 24px; gap: 0; overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; }
  .blog-tab { white-space: nowrap; font-size: 14px; }
}

@media (max-width: 480px) {
  .blog-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}
/* ================================================
   EOS Brand Mission Page - Accurate Rebuild
   ================================================ */

/* ===== IMAGE-TEXT SECTIONS ===== */
.brand-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  position: relative;
  overflow: hidden;
}

/* Gradient backgrounds per section */
.brand-split.bg-lavender {
  background: linear-gradient(56deg, #F9E3F8 19%, #D1DDFF 100%);
}
.brand-split.bg-white {
  background: var(--eos-white);
}
.brand-split.bg-peach {
  background: linear-gradient(56deg, #fef0e8 19%, #fde8d8 100%);
}

/* Text side */
.brand-split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 56px 60px 80px;
}

.brand-split-heading {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.brand-split-heading h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
}

.brand-split-heading .brand-emoji {
  font-size: 32px;
  display: inline-flex;
  gap: 4px;
  flex-shrink: 0;
  margin-top: 4px;
}

.brand-split-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: var(--eos-black);
  margin-bottom: 24px;
}

.brand-split-text p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 480px;
}

.brand-split-btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 14.4px;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: normal;
  border: 1px solid var(--eos-black);
  background: var(--eos-white);
  color: var(--eos-black);
  transition: all 0.3s ease;
  align-self: flex-start;
}

.brand-split-btn:hover {
  background: var(--eos-black);
  color: var(--eos-white);
}

/* Image side */
.brand-split-image {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-split-image .brand-img {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  transition: transform 0.5s ease;
}

.brand-split:hover .brand-img {
  transform: scale(1.03);
}

/* Section 2: Two images side by side */
.brand-split-images-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 40px;
  align-items: center;
}

.brand-duo-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  transition: transform 0.4s ease;
}

.brand-duo-img:hover {
  transform: scale(1.03);
}

/* ===== COMPACT BANNER / MARQUEE ===== */
.brand-marquee {
  background: var(--eos-off-white);
  padding: 44px 0;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.brand-marquee-track {
  display: flex;
  white-space: nowrap;
  animation: brandMarquee 30s linear infinite;
}

.brand-marquee-track span {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  color: var(--eos-black);
  padding: 0 12px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-marquee-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--eos-magenta);
  flex-shrink: 0;
}

@keyframes brandMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== COMMUNITY SECTION ===== */
.brand-community {
  background: linear-gradient(180deg, #e8e0f4 0%, #f0e8f8 40%, #f5f0fa 100%);
  padding: 48px 0 0;
  text-align: center;
}

.brand-community h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 8px;
  padding: 0 24px;
  line-height: 1;
}

.brand-community p {
  font-size: 16px;
  color: #555;
  font-style: italic;
  padding: 0 24px;
  margin-bottom: 32px;
}

.brand-ugc-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}

.brand-ugc-tile {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.brand-ugc-tile .tile-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.brand-ugc-tile:nth-child(1) .tile-bg { background: linear-gradient(135deg, #f8d0e0, #f0b0c8); }
.brand-ugc-tile:nth-child(2) .tile-bg { background: linear-gradient(135deg, #d0c8f0, #b8a8e0); }
.brand-ugc-tile:nth-child(3) .tile-bg { background: linear-gradient(135deg, #f0e0c8, #e8d0b0); }
.brand-ugc-tile:nth-child(4) .tile-bg { background: linear-gradient(135deg, #c8e8d0, #b0d8b8); }
.brand-ugc-tile:nth-child(5) .tile-bg { background: linear-gradient(135deg, #f0c8d8, #e8a8c0); }
.brand-ugc-tile:nth-child(6) .tile-bg { background: linear-gradient(135deg, #d8d0f0, #c0b8e0); }

.brand-ugc-tile:hover .tile-bg { transform: scale(1.08); }

.brand-ugc-tile .tile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: var(--eos-white);
  font-size: 1.2rem;
}
.brand-ugc-tile:hover .tile-overlay { opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .brand-split-text { padding: 48px 40px; }
  .brand-split-heading h2 { font-size: 32px; }
  .brand-marquee-track span { font-size: 22px; }
}

@media (max-width: 768px) {
  .brand-split {
    grid-template-columns: 1fr;
  }
  .brand-split-image { min-height: 320px; }
  .brand-split-text { padding: 36px 24px; }
  .brand-split-heading h2 { font-size: 28px; }
  .brand-split-images-duo { padding: 20px; gap: 10px; }
  .brand-ugc-grid { grid-template-columns: repeat(3, 1fr); }
  .brand-marquee-track span { font-size: 18px; }
}

@media (max-width: 480px) {
  .brand-split-image { min-height: 260px; }
  .brand-ugc-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-split-images-duo { grid-template-columns: 1fr; }
  }
.collection-tabs {
    display:block !important;
    visibility:visible !important;
    padding:0px 40px 0;
    border-bottom:1px solid rgba(0,0,0,0.08);
    background-color:#ffffff;
  }
/* Tabs are <div class="collection-tabs"><ul><li><a>. The <div> wrapper
   (instead of <nav>) sidesteps materialize's `nav ul li/nav a` global
   rules, but other base stylesheets still touch <ul>/<li>, so the
   resets below are made authoritative with !important. */
.collection-tabs > ul {
    display:flex !important;
    flex-wrap:nowrap;
    gap:28px;
    margin:0 !important;
    padding:0 !important;
    list-style:none !important;
    visibility:visible !important;
  }
.collection-tabs > ul > li {
    display:list-item !important;
    margin:0 !important;
    padding:0 !important;
    float:none !important;
    list-style:none !important;
    visibility:visible !important;
  }
.collection-tabs a {
    font-size: 16px;
    font-weight: 400;
    color: var(--eos-black);
    text-transform: lowercase;
    padding: 12px 0;
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
  }
.collection-tabs a.active {
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 14px;
    text-decoration-thickness: 2px;
  }
.collection-tabs a:hover {
    color: var(--eos-magenta);
  }
.evolutionofsmooth .bxiMoni .main_studOne {
   float: left;
  }

  .main-nav .mega-menu {   
    min-width: 1100px !important;
  }


  .eosTheme .product-info {
    z-index: 8 !important;
  }

/* ===== SORT & FILTER BAR ===== */
.sort-filter-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 40px;
}

button:focus {
    background-color:#ffffff !important;
    border:none !important;
  }

.sort-dropdown {
    position:relative;
  }
.sort-btn {
    padding:0;  
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-size:16px;
    font-weight:600;
    color:var(--eos-black);
    text-transform:lowercase;        
    border:none;
    cursor:pointer;    
    background:none;
}

.sort-btn svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}

.sort-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--eos-white);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 4px;
  min-width: 220px;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  display: none;
}

.sort-menu.open {
  display: block;
}

.sort-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 16px;
  font-size: 0.84rem;
  color: var(--eos-black);
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.sort-option:hover {
  background: #f5f5f5;
}

.sort-option.active {
  font-weight: 700;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  text-transform: lowercase;
  color: var(--eos-black);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.filter-btn svg {
  width: 14px;
  height: 14px;
}

/* ===== PRODUCT GRID ===== */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 8px 40px 40px;
}

/* ===== GRID CARD ===== */
.grid-card {
  position: relative;
  cursor: pointer;
}

.grid-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f0eeea;
  border-radius: 0;
  cursor: pointer;
}

/* Stacked image slots — one per product image. The JS slideshow toggles
   .is-active to cross-fade between them while the user hovers the card. */
.grid-card-image .grid-img-slot {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.grid-card-image .grid-img-slot.is-active {
  opacity: 1;
}
.grid-card-image .grid-img-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Back-compat: legacy markup that still emits .grid-img-primary / .grid-img-hover
   (e.g. other product cards on the page) keeps the original behaviour. */
.grid-card-image .grid-img-primary,
.grid-card-image .grid-img-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  transition: opacity 0.4s ease;
}
.grid-card-image .grid-img-primary img,
.grid-card-image .grid-img-hover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.grid-card-image .grid-img-primary { opacity: 1; }
.grid-card-image .grid-img-hover   { opacity: 0; }
.grid-card-image:hover .grid-img-primary { opacity: 0; }
.grid-card-image:hover .grid-img-hover   { opacity: 1; }

/* Badges */
.grid-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--eos-white);
  color: var(--eos-black);
  font-size: 16px;
  font-weight: 400;
  padding: 4px 12px;
  border: 1px solid rgba(0,0,0,0.08);
  z-index: 2;
}

.grid-badge-2 {
  top: 44px;
}

.grid-badge-sale {
  background: var(--eos-lime);
  border-color: var(--eos-lime);
  font-weight: 700;
}

/* Card info */
.grid-card-info {
  padding: 14px 0 0;
}

.grid-info-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 2px;
}

.grid-card-info h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  flex: 1;
}

.grid-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  white-space: nowrap;
}

.grid-stars .stars-filled {
  color: var(--eos-magenta);
  font-size: 0.78rem;
  letter-spacing: 1px;
}

.grid-stars .stars-count {
  font-size: 0.7rem;
  color: #999;
}

.grid-type {
  font-size: 16px;
  font-weight: 400;
  color: var(--eos-black);
  margin-bottom: 4px;
}

.grid-price {
  font-size: 16px;
  font-weight: 400;
  color: var(--eos-black);
  margin-bottom: 12px;
}

.grid-price .price-compare {
  text-decoration: line-through;
  color: #999;
  font-weight: 400;
  margin-right: 6px;
}

/* Swatches */
.grid-swatches {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.grid-swatch {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.grid-swatch:hover {
  transform: scale(1.15);
}

.grid-swatch.active {
  border-color: var(--eos-black);
}

.grid-atc {
  display: block;
  width: 100%;
  padding: 7px;
  text-align: center;
  font-size: 14.4px;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: normal;
  border: 1px solid var(--eos-black);
  background: var(--eos-white);
  color: var(--eos-black);
  cursor: pointer;
  transition: all 0.3s ease;
}

.grid-atc:hover {
  background: var(--eos-black);
  color: var(--eos-white);
}

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 32px 40px 56px;
}

.page-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--eos-black);
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.page-num:hover {
  border-color: var(--eos-black);
}

.page-num.active {
  background: var(--eos-black);
  color: var(--eos-white);
}

.page-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--eos-black);
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.15);
  transition: all 0.2s ease;
}

.page-next:hover {
  border-color: var(--eos-black);
  background: var(--eos-black);
  color: var(--eos-white);
}

.page-next svg {
  width: 16px;
  height: 16px;
}

.page-next:hover svg {
  stroke: var(--eos-white);
}

/* ===== FILTER PANEL SIDEBAR ===== */
.filter-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.filter-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.filter-panel {
  position: fixed !important;
  top: 0 !important;
  right: -420px;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  background: var(--eos-white);
  z-index: 99999 !important;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 32px rgba(0,0,0,0.1);
  overflow: auto;
}
.filter-panel.open {
  right: 0 !important;
}
.filter-overlay {
  z-index: 99998 !important;
}

.filter-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.filter-panel-header h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  font-style: italic;
}
.filter-panel-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--eos-black);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s;
}
.filter-panel-close:hover {
  background: #f0f0f0;
}

/* Filter body - scrollable */
.filter-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 0 28px;
}

/* Filter group */
.filter-group {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.filter-group-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--eos-black);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
      
}
.filter-group-toggle .filter-chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}
.filter-group-toggle.open .filter-chevron {
  transform: rotate(180deg);
}

.filter-group-content {
  padding-bottom: 20px;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.3s ease;
  max-height: 500px;
  opacity: 1;
  overflow: hidden;
}
.filter-group-content.collapsed {
  max-height: 0;
  opacity: 0;
  padding-bottom: 0;
}

/* Checkboxes */
.filter-check {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--eos-black);
  transition: color 0.2s;
}
.filter-check:hover {
  color: var(--eos-magenta);
}
.filter-check input[type="checkbox"],
.filter-check input[type="radio"] {
  position: absolute !important;
  opacity: 0 !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  left: 0 !important;
  top: 0 !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}
i.filter-checkbox-mark {
  display: inline-block !important;
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  border: 2px solid #ccc !important;
  border-radius: 3px !important;
  background: #fff !important;
  position: relative !important;
  flex-shrink: 0 !important;
  cursor: pointer !important;
  transition: border-color 0.2s, background 0.2s !important;
  box-sizing: border-box !important;
  padding: 0 !important;
  margin: 0 !important;
  font-style: normal !important;
  vertical-align: middle !important;
}
i.filter-checkbox-mark::before {
  content: none !important;
  display: none !important;
}
.filter-check input[type="radio"] + i.filter-checkbox-mark {
  border-radius: 50% !important;
}
.filter-check input[type="checkbox"]:checked + i.filter-checkbox-mark,
.filter-check input[type="radio"]:checked + i.filter-checkbox-mark {
  background: #1a1a1a !important;
  border-color: #1a1a1a !important;
}
.filter-check input[type="checkbox"]:checked + i.filter-checkbox-mark::after {
  content: '' !important;
  display: block !important;
  position: absolute !important;
  top: 1px !important;
  left: 4px !important;
  width: 5px !important;
  height: 10px !important;
  border: solid #fff !important;
  border-width: 0 2px 2px 0 !important;
  transform: rotate(45deg) !important;
  background: transparent !important;
}
.filter-check input[type="radio"]:checked + i.filter-checkbox-mark::after {
  content: '' !important;
  display: block !important;
  position: absolute !important;
  top: 3px !important;
  left: 3px !important;
  width: 10px !important;
  height: 10px !important;
  background: #fff !important;
  border-radius: 50% !important;
  border: none !important;
}
.filter-check .filter-check-label {
  flex: 1;
  line-height: 1.4;
}

/* Price range slider */
.price-range-slider {
  padding: 8px 0;
}
.price-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 0.85rem;
  font-weight: 600;
}

.range-track {
  position: relative;
  height: 4px;
  background: #e0e0e0;
  border-radius: 2px;
  margin: 12px 0 8px;
}
.range-fill {
  position: absolute;
  height: 100%;
  background: var(--eos-black);
  border-radius: 2px;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.range-input {
  position: absolute;
  top: -8px;
  left: 0;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  pointer-events: none;
  margin: 0;
  height: 20px;
}
.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--eos-white);
  border: 2px solid var(--eos-black);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 2;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.range-input::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--eos-white);
  border: 2px solid var(--eos-black);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

/* Filter footer */
.filter-panel-footer {
  display: flex;
  gap: 12px;
  padding: 20px 28px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.filter-clear-btn {
  flex: 1;
  padding: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: lowercase;
  border: 2px solid var(--eos-black);
  background: var(--eos-white);
  color: var(--eos-black);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-clear-btn:hover {
  background: #f5f5f5;
}
.filter-apply-btn {
  flex: 1;
  padding: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: lowercase;
  border: 2px solid var(--eos-black);
  background: var(--eos-black);
  color: var(--eos-white);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-apply-btn:hover {
  background: #333;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: var(--eos-off-white);
  padding: 64px 40px 72px;
}

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-title {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 8px;
}

.faq-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.faq-desc {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.faq-list {
  text-align: left;
  border-top: 2px solid var(--eos-black);
}

.faq-item {
  border-bottom: 2px solid var(--eos-black);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--eos-black);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--eos-magenta);
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .collection-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 8px 24px 32px;
  }
  .collection-tabs { padding: 20px 24px 0; gap: 20px; }
  .sort-filter-bar { padding: 16px 24px; }
}

@media (max-width: 768px) {
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 8px 16px 24px;
  }
  .collection-tabs {
    padding: 16px 16px 0;
    gap: 16px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .collection-tabs a { font-size: 0.82rem; }
  .sort-filter-bar { padding: 12px 16px; }
}

@media (max-width: 480px) {
  .collection-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 8px 12px 20px;
  }
  .collection-tabs { gap: 12px; padding: 12px 12px 0; }
  .grid-card-info h3 { font-size: 0.85rem; }
  .grid-type { font-size: 0.78rem; }
}
/* ================================================
   EOS Our Ingredients Page
   ================================================ */

/* ===== HERO HEADER ===== */
.ingredients-hero {
  text-align: center;
  padding: 60px 40px 32px;
  background: var(--eos-off-white);
}

.ingredients-hero h1 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  margin-bottom: 14px;
}

.ingredients-hero p {
  font-size: 16px;
  color: #555;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== CATEGORY TABS ===== */
.ingredients-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 28px 40px 40px;
  background: var(--eos-off-white);
  flex-wrap: wrap;
}

.ing-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  text-transform: lowercase;
  color: var(--eos-black);
  background: var(--eos-white);
  border: 2px solid var(--eos-black);
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.2s;
}

.ing-tab.active {
  background: var(--eos-lime);
  border-color: var(--eos-lime);
}

.ing-tab:hover:not(.active) {
  background: #f5f5f5;
}

.ing-tab .tab-icon {
  font-size: 20px;
}

/* ===== INGREDIENT CARDS GRID ===== */
.ingredients-grid {
  padding: 0 24px 40px;
  background: var(--eos-off-white);
}

/* Tab panels */
.ing-panel {
  display: none;
}

.ing-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  animation: ingFade 0.3s ease;
}

@keyframes ingFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Individual ingredient card — text + image side by side */
.ing-card {
  display: grid;
  grid-template-columns: 35% 65%;
  min-height: 380px;
  overflow: hidden;
}

/* Text side */
.ing-card-text {
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--eos-off-white);
}

.ing-card-text h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.05;
  margin-bottom: 14px;
}

.ing-card-text p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 18px;
  font-style: italic;
}

.ing-card-tags {
  display: inline-block;
  font-size: 13px;
  color: var(--eos-black);
  background: #ece6de;
  padding: 7px 16px;
  border-radius: 20px;
  align-self: flex-start;
}

/* Image side */
.ing-card-image {
  position: relative;
  overflow: hidden;
}

.ing-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ing-card:hover .ing-card-image img {
  transform: scale(1.04);
}

.ing-card-image .ing-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

/* Alternating bg: beige and lavender */
.ing-card:nth-child(odd) .ing-card-image .ing-img-placeholder {
  background: linear-gradient(160deg, #f0e8d8, #e8dcc8);
}
.ing-card:nth-child(even) .ing-card-image .ing-img-placeholder {
  background: linear-gradient(160deg, #d8c8e8, #c8b8d8);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .ingredients-hero h1 { font-size: 36px; }
  .ing-panel.active { grid-template-columns: 1fr; }
  .ing-card { min-height: 320px; }
  .ingredients-tabs { gap: 8px; }
  .ing-tab { padding: 12px 20px; font-size: 14px; }
}

@media (max-width: 768px) {
  .ingredients-hero { padding: 40px 24px 24px; }
  .ingredients-hero h1 { font-size: 30px; }
  .ingredients-tabs { padding: 20px 16px 28px; }
  .ing-panel.active { grid-template-columns: 1fr; }
  .ing-card { grid-template-columns: 1fr; min-height: auto; }
  .ing-card-image { min-height: 260px; }
  .ing-card-text { padding: 28px 20px; }
  .ing-card-text h3 { font-size: 26px; }
  .ingredients-grid { padding: 0 16px 24px; }
  .ing-tab { padding: 10px 16px; font-size: 13px; }
}
/* ================================================
   EOS Our Ingredients Page
   ================================================ */

/* ===== HERO HEADER ===== */
.ingredients-hero {
  text-align: center;
  padding: 60px 40px 32px;
  background: var(--eos-off-white);
}

.ingredients-hero h1 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  margin-bottom: 14px;
}

.ingredients-hero p {
  font-size: 16px;
  color: #555;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== CATEGORY TABS ===== */
.ingredients-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 28px 40px 40px;
  background: var(--eos-off-white);
  flex-wrap: wrap;
}

.ing-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  text-transform: lowercase;
  color: var(--eos-black);
  background: var(--eos-white);
  border: 2px solid var(--eos-black);
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.2s;
}

.ing-tab.active {
  background: var(--eos-lime);
  border-color: var(--eos-lime);
}

.ing-tab:hover:not(.active) {
  background: #f5f5f5;
}

.ing-tab .tab-icon {
  font-size: 20px;
}

/* ===== INGREDIENT CARDS GRID ===== */
.ingredients-grid {
  padding: 0 24px 40px;
  background: var(--eos-off-white);
}

/* Tab panels */
.ing-panel {
  display: none;
}

.ing-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  animation: ingFade 0.3s ease;
}

@keyframes ingFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Individual ingredient card — text + image side by side */
.ing-card {
  display: grid;
  grid-template-columns: 35% 65%;
  min-height: 380px;
  overflow: hidden;
}

/* Text side */
.ing-card-text {
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--eos-off-white);
}

.ing-card-text h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.05;
  margin-bottom: 14px;
}

.ing-card-text p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 18px;
  font-style: italic;
}

.ing-card-tags {
  display: inline-block;
  font-size: 13px;
  color: var(--eos-black);
  background: #ece6de;
  padding: 7px 16px;
  border-radius: 20px;
  align-self: flex-start;
}

/* Image side */
.ing-card-image {
  position: relative;
  overflow: hidden;
}

.ing-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ing-card:hover .ing-card-image img {
  transform: scale(1.04);
}

.ing-card-image .ing-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

/* Alternating bg: beige and lavender */
.ing-card:nth-child(odd) .ing-card-image .ing-img-placeholder {
  background: linear-gradient(160deg, #f0e8d8, #e8dcc8);
}
.ing-card:nth-child(even) .ing-card-image .ing-img-placeholder {
  background: linear-gradient(160deg, #d8c8e8, #c8b8d8);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .ingredients-hero h1 { font-size: 36px; }
  .ing-panel.active { grid-template-columns: 1fr; }
  .ing-card { min-height: 320px; }
  .ingredients-tabs { gap: 8px; }
  .ing-tab { padding: 12px 20px; font-size: 14px; }
}

@media (max-width: 768px) {
  .ingredients-hero { padding: 40px 24px 24px; }
  .ingredients-hero h1 { font-size: 30px; }
  .ingredients-tabs { padding: 20px 16px 28px; }
  .ing-panel.active { grid-template-columns: 1fr; }
  .ing-card { grid-template-columns: 1fr; min-height: auto; }
  .ing-card-image { min-height: 260px; }
  .ing-card-text { padding: 28px 20px; }
  .ing-card-text h3 { font-size: 26px; }
  .ingredients-grid { padding: 0 16px 24px; }
  .ing-tab { padding: 10px 16px; font-size: 13px; }
}
/* ================================================
   EOS Routine 101 Page
   ================================================ */

/* ===== HERO: Image left, text panel right ===== */
.routine-hero {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 600px;
}

.routine-hero-image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #b8b0f0, #a0a8e8);
}

.routine-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.routine-hero-image .hero-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.routine-hero-text {
  background: #AFB9FB;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 56px;
}

.routine-hero-text h1 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  margin-bottom: 16px;
  color: var(--eos-black);
}

.routine-hero-text .hero-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: var(--eos-black);
  margin-bottom: 20px;
}

.routine-hero-text p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  max-width: 420px;
}

/* ===== ROUTINE CARDS SECTION ===== */
.routine-cards-section {
  padding: 64px 40px;
  background: var(--eos-off-white);
  position: relative;
}

/* GRWM sticker */
.routine-sticker {
  position: absolute;
  top: 20px;
  left: 40px;
  font-size: 48px;
  z-index: 2;
}

.routine-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Individual routine card */
.routine-card {
  background: var(--eos-white);
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Header: step name + tagline ABOVE image */
.routine-card-header {
  padding: 20px 24px 14px;
  text-align: center;
  background: var(--eos-off-white);
}

.routine-card-step {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  margin-bottom: 4px;
  color: var(--eos-black);
}

.routine-card-tagline {
  font-size: 14px;
  font-weight: 400;
  text-transform: lowercase;
  color: var(--eos-gray);
}

/* Image area - lavender bg, dominant */
.routine-card-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, #d8d0f0 0%, #c8c0e8 100%);
}

.routine-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.routine-card:hover .routine-card-image img {
  transform: scale(1.03);
}

/* Image wrapper - relative for overlay positioning */
.routine-card-image {
  position: relative;
}

/* Expandable text body - overlays bottom of image, slides up */
.routine-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #F7EFE7;
  overflow: hidden;
  max-height: 300px;
  transition: max-height 0.4s ease;
  z-index: 2;
}

.routine-card-body.collapsed {
  max-height: 0;
}

.routine-card-body-inner {
  padding: 24px 24px 28px;
  text-align: center;
}

.routine-card-body-inner p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

.routine-card-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  text-transform: lowercase;
  border: 1px solid var(--eos-black);
  background: var(--eos-white);
  color: var(--eos-black);
  transition: all 0.3s ease;
  text-decoration: none;
}

.routine-card-btn:hover {
  background: var(--eos-black);
  color: var(--eos-white);
}

/* Toggle button - pill floating at bottom of image */
.routine-card-toggle {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  color: var(--eos-black);
  background: var(--eos-white);
  border: none;
  border-radius: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.routine-card-toggle:hover {
  background: #f5f5f5;
}

.routine-card-toggle .toggle-arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
  font-style: normal;
}

.routine-card.open .routine-card-toggle .toggle-arrow {
  transform: rotate(180deg);
}

/* When body is open, move toggle below the body overlay */
.routine-card.open .routine-card-toggle {
  bottom: 0;
  border-radius: 0;
  width: 100%;
  left: 0;
  transform: none;
  justify-content: center;
  box-shadow: none;
  padding: 12px;
  background: #F7EFE7;
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* Adjust body bottom when toggle is part of overlay */
.routine-card.open .routine-card-body {
  bottom: 42px;
}

/* ===== TESTIMONIALS SECTION ===== */
.routine-testimonials {
  padding: 56px 40px;
  background: var(--eos-white);
  overflow: hidden;
}

.routine-testimonials-header {
  text-align: center;
  margin-bottom: 36px;
}

.routine-testimonials-header h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
}

/* Testimonial slider with arrows */
.testimonial-slider {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}

.testimonial-card {
  flex: 0 0 calc(25% - 18px);
  text-align: center;
  padding: 0 12px;
}

.testimonial-card .test-stars {
  color: var(--eos-black);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
  display: block;
}

.testimonial-card blockquote {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

/* Progress bar */
.testimonial-progress {
  max-width: 1400px;
  margin: 28px auto 0;
  padding: 0 50px;
}

.testimonial-progress .tp-track {
  height: 4px;
  background: #e0e0e0;
  border-radius: 2px;
  overflow: hidden;
}

.testimonial-progress .tp-bar {
  height: 100%;
  background: var(--eos-black);
  border-radius: 2px;
  width: 50%;
  transition: width 0.4s ease, margin-left 0.4s ease;
}

/* Slider arrows */
.test-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--eos-white);
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  cursor: pointer;
  transition: all 0.2s;
}

.test-arrow svg {
  width: 18px;
  height: 18px;
}

.test-arrow:hover {
  border-color: var(--eos-black);
}

.test-prev { left: 0; }
.test-next { right: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .routine-hero { grid-template-columns: 1fr 1fr; min-height: 480px; }
  .routine-hero-text { padding: 40px 32px; }
  .routine-hero-text h1 { font-size: 36px; }
  .routine-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .routine-card-step { font-size: 26px; }
}

@media (max-width: 768px) {
  .routine-hero { grid-template-columns: 1fr; }
  .routine-hero-image { min-height: 320px; }
  .routine-hero-text { padding: 36px 24px; }
  .routine-hero-text h1 { font-size: 30px; }
  .routine-cards-section { padding: 40px 20px; }
  .routine-cards-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .routine-sticker { font-size: 36px; left: 20px; }
  .routine-testimonials { padding: 40px 20px; }
  .testimonial-card { flex: 0 0 calc(50% - 12px); }
  .testimonial-slider { padding: 0 40px; }
  .testimonial-progress { padding: 0 40px; }
}
/* ================================================
   EOS - Evolution of Smooth | Accurate Rebuild
   Fonts: Buenos Aires (body), Commuter (display)
   Colors: Lime #E0F25F, Magenta #D6007D, Black, White
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&display=swap');

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --eos-magenta: #D6007D;
  --eos-lime: #E0F25F;
  --eos-black: #000000;
  --eos-white: #ffffff;
  --eos-off-white: #f9f6f4;
  --eos-gray: #999999;
  --eos-dark-gray: #34394D;
  --eos-pink: #F9E3F8;
  --eos-lavender: #DBDBFF;
  --eos-peach-pink: #E97FBD;

  /* Buenos Aires -> Inter (closest free match: geometric sans, similar x-height) */
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  /* commuter -> Playfair Display (closest free serif display) */
  --font-display: 'Playfair Display', Georgia, serif;

  --max-width: 100%;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--eos-black);
  background: var(--eos-white);
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   ANNOUNCEMENT BAR - Lime green with scrolling
   ============================================= */
.announcement-bar {
  background: var(--eos-lime);
  color: var(--eos-black);
  text-align: center;
  padding: 6px 16px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  display: flex;
  justify-content: center;
  gap: 40px;
  overflow: hidden;
  white-space: nowrap;
  height: 31px;
  align-items: center;
}

.vc-search-row.bxCatSearch {
    display: inline-block;
    width: 100%;
}

#vcSearchResults .absDropi {
    position:relative !important;
  }
.announcement-bar span {
    display: inline-block;
  }

.announcement-bar a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* =============================================
   HEADER - White bg, magenta circle logo
   ============================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 9;
    background: none;
    height: 54px;
    display: flex;
    align-items: center;
    border-bottom: none;
    box-shadow: none !important;
}

.header-inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Circle logo */
.logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--eos-magenta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 40px;
}

.logo span {
  color: var(--eos-white);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

.logo .logo-sub {
  display: block;
  font-size: 0.35rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-align: center;
  margin-top: 1px;
  text-transform: lowercase;
}

/* Main nav */
.main-nav {
  display: flex;
  gap: 36px;
  align-items: center;
  flex: 1;
}

.main-nav a {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: normal;
  color: var(--eos-black);
  position: relative;
  padding: 4px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}


.main-nav .mega-col a {
    
    text-transform: capitalize !important;
}


.product-info .product-subtitle {
    font-size: 19px;
    font-weight: 600;
    color: var(--eos-black);
    margin-bottom: 20px;
    display: inline-block;
}

.product-info .product-title {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 5px;
}

.eosTheme .product-info {
    text-align: center;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    justify-content: center;
}

.main-nav a .chevron {
  width: 10px;
  height: 10px;
  opacity: 0.5;
  transition: transform var(--transition);
}

.main-nav a:hover {
  color: var(--eos-magenta);
}

.main-nav a:hover .chevron {
  transform: rotate(180deg);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.header-actions button,
.header-actions a {
  display: flex;
  align-items: center;
  color: var(--eos-black);
}

.header-actions svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--eos-black);
}

/* EOS theme: the legacy header emits the cart icon twice for anonymous
   visitors with guestHeadMenu[11] enabled — once inside the @foreach
   loop in .hidiRoMib (intended for the mobile breakpoint via .showRoMiblo)
   and once standalone inside .kdkok. Other themes hide one of them via
   per-theme @media rules in master.css; EOS has no such rule, so both
   render at desktop size and produce a duplicate. Keep the .kdkok one
   (canonical desktop slot) and hide the in-loop duplicate. */
.header-btn.hidiRoMib li.iconCart.eos-cart-icon {
  display: none !important;
}

/* EOS theme: align the legacy header's two .header-btn sibling blocks
   (hidiRoMib + kdkok) into a single horizontal row so the cart icon and
   the account icon sit side-by-side instead of stacking vertically.
   eos_new.css is only loaded under theme_select_id == 26 so these rules
   never reach other themes. */

.header-btn.hidiRoMib > ul,
.header-btn.kdkok > ul {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  
}
.bxiMoni .header-btn.kdkok {
    display: inline-block;
    margin-top: 10px;
}


footer.site-footer {
    display: inline-block;
    width: 100%;
}

.header-btn.hidiRoMib > ul > li,
.header-btn.kdkok > ul > li {
  display: inline-flex !important;
  align-items: center;
  margin: 0;
  padding: 0;
  float: none;
}
/* EOS cart icon: legacy .iconCart wraps a Materialize dropdown trigger with
   its own padding/anchor styles. On EOS theme the icon is an inline SVG —
   strip extraneous chrome and force the badge into the small magenta pill
   shown in the reference (product.html line 35 + 2 in the screenshot). */
.iconCart.eos-cart-icon > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none !important;
  box-shadow: none !important;
  padding: 0 4px !important;
  position: relative;
  color: var(--eos-black, #000) !important;
}
.iconCart.eos-cart-icon > a:hover { color: var(--eos-magenta, #d80058) !important; background: none !important; }
.iconCart.eos-cart-icon > a svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
  display: block;
}
.iconCart.eos-cart-icon > a .badge {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--eos-magenta, #d80058) !important;
  color: #fff !important;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* EOS account-icon button: strip the legacy .login-today pill (Materialize
   pill with brand background) so the icon renders as a flat SVG matching
   the rest of the header-actions on the EOS reference layout. Set in
   resources/views/theme_page/layouts/header.blade.php for theme_select_id == 26. */
.login-today.eos-icon-btn {
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 8px !important;
  line-height: 1;
  color: var(--eos-black, #000) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-width: 0;
}
.login-today.eos-icon-btn:hover {
  color: var(--eos-magenta, #d80058) !important;
  background: none !important;
}
.login-today.eos-icon-btn svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
  display: block;
}

/* EOS header centering: lay .bxiMoni out as a flex row so the legacy
   children (logo, the .site-header wrapper, and the two .header-btn
   icon blocks) all share one row. .main_studOne (which embeds the
   EOS top_menu) grows to fill the gap between logo and icons; the
   .main-nav inside it then centers its items horizontally. .site-header
   and .header-inner keep their original sizing — they just inherit the
   wider canvas. Scoped to .evolutionofsmooth only. */
.evolutionofsmooth .bxiMoni {
  display: flex;
  align-items: center;
  width: 100%;
}
.evolutionofsmooth .bxiMoni .bxiMiLog {
  flex: 0 0 auto;
  float: none;
}
.evolutionofsmooth .bxiMoni .main_studOne.hidiRoMib {
  float: none;
  flex: 1 1 auto;
  min-width: 0;
}
.evolutionofsmooth .bxiMoni .header-btn.hidiRoMib,
.evolutionofsmooth .bxiMoni .header-btn.kdkok {
     display: flex;
    align-items: center;
}
.evolutionofsmooth .main-nav {
  justify-content: center;
}

/* =============================================
   HERO CAROUSEL - Full bleed, 2 slides
   ============================================= */
.hero-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}


.collection-card .card-bg img {
    width: 100%;
}
.hero-slides {
  display: flex;
  transition: transform 0.6s ease;
}

.ugc-card .ugc-image img {
    object-fit: contain;
    width: 100%;
    height: 480px;
}

.hero-slide {
  min-width:100%;
  position:relative;
  height:680px;
  overflow:hidden;
  }
.hero-slide .slide-bg {
  position: absolute;
  inset: 0;
  }
.slide-1 .slide-bg {
  background: linear-gradient(135deg, #e8899e 0%, #f0a0b0 30%, #f5b8c0 60%, #f0c8b8 100%);
  }
.slide-2 .slide-bg {
  background: linear-gradient(180deg, #a8d8f0 0%, #c0e0e8 50%, #e0ece0 100%);
  }
.hero-slide .slide-content {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  text-align: left;
  z-index: 2;
  max-width: 420px;
}

.hero-slide .slide-content h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
  font-style: italic;
  color: var(--eos-black);
}

.hero-slide .slide-content p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: var(--eos-black);
  opacity: 0.7;
  font-style: italic;
}

.hero-slide .slide-content .slide-btn {
  display: inline-block;
  padding: 14px 40px;
  font-size: 14.4px;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: normal;
  border: none;
  background: var(--eos-lime);
  color: var(--eos-black);
  transition: all var(--transition);
}

.hero-slide .slide-content .slide-btn:hover {
  background: #c8d84a;
}

/* Carousel dots */
.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(0,0,0,0.2);
  cursor: pointer;
  transition: background var(--transition);
}

.carousel-dots .dot.active {
  background: var(--eos-white);
}

/* =============================================
   SECTION SHARED
   ============================================= */
.section {
  padding: 60px 0;
}

.section-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  padding: 0 24px;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.section-top h2 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: normal;
}

.section-top .view-all {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: normal;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section-top .view-all:hover {
  color: var(--eos-magenta);
}

/* =============================================
   SLIDER - Shared arrow-based slider
   ============================================= */
.slider-container {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
}

.slider-viewport {
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

/* Restore native checkbox inside the eos review modal — Materialize hides every
   [type=checkbox] off-screen, expecting a sibling label with pseudo-element styling.
   The review form uses the natural <label><input><span></label> pattern. */
.review-check input[type="checkbox"],
.eosTheme input[type="checkbox"] {
  position: static !important;
  left: auto !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;
  pointer-events: auto;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--eos-white);
  border: 2px solid var(--eos-black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  transition: all var(--transition);
}

.slider-arrow svg {
  width: 20px;
  height: 20px;
}

.slider-arrow:hover {
  background: var(--eos-black);
  color: var(--eos-white);
}

.slider-arrow:hover svg {
  stroke: var(--eos-white);
}

.slider-prev { left: 8px; }
.slider-next { right: 8px; }

.slider-progress {
  max-width: var(--max-width);
  margin: 20px auto 0;
  padding: 0 60px;
  }
.slider-arrow, .eosTheme .slider-arrow {    
    padding:0px !important;
}
.slider-progress .progress-track {
  height: 3px;
  background: #eee;
  border-radius: 2px;
  overflow: hidden;
}
.slider-progress .progress-bar {
  height: 100%;
  width: 5%;
  background: var(--eos-black);
  border-radius: 2px;
  transition: width 0.4s ease;
}
.product-card {
  flex: 0 0 calc(25% - 15px);
  background: var(--eos-white);
}
.product-card .product-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f0eeea;
  border-radius: 0;
}
.product-card .product-image .img-primary,
.product-card .product-image .img-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  transition: opacity 0.4s ease;
}
.product-card .product-image .img-primary img,
.product-card .product-image .img-hover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card .product-image .img-primary {
  opacity: 1;
}

.product-card .product-image .img-hover {
  opacity: 0;
}

.product-card:hover .product-image .img-primary {
  opacity: 0;
}

.product-card:hover .product-image .img-hover {
  opacity: 1;
}

.product-card .product-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--eos-white);
  color: var(--eos-black);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 0;
  border: 1px solid rgba(0,0,0,0.08);
  z-index: 2;
}

.product-card .product-badge + .product-badge {
  top: 44px;
}

.product-card .product-details {
  padding: 16px 4px 0;
}

.product-card .product-name-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 4px;
}

.product-card .product-name {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.product-card .product-name .product-line {
    display: block;
    font-weight: 400;
    color: var(--eos-black);
  }
.review-field.review-field-row select.review-select {
    display:block;
    max-width:200px;
  }

.evolutionofsmooth main.py-4 nav.pagination {
    background: none !important;
    box-shadow: none !important;
}

.product-card .product-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  font-size: 0.72rem;
  color: var(--eos-gray);
  white-space: nowrap;
}

.product-card .product-stars .stars {
  color: var(--eos-magenta);
  letter-spacing: 1px;
  font-size: 0.75rem;
}

.product-card .product-type {
  font-size: 16px;
  font-weight: 400;
  color: var(--eos-black);
  margin-bottom: 4px;
}

.product-card .product-price {
  font-size: 16px;
  font-weight: 400;
  color: var(--eos-black);
  margin-bottom: 12px;
}

.product-card .product-price .compare-price {
  text-decoration: line-through;
  color: var(--eos-gray);
  font-weight: 400;
  margin-right: 6px;
}

.product-card .product-price .sale-price {
  color: var(--eos-black);
}

.product-card .product-swatches {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.product-card .swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition);
}

.product-card .swatch:hover,
.product-card .swatch.active {
  border-color: var(--eos-black);
}

.product-card .add-to-cart {
  display: block;
  width: 100%;
  padding: 7px;
  text-align: center;
  font-size: 14.4px;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: normal;
  border: 1px solid var(--eos-black);
  background: var(--eos-white);
  color: var(--eos-black);
  cursor: pointer;
  transition: all var(--transition);
}

.product-card .add-to-cart:hover {
  background: var(--eos-black);
  color: var(--eos-white);
}


/* =============================================
   COLLECTIONS - Slider cards
   ============================================= */
.collection-card {
  flex: 0 0 calc(25% - 15px);
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.collection-card .card-bg {
  position: absolute;
  inset: 0;
  transition: transform var(--transition);
}

.collection-card:hover .card-bg {
  transform: scale(1.05);
}

.collection-card:nth-child(1) .card-bg { background: linear-gradient(160deg, #f5e6dc, #f0d4c4); }
.collection-card:nth-child(2) .card-bg { background: linear-gradient(160deg, #c8b8f0, #a898d8); }
.collection-card:nth-child(3) .card-bg { background: linear-gradient(160deg, #f5c0d0, #e898a8); }
.collection-card:nth-child(4) .card-bg { background: linear-gradient(160deg, #d8c0e8, #c0a8d8); }
.collection-card:nth-child(5) .card-bg { background: linear-gradient(160deg, #f0d8c8, #e8c4b0); }

.collection-card .card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  color: var(--eos-white);
  z-index: 2;
}

.collection-card .card-info h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 4px;
  line-height: 1;
}

.collection-card .card-info span {
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =============================================
   MARQUEE - Scrolling text strip
   ============================================= */
.marquee-section {
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: lowercase;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.marquee-track span::after {
  content: '\00B7';
  font-size: 1.2rem;
  opacity: 0.4;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   VANILLA CASHMERE HERO BANNER
   ============================================= */
.feature-hero {
  position: relative;
  height: 500px;
  display: flex;
  overflow: hidden;
}

.feature-hero .feature-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--eos-pink) 0%, #f5d0e8 100%);
}

.feature-hero .feature-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  max-width: 550px;
}

.feature-hero .feature-content h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  margin-bottom: 8px;
}

.feature-hero .feature-content .subtitle {
  font-size: 1rem;
  font-style: italic;
  color: #555;
  margin-bottom: 16px;
}

.feature-hero .feature-content p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 28px;
}

.feature-hero .feature-content .slide-btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: lowercase;
  border: 2px solid var(--eos-black);
  background: var(--eos-white);
  color: var(--eos-black);
  transition: all var(--transition);
  align-self: flex-start;
}

.feature-hero .feature-content .slide-btn:hover {
  background: var(--eos-black);
  color: var(--eos-white);
}

/* =============================================
   MISSION / VALUES TABS
   ============================================= */
.values-section {
  background: var(--eos-white);
}

.values-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
}

.values-image {
  background: #d8e8d0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  transition: background 0.4s ease;
}

.values-content {
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Tab content panels */
.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: tabFade 0.35s ease;
}

@keyframes tabFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.values-content h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  margin-bottom: 16px;
}

.values-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 28px;
  max-width: 420px;
}

.values-btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: lowercase;
  border: 2px solid var(--eos-black);
  background: var(--eos-white);
  color: var(--eos-black);
  transition: all var(--transition);
}

.values-btn:hover {
  background: var(--eos-black);
  color: var(--eos-white);
}

/* Tab buttons - large stacked rows at bottom */
.values-tabs-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
  border-top: 2px solid rgba(0,0,0,0.12);
}

.values-tabs-list button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  font-style: italic;
  text-transform: lowercase;
  color: var(--eos-gray);
  border: none;
  border-bottom: 2px solid rgba(0,0,0,0.12);
  background: none;
  cursor: pointer;
  transition: color var(--transition);
}

.values-tabs-list button.active {
  color: var(--eos-black);
}

.values-tabs-list button:hover {
  color: var(--eos-black);
}

/* =============================================
   REWARDS BANNER
   ============================================= */
.rewards-banner {
  background: var(--eos-magenta);
  color: var(--eos-white);
  text-align: center;
  padding: 48px 24px;
}

.rewards-banner h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 8px;
  line-height: 1;
}

.rewards-banner p {
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 24px;
}

.rewards-banner .reward-btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: lowercase;
  border: 2px solid var(--eos-white);
  background: var(--eos-white);
  color: var(--eos-magenta);
  transition: all var(--transition);
}

.rewards-banner .reward-btn:hover {
  background: transparent;
  color: var(--eos-white);
}

/* =============================================
   COMMUNITY / UGC SECTION
   ============================================= */
.community-section {
  background: linear-gradient(180deg, #e8e0f4 0%, #f0e8f8 40%, #f5f0fa 100%);
  padding: 56px 0 48px;
}

.community-header {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 36px;
}

.community-header h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 8px;
  color: var(--eos-black);
  line-height: 1;
}

.community-header p {
  font-size: 16px;
  color: #555;
  font-style: italic;
}

/* UGC slider container */
.ugc-slider {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
}

.ugc-slider .slider-arrow {
  background: var(--eos-white);
  border-color: rgba(0,0,0,0.15);
}

.ugc-track {
  gap: 16px;
}

/* UGC Card */
.ugc-card {
  flex: 0 0 calc(25% - 12px);
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.ugc-card .ugc-image {
  position: absolute;
  inset: 0;
  transition: transform 0.4s ease;
}

.ugc-card:hover .ugc-image {
  transform: scale(1.06);
}

.ugc-card .ugc-hover {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ugc-card:hover .ugc-hover {
  opacity: 1;
}

.ugc-card .ugc-learn {
  color: var(--eos-white);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  letter-spacing: 0.02em;
}

/* =============================================
   UGC POPUP MODAL
   ============================================= */
.ugc-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 24px;
}

.ugc-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.ugc-modal {
  background: var(--eos-white);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  max-width: 820px;
  width: 100%;
  max-height: 90vh;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
}

.ugc-modal-overlay.active .ugc-modal {
  transform: translateY(0) scale(1);
}

.ugc-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--eos-white);
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background var(--transition);
}

.ugc-modal-close:hover {
  background: #f0f0f0;
}

/* Left: Image */
.ugc-modal-image {
  flex: 0 0 50%;
  min-height: 480px;
  background: #e8e0f0;
  background-size: cover;
  background-position: center;
}

/* Right: Content */
.ugc-modal-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

/* Product list */
.ugc-modal-products {
  flex: 1;
  padding: 24px 24px 16px;
}

.ugc-product-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background var(--transition);
}

.ugc-product-item:hover {
  background: #fafafa;
}

.ugc-product-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #555;
  color: var(--eos-white);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ugc-product-name {
  flex: 1;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--eos-black);
}

.ugc-product-thumb {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  flex-shrink: 0;
}

/* Footer: handle + caption */
.ugc-modal-footer {
  border-top: 1px solid #eee;
  padding: 16px 24px 20px;
}

.ugc-modal-handle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.ugc-modal-handle a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--eos-black);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ugc-modal-handle .ig-icon {
  width: 20px;
  height: 20px;
  color: var(--eos-black);
}

.ugc-modal-caption {
  font-size: 0.82rem;
  color: #0066cc;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .ugc-card { flex: 0 0 calc(50% - 8px); }
  .ugc-slider { padding: 0 50px; }
  .ugc-modal { flex-direction: column; max-height: 95vh; }
  .ugc-modal-image { min-height: 240px; flex: 0 0 auto; }
  .ugc-modal-products { padding: 16px; }
  .ugc-modal-footer { padding: 12px 16px 16px; }
  .community-header h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .ugc-card { flex: 0 0 calc(80% - 8px); }
}

/* =============================================
   FOOTER - Magenta background
   ============================================= */
.site-footer {
  background: var(--eos-magenta);
  color: var(--eos-white);
 /* overflow: hidden;*/
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto 2fr;
  gap: 40px;
  padding: 56px 40px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: start;
}

/* Left column: newsletter */
.footer-left {
  max-width: 340px;
}

.footer-left h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 8px;
  line-height: 1;
}

.footer-left > p {
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  width: 100%;
  margin-bottom: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  font-size: 0.85rem;
  border: none;
  background: rgba(255,255,255,0.2);
  color: var(--eos-white);
  font-family: var(--font-body);
  outline: none;
  border-radius: 0;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.55);
}

.footer-subscribe-btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: lowercase;
  background: var(--eos-white);
  color: var(--eos-black);
  border: none;
  cursor: pointer;
  margin-bottom: 24px;
  transition: all var(--transition);
}

.footer-subscribe-btn:hover {
  background: var(--eos-lime);
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--eos-white);
  transition: opacity var(--transition);
}

.footer-social a:hover {
  opacity: 0.7;
}

.footer-social svg {
  width: 22px;
  height: 22px;
}

.footer-copyright {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Center: Decorative stamps */
.footer-stamps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-top: 20px;
}

.stamp {
  width: 90px;
  height: 90px;
  border: 3px dashed rgba(255,255,255,0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  transform: rotate(-8deg);
  background: rgba(255,255,255,0.06);
}

.stamp-1 { transform: rotate(-12deg) translateX(10px); }
.stamp-2 { transform: rotate(6deg) translateX(-10px); }

/* Right: Link columns */
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: normal;
  margin-bottom: 16px;
  color: var(--eos-white);
}

.footer-col ul li {
  margin-bottom: 7px;
}

.footer-col ul li a {
  font-size: 16px;
  color: var(--eos-white);
  opacity: 0.85;
  transition: opacity var(--transition);
}

.footer-col ul li a:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Stay Smooth marquee at bottom */
.footer-marquee {
  background: var(--eos-magenta);
  padding: 20px 0 24px;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-marquee span {
 font-family: var(--font-display);
    font-size: clamp(5rem, 12vw, 10rem);
    font-weight: 700;
    font-style: italic;
    color: rgb(255 255 255);
    text-transform: lowercase;
    padding: 0 40px;
    display: inline-block;
    letter-spacing: -0.02em;
}


.evolutionofsmooth .login-today {
    border-color: #303082 !important;
    color: #303082 !important;
}

.evolutionofsmooth .sign-today {
    background: #303082 !important;
    border-color: #303082 !important;
}

.evolutionofsmooth a#buttoning {background: #303082;}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-slide { height: 420px; }
  .hero-slide .slide-content { right: 5%; max-width: 350px; }
  .hero-slide .slide-content h2 { font-size: 2rem; }
  .feature-hero { height: 400px; }
  .feature-hero .feature-content { padding: 40px; }
  .feature-hero .feature-content h2 { font-size: 2.2rem; }
  .values-inner { grid-template-columns: 1fr; }
  .values-image { min-height: 300px; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }

  .hero-slide { height: 350px; }
  .hero-slide .slide-content { right: 50%; transform: translate(50%, -50%); text-align: center; max-width: 90%; }
  .hero-slide .slide-content h2 { font-size: 1.6rem; }

  .collection-card { flex: 0 0 calc(50% - 10px); }
  .product-card { flex: 0 0 calc(50% - 10px); }
  .slider-container { padding: 0 50px; }
  .slider-arrow { width: 36px; height: 36px; }
  .slider-prev { left: 4px; }
  .slider-next { right: 4px; }
  .slider-progress { padding: 0 50px; }

  .feature-hero {
    height: auto;
    min-height: 350px;
  }
  .feature-hero .feature-content {
    padding: 32px 24px;
  }
  .feature-hero .feature-content h2 { font-size: 1.8rem; }

  .values-content { padding: 40px 24px; }
  .values-content h3 { font-size: 1.6rem; }
  .values-tabs-list button { font-size: 1.4rem; padding: 14px 0; }

  .footer-main { grid-template-columns: 1fr; padding: 40px 24px; }
  .footer-stamps { display: none; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 24px; }
}



@media (max-width: 600px) {
    .evolutionofsmooth .header-btn.kdkok > ul > li{
        line-height:10px !important;
    }
  }

@media (max-width: 480px) {
  .hero-slide { height: 300px; }
  .hero-slide .slide-content h2 { font-size: 1.5rem; }

  .ugc-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-links { grid-template-columns: 1fr; }
}

/* =================================================================
 *  View Collections page — moved from inline <style> in
 *  resources/views/theme_page/evolutionofsmooth/view_collections.blade.php
 * ================================================================= */

/* Filter — category tree (parent with nested subcategories). */
.filter-cat                       { margin-bottom: 4px; }
.filter-cat + .filter-cat         { margin-top: 6px; }
.filter-check--parent             { font-weight: 600; }
.filter-cat-subs                  { padding-left: 28px; margin-top: 2px; }
.filter-cat-subs .filter-check    { padding: 6px 0 !important; font-weight: 400; }
.filter-cat-subs .filter-check-label { color: #555; }

/* Helpers that replaced inline style="..." on product card markup. */
.filter-stock-clear   { display: none; }
.grid-card-image-link { display: block; text-decoration: none; color: inherit; }
.grid-title-link      { color: inherit; text-decoration: none; }
.grid-empty-state     { grid-column: 1 / -1; text-align: center; padding: 60px 0; color: #888; }

/* Add the missing bg sizing to .grid-swatch (the base rule lives further up). */
.grid-swatch { background-size: cover; background-position: center; }

/* Add text-decoration to .grid-atc base rule and the three state modifiers. */
.grid-atc            { text-decoration: none; }
.grid-atc--disabled  { display: block; cursor: not-allowed; opacity: 0.6; }
.grid-atc--show      { display: block; }
.grid-atc--hide      { display: none; }

/* Pagination ellipsis sizing (used between page numbers when count is large). */
.pagination .page-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #888;
  font-weight: 600;
}

/* Price slider Materialize overrides — scoped to .price-range-slider so they
   only fire on the filter sidebar. Same selector specificity as Materialize
   so !important is required to win against vendor-injected rules. */
.price-range-slider .range-track {
  position: relative !important;
  height: 4px !important;
  background: #e0e0e0 !important;
  border-radius: 2px !important;
  margin: 18px 0 !important;
}
.price-range-slider .range-fill {
  position: absolute !important;
  height: 100% !important;
  background: #1a1a1a !important;
  border-radius: 2px !important;
  top: 0 !important;
  pointer-events: none !important;
  z-index: 1 !important;
}
.price-range-slider input[type="range"] {
  -webkit-appearance: none !important;
  appearance: none !important;
  position: absolute !important;
  top: -8px !important;
  left: 0 !important;
  width: 100% !important;
  height: 20px !important;
  background: transparent !important;
  pointer-events: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  outline: none !important;
}
.price-range-slider #rangeMin { z-index: 3 !important; }
.price-range-slider #rangeMax { z-index: 4 !important; }
.price-range-slider #rangeMin.on-top { z-index: 5 !important; }
/* Kill Materialize's range tooltip pin */
.price-range-slider .thumb,
.price-range-slider .thumb .value,
.filter-panel .thumb,
.filter-panel .thumb .value {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.price-range-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  background: #1a1a1a !important;
  border: 2px solid #fff !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3) !important;
  cursor: pointer !important;
  pointer-events: auto !important;
}
.price-range-slider input[type="range"]::-moz-range-thumb {
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  background: #1a1a1a !important;
  border: 2px solid #fff !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3) !important;
  cursor: pointer !important;
  pointer-events: auto !important;
}
.price-range-slider input[type="range"]::-webkit-slider-runnable-track,
.price-range-slider input[type="range"]::-moz-range-track {
  background: transparent !important;
  height: 4px !important;
  border: none !important;
}

/* ===== In-page product search bar =====
   Reuses the visual shell from /online/courses (master.css: .bxRigserch,
   input.inSerach, button.btn_serchi). We override the width-with-left-gap
   from master.css so the bar takes the full row (no categories dropdown). */
.vc-search-row                            { padding: 12px 40px 0 40px; position: relative; }
.vc-search-row.bxCatSearch                { padding-top: 12px; padding-bottom: 0; }
.vc-search-row .bxRigserch,
.vc-search-row .vc-search-wrap {
  position: relative;
  display: block;
  width: 100% !important;
  float: none !important;
}
.vc-search-row .bxRigserch form { position: relative; }
.vc-search-row input.inSerach   { background: #fff !important; }
.vc-search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  max-height: 480px;
  overflow-y: auto;
  z-index: 200;
  display: none;
}
.vc-search-results.is-open                       { display: block; }
.vc-search-results .absDropi                     { padding: 4px 0; }
.vc-search-results .listiNori                    { list-style: none; margin: 0; padding: 0; }
.vc-search-results .listiNori li                 { padding: 0; border-bottom: 1px solid #f3f3f3; }
.vc-search-results .listiNori li:last-child      { border-bottom: none; }
.vc-search-results .listiNori li a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--eos-black, #222);
  text-decoration: none;
  padding: 10px 18px;
}
.vc-search-results .listiNori li a:hover,
.vc-search-results .searchselected.selected a    { background: #f7f7f7; }
.vc-search-results .listiNoring li a span.inmiuSabhImg img {
  width: 40px; height: 40px; object-fit: cover; border-radius: 4px;
}
.vc-search-results .listiNoring li a span.inmiuSabhi { font-size: 14px; }
.vc-search-results .listiNori li a i.fa-search       { color: rgba(0,0,0,.45); font-size: 12px; }
.vc-search-empty { padding: 16px 18px; color: rgba(0,0,0,.55); font-size: 14px; text-align: center; }

@media (max-width: 768px) {
  .vc-search-row { padding: 12px 16px 0 16px; }
}



li.msg_icon.showRoMiblo.iconCart.eos-cart-icon a svg {
    color: #303082 !important;
}



.section.recommended-section .slider-arrow svg {    
    color: #000 !important;
}



@media (max-width: 1080px) {

  .evolutionofsmooth .bxiMoni {
      display:block;
  }
  .common-head .header-btn.kdkok ul li a {
    margin-top:0px;
  }
  .hedComn .btn_moiblLog {
    margin-top: 10px;
    margin-bottom:25px;
    text-align: left;
}
.login-today.eos-icon-btn {
    text-align: left;
    justify-content: flex-start;
    padding-left: 5px !important;
}

}
