*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f0f5ff;
  --glass: rgba(255,255,255,0.28);
  --glass-strong: rgba(255,255,255,0.5);
  --glass-border: rgba(255,255,255,0.48);
  --glass-shadow: 0 8px 40px rgba(80,100,140,0.10);
  --glass-shadow-hover: 0 20px 64px rgba(80,100,140,0.18);
  --text: #2D3E4F;
  --text-muted: #6B7F94;
  --accent-sage: #C6DDB8;
  --accent-lavender: #D9C9F0;
  --accent-blush: #F0C9D9;
  --accent-gold: #E8C98A;
  --deep-rose: #C4547A;
  --radius: 22px;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'DM Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}




/* ── SCROLL PROGRESS ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; width: 0%; height: 3px;
  background: linear-gradient(90deg, var(--accent-sage), var(--accent-lavender), var(--accent-blush), var(--accent-gold));
  z-index: 2000; transition: width 0.1s linear;
}

/* ── PARALLAX CONTAINER ── */
.parallax-container {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}
.parallax-layer {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  will-change: transform;
}

/* ── BG COLOUR SECTIONS ── */
.bg-section {
  position: absolute; width: 100%; height: 100vh; top: 0; left: 0;
  opacity: 0; transition: opacity 1.6s cubic-bezier(0.4,0,0.2,1); pointer-events: none;
}
.bg-section.visible { opacity: 1; }
.bg-section-1 {
  background:
    radial-gradient(circle at 30% 40%, rgba(198,221,184,0.45) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(217,201,240,0.35) 0%, transparent 45%),
    radial-gradient(circle at 20% 80%, rgba(240,201,217,0.25) 0%, transparent 50%);
}
.bg-section-2 {
  background:
    radial-gradient(circle at 70% 30%, rgba(217,201,240,0.5) 0%, transparent 45%),
    radial-gradient(circle at 40% 80%, rgba(232,201,138,0.3) 0%, transparent 40%),
    radial-gradient(circle at 85% 60%, rgba(198,221,184,0.2) 0%, transparent 50%);
}
.bg-section-3 {
  background:
    radial-gradient(circle at 20% 50%, rgba(240,201,217,0.5) 0%, transparent 45%),
    radial-gradient(circle at 90% 40%, rgba(232,201,138,0.4) 0%, transparent 40%),
    radial-gradient(circle at 50% 85%, rgba(217,201,240,0.2) 0%, transparent 50%);
}
.bg-section-4 {
  background:
    radial-gradient(circle at 60% 20%, rgba(232,201,138,0.5) 0%, transparent 45%),
    radial-gradient(circle at 25% 75%, rgba(198,221,184,0.3) 0%, transparent 40%),
    radial-gradient(circle at 75% 85%, rgba(240,201,217,0.2) 0%, transparent 50%);
}

/* ── ORBS ── */
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: 0.55;
  animation: orbPulse 12s ease-in-out infinite alternate;
}
.orb-1 { width:700px; height:700px; background:var(--accent-sage);     top:-200px; left:-150px; animation-delay:0s; }
.orb-2 { width:500px; height:500px; background:var(--accent-lavender); top:200px;  right:-100px; animation-delay:-3s; }
.orb-3 { width:600px; height:600px; background:var(--accent-blush);    bottom:-100px; left:30%; animation-delay:-6s; }
.orb-4 { width:350px; height:350px; background:var(--accent-gold);     top:60%; right:10%; animation-delay:-9s; }
@keyframes orbPulse {
  0%   { transform:scale(1);   opacity:0.45; filter:blur(90px); }
  100% { transform:scale(1.1); opacity:0.65; filter:blur(100px); }
}

