/* ============================================================
   SAI BOUTIQUE — Custom CSS
   Extracted from inline styles for clean separation
   ============================================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --eduvers-font: "DM Sans", sans-serif;
  --eduvers-font-two: "Montserrat Alternates", sans-serif;
  --m: #6a1c2e;
  --md: #4A1F14;
  --ml: #C41A55;
  --cr: #FDF6EC;
  --cd: #F5E8D0;
  --cm: #E8D4B8;
  --gd: #EAB75F;
  --gl: #F0C978;
  --td: #2C0E15;
  --tm: #6B3040;
  --tl: #A07080;
}

/* ---- NEW SECTIONS WRAPPER ---- */
.new-sections-wrapper {
  background: var(--cr);
  font-family: var(--eduvers-font);
  color: var(--td);
  font-size: 13px;
}

/* MARQUEE */
.new-sections-wrapper .marquee-wrap {
  background: linear-gradient(135deg, #691b2d 0%, #3D0914 100%) !important;
  overflow: hidden;
  padding: 11px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.new-sections-wrapper .marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
}

.new-sections-wrapper .marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.new-sections-wrapper .marquee-item {
  font-size: 11.5px;
  font-weight: 600;
  color: #FFF6D6 !important;
  letter-spacing: .14em;
  padding: 0 28px;
  border-right: 1px solid rgba(212, 175, 55, 0.35);
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
}

/* SECTION HEADER */
.new-sections-wrapper .sec-head {
  text-align: center;
  padding: 36px 20px 20px;
}

.new-sections-wrapper .sec-eyebrow {
  font-size: 10px;
  letter-spacing: .2em;
  color: #4A1F14;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 800;
}

.new-sections-wrapper .sec-title {
  font-family: var(--eduvers-font-two);
  font-size: 28px;
  font-weight: 600;
  color: #6a1c2e;
}

.new-sections-wrapper .sec-sub {
  font-size: 12px;
  color: var(--tl);
  margin-top: 4px;
}

/* CATEGORY PILLS */
.new-sections-wrapper .cat-row {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 0 20px 24px;
  flex-wrap: wrap;
}

.new-sections-wrapper .cat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all .2s;
}

.new-sections-wrapper .cat-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--cm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  overflow: hidden;
}

.new-sections-wrapper .cat-pill:hover .cat-icon {
  border-color: var(--m);
  transform: translateY(-3px);
}

.new-sections-wrapper .cat-pill:hover .cat-label {
  color: var(--m);
}

.new-sections-wrapper .cat-pill:hover .cat-icon img {
  transform: scale(1.1) translateY(-2px);
}

.new-sections-wrapper .cat-label {
  font-size: 11px;
  color: var(--tm);
  letter-spacing: .04em;
}

.new-sections-wrapper .cat-icon svg {
  width: 34px;
  height: 54px;
}

/* OFFER BANNER */
.new-sections-wrapper .offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 30px 40px;
}

.new-sections-wrapper .offer-card {
  border-radius: 16px;
  min-height: 340px;
  height: auto;
  display: flex;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(74,31,20,0.04);
}

.new-sections-wrapper .offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(74,31,20,0.12);
}

.new-sections-wrapper .offer-card.a {
  background: linear-gradient(135deg, #6a1c2e 0%, #4A1F14 100%);
  border: none;
}

.new-sections-wrapper .offer-card.b {
  background: #FFFFFF;
  border: 1px solid rgba(196,129,74,0.15);
}

.new-sections-wrapper .offer-card-inner {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  z-index: 2;
  position: relative;
}

.new-sections-wrapper .offer-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.new-sections-wrapper .offer-card.a .offer-eyebrow {
  color: rgba(255,255,255,0.65);
}

.new-sections-wrapper .offer-card.b .offer-eyebrow {
  color: #6a1c2e;
}

.new-sections-wrapper .offer-title {
  font-family: var(--eduvers-font-two);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 12px;
}

.new-sections-wrapper .offer-card.a .offer-title {
  color: #FFF;
}

.new-sections-wrapper .offer-card.a .gold-text {
  color: #EAB75F;
}

.new-sections-wrapper .offer-card.b .offer-title {
  color: #4A1F14;
}

.new-sections-wrapper .offer-divider {
  width: 36px;
  height: 1.5px;
  margin-bottom: 20px;
  display: block;
}

.new-sections-wrapper .offer-card.a .offer-divider {
  background: #EAB75F;
}

.new-sections-wrapper .offer-card.b .offer-divider {
  background: #4A1F14;
}

.new-sections-wrapper .offer-sub {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.new-sections-wrapper .offer-card.a .offer-sub {
  color: rgba(255,255,255,0.75);
}

.new-sections-wrapper .offer-card.b .offer-sub {
  color: #6A4E42;
}

.new-sections-wrapper .offer-cta {
  font-family: var(--eduvers-font);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 12px 24px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.new-sections-wrapper .offer-cta.gold {
  background: #EAB75F;
  color: #4A1F14;
}

.new-sections-wrapper .offer-cta.gold:hover {
  background: #FFF;
  color: #4A1F14;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(229,184,105,0.3);
}

.new-sections-wrapper .offer-cta.dark {
  background: #4A1F14;
  color: #FFF;
}

.new-sections-wrapper .offer-cta.dark:hover {
  background: #4A1F14;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(67,8,15,0.3);
}

.new-sections-wrapper .offer-img-box {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.new-sections-wrapper .offer-img-box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.new-sections-wrapper .offer-card:hover .offer-img-box img {
  transform: scale(1.05);
}

.new-sections-wrapper .offer-card.b .offer-img-box img {
  object-fit: cover;
  object-position: center;
}

/* SEPARATOR */
.new-sections-wrapper .sec-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 12px auto 24px;
}

.new-sections-wrapper .sec-separator .line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #6a1c2e, transparent);
}

.new-sections-wrapper .sec-separator .diamond {
  width: 6px;
  height: 6px;
  background: #6a1c2e;
  transform: rotate(45deg);
}

/* FEATURES */
.new-sections-wrapper .feats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0 40px 40px;
}

.new-sections-wrapper .feat {
  position: relative;
  background: #fff;
  border: 1.5px solid #EAD9C6;
  border-radius: 16px;
  padding: 30px 20px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(196,129,74,0.06);
}

.new-sections-wrapper .feat:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(196,129,74,0.12);
}

.new-sections-wrapper .feat::before { display: none; }
.new-sections-wrapper .feat::after { display: none; }

.new-sections-wrapper .feat-icon-wrap {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #D4935A, #6a1c2e);
  color: #fff;
  font-size: 22px;
  border-radius: 14px;
  transform: rotate(45deg);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(196,129,74,0.25);
}

