/* ══════════════════════════════════════
   NOORLY — style.css
   ══════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --surface-2: #1e1e1e;
  --text: #f0ede8;
  --text-muted: #7a7570;
  --accent: #c9a84c;
  --accent-dim: rgba(201,168,76,0.12);
  --border: rgba(255,255,255,0.08);
  --header-bg: rgba(10,10,10,0.85);
  --radius: 2px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}
[data-theme="light"] {
  --bg: #f7f5f2;
  --surface: #ffffff;
  --surface-2: #eeebe6;
  --text: #0f0d0b;
  --text-muted: #8a837a;
  --accent: #9a7328;
  --accent-dim: rgba(154,115,40,0.1);
  --border: rgba(0,0,0,0.09);
  --header-bg: rgba(247,245,242,0.88);
}

/* ── Reset ── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-font-smoothing:antialiased}
body{font-family:var(--font-sans);background:var(--bg);color:var(--text);line-height:1.65;overflow-x:hidden;transition:background var(--transition),color var(--transition)}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
ul{list-style:none}
button{font-family:inherit;cursor:pointer;border:none;background:none}

/* ── Typography helpers ── */
.eyebrow{font-family:var(--font-sans);font-size:0.7rem;font-weight:500;letter-spacing:0.25em;text-transform:uppercase;color:var(--accent);margin-bottom:1rem}
h1,h2,h3{font-family:var(--font-serif);font-weight:300;line-height:1.1;letter-spacing:-0.01em}
em{font-style:italic;color:var(--accent)}

/* ── Reveal animation ── */
.reveal{opacity:0;transform:translateY(32px);transition:opacity 0.8s ease,transform 0.8s ease}
.reveal.visible{opacity:1;transform:none}
.reveal-delay{transition-delay:0.2s}