/* ── FLOATING FLOWERS ── */
.flower-wrap { position:absolute; pointer-events:none; }
.floating-flower {
  display:block; width:100%; height:auto; opacity:0.28;
  animation:flowerFloat 8s ease-in-out infinite;
  filter:drop-shadow(0 12px 30px rgba(0,0,0,0.08));
}
.flower-wrap-1 { top:70vh; left:4%;  width:220px; }
.flower-wrap-2 { top:85vh; right:6%; width:180px; }
.flower-wrap-3 { top:40vh; left:40%; width:240px; }
.flower-1 { animation-delay:0s; }
.flower-2 { animation-delay:-2s; }
.flower-3 { animation-delay:-4s; }
@keyframes flowerFloat {
  0%,100% { transform:translateY(0) rotate(0deg); }
  50%     { transform:translateY(-18px) rotate(2deg); }
}

/* ── PARTICLES ── */
.particle {
  position:absolute; border-radius:50%;
  background:rgba(255,255,255,0.28); backdrop-filter:blur(2px);
  border:1px solid rgba(255,255,255,0.40); pointer-events:none;
  animation:particleFloat 20s infinite ease-in-out;
}
.particle-1 { width:150px; height:150px; top:15%; left:10%; animation-delay:0s; }
.particle-2 { width:80px;  height:80px;  top:60%; right:15%; animation-delay:-5s; }
.particle-3 { width:200px; height:200px; bottom:10%; left:20%; animation-delay:-10s; }
.particle-4 { width:120px; height:120px; top:30%; right:25%; animation-delay:-15s; }
.particle-5 { width:60px;  height:60px;  bottom:40%; left:5%; animation-delay:-7s; }
.particle-6 { width:180px; height:180px; top:70%; right:5%; animation-delay:-12s; }
@keyframes particleFloat {
  0%,100% { transform:translateY(0) translateX(0) rotate(0deg); }
  33%     { transform:translateY(-30px) translateX(20px) rotate(120deg); }
  66%     { transform:translateY(20px) translateX(-30px) rotate(240deg); }
}

.top-bar {
  position: relative;
  z-index: 300;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.30);
  padding: 9px 0;
  font-size: 11.5px;
  font-weight: 400;
  color: var(--text-muted);
}

.top-bar-center {
  font-weight: 500;
  color: var(--text);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(240,245,255,0.62);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255,255,255,0.42);
  transition: background .3s;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.logo-icon img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.logo-text {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
}

.logo-text em {
  display: block;
  font-style: italic;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-menu .nav-link {
  color: var(--text-muted) !important;
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 8px 13px !important;
  border-radius: 50px;
  transition: all .2s;
}

.nav-menu .nav-link:hover,
.nav-menu .nav-link.active {
  color: var(--text) !important;
  background: rgba(255,255,255,0.48);
}

.icon-btn {
  width: 38px;
  height: 38px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  color: var(--text);
  transition: all .22s;
  position: relative;
}

.icon-btn:hover {
  background: rgba(255,255,255,0.58);
  transform: translateY(-2px);
}

.cart-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 16px;
  height: 16px;
  background: var(--deep-rose);
  color: white;
  border-radius: 50%;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 2px solid var(--bg);
}

.product-detail-page {
  position: relative;
  z-index: 1;
  padding: 32px 0 80px;
}



.glass {
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
}

.glass-strong {
  background: var(--glass-strong);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,0.58);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
}

.glass-sm {
  background: rgba(255,255,255,0.38);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.50);
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(80,100,140,0.08);
}

.nb-breadcrumb {
  padding: 14px 18px;
  margin-bottom: 28px;
}

.breadcrumb-item,
.breadcrumb-item a {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--text);
  font-weight: 500;
}

.detail-intro {
  max-width: 760px;
  margin: 0 auto 36px;
}

.section-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7C9A7C;
  margin-bottom: 12px;
}

.detail-heading {
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 14px;
}

.detail-heading em {
  font-style: italic;
  color: #8099B0;
}

.detail-sub {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto;
}

.product-detail-block {
  margin-bottom: 34px;
}

.gallery-shell {
  padding: 20px;
}

.main-image-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255,255,255,0.42);
  min-height: 560px;
}

.main-image-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.main-image-card:hover img {
  transform: scale(1.03);
}

.img-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: rgba(255,255,255,0.75);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.thumb-btn {
  border: 1px solid rgba(255,255,255,0.52);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.38);
  padding: 0;
  transition: all .22s ease;
}