.new-sections-wrapper .feat-icon-wrap i {
  transform: rotate(-45deg);
}

.new-sections-wrapper .feat:hover .feat-icon-wrap {
  transform: rotate(45deg) scale(1.08);
  background: linear-gradient(135deg, #B8763E, #A86A3A);
}

.new-sections-wrapper .feat-title {
  font-family: var(--eduvers-font-two);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #3B1F0B;
  margin-bottom: 8px;
}

.new-sections-wrapper .feat-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 12px;
  width: 100%;
}

.new-sections-wrapper .feat-divider::before,
.new-sections-wrapper .feat-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #EAD9C6;
  display: block;
}

.new-sections-wrapper .feat-divider .heart-dot {
  color: #6a1c2e;
  font-size: 8px;
}

.new-sections-wrapper .feat-sub {
  font-size: 13px;
  color: #6B5B4E;
  line-height: 1.6;
  margin-bottom: 18px;
  min-height: 40px;
}

.new-sections-wrapper .feat-bottom-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #EAD9C6, transparent);
  margin-bottom: 14px;
  display: block;
}

.new-sections-wrapper .feat-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #6B5B4E;
  font-size: 12px;
}

.new-sections-wrapper .feat-footer-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4935A, #6a1c2e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

.new-sections-wrapper .feat-footer i.fas,
.new-sections-wrapper .feat-footer i.far {
  display: none;
}

.new-sections-wrapper .feat-footer-text {
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* CUSTOMER LOVE */
.new-sections-wrapper .love-section {
  text-align: center;
  padding: 0 40px 50px;
}
.new-sections-wrapper .love-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.new-sections-wrapper .love-ornament {
  font-size: 14px;
  color: #EAB75F;
}
.new-sections-wrapper .love-eyebrow {
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #EAB75F;
  font-weight: 600;
}
.new-sections-wrapper .love-rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #EAB75F;
  font-size: 18px;
  margin-bottom: 6px;
}
.new-sections-wrapper .love-rating-num {
  font-size: 30px;
  font-weight: 800;
  color: #6a1c2e;
  line-height: 1;
  letter-spacing: -0.5px;
  margin-left: 4px;
}
.new-sections-wrapper .love-rating-label {
  font-size: 11px;
  font-weight: 500;
  color: #A07080;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.new-sections-wrapper .love-sub {
  text-align: center;
  font-size: 13px;
  color: #947060;
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .new-sections-wrapper .love-section { padding: 0 16px 30px; }
}

/* TESTIMONIAL CARDS */
.new-sections-wrapper .testimonial-carousel {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.new-sections-wrapper .testimonial-carousel .testimonial-card {
  width: 100%;
  max-width: 340px;
  min-height: 380px;
  height: 380px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.new-sections-wrapper .testimonial-card .testimonial-text {
  flex: 1;
  display: flex;
  align-items: center;
}
.new-sections-wrapper .testimonial-carousel .owl-stage-outer {
  padding: 10px 0;
}
.new-sections-wrapper .testimonial-carousel .owl-item {
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.new-sections-wrapper .testimonial-carousel .owl-dots {
  margin-top: 20px !important;
  text-align: center;
}
.new-sections-wrapper .testimonial-carousel .owl-dot span {
  background: #E8D5C4 !important;
  width: 10px !important;
  height: 10px !important;
  margin: 0 5px !important;
  border-radius: 50% !important;
  transition: all 0.3s !important;
}
.new-sections-wrapper .testimonial-carousel .owl-dot.active span {
  background: #6a1c2e !important;
  width: 26px !important;
  border-radius: 5px !important;
}
.new-sections-wrapper .testimonial-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 5;
}
.new-sections-wrapper .testimonial-carousel .owl-nav button {
  pointer-events: all;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  background: #fff !important;
  border: 1.5px solid #E0D0C0 !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  font-size: 16px !important;
  color: #6a1c2e !important;
  transition: all 0.2s !important;
}
.new-sections-wrapper .testimonial-carousel .owl-nav button:hover {
  background: #6a1c2e !important;
  color: #fff !important;
  border-color: #6a1c2e !important;
  box-shadow: 0 6px 16px rgba(196,129,74,0.3);
}
.new-sections-wrapper .testimonial-carousel .owl-nav .owl-prev {
  margin-left: -50px;
}
.new-sections-wrapper .testimonial-carousel .owl-nav .owl-next {
  margin-right: -50px;
}
.new-sections-wrapper .testimonial-card {
  background: #fff;
  border-radius: 24px 24px 16px 16px;
  padding: 32px 28px 24px;
  border: 1.5px solid #E8CBA8;
  box-shadow: 0 4px 20px rgba(196,129,74,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.new-sections-wrapper .testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(196,129,74,0.12);
}
.new-sections-wrapper .testimonial-card .tquote-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.new-sections-wrapper .testimonial-card .tquote-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px dashed #E8B0C0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #6a1c2e;
  background: #FDF5F0;
}
.new-sections-wrapper .testimonial-card .testimonial-text {
  font-size: 15px;
  color: #4A3A2A;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: center;
  font-style: normal;
  min-height: 70px;
}
.new-sections-wrapper .testimonial-card .theart-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.new-sections-wrapper .testimonial-card .theart-divider i {
  color: #6a1c2e;
  font-size: 12px;
}
.new-sections-wrapper .testimonial-card .theart-divider::before,
.new-sections-wrapper .testimonial-card .theart-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #E8CBA8, transparent);
}
.new-sections-wrapper .testimonial-card .testimonial-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: none;
  padding-top: 0;
  justify-content: center;
}
.new-sections-wrapper .testimonial-card .testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
  border: 2.5px solid #F0E0D0;
}
.new-sections-wrapper .testimonial-card .testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.new-sections-wrapper .testimonial-card .tinfo {
  text-align: left;
}
.new-sections-wrapper .testimonial-card .testimonial-name {
  font-size: 15px;
  font-weight: 700;
  color: #3B1F0B;
}
.new-sections-wrapper .testimonial-card .testimonial-stars {
  font-size: 12px;
  color: #6a1c2e;
  letter-spacing: 2px;
}
.new-sections-wrapper .testimonial-card .testimonial-location {
  font-size: 11px;
  color: #8B7B6B;
}
.new-sections-wrapper .testimonial-card .testimonial-location i {
  color: #6a1c2e;
  font-size: 10px;
  margin-right: 3px;
}

