/* =============================================
   ELARA - HEADER CSS
   File: header.css
   ============================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: #f5f0e8;
}

/* --- ANNOUNCEMENT BAR --- */
.announcement-bar {
  background: #1a1a1a;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 71px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: sans-serif;
}

.announcement-bar span {
  flex: 1;
  text-align: center;
}

.announcement-bar span:first-child {
  text-align: left;
}

.announcement-bar span:last-child {
  text-align: right;
}

/* --- MAIN NAV --- */
.main-nav {
  background: #f5f0e8;
  padding: 23px 71px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e0d8cc;
  min-height: 70px;
  position: relative;
}

.nav-left {
  display: flex;
  gap: 28px;
}

.nav-left a {
  text-decoration: none;
  color: #2a2a2a;
  font-family: sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-left a:hover {
  color: #b8860b;
}

/* --- LOGO --- */
.logo-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* Placeholder - apna logo lagane ke liye isko hatao */
.logo-img-placeholder {
  width: 120px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px dashed #b8a898;
  border-radius: 4px;
  cursor: pointer;
}

.logo-img-placeholder span {
  font-size: 10px;
  color: #b8a898;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
}

/* Real logo image ke liye */
.logo-img {
  height: 221px;
  width: 84%;
  display: block;
}

.logoo-img {
  height: auto;
  width: 84%;
  display: block;
}

/* --- NAV ICONS (Search, Account, Wishlist, Cart) --- */
.nav-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-icons svg {
  width: 20px;
  height: 20px;
  cursor: pointer;
  stroke: #2a2a2a;
  fill: none;
  stroke-width: 1.5;
  transition: stroke 0.2s;
}

.nav-icons svg:hover {
  stroke: #b8860b;
}

.cart-wrapper {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #2a2a2a;
  color: #ffffff;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: sans-serif;
}

/* --- CATEGORY NAV --- */
.category-nav {
  background: #f5f0e8;
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 14px 0;
  border-bottom: 1px solid #e0d8cc;
  position: relative;
  z-index: 100;
}

/* --- DROPDOWN WRAPPER --- */
.dropdown-wrapper {
  position: relative;
}

.dropdown-wrapper>a {
  text-decoration: none;
  color: #2a2a2a;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: sans-serif;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 4px 0;
  transition: color 0.2s;
}

.dropdown-wrapper>a:hover {
  color: #b8860b;
}

.dropdown-wrapper>a svg {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform 0.25s;
}

.dropdown-wrapper.open>a svg {
  transform: rotate(180deg);
}

/* --- DROPDOWN MENU --- */
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid #e0d8cc;
  min-width: 180px;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.dropdown-wrapper.open .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 11px 20px;
  text-decoration: none;
  color: #2a2a2a;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: sans-serif;
  border-bottom: 1px solid #f0ebe0;
  transition: background 0.15s, color 0.15s;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: #f5f0e8;
  color: #b8860b;
}

/* =============================================
   ELARA - FOOTER CSS
   File: footer.css
   ============================================= */



*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #f5ede4;
  --cream-light: #fdf8f4;
  --gold: #c8a96e;
  --gold-light: #e8d5b0;
  --dark: #1a1a1a;
  --text: #3a3a3a;
  --text-light: #7a7a7a;
  --white: #ffffff;
  --black-bg: #111111;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* ── HERO SLIDER ── */
.hero-swiper {
  width: 100%;
  height: 520px;
}

.hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}

.swiper-slide-active .slide-bg {
  transform: scale(1);
}

/* Slide 1 – warm satin */
.slide-1 .slide-bg {
  background: linear-gradient(120deg, #e8d5c0 0%, #f5ede4 40%, #d4b896 100%);
}

/* Slide 2 – dark luxury */
.slide-2 .slide-bg {
  background: linear-gradient(135deg, #2a2018 0%, #1a1208 50%, #3a2c1a 100%);
}

/* Slide 3 – blush rose */
.slide-3 .slide-bg {
  background: linear-gradient(120deg, #e8c8c0 0%, #f0ddd8 40%, #c8a898 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 80px;
}

.slide-text {
  max-width: 420px;
}

.slide-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.slide-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 14px;
}

.slide-2 .slide-headline {
  color: var(--white);
}

.slide-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}

.slide-2 .slide-sub {
  color: #b0a090;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 28px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #333;
}

.btn-primary svg {
  transition: transform 0.3s;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 28px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* Ring decoration */
.slide-ring {
  position: absolute;
  right: 80px;
  bottom: 0;
  width: 340px;
  height: 440px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.ring-svg-wrap {
  width: 300px;
  height: 380px;
  position: relative;
}

/* Swiper nav */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  color: var(--gold);
  --swiper-navigation-size: 18px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 0;
  transition: background 0.2s;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
  background: var(--white);
}

.hero-swiper .swiper-pagination-bullet {
  background: var(--gold);
  opacity: 0.4;
  width: 8px;
  height: 8px;
}

.hero-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--cream-light);
  border-top: 1px solid #ede4d8;
  border-bottom: 1px solid #ede4d8;
  padding: 20px 80px;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  flex-shrink: 0;
}

.trust-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
  display: block;
  line-height: 1.3;
}

.trust-desc {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 300;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: #ddd;
}

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  padding: 60px 0 36px;
}

.section-title {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 10px;
}

.section-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gold);
}

.section-ornament::before,
.section-ornament::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

/* ── CATEGORY GRID ── */
.category-section {
  padding: 0 60px 60px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.category-card {
  background: var(--cream-light);
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s;
}

.category-card:hover {
  transform: translateY(-3px);
}

.category-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  background: var(--cream);
}

/* Jewellery SVG placeholders */
.cat-placeholder {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f5ede4, #e8d8c8);
  overflow: hidden;
  position: relative;
}

.category-info {
  padding: 18px 10px 22px;
}

.category-name {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 6px;
}

.category-link {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

.dropdown-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

.menu-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 5px;
}

.dropdown-toggle svg {
  width: 14px;
  height: 14px;
}

.menu-link {
  display: flex;
  align-items: center;
  gap: 5px;
}

.menu-link svg {
  width: 14px;
  height: 14px;
}



/* ── COLLECTION ── */
/* .collection-section { padding: 0 60px 80px; } */

.collection-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.collection-title {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dark);
}

.view-all {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.view-all:hover {
  color: var(--gold);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  cursor: pointer;
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-2px);
}

.product-img-wrap {
  background: var(--cream-light);
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
}

.product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f5ede4, #ead5c0);
}

.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  transition: color 0.2s;
}

.wishlist-btn:hover {
  color: #e06060;
}

.product-name {
  font-size: 13px;
  color: var(--dark);
  font-weight: 400;
  margin-bottom: 5px;
}

.product-price {
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}

.hero-swiper {
  width: 100%;
  height: 700px;
  position: relative;
}

.swiper-slide {
  position: relative;
  overflow: hidden;
}

.slide-bg {
  position: absolute;
  inset: 0;
}

.slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0,0,0,.45); */
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.slide-text {
  max-width: 600px;
  color: #fff;
}

.slide-eyebrow {
  display: inline-block;
  margin-bottom: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4a96a;
}

.slide-headline {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.slide-sub {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: #d4a96a;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.category-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: .3s;
}

.category-card:hover {
  transform: translateY(-5px);
}

.cat-placeholder {
  height: 280px;
  overflow: hidden;
}

.cat-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: .4s ease;
}

.category-card:hover .cat-placeholder img {
  transform: scale(1.08);
}

.category-info {
  text-align: center;
  padding: 20px;
}

.category-name {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.category-link {
  text-decoration: none;
  color: #c8a060;
  font-weight: 500;
}

.dark-banner {
  width: 100%;
  overflow: hidden;
  /* border-radius:20px; */
}

.dark-banner img {
  width: 100%;
  height: 500px;
  /* apne hisab se */
  object-fit: cover;
  display: block;
}

.collection-section {
  padding: 40px 71px;
}

.collection-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.collection-title {
  font-size: 32px;
  font-weight: 600;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
}

.product-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: .4s;
}

.product-card:hover img {
  transform: scale(1.08);
}

.wishlist-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.product-name {
  font-size: 18px;
  margin: 15px 0 5px;
}

.product-price {
  color: #b88746;
  font-weight: 600;
  margin-bottom: 20px;
}

.collectionSwiper {
  padding-bottom: 60px;
}

.collectionSwiper .swiper-button-next,
.collectionSwiper .swiper-button-prev {
  color: #b88746;
}

.collectionSwiper .swiper-pagination-bullet-active {
  background: #b88746;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: #faf8f5;
  color: #2c2c2c;
}

/* ───── HERO ───── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
  background: #f5f0e8;
  padding: 48px 40px 40px;
  gap: 24px;
  align-items: center;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 0.82rem;
  color: #666;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}

.btn-primary {
  display: inline-block;
  background: #1a1a1a;
  color: #fff;
  padding: 11px 22px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.hero-img {
  display: flex;
  justify-content: flex-end;
}

.hero-img img {
  width: 260px;
  height: 240px;
  object-fit: cover;
  border-radius: 4px;
}

/* ───── TRUST BAR ───── */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #e5e0d8;
  border-bottom: 1px solid #e5e0d8;
  background: #fff;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-right: 1px solid #e5e0d8;
}

.trust-item:last-child {
  border-right: none;
}

.trust-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.trust-text strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #222;
}

.trust-text span {
  font-size: 0.68rem;
  color: #888;
}

/* ───── DESIGN SECTION ───── */
.design-section {
  padding: 44px 40px 50px;
  max-width: 1232px;
  margin: 0 auto;
  border: 1px solid #dddddd;
}

.design-section h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1a1a1a;
}

.design-section .subtitle {
  text-align: center;
  font-size: 16px;
  color: #888;
  margin-bottom: 28px;
}

/* Step tabs */
.steps-bar {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  border-bottom: 1px solid #ddd;
}

.step {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px 10px 12px;
  font-size: 16px;
  color: #aaa;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}

.step .step-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
}

.step.active {
  color: #1a1a1a;
}

.step.active .step-num {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}

.step.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: #1a1a1a;
}

/* Main configurator layout */
.configurator {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
}

/* Left sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 8px;
  border: 1.5px solid #e0dbd2;
  background: #fff;
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666;
  transition: all 0.15s;
}

.sidebar-item.active {
  border-color: #c9a96e;
  background: #fdf8f2;
  color: #1a1a1a;
}

.sidebar-item img {
  width: 58px;
  height: 44px;
  object-fit: cover;
  border-radius: 3px;
}

/* Right panel */
.panel-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 14px;
}

/* Diamond shapes */
.shapes-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 6px;
  margin-bottom: 28px;
}