.thumb-btn img {
  width: 100%;
  height: 105px;
  object-fit: cover;
  display: block;
}

.thumb-btn:hover,
.thumb-btn.active {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(80,100,140,0.12);
  border-color: rgba(196,84,122,0.32);
}

.product-info-card {
  padding: 30px 26px;
}

.mini-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  background: rgba(255,255,255,0.42);
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.52);
}

.mini-pill.success {
  background: rgba(198,221,184,0.42);
  color: #547654;
}

.product-name {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.stars {
  color: #D4A93C;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.rating-meta {
  color: var(--text-muted);
  font-size: 12px;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.current-price {
  font-size: 2rem;
  font-weight: 500;
  color: var(--deep-rose);
}

.old-price {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 1rem;
}

.product-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 22px;
}

.info-points {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.info-point {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 13px;
}

.info-point i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.48);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-rose);
  flex-shrink: 0;
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.meta-box {
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.34);
  border: 1px solid rgba(255,255,255,0.48);
}

.meta-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.meta-value {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.purchase-box {
  padding: 18px;
}

.purchase-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.purchase-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.stock-text {
  font-size: 12px;
  color: var(--text-muted);
}

.purchase-controls {
  display: flex;
  gap: 14px;
  align-items: stretch;
}

.qty-wrap {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.48);
  border: 1px solid rgba(255,255,255,0.60);
  border-radius: 999px;
  padding: 6px;
}

.qty-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  border-radius: 50%;
  font-size: 21px;
  color: var(--text);
  transition: all .2s ease;
}

.qty-btn:hover {
  background: rgba(255,255,255,0.64);
}

#quantityInput {
  width: 46px;
  text-align: center;
  border: none;
  background: transparent;
  outline: none;
  color: var(--text);
  font-weight: 500;
}

.add-cart-btn {
  flex: 1;
  border: none !important;
  border-radius: 999px !important;
  background: var(--text) !important;
  color: white !important;
  padding: 14px 22px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  transition: all .24s ease !important;
}

.add-cart-btn:hover {
  background: #3a4f65 !important;
  transform: translateY(-2px);
}

.detail-lower {
  margin-top: 26px;
  margin-bottom: 46px;
}

.content-card,
.side-note-card {
  padding: 28px;
}

.detail-tabs {
  gap: 10px;
}

.detail-tabs .nav-link {
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 12px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.48);
}

.detail-tabs .nav-link.active {
  background: var(--text);
  color: white;
}

.tab-content {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.85;
}

.side-note-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7C9A7C;
  margin-bottom: 12px;
}

.side-note-card h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 14px;
}

.side-note-card h3 em {
  font-style: italic;
  color: #8099B0;
}

.side-note-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.mini-service {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.40);
  color: var(--text);
  font-size: 13px;
}

.mini-service:first-of-type {
  border-top: none;
}

.mini-service i {
  color: var(--deep-rose);
}

.related-products {
  margin-top: 12px;
}

.section-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  margin: 0;
}

.section-title em {
  font-style: italic;
  color: #8099B0;
}


.product-reviews .review-card {
  padding: 36px 34px;
  border-radius: 28px;
  min-height: 100%;
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.38);
  box-shadow: 0 10px 32px rgba(80,100,140,0.08);
}

.product-reviews .review-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.product-reviews .review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(220, 225, 215, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: #3b4a5a;
  flex-shrink: 0;
}

.product-reviews .review-name {
  font-size: 1.6rem;
  font-family: var(--serif);
  font-weight: 500;
  color: var(--text);
}

.product-reviews .review-stars {
  color: #d7a441;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.product-reviews .review-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #5e6e80;
  margin-bottom: 24px;
}

.product-reviews .review-meta {
  font-size: 0.95rem;
  color: #7b8ca0;
  font-weight: 300;
}

.reviews-carousel-controls .carousel-nav-btn {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}

.reviews-carousel-controls .carousel-nav-btn:hover {
  background: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .product-reviews .review-card {
    padding: 28px 24px;
  }

  .product-reviews .review-quote {
    font-size: 1rem;
    line-height: 1.75;
  }
}