/* NEWSLETTER */
.new-sections-wrapper .newsletter-banner {
  background: #6a1c2e;
  margin: 0 40px 40px;
  border-radius: 16px;
  padding: 40px 60px;
  color: #FFF;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(196,129,74,0.15);
}

.new-sections-wrapper .newsletter-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(232,184,90,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.new-sections-wrapper .nl-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.new-sections-wrapper .nl-left {
  flex: 1;
}

.new-sections-wrapper .nl-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.new-sections-wrapper .nl-title-row .decor-line {
  width: 30px;
  height: 1px;
  background: rgba(232,184,90,0.4);
}

.new-sections-wrapper .nl-title-row .decor-diamond {
  color: rgba(232,184,90,0.5);
  font-size: 7px;
}

.new-sections-wrapper .nl-title {
  font-family: var(--eduvers-font-two);
  font-size: 34px;
  font-weight: 600;
  color: #FFF;
  margin: 0;
}

.new-sections-wrapper .nl-sub {
  font-size: 13.5px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  margin: 0;
}

.new-sections-wrapper .nl-right {
  flex: 0 1 450px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.new-sections-wrapper .nl-form {
  display: flex;
  gap: 10px;
  width: 100%;
}

.new-sections-wrapper .nl-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 12px 16px;
  color: #FFF;
  font-size: 13px;
  outline: none;
  font-family: var(--eduvers-font);
  transition: all 0.3s ease;
}

.new-sections-wrapper .nl-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.new-sections-wrapper .nl-input:focus {
  border-color: #E8C960;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 10px rgba(232,184,90,0.15);
}

.new-sections-wrapper .nl-btn {
  background: #E8C960;
  color: #4A1F14;
  border: none;
  border-radius: 6px;
  padding: 12px 28px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--eduvers-font);
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.new-sections-wrapper .nl-btn:hover {
  background: #FFF;
  color: #4A1F14;
  box-shadow: 0 4px 15px rgba(232,184,90,0.2);
}

.new-sections-wrapper .nl-features {
  display: flex;
  gap: 20px;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
}

.new-sections-wrapper .nl-feat-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.new-sections-wrapper .nl-feat-item i {
  color: #E8C960;
  font-size: 9px;
}

/* TRUST BAR */
.new-sections-wrapper .trust-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #FAF5EA;
  border-top: 1px solid rgba(196,129,74,0.15);
  border-bottom: 1px solid rgba(196,129,74,0.15);
  padding: 24px 40px;
  margin-top: 20px;
  gap: 20px;
}

.new-sections-wrapper .trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  justify-content: center;
}

.new-sections-wrapper .trust-item:not(:last-child) {
  border-right: 1px solid rgba(196,129,74,0.15);
}

.new-sections-wrapper .trust-bar-icon {
  font-size: 22px;
  color: #4A1F14;
  display: flex;
  align-items: center;
}

.new-sections-wrapper .trust-info {
  display: flex;
  flex-direction: column;
}

.new-sections-wrapper .trust-title {
  font-size: 13.5px;
  font-weight: 600;
  color: #4A1F14;
  margin: 0;
}

.new-sections-wrapper .trust-desc {
  font-size: 11px;
  color: #6A4E42;
  margin: 2px 0 0;
}

/* RESPONSIVE OVERRIDES */
@media (max-width: 1024px) {
  .new-sections-wrapper .feats {
    grid-template-columns: repeat(2, 1fr);
  }
  .new-sections-wrapper .trust-bar {
    flex-wrap: wrap;
  }
  .new-sections-wrapper .trust-item {
    flex: 0 0 45%;
  }
  .new-sections-wrapper .trust-item:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 768px) {
  .new-sections-wrapper .offer-grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .new-sections-wrapper .feats {
    grid-template-columns: 1fr;
    padding: 0 20px 20px;
  }
  .new-sections-wrapper .newsletter-banner {
    margin: 0 20px 20px;
    padding: 30px 24px;
  }
  .new-sections-wrapper .nl-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .new-sections-wrapper .nl-title-row {
    justify-content: center;
  }
  .new-sections-wrapper .nl-title {
    font-size: 28px;
  }
  .new-sections-wrapper .nl-right {
    flex: 1 1 auto;
    max-width: 100%;
  }
  .new-sections-wrapper .nl-form {
    max-width: 400px;
    margin: 0 auto;
  }
  .new-sections-wrapper .nl-features {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  .new-sections-wrapper .trust-bar {
    flex-direction: column;
    padding: 30px 20px;
    gap: 24px;
  }
  .new-sections-wrapper .trust-item {
    border-right: none !important;
    width: 100%;
  }
}

.new-sections-wrapper .view-all {
  text-align: center;
  margin-bottom: 28px;
}

.new-sections-wrapper .view-all button {
  background: transparent;
  color: #000;
  border: 1.5px solid #000;
  border-radius: 10px;
  padding: 11px 30px;
  font-family: var(--eduvers-font);
  font-size: 13px;
  cursor: pointer;
  letter-spacing: .04em;
  transition: all .2s;
}

.new-sections-wrapper .view-all button:hover {
  background: #000;
  color: #fff;
}

/* PRODUCT CARDS */
.new-sections-wrapper .grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  padding: 0 40px 32px 40px;
  margin-left: 0 !important;
}

.new-sections-wrapper .card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.9);
  overflow: visible;
  cursor: pointer;
  transform-style: preserve-3d;
  transform: perspective(800px) rotateX(4deg) rotateY(-4deg);
  transition: transform 0.35s cubic-bezier(.22,.68,0,1.2), box-shadow 0.35s;
  box-shadow: 6px 12px 30px rgba(74,31,20,0.12), 0 2px 6px rgba(74,31,20,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
}

.new-sections-wrapper .card:hover {
  transform: perspective(800px) rotateX(-2deg) rotateY(3deg) translateY(-8px) scale(1.04);
  box-shadow: 12px 28px 50px rgba(74,31,20,0.22), 0 4px 12px rgba(74,31,20,0.1), inset 0 1px 0 rgba(255,255,255,1);
}

.new-sections-wrapper .card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 19px;
  background: linear-gradient(135deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 60%);
  pointer-events: none;
  z-index: 3;
}

.new-sections-wrapper .card::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 10%;
  width: 80%;
  height: 20px;
  background: rgba(74,31,20,0.08);
  filter: blur(10px);
  border-radius: 50%;
  z-index: -1;
  transition: opacity 0.35s;
}

.new-sections-wrapper .card:hover::after {
  opacity: 0.5;
}