.shape-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 8px 4px 6px;
  border: 1.5px solid #e8e3da;
  background: #fff;
  cursor: pointer;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #666;
  transition: all 0.15s;
}

.shape-item:hover {
  border-color: #c9a96e;
}

.shape-item.selected {
  border-color: #1a1a1a;
  background: #f9f6f1;
  color: #1a1a1a;
}

.shape-item img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* Diamond quality selects */
.quality-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

.quality-group label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 6px;
}

.quality-group label .info-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  color: #aaa;
  cursor: help;
}

.quality-group select {
  width: 100%;
  padding: 13px 25px;
  border: 1.5px solid #ddd;
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: #333;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
}

/* Diamond size */
.size-buttons {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.size-btn {
  padding: 7px 12px;
  border: 1.5px solid #ddd;
  background: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.15s;
}

.size-btn:hover {
  border-color: #c9a96e;
}

.size-btn.selected {
  border-color: #1a1a1a;
  background: #1a1a1a;
  color: #fff;
}

.size-btn.custom {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Selection summary card */
.selection-card {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 16px;
  align-items: center;
  border: 1.5px solid #e0dbd2;
  background: #fff;
  padding: 16px;
  margin-top: 4px;
}

.selection-card img {
  width: 110px;
  height: 90px;
  object-fit: cover;
  border-radius: 3px;
}

.selection-info .price {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.selection-info .sel-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 4px;
}

.selection-info .sel-values {
  font-size: 0.75rem;
  color: #444;
  line-height: 1.6;
}

.selection-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.btn-cart {
  background: #1a1a1a;
  color: #fff;
  border: none;
  padding: 11px 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

.btn-save {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  color: #666;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
}

.btn-save svg {
  width: 14px;
  height: 14px;
}

/* ───── SHOP BY CATEGORY ───── */
.shop-section {
  padding: 44px 40px 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.shop-section h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.category-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 12px;
  filter: grayscale(8%);
}

.category-card .cat-name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 3px;
}

.category-card .cat-link {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #aaa;
  text-decoration: none;
}

.lux-category-slider-section {
  padding: 40px 70px;
  background: #fff;
}

.lux-category-slider-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 40px;
  font-weight: 700;
  color: #222;
}

.luxCategorySwiper {
  padding-bottom: 60px;
}

.lux-category-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
  text-align: center;
  transition: .4s;
}

.lux-category-card:hover {
  transform: translateY(-8px);
}

.lux-category-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.lux-category-name {
  display: block;
  font-size: 22px;
  font-weight: 600;
  margin: 18px 0 12px;
}

.lux-category-btn {
  display: inline-block;
  margin-bottom: 22px;
  padding: 10px 26px;
  text-decoration: none;
  background: #111;
  color: #fff;
  border-radius: 40px;
  transition: .3s;
}

.lux-category-btn:hover {
  background: #c59d5f;
}

.lux-swiper-next,
.lux-swiper-prev {
  color: #111;
}

.lux-swiper-pagination .swiper-pagination-bullet {
  background: #999;
}

.lux-swiper-pagination .swiper-pagination-bullet-active {
  background: #111;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.lxd-hero-banner {
  width: 100%;
  background: #fdf9f6;
  overflow: hidden;
}

.lxdHeroSwiper {
  width: 100%;
  height: 88vh;
}

.lxd-slide-wrap {

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 70px 8%;
  height: 88vh;
  gap: 60px;

}

.lxd-slide-content {
  flex: 1;
}

.lxd-small-text {

  display: inline-block;
  margin-bottom: 20px;
  letter-spacing: 3px;
  font-size: 14px;
  text-transform: uppercase;
  color: #b88942;

  animation: lxdFadeTop .9s;

}

.lxd-slide-content h1 {

  font-size: 68px;
  line-height: 1.1;
  color: #111;
  margin-bottom: 25px;
  font-weight: 700;

  animation: lxdFadeLeft 1s;

}

.lxd-slide-content p {

  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 35px;
  color: #666;

  animation: lxdFadeLeft 1.3s;

}

.lxd-main-btn {

  display: inline-block;
  padding: 16px 42px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  transition: .4s;

  animation: lxdFadeBottom 1.5s;

}

.lxd-main-btn:hover {

  background: #c79d5e;
  transform: translateY(-5px);

}

.lxd-slide-image {

  flex: 1;
  display: flex;
  justify-content: center;

}

.lxd-slide-image img {

  width: 100%;
  max-width: 540px;
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .15);

  animation: lxdZoom 1.3s;

}

.lxd-next,
.lxd-prev {

  color: #111;

}

.lxd-pagination .swiper-pagination-bullet {

  background: #bbb;

}

.lxd-pagination .swiper-pagination-bullet-active {

  background: #111;
  width: 26px;
  border-radius: 30px;

}

/* Animations */

@keyframes lxdFadeLeft {

  from {
    opacity: 0;
    transform: translateX(-80px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }

}

@keyframes lxdFadeTop {

  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

@keyframes lxdFadeBottom {

  from {
    opacity: 0;
    transform: translateY(60px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

@keyframes lxdZoom {

  from {
    opacity: 0;
    transform: scale(.75) rotate(-8deg);
  }

  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }

}

@media(max-width:991px) {

  .lxd-slide-wrap {

    flex-direction: column-reverse;
    text-align: center;
    justify-content: center;

  }

  .lxd-slide-content h1 {

    font-size: 42px;

  }

  .lxd-slide-content p {

    font-size: 17px;

  }

  .lxd-slide-image img {

    max-width: 350px;

  }

}

@media(max-width:576px) {

  .lxdHeroSwiper,
  .lxd-slide-wrap {

    height: auto;
    padding: 70px 20px;

  }

  .lxd-slide-content h1 {

    font-size: 32px;

  }

  .lxd-slide-image img {

    max-width: 270px;

  }

}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Georgia', serif;
  background: #faf9f7;
}

.trust-bar {
  background: #fff;
  border-bottom: 0.5px solid #e8e2d9;
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 10px 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #888;
  letter-spacing: 0.04em;
  font-family: Arial, sans-serif;
}

.trust-item i {
  font-size: 16px;
  color: #c8a97e;
}

.breadcrumb {
  padding: 10px 32px;
  font-size: 11px;
  color: #aaa;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
}

.breadcrumb span {
  color: #555;
}

.main {
  display: flex;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 40px;
}

.gallery {
  /* width: 340px;
            flex-shrink: 0;
            padding-right: 24px; */
}

.main-img {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #f5f0ea 0%, #ede5d8 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
}

.ring-visual {
  width: 220px;
  height: 220px;
  position: relative;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.ring-svg {
  width: 100%;
  height: 100%;
}

.view360 {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: 0.5px solid #ddd;
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 11px;
  color: #555;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  font-family: Arial, sans-serif;
}

.view360:hover {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.thumbs {
  /* display: flex; */
  gap: 8px;
  flex-wrap: wrap;
}

.thumb {
  width: 100px;
  height: 100px;
  background: #ede8e0;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid transparent;
  transition: all 0.2s;
}

.thumb.active,
.thumb:hover {
  border-color: #c8a97e;
}

.thumb i {
  font-size: 22px;
  color: #c8a97e;
}

.config {
  flex: 1;
  padding-left: 16px;
}

.step-bar {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
}

.step {
  display: flex;
  align-items: center;
  gap: 6px;
}

.step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #c8a97e;
  color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  flex-shrink: 0;
  font-family: Arial, sans-serif;
}

.step-num.inactive {
  background: #e8e2d9;
  color: #aaa;
}

.step-label {
  font-size: 11px;
  color: #888;
  letter-spacing: 0.05em;
  white-space: nowrap;
  font-family: Arial, sans-serif;
}

.step-label.active {
  color: #333;
  font-weight: 500;
}

.step-line {
  flex: 1;
  height: 1px;
  background: #e8e2d9;
  min-width: 12px;
}

.section-title {
  font-size: 24px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 12px;
  font-weight: 500;
  font-family: Arial, sans-serif;
}

.shape-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.shape-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px 10px 8px;
  border: 0.5px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  min-width: 58px;
  background: #fff;
  transition: all 0.25s;
}

.shape-btn:hover {
  border-color: #c8a97e;
  transform: translateY(-2px);
}

.shape-btn.active {
  border-color: #c8a97e;
  background: #fdf7ef;
  box-shadow: 0 0 0 1px #c8a97e;
}

.shape-btn i {
  font-size: 20px;
  color: #c8a97e;
}

.shape-btn span {
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #777;
  font-family: Arial, sans-serif;
}

.quality-row {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.select-wrap {
  flex: 1;
  position: relative;
}

.select-label {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 6px;
  font-family: Arial, sans-serif;
}

.select-wrap select {
  width: 100%;
  appearance: none;
  background: #fff;
  border: 0.5px solid #ddd;
  border-radius: 6px;
  padding: 8px 28px 8px 12px;
  font-size: 13px;
  color: #333;
  cursor: pointer;
  font-family: Arial, sans-serif;
  transition: border-color 0.2s;
}

.select-wrap select:hover,
.select-wrap select:focus {
  border-color: #c8a97e;
  outline: none;
}

.select-wrap i.arr {
  position: absolute;
  right: 8px;
  top: 28px;
  font-size: 14px;
  color: #aaa;
  pointer-events: none;
}

.size-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.size-btn {
  padding: 7px 14px;
  border: 0.5px solid #ddd;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  background: #fff;
  color: #555;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: Arial, sans-serif;
}

.size-btn:hover {
  border-color: #c8a97e;
  color: #c8a97e;
}

.size-btn.active {
  border-color: #c8a97e;
  background: #c8a97e;
  color: #fff;
}

.setting-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.setting-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px 12px 8px;
  border: 0.5px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  background: #fff;
  min-width: 64px;
  transition: all 0.25s;
}

.setting-btn:hover {
  border-color: #c8a97e;
  transform: translateY(-1px);
}

.setting-btn.active {
  border-color: #c8a97e;
  background: #fdf7ef;
  box-shadow: 0 0 0 1px #c8a97e;
}

.setting-btn i {
  font-size: 18px;
  color: #c8a97e;
}

.setting-btn span {
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #777;
  font-family: Arial, sans-serif;
}

.metal-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.metal-btn {
  padding: 7px 14px;
  border: 0.5px solid #ddd;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  background: #fff;
  color: #555;
  transition: all 0.2s;
  font-family: Arial, sans-serif;
}

.metal-btn:hover {
  border-color: #c8a97e;
}

.metal-btn.active {
  border-color: #c8a97e;
  background: #c8a97e;
  color: #fff;
}

.color-row {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.color-btn {
  padding: 7px 20px;
  border: 0.5px solid #ddd;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  background: #fff;
  color: #555;
  transition: all 0.2s;
  font-family: Arial, sans-serif;
}

.color-btn.active {
  border-color: #c8a97e;
  background: #fdf7ef;
  color: #c8a97e;
  font-weight: 500;
}

.selection-box {
  background: #fdfaf6;
  border: 0.5px solid #e8dfcf;
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 20px;
}

.selection-title {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 8px;
  font-family: Arial, sans-serif;
}

.selection-detail {
  font-size: 12px;
  color: #555;
  line-height: 1.8;
  font-family: Arial, sans-serif;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  font-size: 26px;
  font-weight: 500;
  color: #333;
  letter-spacing: -0.02em;
  font-family: Arial, sans-serif;
}

.price-note {
  font-size: 10px;
  color: #aaa;
  margin-top: 2px;
  font-family: Arial, sans-serif;
}

.btn-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.add-btn {
  flex: 1;
  background: #c8a97e;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 14px 20px;
  font-size: 13px;
  font-family: Arial, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.add-btn:hover {
  background: #b8956a;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200, 169, 126, 0.35);
}

.add-btn:active {
  transform: scale(0.98);
}

.wish-btn {
  width: 48px;
  height: 48px;
  border: 0.5px solid #ddd;
  border-radius: 6px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.wish-btn:hover {
  border-color: #c8a97e;
}

.wish-btn i {
  font-size: 20px;
  color: #c8a97e;
  transition: all 0.2s;
}

.wish-btn.wished i {
  color: #e44;
}

.divider {
  height: 0.5px;
  background: #e8e2d9;
  margin: 20px 0;
}

.perks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 0.5px solid #e8e2d9;
  padding-top: 24px;
  margin-top: 8px;
}

.perk {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  padding: 0 8px;
  border-right: 0.5px solid #e8e2d9;
}

.perk:last-child {
  border-right: none;
}

.perk i {
  font-size: 22px;
  color: #c8a97e;
}

.perk-title {
  font-size: 10px;
  font-weight: 500;
  color: #555;
  letter-spacing: 0.04em;
  font-family: Arial, sans-serif;
}

.perk-sub {
  font-size: 10px;
  color: #aaa;
  font-family: Arial, sans-serif;
}

.ymal-section {
  background: #fff;
  border-top: 0.5px solid #e8e2d9;
  padding: 32px 24px;
  margin-top: 8px;
}

.ymal-title {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 24px;
  font-family: Arial, sans-serif;
}

.ymal-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
  max-width: 1100px;
  margin: 0 auto;
}

.ymal-card {
  flex-shrink: 0;
  width: 180px;
  cursor: pointer;
}

.ymal-img {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #f5f0ea, #ede5d8);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
}

.ymal-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.ymal-img i {
  font-size: 52px;
  color: #c8a97e;
  opacity: 0.7;
}

.ymal-wish {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ymal-wish i {
  font-size: 14px;
  color: #c8a97e;
}

.ymal-name {
  font-size: 12px;
  color: #333;
  font-weight: 500;
  margin-bottom: 4px;
  font-family: Arial, sans-serif;
}

.ymal-price {
  font-size: 13px;
  color: #c8a97e;
  font-weight: 500;
  font-family: Arial, sans-serif;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.diamond-sparkle {
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {

  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.3) drop-shadow(0 0 6px rgba(255, 255, 255, 0.8));
  }
}

/* Main Box */
.ring-main-box {
  width: 100%;
  max-width: 420px;
  background: #f8f4ef;
  border-radius: 14px;
  padding: 18px;
  text-align: center;
}

/* Image Container */
.ring-image-wrapper {
  width: 100%;
  aspect-ratio: 1/1;
  /* Square box */
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image */
.ring-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Full box cover */
  display: block;
}

/* 360 Button */
.ring-view360-btn {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1px solid #ddd;
  border-radius: 999px;
  background: #fff;
  color: #444;
  font-size: 14px;
  cursor: pointer;
  transition: .3s;
}

.ring-view360-btn:hover {
  background: #f5f5f5;
}

.diamond-shape-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.diamond-shape-btn {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 6px;
  padding: 10px 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .3s;
}

.diamond-shape-btn.active {
  border: 2px solid #b99a62;
  background: #faf8f5;
}

.diamond-shape-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 8px;
}

.diamond-shape-btn span {
  font-size: 11px;
  font-weight: 700;
  color: #444;
  text-transform: uppercase;
}

.breadcrumb a {
  text-decoration: none;
  color: #555555;
}

/* about */
/* About Us page specific styles (kept inside the page to avoid editing main.css) */
:root {
  --gold: #c8a96e;
  --dark: #1a1a1a;
  --cream: #f5f0e8;
  --text: #2c2c2c;
  --muted: #6f6f6f;
  --card: #ffffff;
  --border: rgba(200, 169, 126, 0.25);
}

.about-page {
  background: #faf8f5;
  color: var(--text);
}

/* HERO */
.about-hero {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #111;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('https://elaara.in/cdn/shop/files/banner_4faee6c3-f6f8-45c0-87bc-8333cb45341a.png?v=1773743393&width=2000');
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
  transform: scale(1.02);
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.2) 100%);
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  padding: 70px 71px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 26px;
  align-items: center;
  min-height: 340px;
}

.about-hero-kicker {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 600;
}

.about-hero h1 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-weight: 400;
  font-size: 54px;
  line-height: 1.08;
  margin-bottom: 14px;
}

.about-hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.85;
  max-width: 640px;
  margin-bottom: 26px;
}