.see-all {
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}

.related-card {
  padding: 14px;
  transition: transform .24s ease, box-shadow .24s ease;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow-hover);
}

.related-img {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.44);
}

.related-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.related-body {
  padding: 14px 6px 6px;
}

.related-stars {
  font-size: 12px;
  color: #D4A93C;
  margin-bottom: 8px;
}

.related-stars span {
  color: var(--text-muted);
}

.related-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.related-sub {
  color: var(--text-muted);
  font-size: 12px;
  margin-bottom: 14px;
}

.related-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.related-price {
  color: var(--deep-rose);
  font-weight: 500;
}

.related-btn {
  border-radius: 999px !important;
  background: rgba(255,255,255,0.55) !important;
  border: 1px solid rgba(255,255,255,0.55) !important;
  color: var(--text) !important;
  padding: 8px 16px !important;
  font-size: 12px !important;
}

.related-btn:hover {
  background: rgba(255,255,255,0.82) !important;
}

footer {
  position: relative;
  z-index: 2;
  background: rgba(240,245,255,0.58);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255,255,255,0.42);
  padding: 50px 0 30px;
  margin-top: 60px;
}

.footer-brand p {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 14px;
  max-width: 320px;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.50);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-decoration: none;
}

.footer-col h5 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
  color: var(--text);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.42);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  color: var(--text-muted);
  font-size: 12px;
}

.payment-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.payment-icon {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.48);
  font-size: 11px;
  color: var(--text);
}

.footer-legal {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: var(--text-muted);
  font-size: 12px;
  text-decoration: none;
}

.toast-msg {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: rgba(45,62,79,0.96);
  color: white;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 0.82rem;
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: none;
}

.toast-msg.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 991.98px) {
  .main-image-card {
    min-height: 460px;
  }

  .main-image-card img {
    height: 460px;
  }

  .product-info-card {
    padding: 26px 22px;
  }
}

@media (max-width: 767.98px) {
  .product-detail-page {
    padding-top: 24px;
  }

  .detail-heading {
    line-height: 1.02;
  }

  .thumb-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .thumb-btn img {
    height: 92px;
  }

  .main-image-card {
    min-height: 340px;
  }

  .main-image-card img {
    height: 340px;
  }

  .detail-meta-grid {*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f0f5ff;
  --glass: rgba(255,255,255,0.28);
  --glass-strong: rgba(255,255,255,0.5);
  --glass-border: rgba(255,255,255,0.48);
  --glass-shadow: 0 8px 40px rgba(80,100,140,0.10);
  --glass-shadow-hover: 0 20px 64px rgba(80,100,140,0.18);
  --text: #2D3E4F;
  --text-muted: #6B7F94;
  --accent-sage: #C6DDB8;
  --accent-lavender: #D9C9F0;
  --accent-blush: #F0C9D9;
  --accent-gold: #E8C98A;
  --deep-rose: #C4547A;
  --radius: 22px;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'DM Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

.detail-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.detail-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}

.orb-1 {
  width: 280px;
  height: 280px;
  background: rgba(217, 201, 240, 0.24);
  top: 70px;
  left: -90px;
}

.orb-2 {
  width: 240px;
  height: 240px;
  background: rgba(240, 201, 217, 0.24);
  top: 36%;
  right: -70px;
}

.orb-3 {
  width: 260px;
  height: 260px;
  background: rgba(198, 221, 184, 0.20);
  bottom: 40px;
  left: 12%;
}

.detail-flower {
  position: absolute;
  opacity: 0.10;
}

.detail-flower img {
  width: 100%;
  display: block;
}

.detail-flower-1 {
  width: 180px;
  top: 150px;
  right: 4%;
  transform: rotate(16deg);
}

.detail-flower-2 {
  width: 200px;
  bottom: 70px;
  left: 2%;
  transform: rotate(-18deg);
}

.top-bar {
  position: relative;
  z-index: 300;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.30);
  padding: 9px 0;
  font-size: 11.5px;
  font-weight: 400;
  color: var(--text-muted);
}