.new-sections-wrapper .cimg {
  height: 175px;
  border-radius: 16px 16px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.new-sections-wrapper .cimg-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.new-sections-wrapper .cimg-inner img {
  transition: transform 0.35s cubic-bezier(.22,.68,0,1.2);
}

.new-sections-wrapper .card:hover .cimg-inner img {
  transform: scale(1.1) translateY(-6px);
}

.new-sections-wrapper .shine {
  position: absolute;
  top: -40%;
  left: -40%;
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.45) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: transform 0.35s;
}

.new-sections-wrapper .card:hover .shine {
  transform: translate(20%, 20%);
}

.new-sections-wrapper .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 9px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 12px;
  font-weight: 600;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.5);
  z-index: 5;
}

.new-sections-wrapper .b-new { background: rgba(212,175,55,0.18); color: #EAB75F; }
.new-sections-wrapper .b-hot { background: rgba(255,210,210,0.85); color: #882020; }
.new-sections-wrapper .b-sale { background: rgba(200,240,200,0.85); color: #286028; }

.new-sections-wrapper .cbody { padding: 14px 16px; }

.new-sections-wrapper .cname {
  font-size: 14px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.new-sections-wrapper .csub {
  font-size: 11px;
  color: #666;
  margin-bottom: 10px;
}

.new-sections-wrapper .cfoot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.new-sections-wrapper .cprice {
  font-size: 15px;
  font-weight: 700;
  color: #6a1c2e;
}

.new-sections-wrapper .buy-btn {
  flex: 1;
  height: 38px;
  text-align: center;
  background: #6a1c2e;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 30px;
  transition: all 0.25s;
  text-decoration: none;
  border: 1.5px solid #6a1c2e;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(74,31,20,0.15);
}

.new-sections-wrapper .buy-btn:hover {
  background: #FAF5EA;
  color: #6a1c2e;
  border-color: #6a1c2e;
  box-shadow: 0 6px 18px rgba(74,31,20,0.25);
  transform: translateY(-1px);
}

.new-sections-wrapper .cold {
  font-size: 11px;
  color: #999;
  text-decoration: line-through;
  margin-left: 5px;
}

.new-sections-wrapper .cwish {
  flex: 1;
  height: 38px;
  border-radius: 30px;
  background: #FAF5EA;
  border: 1.5px solid #EAB75F;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  color: #6a1c2e;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.25s;
  box-shadow: 0 4px 12px rgba(74,31,20,0.1);
}

.new-sections-wrapper .cwish:hover {
  background: #EAB75F;
  color: #fff;
  border-color: #EAB75F;
  box-shadow: 0 6px 18px rgba(212,175,55,0.25);
  transform: translateY(-1px);
}

.new-sections-wrapper .cwish.liked {
  color: #fff;
  background: #e04040;
  border-color: #e04040;
  box-shadow: 0 6px 18px rgba(224,64,64,0.25);
}

.new-sections-wrapper .cwish.liked:hover {
  background: #FAF5EA;
  color: #e04040;
  border-color: #e04040;
}

.new-sections-wrapper .float-tag {
  position: absolute;
  top: -10px;
  right: 12px;
  background: linear-gradient(135deg, #6a1c2e, #4A1F14);
  color: #fff;
  font-size: 9px;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(74,31,20,0.4);
  transform: translateZ(10px);
  z-index: 5;
}

/* FEATURED PRODUCTS CAROUSEL */
.feat-carousel-wrap {
  position: relative;
  overflow: hidden;
  padding: 0 50px;
}

.feat-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 16px 0 24px;
  align-items: stretch;
}

.feat-card {
  min-width: 220px;
  max-width: 220px;
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #F0E0D0;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.35s, box-shadow 0.35s;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(196,129,74,0.08);
}

.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(196,129,74,0.18);
}

.feat-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  flex: 1;
}

.feat-card-img {
  position: relative;
  width: 100%;
  height: 190px;
  background: linear-gradient(145deg, #FBF5EE, #F5E8DF);
  border-radius: 12px;
  margin: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feat-card-img img {
  max-height: 90%;
  max-width: 90%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.feat-card:hover .feat-card-img img {
  transform: scale(1.08);
}

.feat-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #3B1F0B;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4px;
}

.feat-badge span {
  font-size: 8px;
}

.feat-card-body {
  padding: 12px 14px 8px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.feat-card-name {
  font-size: 15px;
  font-weight: 700;
  color: #3B1F0B;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feat-card-price {
  font-size: 16px;
  font-weight: 800;
  color: #6a1c2e;
  margin-bottom: 6px;
}

.feat-card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0;
}

.feat-stars {
  display: flex;
  gap: 1px;
  font-size: 11px;
}

.feat-rating-text {
  font-size: 11px;
  color: #8B7B6B;
}

.feat-card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 14px;
  margin-top: auto;
}

.feat-add-cart {
  flex: 1;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #6a1c2e;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.feat-add-cart:hover {
  background: #fff;
  color: #3B1F0B;
  border: 1.5px solid #6a1c2e;
  transform: translateY(-1px);
}

.feat-add-cart i {
  font-size: 12px;
}

.feat-heart-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #FBF5EE;
  border: 1.5px solid #E8D5C4;
  color: #6a1c2e;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  flex-shrink: 0;
}

.feat-heart-btn:hover {
  background: #6a1c2e;
  color: #fff;
  border-color: #6a1c2e;
}

.feat-heart-btn.liked {
  background: #6a1c2e;
  color: #fff;
  border-color: #6a1c2e;
}

.feat-heart-btn.liked:hover {
  background: #A86A3A;
  border-color: #A86A3A;
}

.feat-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #E0D0C0;
  color: #6a1c2e;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.feat-arrow:hover {
  background: #6a1c2e;
  color: #fff;
  border-color: #6a1c2e;
}

.feat-arrow-left {
  left: 6px;
}

.feat-arrow-right {
  right: 6px;
}

.feat-view-all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.feat-view-all-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, #6a1c2e);
}