.about-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid rgba(200, 169, 126, 0.6);
  background: rgba(200, 169, 126, 0.12);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 2.6px;
  font-weight: 600;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.about-btn:hover {
  transform: translateY(-2px);
  background: rgba(200, 169, 126, 0.22);
  border-color: rgba(200, 169, 126, 0.9);
}

.about-hero-stats {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 18px;
  display: grid;
  gap: 12px;
}

.stat-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--gold);
  flex-shrink: 0;
}

.stat-icon i {
  font-size: 18px;
}

.stat-text strong {
  display: block;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.stat-text span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  line-height: 1.4;
}

/* SECTIONS */
.about-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 71px;
}

.section-head {
  text-align: center;
  margin-bottom: 36px;
}

.section-eyebrow {
  color: var(--gold);
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  margin-bottom: 10px;
      padding: 10px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
  max-width: 820px;
  margin: 0 auto;
}

.story {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: center;
}

.story-media {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.story-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.0) 35%, rgba(0, 0, 0, 0.22) 100%);
  pointer-events: none;
}

.story-content {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(200, 169, 126, 0.18);
  padding: 26px;
}

.story-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 14px;
}

.story-content p {
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
  margin-bottom: 18px;
}

.bullets {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.bullet {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border: 1px solid rgba(200, 169, 126, 0.18);
  border-radius: 14px;
  background: #fff;
}

.bullet i {
  color: var(--gold);
  font-size: 16px;
  margin-top: 3px;
}

.bullet strong {
  display: block;
  font-size: 13px;
  color: var(--dark);
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.bullet span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 2px;
}

/* WHY CHOOSE US */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(200, 169, 126, 0.18);
  padding: 20px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(200, 169, 126, 0.12);
  border: 1px solid rgba(200, 169, 126, 0.35);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon i {
  font-size: 18px;
}

.card h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin: 0;
  color: var(--dark);
  font-weight: 700;
}

.card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
  margin: 0;
}

/* VALUES */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.value {
  padding: 22px;
  background: linear-gradient(180deg, rgba(200, 169, 126, 0.10) 0%, rgba(255, 255, 255, 1) 45%);
  border-radius: 18px;
  border: 1px solid rgba(200, 169, 126, 0.18);
}

.value .num {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  color: rgba(200, 169, 126, 0.55);
  margin-bottom: 8px;
}

.value h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dark);
  margin-bottom: 10px;
}

.value p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
  margin: 0;
}

/* FAQ */
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 22px;
  align-items: start;
}

details {
  background: #fff;
  border: 1px solid rgba(200, 169, 126, 0.18);
  border-radius: 16px;
  padding: 14px 16px;
}

details summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

details summary::-webkit-details-marker {
  display: none;
}

/* FAQ + / − icon (About/standard FAQ section) */
details summary::after {
  content: '+';
  font-size: 18px;
  color: #c9a882;
}

details[open] summary::after {
  content: '−';
}

details p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
  margin-top: 10px;
}

/* CTA */
.cta {
  background: #111;
  color: #fff;
  border-radius: 22px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.cta h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 26px;
  margin-bottom: 8px;
}

.cta p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.8;
}

.cta .about-btn {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Responsive */
@media (max-width: 980px) {
  .about-hero-inner {
    grid-template-columns: 1fr;
    padding: 54px 24px;
    min-height: 0;
  }

  .story {
    grid-template-columns: 1fr;
  }

  .story-media img {
    min-height: 260px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .faq-wrap {
    grid-template-columns: 1fr;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-hero h1 {
    font-size: 40px;
  }
}

.testimonial-section {
  padding: 40px 250px;
  background: #faf8f5;
}

.testimonialSwiper {
  margin-top: 50px;
}

.testimonial-card {
  background: #fff;
  /* Keep all testimonial cards same height */
  height: 250px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  padding: 35px;
  border: 1px solid #eee;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

/* Swiper by default clips slides; let testimonial cards show full height */
.testimonialSwiper .swiper-slide,
.rngbldTestiSwiper .swiper-slide {
  overflow: visible;
}

.review {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  /* Ensure review text does not make cards different heights */
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.customer h4 {
  margin: 0;
  font-size: 18px;
  color: #111;
}

.google-review img {
  width: 120px;
}

.swiper-pagination {
  position: relative;
  margin-top: 35px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background: #ccc;
}

.swiper-pagination-bullet-active {
  background: #c49a45;
}

/* ===== UNIQUE PREFIX: crb- (Custom Ring Builder) ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: #2c2c2c;
  background: #fff;
}

/* ---- TOP TRUST BAR ---- */
.crb-trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 10px 20px;
  border-bottom: 1px solid #e8e0d8;
  background: #fff;
}

.crb-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #555;
  letter-spacing: 0.03em;
}

.crb-trust-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.crb-trust-item strong {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: #2c2c2c;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.crb-trust-item span {
  font-size: 14px;
  color: #888;
}

/* ---- BREADCRUMB ---- */
.crb-breadcrumb {
  padding: 10px 30px;
  font-size: 11px;
  color: #888;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-bottom: 1px solid #f0ebe4;
}

.crb-breadcrumb a {
  color: #888;
  text-decoration: none;
}

.crb-breadcrumb a:hover {
  color: #2c2c2c;
}

.crb-breadcrumb span {
  color: #c9a882;
}

/* ---- MAIN PRODUCT LAYOUT ---- */
.crb-product-wrap {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 20px;
  gap: 40px;
  align-items: flex-start;
}

/* ---- LEFT: Gallery ---- */
.crb-gallery {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.crb-thumbs {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  /* gap: 8px; */
}

.crb-thumb {
  width: 64px;
  height: 64px;
  border: 1.5px solid #e8e0d8;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: #fdf9f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.crb-thumb.crb-active {
  border-color: #c9a882;
}

.crb-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.crb-main-img-wrap {
  width: 380px;
  height: 500px;
  background: #fdf9f6;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.crb-main-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.crb-360-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #555;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Jost', sans-serif;
}

/* ---- RIGHT: Configurator ---- */
.crb-config {
  flex: 1;
}

/* Steps */
.crb-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
}

.crb-step {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #aaa;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.crb-step-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e8e0d8;
  color: #999;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.crb-step.crb-step-active .crb-step-num {
  background: #c9a882;
  color: #fff;
}

.crb-step.crb-step-active {
  color: #2c2c2c;
}

.crb-step-divider {
  width: 28px;
  height: 1px;
  background: #e0d8d0;
  margin: 0 4px;
}

/* Section label */
.crb-section-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2c2c2c;
  margin-bottom: 10px;
  margin-top: 16px;
}

/* Shape options */
.crb-shape-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 36px;
}

.crb-shape-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 6px 6px;
  border: 1.5px solid #e0d8d0;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  width: 58px;
  font-size: 9px;
  color: #777;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
}