.top-bar-center {
  font-weight: 500;
  color: var(--text);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(240,245,255,0.62);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255,255,255,0.42);
  transition: background .3s;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.logo-icon img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.logo-text {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
}

.logo-text em {
  display: block;
  font-style: italic;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-menu .nav-link {
  color: var(--text-muted) !important;
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 8px 13px !important;
  border-radius: 50px;
  transition: all .2s;
}

.nav-menu .nav-link:hover,
.nav-menu .nav-link.active {
  color: var(--text) !important;
  background: rgba(255,255,255,0.48);
}

.icon-btn {
  width: 38px;
  height: 38px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  color: var(--text);
  transition: all .22s;
  position: relative;
}

.icon-btn:hover {
  background: rgba(255,255,255,0.58);
  transform: translateY(-2px);
}

.cart-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 16px;
  height: 16px;
  background: var(--deep-rose);
  color: white;
  border-radius: 50%;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 2px solid var(--bg);
}

.product-detail-page {
  position: relative;
  z-index: 1;
  padding: 32px 0 80px;
}

.glass {
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
}

.glass-strong {
  background: var(--glass-strong);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,0.58);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
}

.glass-sm {
  background: rgba(255,255,255,0.38);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.50);
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(80,100,140,0.08);
}

.nb-breadcrumb {
  padding: 14px 18px;
  margin-bottom: 28px;
}

.breadcrumb-item,
.breadcrumb-item a {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--text);
  font-weight: 500;
}

.detail-intro {
  max-width: 760px;
  margin: 0 auto 36px;
}

.section-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7C9A7C;
  margin-bottom: 12px;
}

.detail-heading {
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 14px;
}

.detail-heading em {
  font-style: italic;
  color: #8099B0;
}

.detail-sub {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto;
}

.product-detail-block {
  margin-bottom: 34px;
}

.single-image-shell {
  padding: 20px;
}

.single-photo-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,0.42);
  min-height: 620px;
}

.main-image-card img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.main-image-card:hover img {
  transform: scale(1.03);
}

.img-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: rgba(255,255,255,0.75);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.product-info-card {
  padding: 30px 26px;
}

.mini-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  background: rgba(255,255,255,0.42);
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.52);
}

.mini-pill.success {
  background: rgba(198,221,184,0.42);
  color: #547654;
}

.product-name {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.stars {
  color: #D4A93C;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.rating-meta {
  color: var(--text-muted);
  font-size: 12px;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.current-price {
  font-size: 2rem;
  font-weight: 500;
  color: var(--deep-rose);
}

.old-price {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 1rem;
}

.product-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 22px;
}

.info-points {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.info-point {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 13px;
}

.info-point i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.48);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-rose);
  flex-shrink: 0;
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.meta-box {
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.34);
  border: 1px solid rgba(255,255,255,0.48);
}

.meta-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.meta-value {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.purchase-box {
  padding: 18px;
}

.purchase-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.purchase-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.stock-text {
  font-size: 12px;
  color: var(--text-muted);
}

.purchase-controls {
  display: flex;
  gap: 14px;
  align-items: stretch;
}

.qty-wrap {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.48);
  border: 1px solid rgba(255,255,255,0.60);
  border-radius: 999px;
  padding: 6px;
}

.qty-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  border-radius: 50%;
  font-size: 21px;
  color: var(--text);
  transition: all .2s ease;
}

.qty-btn:hover {
  background: rgba(255,255,255,0.64);
}

#quantityInput {
  width: 46px;
  text-align: center;
  border: none;
  background: transparent;
  outline: none;
  color: var(--text);
  font-weight: 500;
}

.add-cart-btn {
  flex: 1;
  border: none !important;
  border-radius: 999px !important;
  background: var(--text) !important;
  color: white !important;
  padding: 14px 22px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  transition: all .24s ease !important;
}

.add-cart-btn:hover {
  background: #3a4f65 !important;
  transform: translateY(-2px);
}

.related-products {
  margin-top: 12px;
}

.section-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  margin: 0;
}

.section-title em {
  font-style: italic;
  color: #8099B0;
}