/* ══════════════ HEADER ══════════════ */
#site-header{position:fixed;top:0;left:0;width:100%;z-index:900;transition:background var(--transition),border-color var(--transition),backdrop-filter var(--transition);border-bottom:1px solid transparent}
#site-header.scrolled{background:var(--header-bg);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);border-color:var(--border)}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:1.6rem 5%;max-width:1400px;margin:0 auto}
.logo{font-family:var(--font-serif);font-size:1.5rem;font-weight:400;letter-spacing:0.18em;color:var(--text);transition:color var(--transition)}
.logo:hover{color:var(--accent)}
.nav-links{display:flex;gap:2.5rem}
.nav-link{font-size:0.75rem;font-weight:500;letter-spacing:0.12em;text-transform:uppercase;color:var(--text-muted);transition:color var(--transition);position:relative;padding-bottom:3px}
.nav-link::after{content:'';position:absolute;bottom:0;left:0;width:0;height:1px;background:var(--accent);transition:width var(--transition)}
.nav-link:hover{color:var(--text)}
.nav-link:hover::after{width:100%}
.header-actions{display:flex;align-items:center;gap:1rem}
#theme-toggle{width:38px;height:38px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--text-muted);transition:color var(--transition),background var(--transition)}
#theme-toggle:hover{color:var(--text);background:var(--surface-2)}
[data-theme="dark"] .icon-sun{display:block}
[data-theme="dark"] .icon-moon{display:none}
[data-theme="light"] .icon-sun{display:none}
[data-theme="light"] .icon-moon{display:block}
.hamburger{display:none;flex-direction:column;gap:5px;width:28px;padding:4px 0}
.hamburger span{display:block;height:1px;background:var(--text);transition:transform 0.3s,opacity 0.3s}
.hamburger.open span:nth-child(1){transform:translateY(6px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}
.mobile-nav{background:var(--surface);border-top:1px solid var(--border);padding:1.5rem 5%;display:none;flex-direction:column;gap:1.2rem}
.mobile-nav.open{display:flex}
.mobile-nav a{font-size:0.8rem;letter-spacing:0.15em;text-transform:uppercase;color:var(--text-muted)}

/* ══════════════ HERO ══════════════ */
.hero{position:relative;min-height:100vh;display:flex;align-items:center;justify-content:center;text-align:center;padding:8rem 5% 5rem;overflow:hidden}
.hero-bg{position:absolute;inset:0;z-index:0}
.hero-orb{position:absolute;border-radius:50%;filter:blur(100px);opacity:0.18}
.orb-1{width:600px;height:600px;background:radial-gradient(circle,#c9a84c,transparent 70%);top:-15%;left:-10%}
.orb-2{width:500px;height:500px;background:radial-gradient(circle,#4a3a8c,transparent 70%);bottom:-10%;right:-5%}
.hero-grain{position:absolute;inset:0;background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");opacity:0.35}
.hero-content{position:relative;z-index:1;max-width:680px}
.hero-title{font-size:clamp(4rem,10vw,8rem);font-weight:300;line-height:1;margin-bottom:1.5rem;display:flex;flex-direction:column;gap:0.1em}
.hero-title em{display:block}
.hero-sub{font-size:1.05rem;color:var(--text-muted);max-width:480px;margin:0 auto 2.5rem;font-weight:300}
.scroll-hint{position:absolute;bottom:2.5rem;left:50%;transform:translateX(-50%);display:flex;flex-direction:column;align-items:center;gap:0.6rem;color:var(--text-muted);font-size:0.65rem;letter-spacing:0.2em;text-transform:uppercase}
.scroll-line{width:1px;height:50px;background:linear-gradient(to bottom,transparent,var(--text-muted));animation:scrollPulse 2s ease-in-out infinite}
@keyframes scrollPulse{0%,100%{opacity:0.3;transform:scaleY(0.8)}50%{opacity:1;transform:scaleY(1)}}

/* ── Buttons ── */
.btn-primary{display:inline-flex;align-items:center;gap:0.6rem;padding:0.9rem 2.2rem;background:var(--accent);color:#0a0a0a;font-size:0.75rem;font-weight:600;letter-spacing:0.15em;text-transform:uppercase;border:1px solid var(--accent);transition:all var(--transition)}
.btn-primary:hover{background:transparent;color:var(--accent)}
.btn-outline{display:inline-block;padding:0.85rem 2rem;border:1px solid var(--border);color:var(--text-muted);font-size:0.75rem;letter-spacing:0.15em;text-transform:uppercase;transition:all var(--transition);margin-top:2rem}
.btn-outline:hover{border-color:var(--accent);color:var(--accent)}

/* ══════════════ MARQUEE ══════════════ */
.marquee-wrap{overflow:hidden;border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:1.1rem 0;background:var(--surface)}
.marquee-track{display:flex;gap:2rem;width:max-content;animation:marquee 28s linear infinite;font-size:0.65rem;font-weight:500;letter-spacing:0.25em;text-transform:uppercase;color:var(--text-muted)}
.marquee-track .sep{color:var(--accent);opacity:0.7}
@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* ══════════════ PRODUCTS ══════════════ */
.products-section{padding:8rem 0}
.container{max-width:1300px;margin:0 auto;padding:0 5%}
.section-header{text-align:center;margin-bottom:5rem}
.section-header h2{font-size:clamp(2.5rem,5vw,4rem);margin-bottom:1rem}
.section-sub{color:var(--text-muted);font-size:0.95rem;font-weight:300}
.product-grid{display:grid;grid-template-columns:1fr auto 1fr;gap:3rem;align-items:stretch}
.product-separator{width:1px;background-color:var(--border);margin:0 auto;}

/* Product Card */
.product-card{display:flex;flex-direction:column;transition:transform var(--transition)}
.product-card:hover{transform:translateY(-6px)}
.product-img-wrap{position:relative;aspect-ratio:3/4;overflow:hidden;margin-bottom:1.8rem}
.product-img{width:100%;height:100%;position:relative;display:flex;align-items:flex-end;padding:1.5rem;overflow:hidden;transition:transform 0.7s ease}
.product-card:hover .product-img{transform:scale(1.04)}

/* Real photo variant */
.product-img--real{padding:0;background:var(--surface-2)}
.product-img--real img{width:100%;height:100%;object-fit:cover;object-position:center top;display:block;transition:transform 0.7s ease}
.product-card:hover .product-img--real img{transform:scale(1.05)}

/* CSS art product visuals */
.p-img-1{background:linear-gradient(160deg,#1a1a1a 0%,#2d2d2d 40%,#1a1a1a 100%)}
.p-img-1::before{content:'';position:absolute;inset:0;background-image:radial-gradient(circle,#fff 1px,transparent 1px);background-size:28px 28px;opacity:0.12}
.p-img-1::after{content:'';position:absolute;bottom:0;left:0;right:0;height:55%;background:linear-gradient(to top,rgba(10,10,10,0.7),transparent)}
[data-theme="light"] .p-img-1{background:linear-gradient(160deg,#e8e0d5 0%,#d4c9bc 40%,#e8e0d5 100%)}
[data-theme="light"] .p-img-1::before{opacity:0.25}
[data-theme="light"] .p-img-1::after{background:linear-gradient(to top,rgba(200,190,180,0.5),transparent)}

.p-img-2{background:linear-gradient(160deg,#1e0a2e 0%,#3d1460 40%,#1e0a2e 100%)}
.p-img-2::before{content:'';position:absolute;inset:0;background:repeating-linear-gradient(45deg,rgba(255,255,255,0.03) 0,rgba(255,255,255,0.03) 1px,transparent 0,transparent 50%) center/12px 12px}
.p-img-2::after{content:'';position:absolute;bottom:0;left:0;right:0;height:55%;background:linear-gradient(to top,rgba(10,0,20,0.75),transparent)}
[data-theme="light"] .p-img-2{background:linear-gradient(160deg,#e8daf0 0%,#c9aee0 40%,#e8daf0 100%)}
[data-theme="light"] .p-img-2::after{background:linear-gradient(to top,rgba(180,150,210,0.4),transparent)}

.img-num{position:relative;z-index:2;font-family:var(--font-serif);font-size:4rem;font-weight:300;color:rgba(255,255,255,0.2);line-height:1}
[data-theme="light"] .img-num{color:rgba(0,0,0,0.12)}

.product-info{display:flex;flex-direction:column;flex:1}
.product-meta{display:flex;justify-content:space-between;align-items:center;margin-bottom:0.8rem}
.tag{font-size:0.65rem;letter-spacing:0.2em;text-transform:uppercase;color:var(--accent)}
.stock{font-size:0.65rem;letter-spacing:0.1em;color:var(--text-muted)}
.product-info h3{font-size:1.6rem;font-weight:400;margin-bottom:0.7rem}
.product-desc{font-size:0.88rem;color:var(--text-muted);line-height:1.75;flex:1;margin-bottom:1.5rem;font-weight:300}
.product-footer{display:flex;align-items:center;justify-content:space-between;gap:1rem;border-top:1px solid var(--border);padding-top:1.3rem;margin-top:auto}
.price{font-family:var(--font-serif);font-size:1.4rem;font-weight:400;color:var(--text);letter-spacing:0.02em}
.btn-cart{padding:0.75rem 1.5rem;border:1px solid var(--text-muted);font-size:0.7rem;font-weight:500;letter-spacing:0.15em;text-transform:uppercase;color:var(--text-muted);background:transparent;transition:all var(--transition);white-space:nowrap}
.btn-cart:hover{border-color:var(--accent);color:var(--bg);background:var(--accent)}

/* ── Checkout Form ── */
.order-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.order-form .input-wrapper {
  position: relative;
  display: block;
}
.order-form input,
.order-form select {
  width: 100%;
  padding: 1rem 1.4rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  border-radius: 8px;
  transition: border-color var(--transition);
}
.order-form .input-wrapper input {
  padding-right: 3.5rem;
}
.order-form .input-icon {
  position: absolute;
  right: 1px;
  top: 1px;
  bottom: 1px;
  width: 3.2rem;
  background: rgba(128, 128, 128, 0.15);
  border-left: 1px solid var(--border);
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  pointer-events: none;
}
.order-form input::placeholder {
  color: var(--text-muted);
}
.order-form input:focus,
.order-form select:focus {
  border-color: var(--accent);
}
.order-form select {
  appearance: none;
  cursor: pointer;
}
.order-form select option {
  background: var(--surface-2);
  color: var(--text);
}

/* Remove spin buttons from number inputs */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

/* Validation styling */
.order-form input.input-invalid {
  border-color: #d90429 !important;
}
.order-form input.input-valid {
  border-color: #28a745 !important;
}

/* Shake Animation */
.shake {
  animation: shake-animation 0.4s ease-in-out;
}
@keyframes shake-animation {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

/* Button Loading Animation */
.btn-order {
  position: relative;
  overflow: hidden;
}
.btn-order.is-loading {
  color: transparent !important;
  pointer-events: none;
}
.btn-order.is-loading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
}
.btn-order.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: #000000;
  border-radius: 50%;
  animation: spinner 0.6s linear infinite;
}

html:not([data-theme="light"]) .btn-order.is-loading::after,
[data-theme="dark"] .btn-order.is-loading::after,
.dark .btn-order.is-loading::after {
  border-color: rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
}
@keyframes spinner {
  to { transform: rotate(360deg); }
}

/* ══════════════ ABOUT ══════════════ */
.about-section{padding:8rem 5%;max-width:1300px;margin:0 auto}
.about-inner{display:grid;grid-template-columns:1fr 1fr;gap:6rem;align-items:center}
.about-text h2{font-size:clamp(2.5rem,4vw,4rem);margin-bottom:1.5rem}
.about-text p{color:var(--text-muted);font-weight:300;font-size:0.95rem;line-height:1.8;margin-bottom:1rem}
.about-stats{display:flex;flex-direction:column;gap:0;background:var(--surface);border:1px solid var(--border);padding:3rem}
.stat{padding:2rem 0;display:flex;flex-direction:column;gap:0.4rem}
.stat-n{font-family:var(--font-serif);font-size:3rem;font-weight:300;color:var(--accent);line-height:1}
.stat-l{font-size:0.7rem;letter-spacing:0.2em;text-transform:uppercase;color:var(--text-muted)}
.stat-divider{height:1px;background:var(--border)}

/* ══════════════ CONTACT ══════════════ */
.contact-section{padding:8rem 0;background:var(--surface)}
.contact-inner{text-align:center;max-width:560px;margin:0 auto}
.contact-inner h2{font-size:clamp(2.5rem,4vw,4rem);margin-bottom:1rem}
.newsletter-form{display:flex;gap:0;margin:2.5rem 0 1rem;border:1px solid var(--border);overflow:hidden}
.newsletter-form input{flex:1;padding:1rem 1.4rem;background:transparent;border:none;color:var(--text);font-family:var(--font-sans);font-size:0.9rem;outline:none}
.newsletter-form input::placeholder{color:var(--text-muted)}
.newsletter-form .btn-primary{border-radius:0;white-space:nowrap}
.form-note{font-size:0.75rem;color:var(--text-muted);letter-spacing:0.04em}

/* ══════════════ FOOTER ══════════════ */
.site-footer{padding:3rem 5%;border-top:1px solid var(--border)}
.footer-inner{max-width:1300px;margin:0 auto;display:flex;flex-direction:column;align-items:center;gap:1.5rem;text-align:center}
.footer-logo{font-family:var(--font-serif);font-size:1.3rem;letter-spacing:0.2em}
.footer-links{display:flex;gap:2rem}
.footer-links a{font-size:0.72rem;letter-spacing:0.15em;text-transform:uppercase;color:var(--text-muted);transition:color var(--transition)}
.footer-links a:hover{color:var(--accent)}
.footer-copy{font-size:0.72rem;color:var(--text-muted)}



/* ══════════════ TOAST ══════════════ */
.toast{position:fixed;bottom:2rem;left:50%;transform:translateX(-50%) translateY(20px);background:var(--surface);border:1px solid var(--accent);color:var(--text);padding:0.9rem 1.5rem;font-size:0.8rem;letter-spacing:0.08em;opacity:0;pointer-events:none;transition:opacity 0.4s,transform 0.4s;z-index:1000;border-radius:2px;width:max-content;max-width:90%;text-align:center;word-wrap:break-word}
.toast.show{opacity:1;transform:translateX(-50%) translateY(0)}

/* ══════════════ RESPONSIVE ══════════════ */
@media(max-width:900px){
  .product-grid{grid-template-columns:1fr;max-width:520px;margin:0 auto}
  .product-separator{width:60%;height:1px;margin:0 auto;background-color:var(--border);}
  .about-inner{grid-template-columns:1fr}
  .about-stats{flex-direction:row;padding:2rem;gap:0}
  .stat{flex:1;align-items:center;text-align:center;padding:1.5rem 0.5rem}
  .stat-divider{width:1px;height:auto;background:var(--border)}
}
@media(max-width:700px){
  .nav-links{display:none}
  .hamburger{display:flex}
  .hero-title{font-size:clamp(3rem,12vw,5rem)}
  .newsletter-form{flex-direction:column}
  .newsletter-form .btn-primary{width:100%;justify-content:center}
  .chat-panel{width:calc(100vw - 2rem);right:0}
  .about-stats{flex-direction:column}
  .stat-divider{width:auto;height:1px}
}

/* ══════════════ SUCCESS MODAL ══════════════ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal-container {
  background: #ffffff;
  color: #0f0d0b;
  width: 90%;
  max-width: 400px;
  padding: 2.5rem;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-overlay.active .modal-container {
  transform: translateY(0);
}
.modal-checkmark {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e6f7ed;
  color: #24b47e;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-weight: bold;
}
.modal-message {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.5;
  color: #0f0d0b;
  margin-bottom: 2rem;
}
.modal-btn {
  width: 100%;
  padding: 1rem;
  background: #0f0d0b;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid #0f0d0b;
  transition: background 0.3s ease, color 0.3s ease;
}
.modal-btn:hover {
  background: transparent;
  color: #0f0d0b;
}

/* ══════════════ PRICING UPDATES ══════════════ */
.price-wrapper {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.old-price {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  color: #d90429;
  text-decoration: line-through;
  opacity: 0.8;
  font-weight: 500;
}

.price-active {
  display: inline-block;
  font-family: var(--font-sans) !important;
  color: #28a745 !important;
  font-weight: 600;
  animation: pulse-price 2.5s infinite ease-in-out;
  transform-origin: left center;
}

@keyframes pulse-price {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* ══════════════ PRODUCT PAGE PRICING REDESIGN ══════════════ */
.product-price-container {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 1.2rem;
  margin-bottom: 2.2rem;
}

.price-current {
  font-family: var(--font-sans);
  font-size: 1.75rem;
  font-weight: 700;
  color: #28a745; /* Vibrant sales green matching order button */
  letter-spacing: -0.02em;
  line-height: 1;
}

.price-old {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: #ab7e7e; /* Muted red for dark theme */
  text-decoration: line-through;
  font-weight: 400;
  line-height: 1;
}

[data-theme="light"] .price-old {
  color: #9e6b6b; /* Muted red for light theme */
}

.shipping-badge {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 4px;
  background-color: rgba(40, 167, 69, 0.15); /* Soft green background tint for dark theme */
  color: #28a745;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  transform: translateY(-2px); /* visual adjustment for vertical alignment */
}

[data-theme="light"] .shipping-badge {
  background-color: rgba(40, 167, 69, 0.08); /* Soft green background tint for light theme */
  color: #28a745;
}

/* ══════════════ TRUST BADGES ══════════════ */
.product-page .order-form {
  margin-bottom: 0px;
}

.product-page .btn-order {
  margin-bottom: 0px;
}

.trust-badges {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 15px;
  margin-top: 8px;
  margin-bottom: 0px; /* Reset bottom margin to sit cleanly above feature list */
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: #888888; /* Elegant muted gray for dark theme */
}

[data-theme="light"] .trust-badge {
  color: #666666; /* Elegant muted gray for light theme */
}

.trust-badge svg {
  color: currentColor;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ══════════════ PRODUCT FEATURES LIST ══════════════ */
.product-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px; /* Pushed down slightly for more breathing room */
  margin-bottom: 2.5rem;
  padding: 0 15px; /* Proper padding on the sides for balance */
  list-style: none;
}

.product-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 14px; /* Slightly reduced font size */
  line-height: 1.7; /* Increased line-height to prevent line collision */
  color: #8a837a; /* Muted shade for dark theme */
  text-align: left;
}

[data-theme="light"] .product-features-list li {
  color: #555555; /* Soft muted charcoal for light theme */
}

.product-features-list li span {
  flex-shrink: 0;
  font-size: 14px; /* Matched size of text */
  line-height: 1.7;
}

/* ══════════════ WHATSAPP FLOATING BUTTON ══════════════ */
.whatsapp-sticky {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 48px;
  max-width: 48px; /* starts collapsed as a compact circle */
  padding: 0 13px; /* centers the 22px svg inside 48px width */
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.3s, 
              transform 0.3s;
  overflow: hidden;
  white-space: nowrap;
}

.whatsapp-sticky svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: currentColor;
}

.whatsapp-sticky span {
  display: inline-block;
  opacity: 0;
  margin-left: 0;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), margin-left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

/* Expanded state (on hover or with .expanded class) */
.whatsapp-sticky:hover,
.whatsapp-sticky.expanded {
  max-width: 260px; /* expands smoothly to show text */
  padding: 0 1.25rem;
}

.whatsapp-sticky:hover span,
.whatsapp-sticky.expanded span {
  opacity: 1;
  margin-left: 0.6rem;
  pointer-events: auto;
}

.whatsapp-sticky:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  color: #ffffff;
}

/* Mobile responsive adjustments */
@media (max-width: 700px) {
  .whatsapp-sticky {
    bottom: 15px;
    right: 15px;
  }
}