.crb-shape-btn:hover {
  border-color: #c9a882;
}

.crb-shape-btn.crb-selected {
  border-color: #c9a882;
  background: #fdf8f3;
}

.crb-shape-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Quality row */
.crb-quality-row {
  display: flex;
  gap: 14px;
  align-items: flex-end;
  margin-bottom: 36px;
}

.crb-quality-col {
  flex: 1;
}

.crb-quality-col label {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 4px;
}

.crb-select {
  width: 100%;
  padding: 14px 14px;
  border: 1px solid #ddd;
  border-radius: 3px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999' stroke-width='1.2' fill='none'/%3E%3C/svg%3E") no-repeat right 8px center;
  appearance: none;
  font-size: 12px;
  color: #333;
  font-family: 'Jost', sans-serif;
  cursor: pointer;
}

/* Size pills */
.crb-size-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 37px;
}

.crb-size-btn {
  padding: 12px 22px;
  border: 1px solid #ddd;
  border-radius: 3px;
  background: #fff;
  font-size: 14px;
  color: #555;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.02em;
}

.crb-size-btn:hover {
  border-color: #c9a882;
}

.crb-size-btn.crb-selected {
  border-color: #c9a882;
  background: #c9a882;
  color: #fff;
  font-weight: 500;
}

.crb-size-custom {
  padding: 11px 2px;
  border: 1px solid #ddd;
  border-radius: 3px;
  background: #fff;
  font-size: 14px;
  color: #555;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
}

/* Setting icons */
.crb-setting-row {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.crb-setting-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 10px 6px;
  border: 1.5px solid #e0d8d0;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  font-size: 9px;
  color: #777;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
  min-width: 58px;
  text-align: center;
}

.crb-setting-btn:hover {
  border-color: #c9a882;
}

.crb-setting-btn.crb-selected {
  border-color: #c9a882;
  background: #fdf8f3;
}

.crb-setting-icon {
  width: 28px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Metal pills */
.crb-metal-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.crb-metal-btn {
  padding: 12px 27px;
  border: 1px solid #ddd;
  border-radius: 3px;
  background: #fff;
  font-size: 14px;
  color: #555;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.02em;
}

.crb-metal-btn:hover {
  border-color: #c9a882;
}

.crb-metal-btn.crb-selected {
  border-color: #c9a882;
  background: #c9a882;
  color: #fff;
  font-weight: 500;
}

/* Colour tone */
.crb-tone-row {
  display: flex;
  gap: 6px;
  margin-bottom: 4px;
}

.crb-tone-btn {
  padding: 12px 37px;
  border: 1px solid #ddd;
  border-radius: 3px;
  background: #fff;
  font-size: 14px;
  color: #555;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.02em;
}

.crb-tone-btn:hover {
  border-color: #c9a882;
}

.crb-tone-btn.crb-selected {
  border-color: #2c2c2c;
  background: #fff;
  color: #2c2c2c;
  font-weight: 600;
}

/* Summary + CTA */
.crb-summary-block {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #d2c6c6;
  gap: 16px;
}

.crb-summary-text {
  font-size: 11px;
  color: #555;
  line-height: 1.7;
}

.crb-summary-text p {
  color: #777;
  font-weight: 700;
  font-size: 15px;
}

.crb-summary-price {
  font-size: 22px;
  font-weight: 700;
  color: #2c2c2c;
  font-family: 'Cormorant Garamond', serif;
  white-space: nowrap;
  text-align: right;
  margin-right: -404px;
}

.crb-cta-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
  margin-top: 34px;
}

.crb-add-to-cart {
  background: #2c2c2c;
  color: #fff;
  border: none;
  padding: 11px 22px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  border-radius: 2px;
  white-space: nowrap;
}

.crb-add-to-cart:hover {
  background: #444;
}

.crb-save-design {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  color: #888;
  cursor: pointer;
  border: 1px solid #ddd;
  padding: 7px 14px;
  border-radius: 2px;
  background: #fff;
  font-family: 'Jost', sans-serif;
  white-space: nowrap;
}

/* ---- BOTTOM TRUST BAR ---- */
.crb-bottom-trust {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 16px 30px;
  border-top: 1px solid #f0ebe4;
  border-bottom: 1px solid #f0ebe4;
  background: #fff;
  margin-top: 10px;
}

.crb-bt-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}

.crb-bt-item svg {
  width: 28px;
  height: 28px;
  color: #c9a882;
}

.crb-bt-item strong {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #2c2c2c;
}

.crb-bt-item span {
  font-size: 10px;
  color: #888;
}

/* ---- YOU MAY ALSO LIKE ---- */
.crb-ymal {
  max-width: 1200px;
  margin: 30px auto 40px;
  padding: 0 20px;
}

.crb-ymal-title {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2c2c2c;
  margin-bottom: 22px;
}

.crb-ymal-grid-wrap {
  position: relative;
}

.crb-ymal-grid {
  display: flex;
  gap: 18px;
  overflow: hidden;
}

.crb-ymal-card {
  flex: 1;
  min-width: 0;
  text-align: center;
  cursor: pointer;
}

.crb-ymal-img {
  width: 100%;
  aspect-ratio: 1/1;
  background: #fdf9f6;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.crb-ymal-img img {
  width: 85%;
  height: 85%;
  object-fit: contain;
}

.crb-ymal-heart {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 14px;
  color: #ccc;
  cursor: pointer;
}

.crb-ymal-card h4 {
  font-size: 12px;
  font-weight: 400;
  color: #2c2c2c;
  margin-bottom: 4px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
}

.crb-ymal-card .crb-ymal-price {
  font-size: 12px;
  color: #888;
  font-family: 'Jost', sans-serif;
}

.crb-ymal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  color: #555;
  z-index: 2;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.crb-ymal-nav-prev {
  left: -16px;
}

.crb-ymal-nav-next {
  right: -16px;
}

/* Helper info icon */
.crb-info-icon {
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid #aaa;
  font-size: 9px;
  text-align: center;
  line-height: 11px;
  color: #aaa;
  cursor: pointer;
  vertical-align: middle;
  margin-left: 3px;
}

/* Ring placeholder SVGs */
.crb-ring-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-icons a {
  color: #000;
  font-size: 22px;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}

.nav-icons a:hover {
  color: #ff6600;
}

.cart-wrapper {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  width: 18px;
  height: 18px;
  background: red;
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fa-solid,
.fas {
  font-weight: 900;
  color: #323231;
  font-size: 16px;
}
.fa-solid {
    margin-top: 7px !important;
    font-weight: 900;
}
.fa-regular,
.far {
  font-weight: 400;
  color: #323231;
  font-size: 16px;
}

.fa-regular,
.far {
  font-weight: 400;
  color: #323231;
  font-size: 16px;
}

.fa-solid,
.fas {
  font-weight: 900;
  color: #323231;
  font-size: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

body {
  font-family: 'Jost', sans-serif;
  background: #faf9f7;
  color: #2c2c2a
}

/* TRUST BAR */
.rngbld-trust-bar {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 12px 2rem;
  background: #fff;
  border-bottom: 0.5px solid #e8e0d5;
  flex-wrap: wrap
}

.rngbld-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px
}

.rngbld-trust-item svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0
}

.rngbld-trust-item strong {
  display: block;
  font-size: 12px;
  color: #2c2c2a;
  font-weight: 600
}

.rngbld-trust-item span {
  color: #888;
  font-size: 11px
}

/* BREADCRUMB */
.rngbld-breadcrumb {
  padding: 10px 2rem;
  font-size: 12px;
  color: #888
}

.rngbld-breadcrumb a {
  color: #888;
  text-decoration: none
}

.rngbld-breadcrumb a:hover {
  color: #c9a882
}

/* MAIN LAYOUT */
.rngbld-product-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem 2rem
}

/* GALLERY */
.rngbld-gallery {
  display: flex;
  gap: 12px
}

.rngbld-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.rngbld-thumb {
  width: 68px;
  height: 68px;
  border: 1.5px solid #e8e0d5;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s
}

.rngbld-thumb.rngbld-active,
.rngbld-thumb:hover {
  border-color: #c9a882
}

.rngbld-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.rngbld-main-img-wrap {
  position: relative;
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  /* background: #f5f0eb;
  border: 0.5px solid #e8e0d5 */
}

.rngbld-main-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s
}

.rngbld-360-btn {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.92);
  border: 0.5px solid #ccc;
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 11px;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap
}

/* CONFIGURATOR */
.rngbld-config {
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.rngbld-steps {
  display: flex;
  align-items: center;
  margin-bottom: 4px
}

.rngbld-step {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #aaa;
  white-space: nowrap
}

.rngbld-step.rngbld-step-active {
  color: #c9a882;
  font-weight: 600
}

.rngbld-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: #aaa;
  flex-shrink: 0
}

.rngbld-step-active .rngbld-step-num {
  border-color: #c9a882;
  color: #c9a882;
  background: #fff8f0
}

.rngbld-step-divider {
  flex: 1;
  height: 1px;
  background: #e8e0d5;
  margin: 0 6px
}