.feat-view-all-line.right {
  background: linear-gradient(to left, transparent, #6a1c2e);
}

.feat-view-all button {
  background: transparent;
  color: #6a1c2e;
  border: 1.5px solid #6a1c2e;
  padding: 12px 32px;
  border-radius: 4px;
  font-family: var(--eduvers-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.feat-view-all button:hover {
  background: #6a1c2e;
  color: #fff;
}

/* COLLECTIONS SECTION */
.new-sections-wrapper .collections-section {
  background: #FDF6F0;
  padding: 3.5rem 2rem;
  text-align: center;
  font-family: var(--eduvers-font);
}

.new-sections-wrapper .browse-label {
  letter-spacing: 0.25em;
  font-size: 11px;
  font-weight: 500;
  color: #6a1c2e;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.new-sections-wrapper .section-title {
  font-family: var(--eduvers-font-two);
  font-size: 36px;
  font-weight: 600;
  color: #4A1F14;
  margin: 0 0 0.3rem;
  line-height: 1.2;
}

.new-sections-wrapper .section-sub {
  font-size: 14px;
  color: #9B7B65;
  margin-bottom: 2.8rem;
  font-weight: 300;
  letter-spacing: 0.04em;
}

.new-sections-wrapper .collections-grid {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.new-sections-wrapper .collection-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  cursor: pointer;
  width: 220px;
}

.new-sections-wrapper .col-card {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  background: #f5ede6;
  box-shadow: 0 6px 24px rgba(74,31,20,0.10);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease;
}

.new-sections-wrapper .collection-item:hover .col-card {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 18px 40px rgba(196,129,74,0.22);
}

.new-sections-wrapper .col-card-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.new-sections-wrapper .col-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.new-sections-wrapper .collection-item:hover .col-card-img img {
  transform: scale(1.08);
}

.new-sections-wrapper .col-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(196,129,74,0.78);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #fff;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.new-sections-wrapper .collection-item:hover .col-card-overlay {
  opacity: 1;
  pointer-events: auto;
}

.new-sections-wrapper .col-card-overlay-icon {
  font-size: 28px;
  margin-bottom: 4px;
}

.new-sections-wrapper .col-card-overlay-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.new-sections-wrapper .col-card-overlay-sub {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 8px;
}

.new-sections-wrapper .col-card-overlay-btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid #fff;
  padding: 6px 22px;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
}

.new-sections-wrapper .col-card-overlay-btn:hover {
  background: #fff;
  color: #8B6914;
}

.new-sections-wrapper .col-card-arrow {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #6a1c2e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin: -20px auto 0;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(196,129,74,0.35);
  transition: background 0.3s, transform 0.3s;
  flex-shrink: 0;
}

.new-sections-wrapper .collection-item:hover .col-card-arrow {
  background: #A86A3A;
  transform: scale(1.1);
}

.new-sections-wrapper .col-card-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 0 0;
}

.new-sections-wrapper .col-card-name {
  font-size: 14px;
  font-weight: 700;
  color: #3B1F0B;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.new-sections-wrapper .collection-item:hover .col-card-name {
  color: #6a1c2e;
}

.new-sections-wrapper .col-card-subtext {
  font-size: 12px;
  font-weight: 400;
  color: #8B7B6B;
  font-style: italic;
}

