/* ============================================================
   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: #7A1B2B;
  --md: #5A1220;
  --ml: #9B2335;
  --cr: #FDF6EC;
  --cd: #F5E8D0;
  --cm: #E8D4B8;
  --gd: #C9943A;
  --gl: #E8B85A;
  --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: var(--gd);
  overflow: hidden;
  padding: 9px 0;
}

.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: 11px;
  color: #fff;
  letter-spacing: .1em;
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,.3);
}

/* 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: var(--gd);
  text-transform: uppercase;
  margin-bottom: 6px;
}

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

.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;
  height: 340px;
  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(109,27,27,0.04);
}

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

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

.new-sections-wrapper .offer-card.b {
  background: #FAF4E8;
  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: #C4814A;
}

.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: #E5B869;
}

.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: #E5B869;
}

.new-sections-wrapper .offer-card.b .offer-divider {
  background: #43080F;
}

.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: #E5B869;
  color: #43080F;
}

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

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

.new-sections-wrapper .offer-cta.dark:hover {
  background: #5A1220;
  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, #C4814A, transparent);
}

.new-sections-wrapper .sec-separator .diamond {
  width: 6px;
  height: 6px;
  background: #C4814A;
  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 .feats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0 40px 40px;
}

.new-sections-wrapper .feat {
  position: relative;
  background: #FAF8F5;
  border: 15px solid transparent;
  border-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath d='M 12,30 A 18 18 0 0 1 30,12' fill='none' stroke='%23E5B869' stroke-width='1.5'/%3E%3Cpath d='M 90,12 A 18 18 0 0 1 108,30' fill='none' stroke='%23E5B869' stroke-width='1.5'/%3E%3Cpath d='M 108,90 A 18 18 0 0 1 90,108' fill='none' stroke='%23E5B869' stroke-width='1.5'/%3E%3Cpath d='M 30,108 A 18 18 0 0 1 12,90' fill='none' stroke='%23E5B869' stroke-width='1.5'/%3E%3Cline x1='30' y1='12' x2='90' y2='12' stroke='%23E5B869' stroke-width='1.5'/%3E%3Cline x1='108' y1='30' x2='108' y2='90' stroke='%23E5B869' stroke-width='1.5'/%3E%3Cline x1='90' y1='108' x2='30' y2='108' stroke='%23E5B869' stroke-width='1.5'/%3E%3Cline x1='12' y1='90' x2='12' y2='30' stroke='%23E5B869' stroke-width='1.5'/%3E%3Cpath d='M 17,30 A 13 13 0 0 1 30,17' fill='none' stroke='%23E5B869' stroke-width='0.75' stroke-dasharray='1,1'/%3E%3Cpath d='M 90,17 A 13 13 0 0 1 103,30' fill='none' stroke='%23E5B869' stroke-width='0.75' stroke-dasharray='1,1'/%3E%3Cpath d='M 103,90 A 13 13 0 0 1 90,103' fill='none' stroke='%23E5B869' stroke-width='0.75' stroke-dasharray='1,1'/%3E%3Cpath d='M 30,103 A 13 13 0 0 1 17,90' fill='none' stroke='%23E5B869' stroke-width='0.75' stroke-dasharray='1,1'/%3E%3Cline x1='30' y1='17' x2='90' y2='17' stroke='%23E5B869' stroke-width='0.75' stroke-dasharray='1,1'/%3E%3Cline x1='103' y1='30' x2='103' y2='90' stroke='%23E5B869' stroke-width='0.75' stroke-dasharray='1,1'/%3E%3Cline x1='90' y1='103' x2='30' y2='103' stroke='%23E5B869' stroke-width='0.75' stroke-dasharray='1,1'/%3E%3Cline x1='17' y1='90' x2='17' y2='30' stroke='%23E5B869' stroke-width='0.75' stroke-dasharray='1,1'/%3E%3Ccircle cx='22' cy='22' r='1.5' fill='%23E5B869'/%3E%3Ccircle cx='98' cy='22' r='1.5' fill='%23E5B869'/%3E%3Ccircle cx='98' cy='98' r='1.5' fill='%23E5B869'/%3E%3Ccircle cx='22' cy='98' r='1.5' fill='%23E5B869'/%3E%3C/svg%3E") 28 fill stretch;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(109,27,27,0.02);
}

.new-sections-wrapper .feat:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(109,27,27,0.08);
}

.new-sections-wrapper .feat::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 16'%3E%3Cpath d='M22,1 C20,1 19,3 22,7 C25,3 24,1 22,1 Z M14,5 C12,5 10,7 13,9 C15,10 17,7 18,6 M30,5 C32,5 34,7 31,9 C29,10 27,7 26,6' fill='none' stroke='%23E5B869' stroke-width='1.5'/%3E%3Ccircle cx='22' cy='11' r='2' fill='%23E5B869'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 3;
}

.new-sections-wrapper .feat::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 16'%3E%3Cpath d='M22,15 C20,15 19,13 22,9 C25,13 24,15 22,15 Z M14,11 C12,11 10,9 13,7 C15,6 17,9 18,10 M30,11 C32,11 34,9 31,7 C29,6 27,9 26,10' fill='none' stroke='%23E5B869' stroke-width='1.5'/%3E%3Ccircle cx='22' cy='5' r='2' fill='%23E5B869'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 3;
}

.new-sections-wrapper .feat-icon-wrap {
  font-size: 28px;
  color: #5A1220;
  margin: 10px auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  transition: all 0.3s ease;
}

.new-sections-wrapper .feat:hover .feat-icon-wrap {
  transform: scale(1.1);
  color: #C4814A;
}

.new-sections-wrapper .feat-title {
  font-family: var(--eduvers-font-two);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #5A1220;
  margin-bottom: 12px;
}

.new-sections-wrapper .feat-divider {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #E5B869, transparent);
  margin: 0 auto 16px;
  display: block;
  position: relative;
}

.new-sections-wrapper .feat-divider::after {
  content: '♦';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  color: #E5B869;
  font-size: 8px;
  background: #FAF8F5;
  padding: 0 4px;
}

.new-sections-wrapper .feat-sub {
  font-size: 13.5px;
  color: #6A4E42;
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 40px;
}

.new-sections-wrapper .feat-bottom-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,129,74,0.15), transparent);
  margin-bottom: 15px;
  display: block;
}

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

.new-sections-wrapper .feat-footer i {
  color: #E5B869;
  font-size: 11px;
}

.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: #D4AF37;
}
.new-sections-wrapper .love-eyebrow {
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #D4AF37;
  font-weight: 600;
}
.new-sections-wrapper .love-rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #D4AF37;
  font-size: 18px;
  margin-bottom: 6px;
}
.new-sections-wrapper .love-rating-num {
  font-size: 30px;
  font-weight: 800;
  color: #6D1B1B;
  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;
}
.new-sections-wrapper .testimonial-carousel .testimonial-card {
  width: 100%;
  max-width: 600px;
  min-height: 300px;
  height: 300px;
  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;
}
.new-sections-wrapper .testimonial-carousel .owl-dot span {
  background: #ddd !important;
  width: 10px !important;
  height: 10px !important;
  margin: 0 5px !important;
  transition: all 0.3s !important;
}
.new-sections-wrapper .testimonial-carousel .owl-dot.active span {
  background: #6D1B1B !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;
}
.new-sections-wrapper .testimonial-carousel .owl-nav button {
  pointer-events: all;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  background: #fff !important;
  border: 1px solid #f0e8dc !important;
  box-shadow: 0 4px 12px rgba(109,27,27,0.08);
  font-size: 18px !important;
  color: #6D1B1B !important;
  transition: all 0.2s !important;
}
.new-sections-wrapper .testimonial-carousel .owl-nav button:hover {
  background: #6D1B1B !important;
  color: #fff !important;
  box-shadow: 0 6px 16px rgba(109,27,27,0.2);
}
.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: 18px;
  padding: 24px 22px;
  border: 1px solid #f0e8dc;
  box-shadow: 0 4px 20px rgba(109,27,27,0.05);
  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(109,27,27,0.10);
}
.new-sections-wrapper .testimonial-card .quote-icon {
  font-size: 28px;
  color: #f0e0d0;
  line-height: 1;
  margin-bottom: 8px;
}
.new-sections-wrapper .testimonial-card .testimonial-text {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.new-sections-wrapper .testimonial-card .testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f5ede4;
  padding-top: 14px;
}
.new-sections-wrapper .testimonial-card .testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
}
.new-sections-wrapper .testimonial-card .testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.new-sections-wrapper .testimonial-card .testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: #2C0E15;
}
.new-sections-wrapper .testimonial-card .testimonial-stars {
  font-size: 12px;
  color: #E8B85A;
  letter-spacing: 2px;
}
.new-sections-wrapper .testimonial-card .testimonial-location {
  font-size: 11px;
  color: #A07080;
}

/* NEWSLETTER */
.new-sections-wrapper .newsletter-banner {
  background: #5A1220;
  margin: 0 40px 40px;
  border-radius: 16px;
  padding: 40px 60px;
  color: #FFF;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(90,18,32,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;
  white-space: nowrap;
}