.rngbld-section-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #2c2c2a;
  border-bottom: 0.5px solid #e8e0d5;
  padding-bottom: 7px;
  margin-top: 2px
}

/* SHAPE GRID */
.rngbld-shape-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px
}

.rngbld-shape-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 4px;
  border: 1.5px solid #e8e0d5;
  border-radius: 8px;
  background: #fff;
  font-size: 11px;
  color: #666;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Jost', sans-serif
}

.rngbld-shape-btn:hover {
  border-color: #c9a882;
  color: #c9a882
}

.rngbld-shape-btn.rngbld-selected {
  border-color: #c9a882;
  background: #fff8f0;
  color: #c9a882;
  font-weight: 600
}

.rngbld-shape-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center
}

/* QUALITY */
.rngbld-quality-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px
}

.rngbld-quality-col {
  display: flex;
  flex-direction: column;
  gap: 5px
}

.rngbld-quality-col label {
  font-size: 11px;
  color: #888;
  font-weight: 500
}

.rngbld-select {
  border: 1.5px solid #e8e0d5;
  border-radius: 6px;
  padding: 7px 8px;
  font-size: 12px;
  background: #fff;
  color: #2c2c2a;
  outline: none;
  cursor: pointer;
  width: 100%;
  font-family: 'Jost', sans-serif;
  transition: border-color 0.2s
}

.rngbld-select:focus {
  border-color: #c9a882
}

/* SIZE */
.rngbld-size-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px
}

.rngbld-size-btn {
  padding: 7px 13px;
  border: 1.5px solid #e8e0d5;
  border-radius: 20px;
  background: #fff;
  font-size: 12px;
  color: #666;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Jost', sans-serif
}

.rngbld-size-btn:hover {
  border-color: #c9a882;
  color: #c9a882
}

.rngbld-size-btn.rngbld-selected {
  border-color: #c9a882;
  background: #c9a882;
  color: #fff;
  font-weight: 600
}

.rngbld-size-custom-btn {
  padding: 7px 13px;
  border: 1.5px dashed #ccc;
  border-radius: 20px;
  background: transparent;
  font-size: 12px;
  color: #999;
  cursor: pointer;
  font-family: 'Jost', sans-serif
}

.rngbld-size-custom-btn:hover {
  border-color: #c9a882;
  color: #c9a882
}

/* SETTING */
.rngbld-setting-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px
}

.rngbld-setting-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px 4px;
  border: 1.5px solid #e8e0d5;
  border-radius: 8px;
  background: #fff;
  font-size: 11px;
  color: #666;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Jost', sans-serif
}

.rngbld-setting-btn:hover {
  border-color: #c9a882;
  color: #c9a882
}

.rngbld-setting-btn.rngbld-selected {
  border-color: #c9a882;
  background: #fff8f0;
  color: #c9a882;
  font-weight: 600
}

.rngbld-setting-icon {
  width: 44px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center
}

/* METAL */
.rngbld-metal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px
}

.rngbld-metal-btn {
  padding: 7px 13px;
  border: 1.5px solid #e8e0d5;
  border-radius: 20px;
  background: #fff;
  font-size: 12px;
  color: #666;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Jost', sans-serif
}

.rngbld-metal-btn:hover {
  border-color: #c9a882;
  color: #c9a882
}

.rngbld-metal-btn.rngbld-selected {
  border-color: #c9a882;
  background: #fff8f0;
  color: #c9a882;
  font-weight: 600
}

.rngbld-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #c9a882;
  color: #c9a882;
  font-size: 9px;
  cursor: pointer;
  margin-left: 5px;
  vertical-align: middle;
  font-style: normal;
  position: relative
}

.rngbld-tooltip-box {
  display: none;
  position: absolute;
  left: 22px;
  top: -4px;
  background: #2c2c2a;
  color: #fff;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  z-index: 99;
  font-weight: 400
}

.rngbld-info-icon:hover .rngbld-tooltip-box {
  display: block
}

/* TONE */
.rngbld-tone-row {
  display: flex;
  gap: 8px
}

.rngbld-tone-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border: 1.5px solid #e8e0d5;
  border-radius: 20px;
  background: #fff;
  font-size: 12px;
  color: #666;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Jost', sans-serif
}

.rngbld-tone-btn:hover {
  border-color: #c9a882
}

.rngbld-tone-btn.rngbld-selected {
  border-color: #c9a882;
  background: #fff8f0;
  color: #c9a882;
  font-weight: 600
}

.rngbld-tone-swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 0.5px solid #ddd;
  display: inline-block;
  flex-shrink: 0
}

/* SUMMARY */
.rngbld-summary-block {
  background: #fdf9f5;
  border: 1.5px solid #e8d5c0;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 4px
}

.rngbld-summary-price {
  font-size: 24px;
  font-weight: 700;
  color: #2c2c2a;
  letter-spacing: -0.5px
}

.rngbld-summary-text {
  font-size: 11px;
  color: #888;
  margin-top: 5px;
  line-height: 1.9
}

.rngbld-cta-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 145px
}

.rngbld-add-to-cart {
  background: #c9a882;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.3px;
  font-family: 'Jost', sans-serif
}

.rngbld-add-to-cart:hover {
  background: #b8936d
}

.rngbld-add-to-cart.rngbld-cart-added {
  background: #4e9a6a
}

.rngbld-save-design {
  background: #fff;
  color: #c9a882;
  border: 1.5px solid #c9a882;
  padding: 10px 18px;
  border-radius: 7px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Jost', sans-serif
}

.rngbld-save-design:hover {
  background: #fff8f0
}

.rngbld-save-design.rngbld-design-saved {
  color: #e05c7a;
  border-color: #e05c7a;
  background: #fff5f7
}

/* BOTTOM TRUST */
.rngbld-bottom-trust {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 24px 2rem;
  background: #fff;
  border-top: 0.5px solid #e8e0d5;
  flex-wrap: wrap;
  margin-top: 1rem
}

.rngbld-bt-item {
  display: flex;
  align-items: center;
  gap: 12px
}

.rngbld-bt-item svg {
  width: 34px;
  height: 34px;
  flex-shrink: 0
}

.rngbld-bt-item strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #2c2c2a
}

.rngbld-bt-item span {
  font-size: 11px;
  color: #888
}

/* CATEGORY SLIDER */
.rngbld-cat-section {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem
}

.rngbld-cat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 2px;
  color: #2c2c2a;
  text-align: center;
  margin-bottom: 1.5rem
}

.rngbld-cat-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer
}

.rngbld-cat-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.4s
}

.rngbld-cat-card:hover img {
  transform: scale(1.04)
}

.rngbld-cat-name {
  position: absolute;
  bottom: 44px;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4)
}

.rngbld-cat-explore-btn {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  color: #2c2c2a;
  border: none;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 11px;
  letter-spacing: 1px;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap
}

/* TESTIMONIALS */
.rngbld-testi-section {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem
}

.rngbld-testi-head {
  text-align: center;
  margin-bottom: 2rem
}

.rngbld-testi-eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  color: #c9a882;
  text-transform: uppercase;
  margin-bottom: 8px
}

.rngbld-testi-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: #2c2c2a
}

.rngbld-testi-card {
  background: #fff;
  border: 0.5px solid #e8e0d5;
  border-radius: 10px;
  padding: 40px 20px;
  /* Keep custom-ring testimonial cards same height */
  height: 250px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.rngbld-testi-review-text {
  font-size: 17px;
  font-weight: 700;
  color: #555;
  line-height: 1.8;
  font-style: italic
  ;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rngbld-testi-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px
  ;
  margin-top: auto;
}

.rngbld-testi-author {
  font-size: 14px;
  font-weight: 600;
  color: #2c2c2a
}

.rngbld-testi-google-img {
  height: 50px
}

/* FAQ */
.rngbld-faq-section {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 2rem 3rem
}

.rngbld-faq-head {
  text-align: center;
  margin-bottom: 2rem
}

.rngbld-faq-eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  color: #c9a882;
  text-transform: uppercase;
  margin-bottom: 8px
}

.rngbld-faq-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 31px;
  font-weight: 700;
  color: #2c2c2a
}

.rngbld-faq-subtitle {
  font-size: 15px;
  color: #888;
  margin-top: 8px
}

.rngbld-faq-wrap {
  display: flex;
  flex-direction: column
}

.rngbld-faq-wrap details {
  border-bottom: 0.5px solid #e8e0d5
}

.rngbld-faq-wrap summary {
  padding: 14px 0;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #2c2c2a
}

.rngbld-faq-wrap summary::after {
  content: '+';
  font-size: 18px;
  color: #c9a882
}

.rngbld-faq-wrap details[open] summary::after {
  content: '−'
}

.rngbld-faq-wrap p {
  font-size: 12px;
  color: #666;
  padding: 0 0 14px;
  line-height: 1.7
}

/* TOAST */
.rngbld-toast-msg {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: #2c2c2a;
  color: #fff;
  padding: 11px 24px;
  border-radius: 24px;
  font-size: 13px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  font-family: 'Jost', sans-serif;
  white-space: nowrap
}

.rngbld-toast-msg.rngbld-toast-visible {
  opacity: 1
}

/* RESPONSIVE */
@media(max-width:768px) {
  .rngbld-product-wrap {
    grid-template-columns: 1fr;
    padding: 1rem
  }

  .rngbld-gallery {
    flex-direction: column
  }

  .rngbld-thumbs {
    flex-direction: row
  }

  .rngbld-thumb {
    width: 56px;
    height: 56px
  }

  .rngbld-shape-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .rngbld-bottom-trust {
    gap: 1.5rem
  }

  .rngbld-summary-block {
    flex-direction: column;
    align-items: flex-start
  }

  .rngbld-cta-col {
    width: 100%
  }

  .rngbld-add-to-cart,
  .rngbld-save-design {
    width: 100%;
    text-align: center
  }
}

/* ==========================
   FAQ Mobile Responsive
========================== */

@media (max-width:768px) {

  .about-section {
    padding: 40px 15px !important;
  }

  .section-head {
    text-align: center;
    margin-bottom: 25px;
  }

  .section-eyebrow {
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }

  .section-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .section-subtitle {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 10px;
    padding: 0 5px;
  }

  .faq-wrap {
    margin-top: 25px;
  }

  .faq-wrap details {
    margin-bottom: 12px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
  }

  .faq-wrap summary {
    padding: 16px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
  }

  .faq-wrap summary::-webkit-details-marker {
    display: none;
  }

  .faq-wrap summary::after {
    content: "+";
    float: right;
    font-size: 20px;
    transition: .3s;
  }

  .faq-wrap details[open] summary::after {
    content: "−";
  }

  .faq-wrap details p {
    padding: 0 16px 16px;
    font-size: 14px;
    line-height: 1.7;
    color: #555;
  }

}