.see-all {
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}

.related-card {
  padding: 14px;
  transition: transform .24s ease, box-shadow .24s ease;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow-hover);
}

.related-img {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.44);
}

.related-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.related-body {
  padding: 14px 6px 6px;
}

.related-stars {
  font-size: 12px;
  color: #D4A93C;
  margin-bottom: 8px;
}

.related-stars span {
  color: var(--text-muted);
}

.related-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.related-sub {
  color: var(--text-muted);
  font-size: 12px;
  margin-bottom: 14px;
}

.related-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.related-price {
  color: var(--deep-rose);
  font-weight: 500;
}

.related-btn {
  border-radius: 999px !important;
  background: rgba(255,255,255,0.55) !important;
  border: 1px solid rgba(255,255,255,0.55) !important;
  color: var(--text) !important;
  padding: 8px 16px !important;
  font-size: 12px !important;
}

.related-btn:hover {
  background: rgba(255,255,255,0.82) !important;
}

footer {
  position: relative;
  z-index: 2;
  background: rgba(240,245,255,0.58);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255,255,255,0.42);
  padding: 50px 0 30px;
  margin-top: 60px;
}

.footer-brand p {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 14px;
  max-width: 320px;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.50);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-decoration: none;
}

.footer-col h5 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
  color: var(--text);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.42);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  color: var(--text-muted);
  font-size: 12px;
}

.payment-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.payment-icon {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.48);
  font-size: 11px;
  color: var(--text);
}

.footer-legal {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: var(--text-muted);
  font-size: 12px;
  text-decoration: none;
}

.toast-msg {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: rgba(45,62,79,0.96);
  color: white;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 0.82rem;
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: none;
}

.toast-msg.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 991.98px) {
  .single-photo-card {
    min-height: 500px;
  }

  .main-image-card img {
    height: 500px;
  }

  .product-info-card {
    padding: 26px 22px;
  }
}

@media (max-width: 767.98px) {
  .product-detail-page {
    padding-top: 24px;
  }

  .detail-heading {
    line-height: 1.02;
  }

  .single-photo-card {
    min-height: 340px;
  }

  .main-image-card img {
    height: 340px;
  }

  .detail-meta-grid {
    grid-template-columns: 1fr;
  }

  .purchase-controls {
    flex-direction: column;
  }

  .footer-bottom {
    align-items: flex-start;
  }
}
    grid-template-columns: 1fr;
  }

  .purchase-controls {
    flex-direction: column;
  }

  .content-card,
  .side-note-card {
    padding: 22px;
  }

  .footer-bottom {
    align-items: flex-start;
  }
}
/* ── PRODUCT DETAILS DESIGN IMPROVEMENTS ── */
/* Info card — gradient top accent */
.product-info-card {
  overflow: hidden; position: relative;
}
.product-info-card::before {
  content: '';
  display: block; height: 4px;
  position: absolute; top: 0; left: 0; right: 0;
  background: linear-gradient(90deg, var(--accent-blush), var(--accent-lavender), var(--accent-sage));
  border-radius: var(--radius) var(--radius) 0 0;
}
/* Add to cart button glow */
.add-cart-btn {
  box-shadow: 0 8px 24px rgba(45,62,79,0.18) !important;
  transition: all .25s !important;
}
.add-cart-btn:hover {
  background: #3a4f65 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 34px rgba(45,62,79,0.24) !important;
}
/* Related card hover lift */
.related-card {
  transition: transform .4s cubic-bezier(.2,.8,.3,1), box-shadow .4s;
  overflow: hidden;
}
.related-card:hover { transform: translateY(-8px); box-shadow: var(--glass-shadow-hover); }
.related-img img { transition: transform .4s ease; }
.related-card:hover .related-img img { transform: scale(1.07); }
/* Meta boxes — subtle hover */
.meta-box { transition: background .2s; }
.meta-box:hover { background: rgba(255,255,255,0.52); }
/* Info points — gradient icons */
.info-point i {
  background: linear-gradient(135deg, rgba(198,221,184,0.5), rgba(217,201,240,0.4)) !important;
}