.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: #E8B85A;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 10px rgba(232,184,90,0.15);
}

.new-sections-wrapper .nl-btn {
  background: #E8B85A;
  color: #4D1010;
  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: #4D1010;
  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: #E8B85A;
  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: #5A1220;
  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-right {
    flex: 1 1 auto;
  }
  .new-sections-wrapper .nl-features {
    justify-content: center;
  }
  .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: var(--m);
  border: 1.5px solid var(--m);
  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: var(--m);
  color: var(--cr);
}

/* 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(109,27,27,0.12), 0 2px 6px rgba(109,27,27,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(109,27,27,0.22), 0 4px 12px rgba(109,27,27,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(109,27,27,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: #D4AF37; }
.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: #6D1B1B;
}

.new-sections-wrapper .buy-btn {
  flex: 1;
  height: 38px;
  text-align: center;
  background: #6D1B1B;
  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 #6D1B1B;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(109,27,27,0.15);
}

.new-sections-wrapper .buy-btn:hover {
  background: #FAF5EA;
  color: #6D1B1B;
  border-color: #6D1B1B;
  box-shadow: 0 6px 18px rgba(109,27,27,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 #D4AF37;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  color: #6D1B1B;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.25s;
  box-shadow: 0 4px 12px rgba(109,27,27,0.1);
}

.new-sections-wrapper .cwish:hover {
  background: #D4AF37;
  color: #fff;
  border-color: #D4AF37;
  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, #6D1B1B, #4D1010);
  color: #fff;
  font-size: 9px;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(109,27,27,0.4);
  transform: translateZ(10px);
  z-index: 5;
}

/* 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: #C4814A;
  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: 2.5rem;
  flex-wrap: wrap;
}

.new-sections-wrapper .collection-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.new-sections-wrapper .circle-wrap {
  position: relative;
  width: 180px;
  height: 180px;
}

.new-sections-wrapper .circle-bg {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease;
  position: relative;
  z-index: 1;
}

.new-sections-wrapper .circle-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #C4814A, #E8B98A, #C4814A);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.new-sections-wrapper .circle-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: #f5ede6;
}

.new-sections-wrapper .circle-inner img {
  transition: transform 0.5s ease;
}

.new-sections-wrapper .overlay {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(74,31,20,0.0);
  transition: background 0.4s ease;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.new-sections-wrapper .overlay-text {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.35s ease;
  margin-top: 4px;
}

.new-sections-wrapper .collection-item:hover .circle-bg {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 16px 36px rgba(196,129,74,0.22);
}

.new-sections-wrapper .collection-item:hover .circle-ring { opacity: 1; }
.new-sections-wrapper .collection-item:hover .circle-inner img { transform: scale(1.12); }
.new-sections-wrapper .collection-item:hover .overlay { background: rgba(74,31,20,0.38); }
.new-sections-wrapper .collection-item:hover .overlay-text { opacity: 1; }

.new-sections-wrapper .collection-item:hover .cat-label {
  color: #C4814A;
  letter-spacing: 0.08em;
}

.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: #C4814A;
  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, #C4814A);
}

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

.new-sections-wrapper .cta-btn {
  font-family: var(--eduvers-font);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #4A1F14;
  border: 1px solid #C4814A;
  background: transparent;
  padding: 10px 28px;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.new-sections-wrapper .cta-btn:hover {
  background: #C4814A;
  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: #6D1B1B;
  position: relative;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

/* Mobile: keep icons visible and tighter */
@media (max-width: 991px) {
  .main-menu__icons-box {
    gap: 16px;
    margin-left: 12px;
  }
  .main-menu__icons-box a {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .main-menu__icons-box {
    gap: 14px;
    margin-left: 8px;
  }
  .main-menu__icons-box a {
    font-size: 16px;
  }
  .main-menu__cart-count {
    font-size: 9px !important;
    min-width: 16px !important;
    height: 16px !important;
    line-height: 16px !important;
    top: -6px !important;
    right: -7px !important;
  }
}
@media (max-width: 480px) {
  .main-menu__icons-box {
    gap: 12px;
    margin-left: 6px;
  }
  .main-menu__icons-box a {
    font-size: 15px;
  }
}

@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-right {
    flex: 1 1 auto;
  }
  .new-sections-wrapper .nl-features {
    justify-content: center;
  }
  .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 circles: smaller on mobile */
  .new-sections-wrapper .circle-wrap,
  .new-sections-wrapper .circle-bg {
    width: 120px;
    height: 120px;
  }
  .new-sections-wrapper .collections-grid {
    gap: 1rem;
  }
  .new-sections-wrapper .collections-section {
    padding: 2rem 1rem;
  }
  .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 .circle-wrap,
  .new-sections-wrapper .circle-bg {
    width: 95px;
    height: 95px;
  }
  .new-sections-wrapper .cat-label {
    font-size: 11px;
  }
  .new-sections-wrapper .collections-grid {
    gap: 0.7rem;
  }
  .new-sections-wrapper .feats {
    grid-template-columns: 1fr;
  }
}

/* ---- 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: #D4AF37;
}

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