:root {
  --gold: #c8a96e;
  --dark: #1a1a1a;
  --muted: #6e6e6e;
}

body.contact-page {
  background: #faf8f5;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #111;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('https://elaara.in/cdn/shop/files/banner_4faee6c3-f6f8-45c0-87bc-8333cb45341a.png?v=1773743393&width=2000');
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  filter: saturate(1.05);
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0.25) 100%);
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  padding: 68px 71px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: center;
  min-height: 360px;
  color: #fff;
}

.contact-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 14px;
}

.contact-hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.contact-hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 22px;
  max-width: 640px;
}

.contact-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid rgba(200, 169, 110, 0.65);
  background: rgba(200, 169, 110, 0.12);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.contact-pill:hover {
  transform: translateY(-2px);
  background: rgba(200, 169, 110, 0.22);
  border-color: rgba(200, 169, 110, 0.95);
}

.contact-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 18px;
  display: grid;
  gap: 12px;
}

.contact-card .row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 13px;
  margin-bottom: 2px;
}

.contact-card span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.35;
}

.contact-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 24px 90px;
}

.contact-header {
  text-align: center;
  margin-bottom: 34px;
}

.contact-header .eyebrow {
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 10px;
}

.contact-header h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 36px;
  color: var(--dark);
  margin-bottom: 12px;
}

.contact-header p {
  color: var(--muted);
  line-height: 1.9;
  max-width: 820px;
  margin: 0 auto;
  font-size: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 20px;
  align-items: start;
}

.info-panel {
  background: #fff;
  border: 1px solid rgba(200, 169, 126, 0.25);
  border-radius: 18px;
  padding: 20px;
  display: grid;
  gap: 14px;
}

.info-panel h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 2px;
}

.info-panel .meta {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.info-bullets {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.info-bullet {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(200, 169, 126, 0.18);
  background: linear-gradient(180deg, rgba(200, 169, 126, 0.08) 0%, rgba(255, 255, 255, 1) 55%);
}

.info-bullet i {
  color: var(--gold);
  font-size: 18px;
  margin-top: 4px;
}

.info-bullet strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  margin-bottom: 3px;
  color: var(--dark);
}

.info-bullet span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.form-panel {
  background: #fff;
  border: 1px solid rgba(200, 169, 126, 0.25);
  border-radius: 18px;
  padding: 22px;
}

form.contact-form {
  display: grid;
  gap: 14px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: block;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 800;
  color: #777;
  margin-bottom: 8px;
}

/* input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(200, 169, 126, 0.35);
  background: #fff;
  padding: 12px 12px;
  font-size: 14px;
  color: #333;
  outline: none;
  transition: border-color .2s ease;
  font-family: 'Inter', sans-serif;
} */

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(200, 169, 126, 0.95);
}

.form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 6px;
}

.btn-submit {
  background: #111;
  color: #fff;
  border: 1px solid #111;
  border-radius: 999px;
  padding: 12px 24px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 11px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  background: #000;
}

.form-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  max-width: 340px;
}

.form-msg {
  display: none;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(200, 169, 126, 0.35);
  background: rgba(200, 169, 126, 0.10);
  color: #3a2c1a;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.form-msg.show {
  display: block;
}

@media (max-width: 980px) {
  .contact-hero-inner {
    grid-template-columns: 1fr;
    padding: 54px 24px;
    min-height: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .contact-hero h1 {
    font-size: 40px;
  }
}

/* ── Configurator toast ── */
.cfg-toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: #1a1a1a;
  color: #fff;
  padding: 14px 20px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
  max-width: 320px;
}

.cfg-toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cfg-toast i {
  color: #c8a96e;
  font-size: 16px;
}

.cfg-toast a {
  color: #c8a96e;
  text-decoration: underline;
  cursor: pointer;
  margin-left: 6px;
}

/* ── Shape/Size active states ── */
.shape-item.selected,
.shape-item:hover {
  border-color: #c8a96e !important;
  background: rgba(200, 169, 126, 0.10) !important;
}

.size-btn.selected {
  background: #1a1a1a !important;
  color: #fff !important;
  border-color: #1a1a1a !important;
}

.sidebar-item.active {
  border-color: #c8a96e;
  background: rgba(200, 169, 126, 0.10);
}

/* Selection card live */
.selection-card .sel-values {
  line-height: 1.8;
  font-size: 13px;
  color: #6f6f6f;
}

.selection-card .price {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #1a1a1a;
  margin-bottom: 4px;
}

/* ── Page shell ── */
.cart-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.cart-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.cart-page .cart-count-line {
  font-size: 14px;
  color: #888;
  margin-bottom: 36px;
}

/* ── Two-column layout ── */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

@media (max-width: 860px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
}

/* ── Item list ── */
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 20px;
  align-items: center;
  background: #fff;
  border: 1px solid #ece8e0;
  border-radius: 16px;
  padding: 20px;
  transition: box-shadow .2s;
}

.cart-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
}

.cart-item img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 12px;
  background: #f5f2ee;
  cursor: pointer;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cart-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: #1a1a1a;
  cursor: pointer;
  text-decoration: none;
}

.cart-item-name:hover {
  color: #c8a96e;
}

.cart-item-details {
  font-size: 12.5px;
  color: #999;
  line-height: 1.7;
}

.cart-item-price {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #1a1a1a;
  font-weight: 600;
  margin-top: 4px;
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #d4c5b0;
  background: #fff;
  font-size: 15px;
  cursor: pointer;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
}

.qty-btn:hover {
  background: #f5f0e8;
  border-color: #c8a96e;
}

.qty-num {
  font-size: 14px;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.remove-btn {
  font-size: 12px;
  color: #c8a96e;
  border: none;
  background: none;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.remove-btn:hover {
  color: #a07840;
}

/* ── Empty state ── */
.cart-empty {
  text-align: center;
  padding: 80px 0;
  display: none;
}

.cart-empty i {
  font-size: 52px;
  color: #ddd;
  margin-bottom: 20px;
  display: block;
}

.cart-empty h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #555;
  margin-bottom: 10px;
}

.cart-empty p {
  color: #999;
  font-size: 14px;
  margin-bottom: 28px;
}

.cart-empty a {
  display: inline-block;
  background: #1a1a1a;
  color: #fff;
  padding: 13px 30px;
  border-radius: 50px;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: .05em;
}

.cart-empty a:hover {
  background: #c8a96e;
}

/* ── Order Summary ── */
.order-summary {
  background: #fff;
  border: 1px solid #ece8e0;
  border-radius: 16px;
  padding: 28px;
  position: sticky;
  top: 100px;
}

.summary-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}

.summary-row.total-row {
  border-top: 1px solid #ece8e0;
  padding-top: 16px;
  margin-top: 16px;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
}

.summary-row.total-row span:last-child {
  font-family: 'Playfair Display', serif;
}

/* Promo */
.promo-row {
  display: flex;
  gap: 8px;
  margin: 20px 0;
}

.promo-row input {
  flex: 1;
  border: 1px solid #d4c5b0;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  outline: none;
  font-family: 'Inter', sans-serif;
}

.promo-row input:focus {
  border-color: #c8a96e;
}

.promo-row button {
  padding: 10px 16px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
}

.promo-row button:hover {
  background: #c8a96e;
}

/* Checkout button */
.btn-checkout {
  width: 100%;
  padding: 16px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  cursor: pointer;
  margin-top: 8px;
  transition: background .2s, transform .15s;
}

.btn-checkout:hover {
  background: #c8a96e;
  transform: translateY(-1px);
}

.btn-checkout:active {
  transform: translateY(0);
}

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11.5px;
  color: #aaa;
  margin-top: 14px;
}

.secure-note i {
  color: #c8a96e;
}

/* Benefits strip */
.cart-benefits {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid #ece8e0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  color: #777;
  flex: 1 1 140px;
}

.benefit-item i {
  color: #c8a96e;
  font-size: 16px;
}

/* Continue shopping */
.continue-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #888;
  text-decoration: none;
  margin-bottom: 24px;
  transition: color .2s;
}

.continue-link:hover {
  color: #c8a96e;
}

/* Toast */
.cart-toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #1a1a1a;
  color: #fff;
  padding: 13px 20px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
  z-index: 9999;
}

.cart-toast.show {
  opacity: 1;
  transform: translateY(0);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f5f2ec;
}

/* ── Footer Wrapper ── */
.footer {
  background: #f5f2ec;
  border-top: 0.5px solid #ccc;
  padding: 15px 71px;
}

/* ── Top Grid ── */
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}

/* ── Brand Column ── */
.brand-name {
  font-family: 'Georgia', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 6px;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.brand-tagline {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-icons a {
  width: 30px;
  height: 30px;
  border: 1px solid #999;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  text-decoration: none;
  font-size: 13px;
  transition: border-color 0.2s, color 0.2s;
}

.social-icons a:hover {
  border-color: #1a1a1a;
  color: #1a1a1a;
}

/* SVG icons inside social links */
.social-icons a svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ── Link Columns ── */
.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #1a1a1a;
}

/* ── Newsletter Column ── */
.newsletter-col h4 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.newsletter-col p {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  border: 0.5px solid #aaa;
  background: #fff;
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  padding: 10px 12px;
  font-size: 12px;
  font-family: Arial, sans-serif;
  color: #888;
  background: transparent;
}

.newsletter-form input::placeholder {
  color: #aaa;
}

.newsletter-form button {
  background: #1a1a1a;
  border: none;
  padding: 0 14px;
  cursor: pointer;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.newsletter-form button:hover {
  background: #333;
}

/* ── Copyright Bar ── */
.footer-bottom {
  border-top: 0.5px solid #ccc;
  padding: 16px 0;
  text-align: center;
  font-size: 11px;
  color: #888;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer {
    padding: 36px 24px 0;
  }
}

@media (max-width: 540px) {
  .footer-main {
    grid-template-columns: 1fr;
  }
}

/* Footer Brand */
.footer-col {
  text-align: left;
}

.logoo-img {
  width: 170px;
  height: auto;
  margin-bottom: -25px;
  display: inline-block;
}

.brand-tagline {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin: 0 0 25px;
  font-family: 'Poppins', sans-serif;
}

/* Social Icons */
.social-icons {
  display: flex;
  /* justify-content: center; */
  align-items: center;
  gap: 18px;
}

.social-icons a {
  width: 34px;
  height: 34px;
  border: 1.5px solid #7a7a7a;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #555;
  text-decoration: none;
  font-size: 15px;
  transition: all .3s ease;
}

.social-icons a:hover {
  background: #000;
  color: #fff;
  border-color: #000;
  transform: translateY(-3px);
}

#elaaraHeroSliderUnique {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.elaaraHeroDesktopImageUnique {
  width: 100%;
  display: block;
}