.new-sections-wrapper .cat-label {
  font-size: 15px;
  font-weight: 500;
  color: #4A1F14;
  letter-spacing: 0.04em;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.new-sections-wrapper .dot-indicator {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #6a1c2e;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

.new-sections-wrapper .collection-item:hover .dot-indicator {
  opacity: 1;
  transform: scale(1);
}

.new-sections-wrapper .cta-row {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.new-sections-wrapper .divider-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, #6a1c2e);
}

.new-sections-wrapper .divider-line.right {
  background: linear-gradient(to left, transparent, #6a1c2e);
}

.new-sections-wrapper .col-card-full {
  width: 100%;
  position: relative;
  cursor: pointer;
  border: 2px solid #6a1c2e;
  border-radius: 140px 140px 16px 16px;
  overflow: hidden;
  background: #FAF4E8;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}

.new-sections-wrapper .collection-item:hover .col-card-full {
  border-color: #A86A3A;
  box-shadow: 0 8px 30px rgba(196,129,74,0.2);
  transform: translateY(-6px);
}

.new-sections-wrapper .col-card-arch-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.new-sections-wrapper .col-card-arch-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.new-sections-wrapper .collection-item:hover .col-card-arch-img img {
  transform: scale(1.05);
}

.new-sections-wrapper .col-card-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 22px 10px 28px;
  background: transparent;
}

.new-sections-wrapper .col-card-bottom .col-card-name {
  font-family: var(--eduvers-font-two);
  font-size: 18px;
  font-weight: 700;
  color: #3B1F0B;
  letter-spacing: 0.04em;
  text-transform: capitalize;
  transition: color 0.3s ease;
}

.new-sections-wrapper .collection-item:hover .col-card-bottom .col-card-name {
  color: #6a1c2e;
}

.new-sections-wrapper .col-card-bottom .col-card-explore {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6a1c2e;
  cursor: pointer;
  border: 1.5px solid #6a1c2e;
  border-radius: 20px;
  padding: 8px 22px;
  background: transparent;
  transition: background 0.3s ease, color 0.3s ease;
}

.new-sections-wrapper .collection-item:hover .col-card-bottom .col-card-explore {
  background: #6a1c2e;
  color: #fff;
}

.new-sections-wrapper .cta-btn {
  font-family: var(--eduvers-font);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #3B1F0B;
  border: 1.5px solid #6a1c2e;
  background: transparent;
  padding: 12px 32px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.new-sections-wrapper .cta-btn:hover {
  background: #6a1c2e;
  color: #FDF6F0;
  transform: scale(1.03);
}

/* SCROLL REVEAL */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.scroll-reveal.show { opacity: 1; transform: translateY(0); }

.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.scroll-reveal-left.show { opacity: 1; transform: translateX(0); }

.scroll-reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.scroll-reveal-right.show { opacity: 1; transform: translateX(0); }

.scroll-reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.scroll-reveal-scale.show { opacity: 1; transform: scale(1); }

.scroll-reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.scroll-reveal-stagger.show > * { opacity: 1; transform: translateY(0); }
.scroll-reveal-stagger.show > *:nth-child(1) { transition-delay: 0.1s; }
.scroll-reveal-stagger.show > *:nth-child(2) { transition-delay: 0.2s; }
.scroll-reveal-stagger.show > *:nth-child(3) { transition-delay: 0.3s; }
.scroll-reveal-stagger.show > *:nth-child(4) { transition-delay: 0.4s; }
.scroll-reveal-stagger.show > *:nth-child(5) { transition-delay: 0.5s; }
.scroll-reveal-stagger.show > *:nth-child(6) { transition-delay: 0.6s; }
.scroll-reveal-stagger.show > *:nth-child(7) { transition-delay: 0.7s; }
.scroll-reveal-stagger.show > *:nth-child(8) { transition-delay: 0.8s; }

/* NAVBAR ICONS REBRAND */
.main-menu__icons-box {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 20px;
}

.main-menu__icons-box a {
  font-size: 20px;
  color: #6a1c2e;
  position: relative;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.main-menu__icons-box a:hover {
  color: #EAB75F;
  transform: translateY(-2px);
}

/* Mobile: keep icons visible and tighter */
@media (max-width: 991px) {
  .main-menu__icons-box {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .new-sections-wrapper .offer-grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .new-sections-wrapper .offer-card {
    height: auto;
    min-height: 480px;
    flex-direction: column;
  }
  .new-sections-wrapper .offer-card-inner {
    width: 100%;
    padding: 30px;
    height: auto;
  }
  .new-sections-wrapper .offer-img-box {
    width: 100%;
    height: 240px;
  }
  .new-sections-wrapper .newsletter-banner {
    margin: 0 20px 20px;
    padding: 30px 24px;
  }
  .new-sections-wrapper .nl-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .new-sections-wrapper .nl-title-row {
    justify-content: center;
  }
  .new-sections-wrapper .nl-title {
    font-size: 28px;
  }
  .new-sections-wrapper .nl-right {
    flex: 1 1 auto;
    max-width: 100%;
  }
  .new-sections-wrapper .nl-form {
    max-width: 400px;
    margin: 0 auto;
  }
  .new-sections-wrapper .nl-features {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  .new-sections-wrapper .trust-bar {
    flex-direction: column;
    padding: 30px 20px;
    gap: 24px;
  }
  .new-sections-wrapper .trust-item {
    border-right: none !important;
    width: 100%;
  }
}

/* ============================================================
   MOBILE RESPONSIVE — index.php sections
   ============================================================ */

/* Hero: stack on mobile */
@media (max-width: 768px) {
  .hero {
    margin-top: 90px;
    min-height: unset;
  }
  .hero .slide-panel {
    flex-direction: column-reverse;
    padding: 24px 20px 60px;
    min-height: unset;
    gap: 20px;
  }
  .hero .slide-panel.active {
    display: flex;
  }
  .hero .left {
    padding-right: 0;
    text-align: center;
  }
  .hero .cta-row {
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero .mini-carousel {
    justify-content: center;
  }
  .hero .right {
    flex: 0 0 auto;
    width: 100%;
    height: 280px;
  }
  .hero .model-wrap {
    width: 240px;
    height: 280px;
    margin: 0 auto;
  }
  .hero .accent-circle {
    width: 260px;
    height: 260px;
  }
  .hero .hero-title { font-size: 26px; }
  .hero .hero-sub   { font-size: 15px; }

  /* Featured Products: remove desktop margin & padding */
  .new-sections-wrapper .grid {
    grid-template-columns: repeat(2, 1fr) !important;
    padding: 0 16px 24px !important;
    gap: 14px !important;
    margin-left: 0 !important;
  }

  /* Collections cards: responsive on mobile */
  .new-sections-wrapper .collection-item {
    width: calc(33.333% - 1rem);
  }
  .new-sections-wrapper .col-card-arch-img {
    height: 200px;
    border-radius: 100px 100px 0 0;
  }
  .new-sections-wrapper .collections-grid {
    gap: 1rem;
  }
  .new-sections-wrapper .collections-section {
    padding: 2rem 1rem;
  }
  .new-sections-wrapper .col-card-bottom .col-card-name {
    font-size: 14px;
  }
  .new-sections-wrapper .sec-head {
    padding: 24px 16px 14px;
  }
  .new-sections-wrapper .sec-title {
    font-size: 22px;
  }
  .new-sections-wrapper .offer-title {
    font-size: 22px;
  }
  .new-sections-wrapper .offer-card-inner {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .hero .hero-title { font-size: 20px; }
  .hero .price-new  { font-size: 20px; }
  .hero .right {
    height: 240px;
  }
  .hero .model-wrap {
    width: 200px;
    height: 240px;
  }

  .new-sections-wrapper .grid {
    grid-template-columns: 1fr 1fr !important;
    padding: 0 10px 16px !important;
    gap: 10px !important;
  }
  .new-sections-wrapper .collection-item {
    width: calc(50% - 0.7rem);
  }
  .new-sections-wrapper .col-card-arch-img {
    height: 180px;
    border-radius: 90px 90px 0 0;
  }
  .new-sections-wrapper .col-card-bottom .col-card-name {
    font-size: 13px;
  }
  .new-sections-wrapper .col-card-bottom .col-card-explore {
    font-size: 10px;
  }
  .new-sections-wrapper .collections-grid {
    gap: 0.7rem;
  }
  .new-sections-wrapper .feats {
    grid-template-columns: 1fr;
  }
  .new-sections-wrapper .newsletter-banner {
    margin: 0 12px 16px;
    padding: 24px 16px;
    border-radius: 12px;
  }
  .new-sections-wrapper .nl-title {
    font-size: 22px;
    white-space: normal;
  }
  .new-sections-wrapper .nl-title-row .decor-line {
    width: 16px;
  }
  .new-sections-wrapper .nl-title-row .decor-diamond {
    font-size: 5px;
  }
  .new-sections-wrapper .nl-sub {
    font-size: 12px;
  }
  .new-sections-wrapper .nl-form {
    flex-direction: column;
    gap: 8px;
  }
  .new-sections-wrapper .nl-btn {
    width: 100%;
    padding: 12px;
    text-align: center;
  }
  .new-sections-wrapper .nl-features {
    flex-wrap: wrap;
    gap: 10px 16px;
    justify-content: center;
    font-size: 10px;
  }
  .new-sections-wrapper .nl-feat-item {
    font-size: 10px;
  }
  .new-sections-wrapper .nl-feat-item i {
    font-size: 8px;
  }
}

/* ---- CUSTOM CURSOR CORRECTIONS ---- */
/* Hide custom cursor on touch devices or smaller viewports */
@media (pointer: coarse), (max-width: 1024px) {
  .custom-cursor__cursor,
  .custom-cursor__cursor-two {
    display: none !important;
  }
}

/* Hide custom cursor on desktop until the mouse actually moves */
.custom-cursor__cursor,
.custom-cursor__cursor-two {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.2s ease-out;
}
body.custom-cursor-active .custom-cursor__cursor {
  opacity: 1;
}
body.custom-cursor-active .custom-cursor__cursor-two {
  opacity: 0.3;
}

/* ---- MOBILE HEADER ICONS — hide in top bar, only show inside sidebar ---- */
@media (max-width: 991px) {
  .main-menu__right {
    display: none !important;
  }
}

/* Mobile Sidebar Icons Box Styling */
.mobile-nav__content .mobile-nav__icons-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin: 15px 0;
}

.mobile-nav__content .mobile-nav__icons-box a {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav__content .mobile-nav__icons-box a:hover {
  color: #EAB75F;
}

.mobile-nav__content .mobile-nav__icons-box .mobile-nav__cart-count {
  position: absolute;
  top: -7px;
  right: -8px;
  background-color: #EAB75F;
  color: #6a1c2e;
  font-size: 9px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  border-radius: 50%;
  padding: 0 2px;
}

/* ============================================================
   SAI BOUTIQUE — STRICT MOBILE & TABLET RESPONSIVE OVERRIDES
   Targeting viewports <= 991px only. Desktop (>= 992px) is untouched.
   ============================================================ */

/* Global Mobile Resets & Layout Fixes */
@media (max-width: 991px) {
  html, body {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  img, video, canvas, svg {
    max-width: 100%;
    height: auto;
  }

  /* Sticky Header on Mobile Viewports */
  .main-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(74, 31, 20, 0.08) !important;
  }

  .main-menu__top {
    display: none !important;
  }

  .main-menu {
    background: #ffffff !important;
  }

  .stricky-header {
    display: none !important;
  }

  /* Header & Mobile Navbar Layout (Logo Left, Toggle Right) */
  .main-menu .main-menu__wrapper-inner,
  .stricky-header .main-menu__wrapper-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    padding: 8px 16px !important;
  }


  .main-menu__left {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    float: none !important;
  }

  .main-menu__logo {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
  }

  .main-menu__logo img {
    margin-left: 0 !important;
    margin-top: 0 !important;
    margin-right: 0 !important;
    padding-bottom: 0 !important;
    height: 55px !important;
    width: auto !important;
    object-fit: contain !important;
  }

  .main-menu__main-menu-box {
    margin-left: auto !important;
    margin-right: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
  }

  .mobile-nav__toggler {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    background: transparent !important;
    color: #6a1c2e !important;
    font-size: 26px !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    text-decoration: none !important;
    cursor: pointer !important;
    margin-left: auto !important;
    padding: 0 !important;
    transition: transform 0.2s ease, color 0.2s ease !important;
  }

  .mobile-nav__toggler:hover,
  .mobile-nav__toggler:active {
    background: transparent !important;
    color: #4A1F14 !important;
    transform: scale(1.1) !important;
  }


  /* Hide logo inside mobile drawer menu */
  .mobile-nav__content .logo-box {
    display: none !important;
  }

  .mobile-nav__container {
    margin-top: 45px !important;
    padding-top: 10px !important;
  }

  .main-menu__main-menu-box > .main-menu__list {
    display: none !important;
  }


  .mobile-nav__container .main-menu__list {
    display: block !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .mobile-nav__container .main-menu__list > li {
    display: block !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  .mobile-nav__container .main-menu__list > li > a {
    display: flex !important;
    align-items: center !important;
    padding: 12px 0 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    text-decoration: none !important;
  }

  .mobile-nav__container .main-menu__list > li.current > a {
    color: #EAB75F !important;
  }


  .main-menu__icons-box {
    margin-right: 0 !important;
  }



  .hero-banner {
    margin-top: 70px !important;
  }

  .shop-wrap {
    margin-top: 75px !important;
  }

  .new-sections-wrapper .offer-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 20px 16px !important;
  }

  .new-sections-wrapper .offer-card {
    height: auto !important;
    min-height: 250px !important;
  }

  .new-sections-wrapper .offer-card-inner {
    width: 100% !important;
    padding: 24px 20px !important;
  }

  /* Shop Page Grid & Sidebar Mobile Layout */
  .shop-layout {
    grid-template-columns: 1fr !important;
    padding: 0 16px 40px !important;
    gap: 20px !important;
  }

  .shop-hero {
    padding: 36px 16px 30px !important;
  }

  .shop-hero h1 {
    font-size: 30px !important;
  }

  .shop-sidebar {
    position: static !important;
    max-height: none !important;
    top: 0 !important;
    margin-bottom: 20px !important;
    box-shadow: 0 2px 12px rgba(74,31,20,0.06) !important;
  }

  .mobile-filter-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #6a1c2e;
    color: #fff;
    font-family: var(--eduvers-font);
    font-weight: 700;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(196, 129, 74, 0.2);
    transition: background 0.2s ease;
  }

  .mobile-filter-btn:hover,
  .mobile-filter-btn:active {
    background: #b00e4c;
  }

  .shop-sidebar.mobile-collapsed {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .mobile-filter-btn {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .hero-banner {
    margin-top: 60px !important;
  }

  .hero-banner .arr {
    width: 36px !important;
    height: 36px !important;
    font-size: 14px !important;
  }
  .hero-banner .arr-l { left: 10px !important; }
  .hero-banner .arr-r { right: 10px !important; }

  /* Product details page mobile stack */
  .product-details-content {
    flex-direction: column !important;
  }

  .summary-card .summary-body {
    padding: 14px 16px !important;
  }

  .action-row {
    flex-direction: column !important;
  }

  .action-row .thm-btn {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }

  /* Cart table overflow card wrapper */
  .cart-table-wrapper {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .cart-page-inner {
    padding: 20px 12px !important;
  }

  .checkout-page-grid {
    grid-template-columns: 1fr !important;
  }

  /* Footer Bottom Responsive */
  .yujee-footer__bottom-inner {
    flex-direction: column !important;
    gap: 8px !important;
    text-align: center !alignment;
  }
}

@media (max-width: 575px) {
  .collections-grid {
    gap: 10px !important;
  }

  .new-sections-wrapper .sec-title {
    font-size: 24px !important;
  }

  .new-sections-wrapper .grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    padding: 0 10px 20px !important;
  }

  .cat-pill {
    margin: 4px !important;
  }
}

/* Hide Scroll To Top Button */
.scroll-to-top {
  display: none !important;
}

/* ============================================================
   FIXED MOBILE BOTTOM NAVIGATION BAR
   ============================================================ */

.mobile-bottom-nav {
  display: none !important;
}

@media (max-width: 991px) {
  body {
    padding-bottom: 65px !important;
  }

  .scroll-to-top {
    bottom: 75px !important;
  }

  .mobile-bottom-nav {
    display: flex !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 60px !important;
    background: #ffffff !important;
    border-top: 1px solid rgba(234, 183, 95, 0.35) !important;
    box-shadow: 0 -4px 20px rgba(74, 31, 20, 0.08) !important;
    z-index: 99999 !important;
    align-items: center !important;
    justify-content: space-around !important;
    padding: 2px 0 !important;
  }

  .mobile-bottom-nav__item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 1 !important;
    height: 100% !important;
    color: #6B3040 !important;
    text-decoration: none !important;
    transition: color 0.2s ease, transform 0.2s ease !important;
    position: relative !important;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-bottom-nav__icon {
    font-size: 19px !important;
    position: relative !important;
    line-height: 1 !important;
    margin-bottom: 3px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .mobile-bottom-nav__label {
    font-family: var(--eduvers-font), 'DM Sans', sans-serif !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    line-height: 1.1 !important;
  }

  .mobile-bottom-nav__item.active {
    color: #6a1c2e !important;
  }

  .mobile-bottom-nav__item.active .mobile-bottom-nav__label {
    font-weight: 700 !important;
  }

  .mobile-bottom-nav__item.active .mobile-bottom-nav__icon {
    transform: translateY(-1px) !important;
  }

  .mobile-bottom-nav__badge {
    position: absolute !important;
    top: -6px !important;
    right: -10px !important;
    background-color: #6a1c2e !important;
    color: #ffffff !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    min-width: 16px !important;
    height: 16px !important;
    line-height: 16px !important;
    text-align: center !important;
    border-radius: 50% !important;
    padding: 0 3px !important;
    box-shadow: 0 2px 6px rgba(196, 129, 74, 0.4) !important;
  }
}

/* ============================================================
   HEADER NAVBAR SEARCH BAR (THEME MATCHED)
   ============================================================ */
.header-search-form {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 16px;
}

.header-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: #FAF5EA;
  border: 1.5px solid rgba(234, 183, 95, 0.45);
  border-radius: 30px;
  padding: 3px 6px 3px 16px;
  transition: all 0.3s ease;
  width: 240px;
}

.header-search-wrap:focus-within {
  background: #ffffff;
  border-color: #6a1c2e;
  box-shadow: 0 4px 14px rgba(196, 129, 74, 0.15);
  width: 270px;
}

.header-search-input {
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--eduvers-font), 'DM Sans', sans-serif;
  font-size: 13px;
  color: #4A1F14;
  width: 100%;
  padding: 4px 0;
}

.header-search-input::placeholder {
  color: #a07080;
  font-size: 12px;
}

.header-search-btn {
  background: #6a1c2e;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.header-search-btn:hover {
  background: #4A1F14;
  transform: scale(1.05);
}

/* Desktop view: Hide navbar search bar */
@media (min-width: 992px) {
  .header-search-form {
    display: none !important;
  }
}

/* Mobile Responsive adjustment for Header Search Bar (Centered Alignment) */
@media (max-width: 991px) {
  .header-search-form {
    display: flex !important;
    flex: 1 !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 8px !important;
    max-width: none !important;
  }

  .header-search-wrap {
    width: 100% !important;
    max-width: 240px !important;
    margin: 0 auto !important;
    padding: 2px 4px 2px 14px !important;
    height: 38px !important;
    background: #FAF5EA !important;
  }

  .header-search-wrap:focus-within {
    width: 100% !important;
  }

  .header-search-input {
    font-size: 12px !important;
  }

  .header-search-btn {
    width: 30px !important;
    height: 30px !important;
    font-size: 12px !important;
  }
}

@media (max-width: 480px) {
  .header-search-form {
    margin: 0 6px !important;
  }
  .header-search-wrap {
    max-width: 200px !important;
    height: 36px !important;
  }
}

/* Ensure mobile Featured Products grid cards are always visible & Buy Now button is icon-only */
@media (max-width: 991px) {
  #featGrid {
    opacity: 1 !important;
  }
  #featGrid > * {
    opacity: 1 !important;
    transform: none !important;
  }

  /* Index Page: Icon-only Buy Now button */
  .buy-btn .buy-txt {
    display: none !important;
  }
  .buy-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    flex: 0 0 36px !important;
  }
  .buy-btn i {
    margin: 0 !important;
    font-size: 14px !important;
  }
}

/* ============================================================
   DESKTOP HEADER TOPBAR COMPACT SINGLE LINE STYLING
   ============================================================ */
@media (min-width: 992px) {
  .main-menu__top-inner {
    padding: 2px 25px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
  }

  .main-menu__contact-list {
    display: flex !important;
    align-items: center !important;
  }

  .main-menu__contact-list li+li {
    margin-left: 16px !important;
  }

  .main-menu__contact-list li:before {
    left: -8px !important;
    top: 2px !important;
    bottom: 2px !important;
  }

  .main-menu__contact-list li .icon i {
    font-size: 13px !important;
  }

  .main-menu__contact-list li .text {
    margin-left: 5px !important;
  }

  .main-menu__contact-list li .text p {
    font-size: 12.5px !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
  }

  .main-menu__contact-list li .text p a:hover {
    color: var(--eduvers-white) !important;
  }

  .main-menu__top-welcome-text {
    font-size: 12.5px !important;
    white-space: nowrap !important;
    margin: 0 10px !important;
  }

  .main-menu__top-right {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
  }

  .main-menu__social-title {
    font-size: 12px !important;
    white-space: nowrap !important;
  }

  .main-menu__social {
    margin-left: 8px !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
  }

  .main-menu__social a {
    width: 28px !important;
    height: 28px !important;
    font-size: 12px !important;
  }
}

/* Hide cart count badge completely */
.main-menu__cart-count,
.mobile-nav__cart-count,
.mobile-bottom-nav__badge {
  display: none !important;
}

/* CTA Contact Button */
.cta-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #6a1c2e;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,.1);
}
.cta-contact-btn:hover {
  background: #EAB75F;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234,183,95,.35);
}

/* Footer Collection Button */
.footer-collection-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #6a1c2e;
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all .3s ease;
}
.footer-collection-btn:hover {
  background: #fff;
  color: #6a1c2e;
  border: 2px solid #6a1c2e;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(196,129,74,.25);
}

/* Featured Carousel Responsive */
@media (max-width: 767px) {
  .feat-card {
    min-width: 180px;
    max-width: 180px;
  }
  .feat-card-img {
    height: 160px;
  }
  .feat-carousel-wrap {
    padding: 0 40px;
  }
  .feat-arrow {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .feat-card {
    min-width: 160px;
    max-width: 160px;
  }
  .feat-card-img {
    height: 140px;
  }
  .feat-add-cart {
    font-size: 0;
    height: 36px;
    width: 36px;
    padding: 0;
    border-radius: 50%;
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #6a1c2e;
    border: none;
    color: #fff;
    box-shadow: 0 4px 12px rgba(74,31,20,0.2);
    transition: all 0.25s;
    cursor: pointer;
  }
  .feat-add-cart i {
    font-size: 14px;
    margin: 0;
    line-height: 1;
  }
  .feat-add-cart:hover {
    background: #A86A3A;
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(74,31,20,0.3);
  }
  .feat-add-cart::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
  }
  .feat-heart-btn {
    width: 36px;
    height: 36px;
  }
  .feat-arrow {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }
}
