.elaaraHeroMobileImageUnique {
  display: none;
  width: 100%;
}

@media(max-width:768px) {

  .elaaraHeroDesktopImageUnique {
    display: none;
  }

  .elaaraHeroMobileImageUnique {
    display: block;
  }

}

body {
  background: #f5f0e8;
  font-family: 'Inter', sans-serif;
}

.wish-page {
  max-width: 1140px;
  margin: 0 auto;
  padding: 48px 24px 100px;
}

.wish-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.wish-topbar h1 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0;
}

.wish-count-pill {
  background: #1a1a1a;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
}

.wish-clear-btn {
  background: none;
  border: 1px solid #d4c5b0;
  color: #888;
  font-size: 12px;
  padding: 7px 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}

.wish-clear-btn:hover {
  border-color: #e06060;
  color: #e06060;
}

.continue-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #888;
  text-decoration: none;
  margin-bottom: 20px;
  transition: color .2s;
}

.continue-link:hover {
  color: #c8a96e;
}

/* Grid */
.wish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

/* Card */
.wish-card {
  background: #fff;
  border: 1px solid #ece8e0;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .2s;
}

.wish-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, .10);
  transform: translateY(-3px);
}

.wish-img-wrap {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  cursor: pointer;
}

.wish-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.wish-card:hover .wish-img-wrap img {
  transform: scale(1.05);
}

/* Badges on image */
.wish-img-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.wish-badge-tag {
  background: rgba(255, 255, 255, .92);
  font-size: 10px;
  font-weight: 700;
  color: #1a1a1a;
  padding: 3px 9px;
  border-radius: 50px;
  letter-spacing: .04em;
}

/* Remove button */
.wish-remove-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  border: none;
  font-size: 15px;
  cursor: pointer;
  color: #e06060;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .15s;
  z-index: 2;
}

.wish-remove-btn:hover {
  background: #fff;
  transform: scale(1.12);
}

/* Info */
.wish-card-info {
  padding: 16px 18px 8px;
  flex: 1;
}

.wish-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: #1a1a1a;
  cursor: pointer;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
}

.wish-card-name:hover {
  color: #c8a96e;
}

.wish-card-detail {
  font-size: 11.5px;
  color: #aaa;
  line-height: 1.8;
  margin-bottom: 4px;
}

.wish-card-price {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #1a1a1a;
  font-weight: 600;
  margin-top: 6px;
}

/* Buttons */
.wish-card-btns {
  display: flex;
  gap: 8px;
  padding: 10px 18px 18px;
}

.btn-add-cart {
  flex: 1;
  padding: 10px 8px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  letter-spacing: .04em;
}

.btn-add-cart:hover {
  background: #c8a96e;
}

.btn-view-prod {
  flex: 1;
  padding: 10px 8px;
  background: #fff;
  color: #1a1a1a;
  border: 1px solid #d4c5b0;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: border-color .2s, color .2s;
  letter-spacing: .04em;
}

.btn-view-prod:hover {
  border-color: #c8a96e;
  color: #c8a96e;
}

/* Empty */
.wish-empty {
  text-align: center;
  padding: 80px 0;
  display: none;
}

.wish-empty i {
  font-size: 54px;
  color: #ddd;
  margin-bottom: 20px;
  display: block;
}

.wish-empty h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #555;
  margin-bottom: 10px;
}

.wish-empty p {
  color: #999;
  font-size: 14px;
  margin-bottom: 28px;
}

.wish-empty a {
  display: inline-block;
  background: #1a1a1a;
  color: #fff;
  padding: 13px 32px;
  border-radius: 50px;
  font-size: 13px;
  text-decoration: none;
  font-weight: 600;
}

.wish-empty a:hover {
  background: #c8a96e;
}

/* Toast */
.wish-toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #1a1a1a;
  color: #fff;
  padding: 13px 20px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
  z-index: 9999;
  max-width: 300px;
}

.wish-toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.wish-toast a {
  color: #c8a96e;
  text-decoration: underline;
  margin-left: 6px;
}
 /* ================= BRAND COLORS (matches reference image) ================= */
        :root {
            --wine: #3d1830;
            --wine-dark: #2a0f21;
            --tan: #f0e6d2;
            --tan-text: #6b5a3a;
            --star: #d6a94a;
        }

        .shop-layout {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 2rem;
            padding: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .shop-sidebar {
            position: sticky;
            top: 80px;
            height: fit-content;
        }

        /* ---- Sidebar filter groups ---- */
        .filter-group {
            border-bottom: 1px solid #eee;
            padding: 1.2rem 0;
        }

        .filter-group-title {
            font-size: 14px;
            font-weight: 700;
            letter-spacing: .02em;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            margin-bottom: .9rem;
            color: #1a1a1a;
        }

        .filter-group-title i {
            font-size: 12px;
            transition: transform .2s;
            color: #666;
        }

        .filter-group.collapsed .filter-group-title i {
            transform: rotate(180deg);
        }

        .filter-group.collapsed .filter-group-body {
            display: none;
        }

        .filter-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            font-size: 14px;
            color: #444;
            margin-bottom: 10px;
            cursor: pointer;
        }

        .filter-item .flabel {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .filter-item input[type="checkbox"],
        .filter-item input[type="radio"] {
            accent-color: var(--wine);
            width: 15px;
            height: 15px;
            cursor: pointer;
        }

        .filter-count {
            color: #999;
            font-size: 13px;
        }

        .filter-group-body.scrollable {
            max-height: 190px;
            overflow-y: auto;
            padding-right: 6px;
        }

        .filter-group-body.scrollable::-webkit-scrollbar {
            width: 4px;
        }

        .filter-group-body.scrollable::-webkit-scrollbar-thumb {
            background: #ccc;
            border-radius: 4px;
        }

        .search-input-wrap {
            position: relative;
        }

        .search-input-wrap input {
            width: 100%;
            padding: 9px 12px 9px 34px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 13px;
        }

        .search-input-wrap i {
            position: absolute;
            left: 8px;
            top: 36%;
            transform: translateY(-50%);
            color: #999;
            font-size: 13px;
        }

        .price-range {
            width: 100%;
            accent-color: var(--wine);
        }

        .price-boxes {
            /* display: flex; */
            align-items: center;
            gap: 10px;
            margin-top: 10px;
        }

        .price-boxes .pbox {
            display: flex;
            align-items: center;
            border: 1px solid #ddd;
            border-radius: 6px;
            padding: 6px ;
            font-size: 13px;
            flex: 1;
        }

        .price-boxes .pbox span {
            color: #888;
            margin-right: 4px;
        }

        .price-boxes .pbox input {
            border: none;
            outline: none;
            width: 100%;
            font-size: 13px;
                background: #f5f0e8;
        }

        .price-boxes .sep {
            color: #999;
        }

        .apply-filters-btn {
            width: 100%;
            padding: 11px;
            background: var(--wine);
            color: #fff;
            border: none;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: .04em;
            cursor: pointer;
            margin-top: 1rem;
            transition: background .2s;
        }

        .apply-filters-btn:hover {
            background: var(--wine-dark);
        }

        .clear-filters-link {
            display: block;
            text-align: center;
            margin-top: 10px;
            font-size: 13px;
            color: #888;
            text-decoration: underline;
        }

        /* ---- Category banner (matches image 1) ---- */
        .category-banner {
            position: relative;
            width: 100%;
            height: 340px;
            overflow: hidden;
            background: #ece5dd;
        }

        .category-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .category-banner-text {
            position: absolute;
            right: 8%;
            top: 50%;
            transform: translateY(-50%);
            text-align: right;
        }

        .category-banner-text h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.2rem;
            letter-spacing: .06em;
            color: var(--wine);
            margin-bottom: .6rem;
        }

        .category-banner-text p {
            font-size: 1.15rem;
            color: #555;
            font-style: italic;
        }

        .breadcrumb {
            padding: .9rem 2rem;
            font-size: 13px;
            color: #888;
        }

        .breadcrumb a {
            color: #888;
            text-decoration: none;
        }

        .breadcrumb a:hover {
            color: var(--wine);
        }

        /* ---- Topbar ---- */
        .shop-topbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .sort-select {
            padding: 8px 18px;
            border: 1px solid #ddd;
            border-radius: 20px;
            font-size: 13px;
            cursor: pointer;
            background: #fff;
            width: auto !important;
        }

        /* ---- Product grid / cards (matches image 2 & 3) ---- */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 1.5rem;
        }

        .prod-card {
            border-radius: 12px;
            overflow: hidden;
            background: #fff;
            position: relative;
            transition: transform .2s;
            border: 1px solid #f0f0f0;
        }

        .prod-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
        }

        .prod-card-img {
            position: relative;
            aspect-ratio: 1;
            overflow: hidden;
            background: #f9f5f0;
        }

        .prod-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .4s;
        }

        .prod-card:hover .prod-card-img img {
            transform: scale(1.05);
        }

        .prod-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 14px;
            letter-spacing: .04em;
        }

        .prod-badge.sale {
            background: var(--wine);
            color: #fff;
        }

        .prod-badge.signature {
            background: var(--tan);
            color: var(--tan-text);
        }

        .prod-wish-btn {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: #fff;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
            transition: all .2s;
            color: #333;
        }

        .prod-wish-btn:hover {
            background: #f9f0e8;
            color: var(--wine);
        }

        .prod-wish-btn.active {
            color: var(--wine);
        }

        .prod-card-info {
            padding: 1rem 1rem .3rem;
        }

        .prod-card-top-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 6px;
        }

        .prod-card-name {
            font-size: 14px;
            font-weight: 500;
            color: #1a1a1a;
            text-decoration: none;
            display: block;
        }

        .prod-rating {
            font-size: 12px;
            color: #666;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 3px;
        }

        .prod-rating i {
            color: var(--star);
            font-size: 11px;
        }

        .prod-card-price {
            font-size: 15px;
            font-weight: 700;
            color: #1a1a1a;
            margin-top: 6px;
        }

        .prod-card-price del {
            font-size: 12px;
            color: #999;
            font-weight: 400;
            margin-right: 6px;
        }

        .prod-add-btn {
            width: calc(100% - 2rem);
            margin: .8rem 1rem 1rem;
            padding: 10px;
            background: var(--wine);
            color: #fff;
            border: none;
            border-radius: 25px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: .06em;
            cursor: pointer;
            transition: background .2s;
        }

        .prod-add-btn:hover {
            background: var(--wine-dark);
        }

        @media(max-width:768px) {
            .shop-layout {
                grid-template-columns: 1fr;
                padding: 1rem;
            }

            .shop-sidebar {
                position: static;
            }

            .category-banner {
                height: 200px;
            }

            .category-banner-text h1 {
                font-size: 2rem;
            }

            .category-banner-text {
                right: 5%;
            }
        }
        .category-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.category-title-link {
    text-decoration: none;
    color: inherit;
}
.product-card {
    position: relative;
}

.product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}
    :root {
      --cream: #f5f0e8;
      --gold: #c8a96e;
      --dark: #1a1a1a;
      --text: #2c2c2c;
      --muted: #6f6f6f;
      --border: rgba(200, 169, 126, 0.22);
      --card: #ffffff;
      --danger: #c0392b;
      --ok: #2ecc71;
      --err-border: rgba(192, 57, 43, 0.55);
      --err-bg: rgba(192, 57, 43, 0.06);
      --err-text: #c0392b;
    }

    * { box-sizing: border-box; }

    body {
      background: var(--cream);
      color: var(--text);
      font-family: 'Inter', sans-serif;
    }

    .checkout-wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 24px 24px 80px;
    }

    .checkout-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 16px;
      margin: 18px 0 22px;
    }

    .checkout-title {
      font-family: 'Playfair Display', serif;
      font-size: 34px;
      font-weight: 400;
      margin: 0;
      color: var(--dark);
    }

    .checkout-sub {
      margin-top: 8px;
      font-size: 14px;
      color: var(--muted);
      line-height: 1.7;
      max-width: 680px;
    }

    .checkout-grid {
      display: grid;
      grid-template-columns: 1.45fr 0.95fr;
      gap: 22px;
      align-items: start;
    }

    .panel {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 18px;
    }

    .panel h2 {
      font-size: 12px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--muted);
      font-weight: 800;
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .badge-accent {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--gold);
      display: inline-block;
      flex-shrink: 0;
    }

    .trust-mini {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-top: 12px;
    }

    .trust-pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 12px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: rgba(200,169,126,0.06);
      font-size: 12px;
      color: var(--text);
      white-space: nowrap;
    }

    .trust-pill i { color: var(--gold); }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .field {
      display: flex;
      flex-direction: column;
      gap: 6px;
      position: relative;
    }

    label {
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      font-weight: 800;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
      width: 100%;
      border-radius: 12px;
      border: 1.5px solid rgba(200, 169, 126, 0.35);
      background: #fff;
      padding: 13px 26px;
      font-size: 14px;
      color: var(--text);
      outline: none;
      font-family: 'Inter', sans-serif;
      transition: border-color .2s ease, box-shadow .2s ease;
    }

    textarea { min-height: 108px; resize: vertical; }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: rgba(200, 169, 126, 0.95);
      box-shadow: 0 0 0 3px rgba(200, 169, 126, 0.12);
    }

    /* Validation States */
    input.field-error,
    textarea.field-error,
    select.field-error {
      border-color: var(--err-border) !important;
      background: var(--err-bg);
      box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.08);
    }

    input.field-valid,
    textarea.field-valid,
    select.field-valid {
      border-color: rgba(46, 204, 113, 0.7) !important;
      box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.08);
    }

    .field-err-msg {
      font-size: 11px;
      color: var(--err-text);
      font-weight: 700;
      letter-spacing: 0.02em;
      display: none;
      margin-top: 2px;
    }

    .field-err-msg.show {
      display: block;
    }

    .field-icon {
      position: absolute;
      right: 12px;
      bottom: 12px;
      font-size: 14px;
      pointer-events: none;
    }

    .field-icon.ok { color: #2ecc71; }
    .field-icon.err { color: var(--err-text); }

    .full { grid-column: 1 / -1; }

    .switch-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 12px;
      border-radius: 14px;
      border: 1px solid var(--border);
      background: rgba(200,169,126,0.06);
      margin-bottom: 14px;
    }

    .switch-row strong {
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .02em;
    }

    .switch {
      position: relative;
      width: 48px;
      height: 26px;
      border-radius: 999px;
      border: 1px solid rgba(200, 169, 126, 0.5);
      background: rgba(200,169,126,0.18);
      cursor: pointer;
      transition: background .2s ease;
      flex-shrink: 0;
    }

    .switch::after {
      content: '';
      position: absolute;
      top: 3px;
      left: 3px;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid rgba(200,169,126,0.35);
      transition: transform .2s ease;
    }

    .switch.on {
      background: rgba(200,169,126,0.45);
    }

    .switch.on::after {
      transform: translateX(22px);
    }

    .payment-methods {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .pm-card {
      border: 1.5px solid rgba(200,169,126,0.35);
      border-radius: 14px;
      background: #fff;
      padding: 12px 12px;
      cursor: pointer;
      transition: border-color .2s ease, background .2s ease;
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .pm-card:hover {
      border-color: rgba(200,169,126,0.85);
    }

    .pm-icon {
      width: 36px;
      height: 36px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(200,169,126,0.10);
      color: var(--gold);
      flex-shrink: 0;
    }

    .pm-card strong {
      font-size: 13px;
      font-weight: 900;
    }

    .pm-card span {
      font-size: 12px;
      color: var(--muted);
      display: block;
      margin-top: 2px;
    }

    .pm-card.active {
      border-color: rgba(200,169,126,0.95);
      background: rgba(200,169,126,0.08);
      box-shadow: 0 10px 25px rgba(200,169,126,0.12);
    }

    .pm-card.pm-error {
      border-color: var(--err-border) !important;
      background: var(--err-bg);
    }

    .pm-radio {
      margin-left: auto;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      border: 1.5px solid rgba(200,169,126,0.65);
      position: relative;
      flex-shrink: 0;
    }

    .pm-card.active .pm-radio {
      border-color: rgba(200,169,126,0.95);
    }

    .pm-card.active .pm-radio::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      transform: translate(-50%,-50%);
      background: rgba(200,169,126,0.95);
    }

    .pm-err-msg {
      font-size: 11px;
      color: var(--err-text);
      font-weight: 700;
      margin-top: 8px;
      display: none;
    }

    .pm-err-msg.show { display: block; }

    .checkout-actions {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      margin-top: 18px;
      flex-wrap: wrap;
    }

    .btn-black {
      background: var(--dark);
      color: #fff;
      border: 1px solid var(--dark);
      border-radius: 999px;
      padding: 14px 22px;
      cursor: pointer;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
      font-size: 11px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: transform .2s ease, background .2s ease;
      font-family: 'Inter', sans-serif;
    }

    .btn-black:hover { transform: translateY(-2px); background: #222; }

    .btn-ghost {
      background: transparent;
      border: 1px solid rgba(200,169,126,0.5);
      color: var(--text);
      border-radius: 999px;
      padding: 14px 18px;
      cursor: pointer;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
      font-size: 11px;
      font-family: 'Inter', sans-serif;
      transition: border-color .2s, background .2s;
    }

    .btn-ghost:hover {
      border-color: rgba(200,169,126,0.9);
      background: rgba(200,169,126,0.07);
    }

    .msg {
      margin-top: 14px;
      padding: 12px 14px;
      border-radius: 14px;
      font-size: 13px;
      line-height: 1.6;
      display: none;
    }

    .msg.show { display: block; }
    .msg.ok {
      border: 1px solid rgba(46, 204, 113, 0.55);
      background: rgba(46, 204, 113, 0.10);
      color: #1a5c35;
    }
    .msg.err {
      border: 1px solid var(--err-border);
      background: var(--err-bg);
      color: var(--err-text);
    }

    /* Progress bar */
    .form-progress {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
      padding: 10px 12px;
      border-radius: 12px;
      border: 1px solid var(--border);
      background: rgba(200,169,126,0.04);
    }

    .progress-bar-wrap {
      flex: 1;
      height: 5px;
      background: rgba(200,169,126,0.15);
      border-radius: 999px;
      overflow: hidden;
    }

    .progress-bar-fill {
      height: 100%;
      background: var(--gold);
      border-radius: 999px;
      transition: width .4s ease;
      width: 0%;
    }

    .progress-label {
      font-size: 11px;
      font-weight: 800;
      color: var(--muted);
      white-space: nowrap;
    }

    .summary-row {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      padding: 10px 0;
      border-bottom: 1px dashed rgba(200,169,126,0.35);
    }

    .summary-row:last-child { border-bottom: none; }

    .summary-row strong {
      font-size: 13px;
      color: var(--muted);
      letter-spacing: .02em;
      font-weight: 800;
    }

    .summary-row span {
      font-size: 14px;
      color: var(--text);
      font-weight: 900;
      text-align: right;
    }

    .summary-price {
      font-family: 'Playfair Display', serif;
      font-size: 32px;
      color: var(--dark);
      font-weight: 400;
      margin: 12px 0 8px;
    }

    .coupon-row {
      display: flex;
      gap: 10px;
      align-items: center;
      margin-top: 12px;
    }

    .coupon-row input { flex: 1; }

    .apply-coupon {
      border-radius: 12px;
      border: 1px solid rgba(200,169,126,0.6);
      background: rgba(200,169,126,0.12);
      padding: 12px 14px;
      cursor: pointer;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
      font-size: 10px;
      white-space: nowrap;
      font-family: 'Inter', sans-serif;
      transition: background .2s;
    }

    .apply-coupon:hover { background: rgba(200,169,126,0.22); }

    .order-item {
      display: flex;
      gap: 12px;
      align-items: center;
      padding: 12px 0;
      border-bottom: 1px dashed rgba(200,169,126,0.35);
    }

    .order-item:last-child { border-bottom: none; }

    .order-item img {
      width: 64px;
      height: 64px;
      border-radius: 12px;
      object-fit: cover;
      background: rgba(200,169,126,0.10);
      border: 1px solid rgba(200,169,126,0.22);
      flex-shrink: 0;
    }

    .order-item strong {
      display: block;
      font-size: 13px;
      font-weight: 900;
      margin-bottom: 3px;
    }

    .order-item span {
      display: block;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.5;
      font-weight: 700;
    }

    .order-item .price {
      margin-left: auto;
      text-align: right;
      font-weight: 900;
      color: var(--text);
      font-size: 14px;
    }

    .section-divider {
      border: none;
      border-top: 1px dashed rgba(200,169,126,0.35);
      margin: 16px 0;
    }

    /* Char counter */
    .char-count {
      font-size: 10px;
      color: var(--muted);
      text-align: right;
      margin-top: 2px;
    }

    @media (max-width: 980px) {
      .checkout-grid { grid-template-columns: 1fr; }
      .payment-methods { grid-template-columns: 1fr; }
      .form-grid { grid-template-columns: 1fr; }
      .checkout-actions { justify-content: flex-start; }
    }
    .remove-link{
      text-decoration: none;
      color: var(--danger);
    }