:root {
  --cream:#F5F0E8; --dark:#1A1A18;
  --gold:#C8973A; --gold-light:#E8B85A;
  --card-bg:#FEFCF7; --border:rgba(200,151,58,0.2);
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{background:var(--cream);color:var(--dark);font-family:'DM Sans',sans-serif;font-weight:300;overflow-x:hidden}
body::before{content:'';position:fixed;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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");pointer-events:none;z-index:9999;opacity:.4}

/* NAV */
nav{position:fixed;top:0;left:0;right:0;z-index:200;display:flex;align-items:center;justify-content:space-between;padding:1.1rem 3rem;background:rgba(245,240,232,.9);backdrop-filter:blur(14px);border-bottom:1px solid var(--border)}
.logo{font-family:'Playfair Display',serif;font-size:1.35rem;font-weight:900;letter-spacing:-.02em;color:var(--dark);white-space:nowrap}
.logo span{color:var(--gold)}
.nav-right{display:flex;align-items:center;gap:1.5rem}
nav ul{list-style:none;display:flex;gap:1.8rem;align-items:center}
nav ul a{text-decoration:none;color:var(--dark);font-size:.82rem;font-weight:500;letter-spacing:.05em;text-transform:uppercase;opacity:.55;transition:opacity .2s}
/* Skip link — keyboard / screen reader: bypass nav */
.skip-link{
  position:absolute;left:-9999px;top:0;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;
  z-index:10001;
}
.skip-link:focus,.skip-link:focus-visible{
  position:fixed;left:1rem;top:1rem;clip:auto;width:auto;height:auto;overflow:visible;white-space:normal;
  padding:.65rem 1.15rem;background:var(--dark);color:var(--cream);border-radius:2rem;border:2px solid var(--gold);
  font-size:.85rem;font-weight:600;text-decoration:none;font-family:'DM Sans',sans-serif;letter-spacing:.02em;
  box-shadow:0 10px 28px rgba(0,0,0,.4);outline:none;
}

nav ul a:hover{opacity:1}
.nav-cta{background:var(--dark);color:var(--cream)!important;padding:.42rem 1.1rem;border-radius:2rem;opacity:1!important;transition:background .2s!important}
.nav-cta:hover{background:var(--gold)!important}

/* Lang switcher */
.lang-switcher{display:flex;align-items:center;gap:.2rem;background:rgba(200,151,58,.08);border:1px solid var(--border);border-radius:2rem;padding:.25rem .4rem}
.lang-btn{background:none;border:none;cursor:pointer;font-size:.95rem;border-radius:50%;width:27px;height:27px;display:flex;align-items:center;justify-content:center;transition:background .15s;opacity:.45}
.lang-btn:hover,.lang-btn.active{opacity:1;background:rgba(200,151,58,.18)}
.lang-btn:focus-visible{opacity:1;outline:2px solid var(--gold);outline-offset:2px}

/* Hamburger */
.hamburger{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:4px}
.hamburger span{display:block;width:22px;height:2px;background:var(--dark);border-radius:2px;transition:all .3s}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* Mobile menu */
.mobile-menu{display:none;position:fixed;top:61px;left:0;right:0;z-index:190;background:rgba(245,240,232,.97);backdrop-filter:blur(14px);border-bottom:1px solid var(--border);padding:1.5rem 2rem 2rem;flex-direction:column;gap:1.1rem}
.mobile-menu.open{display:flex}
.mobile-menu a{text-decoration:none;color:var(--dark);font-size:.98rem;font-weight:500;padding:.45rem 0;border-bottom:1px solid var(--border)}
.mobile-wishlist{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  width:100%;
  background:transparent;
  border:none;
  cursor:pointer;
  font-family:'DM Sans',sans-serif;
  color:var(--dark);
  font-size:.98rem;
  font-weight:500;
  padding:.45rem 0;
  border-bottom:1px solid var(--border);
}
.mobile-wishlist .mw-right{display:flex;align-items:center;gap:.55rem}
.mw-count{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:22px;
  height:22px;
  padding:0 .45rem;
  border-radius:999px;
  font-size:.78rem;
  font-weight:700;
  background:rgba(200,151,58,.16);
  border:1px solid rgba(200,151,58,.28);
  color:var(--gold);
}
.mw-heart{color:var(--gold);opacity:.9}
.mobile-lang{display:flex;gap:.5rem;margin-top:.5rem}

/* HERO */
.hero{min-height:100vh;display:flex;align-items:center;padding:8rem 3rem 4rem;position:relative;overflow:hidden}
.hero-orb{position:absolute;border-radius:50%;pointer-events:none}
.hero-orb:nth-child(1){width:700px;height:700px;background:radial-gradient(circle,rgba(200,151,58,.13),transparent 70%);top:-120px;right:-180px;animation:float 9s ease-in-out infinite}
.hero-orb:nth-child(2){width:420px;height:420px;background:radial-gradient(circle,rgba(122,158,126,.1),transparent 70%);bottom:0;left:-100px;animation:float 12s ease-in-out infinite reverse}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-28px)}}
.hero-content{max-width:680px;position:relative;z-index:2;animation:fadeUp .9s ease forwards}
@keyframes fadeUp{from{opacity:0;transform:translateY(28px)}to{opacity:1;transform:translateY(0)}}
.hero-badge{display:inline-flex;align-items:center;gap:.5rem;background:rgba(200,151,58,.12);border:1px solid var(--border);border-radius:2rem;padding:.38rem 1rem;font-size:.78rem;font-weight:500;color:var(--gold);letter-spacing:.08em;text-transform:uppercase;margin-bottom:1.8rem}
.hero-badge::before{content:'';width:6px;height:6px;background:var(--gold);border-radius:50%;animation:pulse 2s infinite}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.4;transform:scale(1.5)}}
h1{font-family:'Playfair Display',serif;font-size:clamp(2.8rem,6.5vw,5.2rem);font-weight:900;line-height:1;letter-spacing:-.03em;margin-bottom:1.4rem}
h1 em{font-style:italic;color:var(--gold)}
.hero-sub{font-size:1.1rem;line-height:1.75;opacity:.62;max-width:500px;margin-bottom:2.5rem}
.hero-actions{display:flex;gap:1rem;flex-wrap:wrap}
.btn-primary{display:inline-flex;align-items:center;gap:.5rem;background:var(--dark);color:var(--cream);border:none;padding:.85rem 1.9rem;border-radius:3rem;font-family:'DM Sans',sans-serif;font-size:.92rem;font-weight:500;cursor:pointer;transition:all .25s;text-decoration:none}
.btn-primary:hover{background:var(--gold);transform:translateY(-2px);box-shadow:0 8px 28px rgba(200,151,58,.3)}
.btn-secondary{display:inline-flex;align-items:center;gap:.5rem;background:transparent;color:var(--dark);border:1.5px solid rgba(26,26,24,.22);padding:.85rem 1.9rem;border-radius:3rem;font-family:'DM Sans',sans-serif;font-size:.92rem;font-weight:500;cursor:pointer;transition:all .25s;text-decoration:none}
.btn-secondary:hover{border-color:var(--gold);color:var(--gold)}
.hero-stats{display:flex;gap:3rem;margin-top:3.5rem;padding-top:2.2rem;border-top:1px solid var(--border);animation:fadeUp .9s .25s ease both}
.stat-num{font-family:'Playfair Display',serif;font-size:1.9rem;font-weight:700}
.stat-label{font-size:.75rem;text-transform:uppercase;letter-spacing:.08em;opacity:.45;margin-top:.15rem}

/* FEATURES */
.features{padding:7rem 3rem;max-width:1200px;margin:0 auto}
.section-label{font-size:.75rem;text-transform:uppercase;letter-spacing:.15em;color:var(--gold);font-weight:500;margin-bottom:.8rem}
.section-title{font-family:'Playfair Display',serif;font-size:clamp(1.9rem,3.5vw,2.8rem);font-weight:700;line-height:1.18;letter-spacing:-.02em;max-width:480px;margin-bottom:3.5rem}
.features-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.8rem;
  align-items:stretch;
}
.feature-card{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:.6rem;
  background:linear-gradient(145deg,rgba(255,255,255,.9),rgba(255,252,247,.96));
  border-radius:1.4rem;
  border:1px solid rgba(200,151,58,.18);
  padding:1.9rem 1.7rem;
  box-shadow:0 16px 40px rgba(0,0,0,.04);
  transition:transform .24s ease,box-shadow .24s ease,border-color .24s ease;
  overflow:hidden;
}
.feature-card::before{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top left,rgba(200,151,58,.12),transparent 60%);
  opacity:0;
  pointer-events:none;
  transition:opacity .24s ease;
}
.feature-card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 60px rgba(0,0,0,.08);
  border-color:rgba(200,151,58,.35);
}
.feature-card:hover::before{opacity:1;}
.feature-icon{
  width:46px;
  height:46px;
  border-radius:1rem;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.25rem;
  background:rgba(200,151,58,.1);
  box-shadow:0 8px 18px rgba(0,0,0,.04) inset;
  margin-bottom:.7rem;
}
.feature-card h3{font-family:'Playfair Display',serif;font-size:1.15rem;font-weight:700;margin-bottom:.5rem}
.feature-card p{font-size:.88rem;line-height:1.7;opacity:.58}

/* CHAT */
.chat-section{background:var(--dark);padding:7rem 3rem;position:relative;overflow:hidden;margin-top:3.5rem}
.chat-section::before{content:'';position:absolute;width:600px;height:600px;border-radius:50%;background:radial-gradient(circle,rgba(200,151,58,.13),transparent 70%);top:-200px;right:-200px;pointer-events:none}
.chat-container{max-width:1480px;margin:0 auto;position:relative;z-index:2}
.chat-section .section-title{color:var(--cream);max-width:920px}
.chat-section .section-label{color:var(--gold-light)}
.chat-box{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.09);border-radius:1.8rem;overflow:hidden;margin-top:2.8rem}
.chat-header{padding:1.1rem 1.7rem;background:rgba(255,255,255,.04);border-bottom:1px solid rgba(255,255,255,.07);display:flex;align-items:center;gap:.8rem}
.chat-dot{width:9px;height:9px;border-radius:50%;background:var(--gold);animation:pulse 2s infinite}
.chat-header-text{font-size:.82rem;font-weight:500;color:rgba(245,240,232,.6)}
.chat-messages{padding:1.4rem;min-height:520px;max-height:860px;overflow-y:auto;display:flex;flex-direction:column;gap:.9rem;scroll-behavior:smooth}
.chat-messages::-webkit-scrollbar{width:3px}
.chat-messages::-webkit-scrollbar-thumb{background:rgba(200,151,58,.3);border-radius:2px}
.msg{display:flex;gap:.65rem;animation:msgIn .3s ease forwards}
@keyframes msgIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}
.msg-avatar{width:30px;height:30px;border-radius:50%;flex-shrink:0;display:flex;align-items:center;justify-content:center;font-size:.85rem;margin-top:3px}
.msg.ai .msg-avatar{background:rgba(200,151,58,.2)}
.msg.user{flex-direction:row-reverse}
.msg.user .msg-avatar{background:rgba(245,240,232,.1)}
.msg-bubble{max-width:78%;padding:.85rem 1.15rem;border-radius:1.1rem;font-size:.88rem;line-height:1.65}
.msg.ai .msg-bubble{background:rgba(255,255,255,.07);color:rgba(245,240,232,.88);border-bottom-left-radius:.25rem}
.msg.user .msg-bubble{background:var(--gold);color:var(--dark);font-weight:500;border-bottom-right-radius:.25rem}
.typing-indicator{display:flex;align-items:center;gap:4px;flex-wrap:wrap;padding:.85rem 1.15rem;background:rgba(255,255,255,.07);border-radius:1.1rem;border-bottom-left-radius:.25rem;width:fit-content;max-width:100%}
.typing-status{font-size:.72rem;opacity:.55;margin-left:.15rem;font-style:italic;letter-spacing:.02em;color:rgba(245,240,232,.55)}
.typing-dot{width:6px;height:6px;background:rgba(245,240,232,.4);border-radius:50%;animation:tdot 1.2s infinite}
.typing-dot:nth-child(2){animation-delay:.2s}
.typing-dot:nth-child(3){animation-delay:.4s}
@keyframes tdot{0%,100%{transform:translateY(0);opacity:.4}50%{transform:translateY(-5px);opacity:1}}
.quick-prompts{display:flex;gap:.5rem;flex-wrap:wrap;padding:0 1.4rem 1.1rem}
.quick-btn{background:rgba(200,151,58,.1);border:1px solid rgba(200,151,58,.22);color:rgba(245,240,232,.65);padding:.38rem .85rem;border-radius:2rem;font-size:.76rem;cursor:pointer;font-family:'DM Sans',sans-serif;transition:all .2s}
.quick-btn:hover{background:rgba(200,151,58,.22);color:var(--gold-light)}
.quick-btn:focus-visible{outline:2px solid var(--gold);outline-offset:3px}
.chat-input-area{padding:1.1rem 1.3rem;border-top:1px solid rgba(255,255,255,.07);display:flex;gap:.7rem;align-items:center}
.chat-input{flex:1;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);border-radius:2rem;padding:.7rem 1.2rem;color:var(--cream);font-family:'DM Sans',sans-serif;font-size:.88rem;outline:none;transition:border-color .2s}
.chat-input::placeholder{color:rgba(245,240,232,.28)}
.chat-input:focus{border-color:rgba(200,151,58,.5)}
.chat-send{width:42px;height:42px;background:var(--gold);border:none;border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:.95rem;transition:all .2s;flex-shrink:0}
.chat-send:hover{background:var(--gold-light);transform:scale(1.06)}
.chat-send:focus-visible{outline:2px solid var(--gold-light);outline-offset:3px}
.chat-send:disabled{opacity:.45;cursor:not-allowed;transform:none}
.chat-save-row{display:flex;justify-content:center;padding:0 1.3rem .85rem}
#scrollProgress{position:fixed;top:0;left:0;height:3px;width:0%;background:linear-gradient(90deg,var(--gold),var(--gold-light));z-index:999;transition:width .1s linear;pointer-events:none}
.api-note{margin-top:1.4rem;padding:.9rem 1.2rem;background:rgba(200,151,58,.07);border:1px solid rgba(200,151,58,.18);border-radius:.9rem;font-size:.8rem;color:rgba(245,240,232,.45);line-height:1.6}
.api-note strong{color:var(--gold-light)}

/* ANALYSE SECTION */
.analyse-section{padding:4.8rem 3rem 3.6rem;max-width:1200px;margin:0 auto}
.analyse-section .section-label,
.analyse-section .section-title{ text-align:center; margin-left:auto; margin-right:auto; }
.analyse-section .section-title{max-width:760px}
.analyse-box{
  margin-top:2.1rem;
  max-width:980px;
  margin-left:auto;
  margin-right:auto;
  background:
    radial-gradient(circle at top right,rgba(200,151,58,.12),transparent 55%),
    linear-gradient(145deg,rgba(254,252,247,.98),rgba(245,240,232,1));
  border:1px solid rgba(200,151,58,.22);
  border-radius:1.4rem;
  padding:1.55rem 1.55rem 1.35rem;
  box-shadow:0 18px 48px rgba(0,0,0,.06);
}
.analyse-input-row{display:flex;gap:.8rem;flex-wrap:wrap;align-items:center;justify-content:center}
.analyse-input{
  flex:1;
  min-width:240px;
  background:rgba(255,255,255,.75);
  border:1px solid rgba(200,151,58,.22);
  border-radius:999px;
  padding:.85rem 1.15rem;
  font-family:'DM Sans',sans-serif;
  font-size:.9rem;
  outline:none;
}
.analyse-input:focus{border-color:rgba(200,151,58,.55);box-shadow:0 0 0 3px rgba(200,151,58,.12)}
.analyse-btn{
  border:none;
  border-radius:999px;
  background:var(--gold);
  color:var(--dark);
  padding:.88rem 1.3rem;
  cursor:pointer;
  font-weight:800;
  letter-spacing:.02em;
  transition:background .2s,transform .2s,box-shadow .2s,filter .2s;
}
.analyse-btn:hover{filter:brightness(1.03);transform:translateY(-1px);box-shadow:0 14px 32px rgba(200,151,58,.35)}
.analyse-btn:disabled{opacity:.55;cursor:not-allowed;transform:none;box-shadow:none}
.analyse-result{margin-top:1.15rem}
.analyse-card{
  display:grid;
  grid-template-columns:140px 1fr;
  gap:1rem;
  background:rgba(255,255,255,.7);
  border:1px solid rgba(200,151,58,.2);
  border-radius:1.2rem;
  padding:1.1rem;
}
.analyse-img{
  width:100%;height:140px;
  background:rgba(0,0,0,.03);
  border-radius:1rem;
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
}
.analyse-img img{width:100%;height:100%;object-fit:contain;padding:.6rem}
.analyse-meta h3{font-family:'Playfair Display',serif;font-size:1.1rem}
.analyse-meta .pc-stars{margin-top:.35rem}
.analyse-proscons{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1rem;
  margin-top:1rem;
}
.analyse-col{
  background:rgba(255,255,255,.7);
  border:1px solid rgba(200,151,58,.14);
  border-radius:1.1rem;
  padding:1rem;
}
.analyse-col h4{font-size:.85rem;letter-spacing:.06em;text-transform:uppercase;opacity:.7;margin-bottom:.6rem}
.analyse-col ul{padding-left:1.05rem;line-height:1.7}
.analyse-cta-row{margin-top:1rem;display:flex;gap:.8rem;flex-wrap:wrap}
.analyse-ask{
  text-decoration:none;
  background:var(--gold);
  color:var(--dark);
  border-radius:999px;
  padding:.7rem 1.1rem;
  font-weight:700;
  font-size:.86rem;
}

/* COMPARE SECTION */
.compare-section{padding:4.8rem 3rem 3.6rem;max-width:1200px;margin:0 auto}
.compare-section .section-label,
.compare-section .section-title{ text-align:center; margin-left:auto; margin-right:auto; }
.compare-section .section-title{max-width:760px}
.compare-box{
  margin-top:2.1rem;
  max-width:980px;
  margin-left:auto;
  margin-right:auto;
  background:
    radial-gradient(circle at top right,rgba(200,151,58,.12),transparent 55%),
    linear-gradient(145deg,rgba(254,252,247,.98),rgba(245,240,232,1));
  border:1px solid rgba(200,151,58,.22);
  border-radius:1.4rem;
  padding:1.55rem 1.55rem 1.35rem;
  box-shadow:0 18px 48px rgba(0,0,0,.06);
}
.compare-input-row{display:flex;gap:.8rem;flex-wrap:wrap;align-items:center;justify-content:center}
.compare-input{
  flex:1;
  min-width:220px;
  background:rgba(255,255,255,.75);
  border:1px solid rgba(200,151,58,.22);
  border-radius:999px;
  padding:.85rem 1.15rem;
  font-family:'DM Sans',sans-serif;
  font-size:.9rem;
  outline:none;
}
.compare-input:focus{border-color:rgba(200,151,58,.55);box-shadow:0 0 0 3px rgba(200,151,58,.12)}
.compare-btn{
  border:none;
  border-radius:999px;
  background:var(--gold);
  color:var(--dark);
  padding:.88rem 1.3rem;
  cursor:pointer;
  font-weight:800;
  letter-spacing:.02em;
  transition:background .2s,transform .2s,box-shadow .2s,filter .2s;
  white-space:nowrap;
}
.compare-btn:hover{filter:brightness(1.03);transform:translateY(-1px);box-shadow:0 14px 32px rgba(200,151,58,.35)}
.compare-btn:disabled{opacity:.55;cursor:not-allowed;transform:none;box-shadow:none}
.compare-result{margin-top:1.15rem}
.compare-products{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1rem;
}
.compare-card{
  background:rgba(255,255,255,.7);
  border:1px solid rgba(200,151,58,.2);
  border-radius:1.2rem;
  padding:1.05rem;
  display:flex;
  flex-direction:column;
  gap:.7rem;
  position:relative;
}
.compare-card h3{font-family:'Playfair Display',serif;font-size:1.06rem;margin:0}
.compare-img{
  width:100%;
  height:150px;
  background:rgba(0,0,0,.03);
  border-radius:1rem;
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
}
.compare-img img{width:100%;height:100%;object-fit:contain;padding:.6rem}
.compare-price{font-weight:900;opacity:.9}
.compare-links{display:flex;gap:.6rem;flex-wrap:wrap}
.compare-winner{
  background:rgba(200,151,58,.08);
  border:1px solid rgba(200,151,58,.22);
  border-radius:1.1rem;
  padding:1rem;
}
.compare-winner h4{margin:0 0 .4rem 0; letter-spacing:.06em;text-transform:uppercase;opacity:.7;font-size:.85rem}
.compare-winner p{margin:.2rem 0 .8rem 0;line-height:1.55}
.compare-winner ul{margin:0;padding-left:1.05rem;line-height:1.7}

/* WISHLIST */
.wishlist-nav{
  position:relative;
  display:inline-flex;align-items:center;justify-content:center;
  width:42px;height:42px;
  border:1px solid rgba(200,151,58,.35);
  background:rgba(200,151,58,.10);
  border-radius:999px;
  cursor:pointer;
  color:var(--dark);
  transition:transform .2s,box-shadow .2s,background .2s,border-color .2s;
}
.wishlist-nav:hover{transform:translateY(-1px);box-shadow:0 14px 30px rgba(0,0,0,.08);border-color:rgba(200,151,58,.6);background:rgba(200,151,58,.16)}
.wishlist-icon{display:inline-flex;align-items:center;justify-content:center;color:rgba(26,26,24,.88)}
.wishlist-nav:hover .wishlist-icon{color:rgba(26,26,24,1)}
.wishlist-count{
  position:absolute;
  top:-6px;right:-6px;
  display:inline-flex;align-items:center;justify-content:center;
  min-width:20px;height:20px;
  border-radius:999px;
  background:var(--gold);
  color:var(--dark);
  font-size:.75rem;
  padding:0 .35rem;
  border:2px solid rgba(245,240,232,.95);
}
.wishlist-overlay{
  position:fixed;inset:0;
  background:rgba(0,0,0,.45);
  opacity:0;pointer-events:none;
  transition:opacity .25s ease;
  z-index:230;
}
.wishlist-overlay.open{opacity:1;pointer-events:auto}
.wishlist-panel{
  position:fixed;top:0;right:0;
  width:min(420px, 92vw);
  height:100vh;
  background:var(--dark);
  color:var(--cream);
  border-left:1px solid rgba(200,151,58,.35);
  transform:translateX(102%);
  transition:transform .28s ease;
  z-index:240;
  display:flex;flex-direction:column;
}
.wishlist-panel.open{transform:translateX(0)}
.wishlist-header{
  padding:1rem 1.1rem;
  border-bottom:1px solid rgba(255,255,255,.08);
  display:flex;align-items:center;justify-content:space-between;gap:1rem;
}
.wishlist-title{font-family:'Playfair Display',serif;font-size:1.25rem}
.wishlist-actions{display:flex;align-items:center;gap:.5rem}
.wishlist-clear{
  border:1px solid rgba(200,151,58,.35);
  background:transparent;
  color:rgba(245,240,232,.85);
  border-radius:999px;
  padding:.35rem .8rem;
  cursor:pointer;
  font-size:.78rem;
}
.wishlist-close{
  width:36px;height:36px;border-radius:50%;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:rgba(245,240,232,.85);
  cursor:pointer;
}
.wishlist-body{padding:1rem 1.1rem;overflow:auto;display:flex;flex-direction:column;gap:.75rem}
.wish-item{
  display:grid;
  grid-template-columns:62px 1fr;
  gap:.75rem;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.04);
  border-radius:1rem;
  padding:.7rem;
}
.wish-img{width:62px;height:62px;border-radius:.9rem;background:rgba(255,255,255,.06);display:flex;align-items:center;justify-content:center;overflow:hidden}
.wish-img img{width:100%;height:100%;object-fit:contain;padding:.35rem}
.wish-title{font-size:.82rem;line-height:1.35}
.wish-meta{margin-top:.25rem;display:flex;align-items:center;gap:.5rem;flex-wrap:wrap}
.wish-price{color:var(--gold-light);font-weight:800;font-size:.9rem}
.wish-link{
  margin-left:auto;
  text-decoration:none;
  border:1px solid rgba(200,151,58,.35);
  padding:.25rem .65rem;
  border-radius:999px;
  color:rgba(245,240,232,.9);
  font-size:.75rem;
}
.wish-remove{
  border:none;background:transparent;color:rgba(245,240,232,.6);
  cursor:pointer;font-size:.85rem;
}
.wish-empty{opacity:.65;font-size:.9rem;line-height:1.7;padding:.6rem}

.toast{
  position:fixed;right:1.2rem;bottom:1.2rem;
  background:rgba(26,26,24,.92);
  color:rgba(245,240,232,.92);
  border:1px solid rgba(200,151,58,.25);
  border-radius:999px;
  padding:.55rem .9rem;
  font-size:.85rem;
  opacity:0;transform:translateY(10px);
  pointer-events:none;
  transition:opacity .25s ease,transform .25s ease;
  z-index:260;
}
.toast.show{opacity:1;transform:translateY(0)}

/* Share row */
.share-row{margin-top:.7rem;display:flex;gap:.5rem;flex-wrap:wrap;align-items:center}
.share-label{font-size:.75rem;opacity:.55}
.share-btn{
  border:1px solid rgba(200,151,58,.28);
  background:rgba(200,151,58,.08);
  color:rgba(245,240,232,.9);
  border-radius:999px;
  padding:.32rem .75rem;
  font-size:.74rem;
  cursor:pointer;
  transition:background .2s,border-color .2s,transform .2s;
}
.share-btn:hover{background:rgba(200,151,58,.18);border-color:rgba(200,151,58,.5);transform:translateY(-1px)}
.share-btn:focus-visible{outline:2px solid var(--gold);outline-offset:2px}
.share-btn.copied{border-color:rgba(70,200,120,.55);background:rgba(70,200,120,.18)}

/* Heart on product cards */
.pc-heart{
  position:absolute;
  top:.65rem;right:.65rem;
  width:32px;height:32px;
  border-radius:50%;
  border:1px solid rgba(200,151,58,.35);
  background:rgba(26,26,24,.6);
  color:rgba(245,240,232,.85);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
  z-index:3;
  transition:transform .18s ease,background .18s ease;
}
.pc-heart:hover{transform:scale(1.06);background:rgba(26,26,24,.78)}
.pc-heart.saved{color:var(--gold-light);border-color:rgba(200,151,58,.7)}
.pc-heart.pulse{animation:heartPulse .35s ease}
@keyframes heartPulse{0%{transform:scale(1)}50%{transform:scale(1.25)}100%{transform:scale(1)}}


/* HOW */
.how-section{padding:7rem 3rem;max-width:1100px;margin:0 auto}
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;margin-top:3.2rem}
.step{position:relative}
.step-num{font-family:'Playfair Display',serif;font-size:3.8rem;font-weight:900;color:var(--gold);opacity:.28;line-height:1;margin-bottom:.4rem;text-shadow:0 2px 10px rgba(0,0,0,.08)}
.step h4{font-family:'Playfair Display',serif;font-size:1.08rem;font-weight:700;margin-bottom:.5rem}
.step p{font-size:.86rem;line-height:1.7;opacity:.57}
.step-line{position:absolute;top:1.9rem;right:-1rem;width:2rem;height:1px;background:var(--border)}
.step:last-child .step-line{display:none}

/* FOOTER */
footer{background:var(--dark);color:var(--cream);padding:4rem 3rem 2.2rem}
.footer-top{display:flex;justify-content:space-between;flex-wrap:wrap;gap:2rem;padding-bottom:2.8rem;border-bottom:1px solid rgba(255,255,255,.07)}
.footer-brand .logo{font-size:1.5rem}
.footer-tagline{font-size:.82rem;opacity:.35;margin-top:.4rem}
.footer-links h5{font-size:.72rem;text-transform:uppercase;letter-spacing:.12em;opacity:.35;margin-bottom:.9rem;font-weight:500}
.footer-links ul{list-style:none}
.footer-links ul li{margin-bottom:.45rem}
.footer-links ul a{text-decoration:none;color:rgba(245,240,232,.55);font-size:.86rem;transition:color .2s}
.footer-links ul a:hover{color:var(--gold-light)}
.footer-bottom{display:flex;justify-content:space-between;flex-wrap:wrap;gap:1rem;padding-top:2rem;font-size:.75rem;opacity:.28}

/* Category pages: add breathing room above dark footer */
.cat-deals{padding-bottom:3.2rem}

/* DEALS */
.deals{
  padding:4.5rem 3rem 0;
  max-width:1200px;
  margin:0 auto;
  /* Add breathing room before dark chat section */
  padding-bottom:4.25rem;
}
.deals-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.8rem;
  align-items:stretch;
  margin-top:2.5rem;
}

/* Deals as real product cards (layout; colors set below with higher specificity) */
.deal-product-card{
  min-width:200px;
  max-width:none;
  width:100%;
}
.deal-product-card .pc-img-wrap{height:180px;}

/* Skeleton shimmer (Deals loading state) */
.deal-skel{
  border-radius:1.4rem;
  border:1px solid rgba(0,0,0,.08);
  background:#fff;
  padding:1.2rem 1.2rem 1.1rem;
  overflow:hidden;
  box-shadow:0 6px 28px rgba(0,0,0,.07);
}
.deal-skel-img{
  height:180px;
  border-radius:1.1rem;
  background:rgba(0,0,0,.05);
  margin-bottom:.9rem;
}
.deal-skel-line{
  height:14px;
  border-radius:999px;
  background:rgba(0,0,0,.06);
  margin:.55rem 0;
}
.deal-skel-line.short{width:60%;}
.shimmer{
  position:relative;
  overflow:hidden;
}
.shimmer::after{
  content:'';
  position:absolute;
  top:0;left:-60%;
  width:60%;
  height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.75),transparent);
  animation:shimmerMove 1.25s infinite;
}
@keyframes shimmerMove{
  0%{transform:translateX(0)}
  100%{transform:translateX(260%)}
}
.deal-card{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:.6rem;
  background:linear-gradient(145deg,rgba(254,252,247,.98),rgba(245,240,232,1));
  border-radius:1.4rem;
  border:1px solid rgba(200,151,58,.2);
  padding:1.7rem 1.6rem 1.5rem;
  box-shadow:0 18px 48px rgba(0,0,0,.06);
  overflow:hidden;
  transition:transform .24s ease,box-shadow .24s ease,border-color .24s ease;
}
.deal-card::after{
  content:'';
  position:absolute;
  inset:0;
  padding:1px;
  border-radius:inherit;
  background:linear-gradient(135deg,rgba(200,151,58,.42),rgba(200,151,58,0) 45%,rgba(255,255,255,.65));
  -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
  opacity:.35;
}
.deal-card::before{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top right,rgba(200,151,58,.18),transparent 65%);
  opacity:0;
  pointer-events:none;
  transition:opacity .24s ease;
}
.deal-card:hover{
  transform:translateY(-6px);
  box-shadow:0 26px 70px rgba(0,0,0,.1);
  border-color:rgba(200,151,58,.4);
}
.deal-card:hover::before{opacity:1;}
.deal-card:hover::after{opacity:.55;}
.deal-icon{
  width:40px;
  height:40px;
  border-radius:1rem;
  background:rgba(200,151,58,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.2rem;
  margin-bottom:.3rem;
}
.deal-name{
  font-family:'Playfair Display',serif;
  font-size:1.02rem;
  font-weight:700;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  overflow:hidden;
  min-height:2.55em; /* keeps cards aligned when clamped */
}
.deal-desc{
  font-size:.86rem;
  line-height:1.6;
  opacity:.7;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  overflow:hidden;
  min-height:3.2em;
}
.deal-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:.9rem;
}
.deal-prices{
  display:flex;
  flex-direction:column;
  gap:.1rem;
}
.deal-old-price{
  font-size:.78rem;
  text-decoration:line-through;
  opacity:.55;
}
.deal-price{
  font-family:'Playfair Display',serif;
  font-size:1.1rem;
  font-weight:700;
  color:var(--gold);
}
.deal-link{
  font-size:.8rem;
  text-decoration:none;
  padding:.55rem 1.2rem;
  border-radius:999px;
  border:1px solid rgba(200,151,58,.35);
  color:var(--dark);
  background:rgba(200,151,58,.06);
  backdrop-filter:blur(6px);
  transition:background .2s ease,border-color .2s ease,transform .2s ease,box-shadow .2s ease;
}
.deal-link:hover{
  background:var(--gold);
  border-color:var(--gold);
  color:var(--dark);
  transform:translateY(-1px);
  box-shadow:0 14px 32px rgba(200,151,58,.45);
}
.deal-badge{
  position:absolute;
  top:1.1rem;
  right:1.1rem;
  font-size:.7rem;
  text-transform:uppercase;
  letter-spacing:.12em;
  background:rgba(200,151,58,.16);
  border-radius:999px;
  padding:.25rem .7rem;
  color:var(--gold);
  font-weight:600;
}

.deals-updated{
  margin-top:.45rem;
  font-size:.82rem;
  opacity:.6;
}
.deals-more-wrap{
  display:flex;
  justify-content:center;
  margin-top:1.6rem;
}
.deals-more{
  border:1px solid rgba(200,151,58,.35);
  background:rgba(200,151,58,.06);
  color:var(--dark);
  padding:.75rem 1.3rem;
  border-radius:999px;
  cursor:pointer;
  font-family:'DM Sans',sans-serif;
  font-size:.86rem;
  font-weight:600;
  transition:background .2s ease,border-color .2s ease,transform .2s ease,box-shadow .2s ease;
}
.deals-more:hover{
  background:var(--gold);
  border-color:var(--gold);
  transform:translateY(-1px);
  box-shadow:0 14px 32px rgba(200,151,58,.45);
}

/* Deals refresh button */
.deals-label-row{
  display:flex;align-items:center;gap:.8rem;
}
.deals-refresh-btn{
  border:1px solid rgba(200,151,58,.35);
  background:rgba(200,151,58,.06);
  color:var(--dark);
  border-radius:999px;
  padding:.42rem .95rem;
  cursor:pointer;
  font-family:'DM Sans',sans-serif;
  font-size:.78rem;
  font-weight:700;
  transition:background .2s ease,border-color .2s ease,transform .2s ease,box-shadow .2s ease;
}
.deals-refresh-btn:hover{
  background:var(--gold);
  border-color:var(--gold);
  transform:translateY(-1px);
  box-shadow:0 14px 32px rgba(200,151,58,.25);
}
.deals-refresh-btn.spinning{
  animation:siSpin 1s linear infinite;
}
@keyframes siSpin{
  to{transform:rotate(360deg)}
}

/* NEWSLETTER */
.newsletter{background:#11110f;color:var(--cream);padding:3rem 3rem 3.2rem;margin-top:4rem}
.newsletter-inner{max-width:1100px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:2rem;flex-wrap:wrap}
.newsletter-copy h2{font-family:'Playfair Display',serif;font-size:1.6rem;margin-bottom:.5rem}
.newsletter-copy p{font-size:.9rem;opacity:.6;max-width:420px}
.newsletter-form{display:flex;flex-wrap:wrap;gap:.7rem;align-items:center;min-width:260px}
.newsletter-input{flex:1;min-width:200px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.14);border-radius:999px;padding:.7rem 1.1rem;color:var(--cream);font-family:'DM Sans',sans-serif;font-size:.86rem;outline:none}
.newsletter-input::placeholder{color:rgba(245,240,232,.3)}
.newsletter-btn{background:var(--gold);color:var(--dark);border:none;border-radius:999px;padding:.75rem 1.5rem;font-size:.86rem;font-weight:500;cursor:pointer;transition:background .2s,transform .2s,box-shadow .2s}
.newsletter-btn:hover{background:var(--gold-light);transform:translateY(-1px);box-shadow:0 12px 26px rgba(200,151,58,.4)}
.newsletter-thanks{max-width:1100px;margin:.9rem auto 0;font-size:.8rem;opacity:.75}

/* BACK TO TOP */
.back-to-top{position:fixed;right:1.6rem;bottom:1.6rem;width:44px;height:44px;border-radius:50%;background:var(--gold);color:var(--dark);border:none;display:flex;align-items:center;justify-content:center;box-shadow:0 10px 25px rgba(0,0,0,.18);cursor:pointer;opacity:0;pointer-events:none;transform:translateY(10px);transition:opacity .25s,transform .25s,background .2s;z-index:210}
.back-to-top.visible{opacity:1;pointer-events:auto;transform:translateY(0)}
.back-to-top:hover{background:var(--gold-light)}

/* COOKIE BANNER */
.cookie-banner{position:fixed;left:1.2rem;right:1.2rem;bottom:1.2rem;background:rgba(245,240,232,.98);border:1px solid var(--border);border-radius:1.1rem;padding:1rem 1.4rem;display:flex;align-items:flex-start;gap:1rem;box-shadow:0 18px 40px rgba(0,0,0,.18);z-index:220;font-size:.8rem}
.cookie-banner.hidden{display:none}
.cookie-text-title{font-weight:600;margin-bottom:.2rem;font-size:.8rem}
.cookie-text-body{opacity:.7;line-height:1.6}
.cookie-actions{display:flex;flex-wrap:wrap;gap:.5rem;margin-left:auto}
.cookie-btn{border-radius:999px;border:1px solid var(--border);padding:.45rem 1.1rem;font-size:.78rem;cursor:pointer;font-family:'DM Sans',sans-serif;background:transparent;color:var(--dark);transition:background .2s,color .2s,border-color .2s}
.cookie-btn.primary{background:var(--gold);color:var(--dark);border-color:var(--gold)}
.cookie-btn.primary:hover{background:var(--gold-light);border-color:var(--gold-light)}
.cookie-btn.secondary:hover{background:rgba(200,151,58,.08);border-color:var(--gold)}
.cookie-prefs{margin-top:.6rem;padding:.7rem .9rem;border-radius:.8rem;background:rgba(0,0,0,.02);border:1px dashed var(--border);display:none;font-size:.78rem}
.cookie-prefs.open{display:block}
.cookie-pref-row{display:flex;align-items:center;gap:.5rem;margin-top:.35rem}
.cookie-pref-row label{cursor:pointer}

/* SCROLL ANIMATIONS */
.reveal{opacity:0;transform:translateY(18px);transition:opacity .5s ease,transform .5s ease}
.reveal.visible{opacity:1;transform:translateY(0)}
/* Category pages (#catDealsGrid): no IntersectionObserver — .reveal would stay invisible but links still clickable */
#catDealsGrid a.product-card.reveal{
  opacity:1;
  transform:translateY(0);
}

/* RESPONSIVE */
@media(max-width:900px){
  nav{padding:1rem 1.5rem}
  nav ul{display:none}
  .hamburger{display:flex}
  .hero{padding:7rem 1.5rem 3rem}
  .features{padding:4.5rem 1.5rem}
  .features-grid{grid-template-columns:1fr 1fr}
  .deals-grid{grid-template-columns:1fr 1fr}
  .chat-section{padding:4.5rem 1.5rem}
  .analyse-section{padding:4.5rem 1.5rem 3.0rem}
  .chat-container{max-width:1040px}
  .chat-messages{min-height:460px;max-height:700px}
  .how-section{padding:4.5rem 1.5rem}
  .steps{grid-template-columns:1fr 1fr}
  .step-line{display:none}
  footer{padding:3rem 1.5rem 2rem}
  .hero-stats{gap:2rem}
}
@media(max-width:540px){
  .features-grid{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .hero-stats{flex-wrap:wrap;gap:1.5rem}
  .deals-grid{grid-template-columns:1fr}
  .deals-label-row{flex-wrap:wrap}
  .newsletter{padding:2.4rem 1.5rem 2.6rem}
  .cookie-banner{flex-direction:column;align-items:flex-start}
  .analyse-card{grid-template-columns:1fr}
  .analyse-img{height:160px}
  .analyse-proscons{grid-template-columns:1fr}
  .chat-messages{min-height:360px;max-height:520px}
  nav{padding:1rem 1rem}
  .lang-switcher{display:none}
  .deals-grid .product-card{min-width:0;max-width:100%}
  .compare-section{padding:4.5rem 1.5rem 3.0rem}
  .compare-products{grid-template-columns:1fr}
  .compare-img{height:160px}
}


/* ─────────────────────────────────────────
   CHAT: affiliate links + product cards
   ───────────────────────────────────────── */
.api-note{display:none!important}

.chat-link{
  color:var(--gold-light);font-weight:600;
  text-decoration:underline;text-underline-offset:3px;
  transition:opacity .2s;
}
.chat-link:hover{opacity:.65}
.msg.user .chat-link{color:var(--dark)}

/* Row container */
.product-cards-row{
  display:flex;gap:1.05rem;
  padding:.6rem 0 .4rem;
  overflow-x:auto;width:100%;
  flex-wrap:nowrap;
  scrollbar-width:thin;
  scrollbar-color:rgba(200,151,58,.35) transparent;
}
.product-cards-row::-webkit-scrollbar{height:4px}
.product-cards-row::-webkit-scrollbar-thumb{background:rgba(200,151,58,.35);border-radius:2px}

/* Card */
.product-card{
  display:flex;flex-direction:column;
  min-width:280px;max-width:320px;flex-shrink:0;
  border-radius:1.15rem;overflow:hidden;
  text-decoration:none;color:var(--cream);
  background:linear-gradient(155deg,rgba(255,255,255,.1) 0%,rgba(255,255,255,.04) 100%);
  border:1px solid rgba(200,151,58,.25);
  box-shadow:0 4px 18px rgba(0,0,0,.25);
  transition:transform .28s cubic-bezier(.22,.68,0,1.2),
             box-shadow .28s,border-color .28s;
  position:relative;
}
.product-card::before{
  content:'';
  pointer-events:none;
  position:absolute;
  inset:0;
  padding:1px;
  border-radius:inherit;
  background:linear-gradient(135deg,rgba(200,151,58,.55),rgba(200,151,58,0) 55%,rgba(255,255,255,.35));
  -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  opacity:.35;
}
.product-card::after{
  content:'';pointer-events:none;
  position:absolute;inset:0;border-radius:inherit;
  background:linear-gradient(135deg,rgba(200,151,58,.07) 0%,transparent 55%);
}
.product-card:hover{
  transform:translateY(-6px) scale(1.015);
  border-color:rgba(200,151,58,.7);
  box-shadow:0 18px 40px rgba(0,0,0,.45),
             0 0 0 1px rgba(200,151,58,.18),
             inset 0 1px 0 rgba(255,255,255,.08);
}
.product-card:hover::before{opacity:.6;}

/* White product cards: deals + chat (matches typical white-bg product photos; overrides base .product-card above) */
a.product-card.deal-product-card,
.product-cards-msg .product-card{
  background:#fff;
  color:var(--dark);
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 6px 28px rgba(0,0,0,.08),0 1px 0 rgba(0,0,0,.03);
}
a.product-card.deal-product-card::before,
.product-cards-msg .product-card::before{
  opacity:0;
}
a.product-card.deal-product-card::after,
.product-cards-msg .product-card::after{
  background:transparent;
}
a.product-card.deal-product-card:hover,
.product-cards-msg .product-card:hover{
  transform:translateY(-5px) scale(1.012);
  border-color:rgba(200,151,58,.32);
  box-shadow:0 14px 40px rgba(0,0,0,.1),0 0 0 1px rgba(200,151,58,.12);
}
a.product-card.deal-product-card:hover::before,
.product-cards-msg .product-card:hover::before{
  opacity:0;
}

a.product-card.deal-product-card .pc-img-wrap,
.product-cards-msg .product-card .pc-img-wrap{
  background:#fff;
}
a.product-card.deal-product-card .pc-img,
.product-cards-msg .product-card .pc-img{
  background:#fff;
}

/* Heart button: readable on white cards */
a.product-card.deal-product-card .pc-heart,
.product-cards-msg .product-card .pc-heart{
  background:rgba(255,255,255,.95);
  border-color:rgba(200,151,58,.42);
  color:var(--dark);
  box-shadow:0 2px 10px rgba(0,0,0,.08);
}
a.product-card.deal-product-card .pc-heart:hover,
.product-cards-msg .product-card .pc-heart:hover{
  background:#fff;
  border-color:rgba(200,151,58,.55);
}

/* Chat product cards: dark text on white */
.product-cards-msg .product-card .pc-title{
  color:rgba(26,26,24,.88);
}
.product-cards-msg .product-card .pc-rating-num{
  color:rgba(26,26,24,.42);
}
.product-cards-msg .product-card .pc-cta{
  color:rgba(26,26,24,.72);
}
.product-cards-msg .product-card:hover .pc-cta{
  color:rgba(26,26,24,.95);
}
.product-cards-msg .product-card .pc-alt-links a{
  color:rgba(26,26,24,.55);
}
.product-cards-msg .product-card .pc-alt-links a:hover{
  color:var(--gold);
}
.product-cards-msg .product-card .pc-img-wrap::after{
  background:transparent;
}

/* Deal cards: typography on any page (index .deals also uses .deals overrides below) */
a.product-card.deal-product-card .pc-title{
  color:rgba(26,26,24,.82);
}
a.product-card.deal-product-card .pc-rating-num{
  color:rgba(26,26,24,.45);
}
a.product-card.deal-product-card .pc-price{
  color:var(--gold);
}
a.product-card.deal-product-card .pc-cta{
  color:rgba(26,26,24,.72);
}
a.product-card.deal-product-card:hover .pc-cta{
  color:rgba(26,26,24,.95);
}

/* si-offer-card: white elevated card (category pages rely on style.css; index also has inline !important) */
#dealsGrid a.si-offer-card.product-card,
#catDealsGrid a.si-offer-card.product-card{
  background:#fff;
  color:#1a1a18;
  border:1px solid rgba(0,0,0,.09);
  border-radius:1.125rem;
  box-shadow:0 1px 3px rgba(0,0,0,.08),0 8px 24px rgba(0,0,0,.06);
}
#dealsGrid a.si-offer-card.product-card::before,
#dealsGrid a.si-offer-card.product-card::after,
#catDealsGrid a.si-offer-card.product-card::before,
#catDealsGrid a.si-offer-card.product-card::after{
  display:none;
}
#dealsGrid a.si-offer-card.product-card:hover,
#catDealsGrid a.si-offer-card.product-card:hover{
  transform:translateY(-4px);
  border-color:rgba(200,151,58,.35);
  box-shadow:0 12px 36px rgba(0,0,0,.08),0 0 0 1px rgba(200,151,58,.18);
}
#dealsGrid a.si-offer-card .pc-img-wrap,
#catDealsGrid a.si-offer-card .pc-img-wrap{
  background:#fff;
  border-bottom:1px solid rgba(0,0,0,.06);
}
.pc-price-old{
  font-family:'Playfair Display',serif;
  font-size:.85rem;
  font-weight:600;
  text-decoration:line-through;
  color:rgba(26,26,24,.42);
  margin-right:.45rem;
}

/* Image area */
.pc-img-wrap{
  width:100%;height:200px;
  background:transparent;
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;position:relative;flex-shrink:0;
}
/* Chat AI product cards: stable image frame (deals section keeps fixed heights below) */
.product-cards-msg .pc-img-wrap{
  height:auto;
  aspect-ratio:4/3;
  min-height:160px;
  max-height:260px;
}
.pc-img-wrap::after{
  content:'';position:absolute;bottom:0;left:0;right:0;height:28px;
  background:linear-gradient(transparent,rgba(26,26,24,.7));
  pointer-events:none;
}

/* Offers of the Day: avoid extra overlay that can look like a "box" behind images */
.deals .deal-product-card .pc-img-wrap::after{
  background:transparent;
}
.pc-img{
  width:100%;height:100%;object-fit:contain;
  padding:.6rem;transition:transform .32s ease;
  background:transparent;
}
.product-card:hover .pc-img{transform:scale(1.08)}
.pc-img-ph{font-size:3rem;opacity:.4}

/* Body */
.pc-body{
  padding:.72rem .82rem .82rem;
  display:flex;flex-direction:column;gap:.3rem;flex:1;
}
.pc-title{
  font-size:.78rem;line-height:1.45;
  color:rgba(245,240,232,.8);
  display:-webkit-box;-webkit-line-clamp:3;
  -webkit-box-orient:vertical;overflow:hidden;
  flex:1;
}

/* Stars */
.pc-stars{
  display:flex;align-items:center;gap:.22rem;
  color:var(--gold);font-size:.75rem;letter-spacing:.04em;
}
.pc-rating-num{
  color:rgba(245,240,232,.45);font-size:.63rem;
  font-family:'DM Sans',sans-serif;
}

/* Price + Prime row */
.pc-footer{
  display:flex;align-items:center;gap:.4rem;
  flex-wrap:wrap;margin-top:.05rem;
}
.pc-price{
  font-family:'Playfair Display',serif;
  font-size:1.18rem;font-weight:700;
  color:var(--gold-light);letter-spacing:-.015em;
  line-height:1;
}

/* Ensure deal cards stay readable on the light Deals section */
.deals .deal-product-card .pc-title{color:rgba(26,26,24,.82) !important;}
.deals .deal-product-card .pc-price{color:var(--gold) !important;}
.deals .deal-product-card .pc-cta{color:rgba(26,26,24,.72) !important;}
.deals .deal-product-card:hover .pc-cta{color:rgba(26,26,24,.95) !important;}
.deals .deal-product-card .pc-rating-num{color:rgba(26,26,24,.45) !important;}
.deals .deal-product-card .pc-title{opacity:1 !important;visibility:visible !important;}
.deals .deal-product-card .pc-price{opacity:1 !important;visibility:visible !important;}
.pc-prime{
  font-size:.58rem;font-weight:700;letter-spacing:.05em;
  text-transform:uppercase;
  background:rgba(0,168,225,.15);
  color:#4fc3f7;
  border:1px solid rgba(0,168,225,.28);
  padding:.12rem .42rem;border-radius:.32rem;
}

/* Source + discount badges (Marketplace support) */
.pc-badges{
  display:flex;
  flex-wrap:wrap;
  gap:.35rem;
  margin:.2rem 0 .25rem;
}
.pc-source-badge{
  font-size:.6rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:.22rem .55rem;
  border-radius:999px;
  border:1px solid rgba(200,151,58,.35);
  background:rgba(200,151,58,.12);
  color:var(--gold);
}
.pc-source-amazon{background:rgba(200,151,58,.18);border-color:rgba(200,151,58,.42);}
.pc-source-aliexpress{
  background:rgba(244,67,54,.14);
  border-color:rgba(244,67,54,.30);
  color:#ff7b73;
}
.pc-source-ebay{
  background:rgba(0,168,225,.12);
  border-color:rgba(0,168,225,.28);
  color:#4fc3f7;
}
.pc-source-etsy{
  background:rgba(76,175,80,.12);
  border-color:rgba(76,175,80,.26);
  color:#81c784;
}
.pc-discount-badge{
  font-size:.6rem;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  padding:.22rem .55rem;
  border-radius:999px;
  border:1px solid rgba(200,151,58,.35);
  background:rgba(200,151,58,.10);
  color:var(--gold-light);
}

/* CTA + alt platforms */
.pc-cta{
  margin-top:.45rem;
  font-size:.68rem;font-weight:700;
  color:var(--gold);letter-spacing:.06em;
  text-transform:uppercase;
  display:flex;align-items:center;gap:.3rem;
  transition:gap .2s,color .2s;
}
.product-card:hover .pc-cta{gap:.55rem;color:var(--gold-light)}

.pc-alt-links{
  margin-top:.28rem;
  display:flex;flex-wrap:wrap;gap:.35rem;
  font-size:.62rem;
  opacity:.9;
}
.pc-alt-links a{
  color:rgba(245,240,232,.7);
  text-decoration:none;
}
.pc-alt-links a:hover{
  color:var(--gold-light);
  text-decoration:underline;
}

/* Let the product-card "message" use full chat width */
.product-cards-msg .msg-bubble{
  max-width:100%;
  padding:1.05rem 1.15rem;
}

/* Mobile / small tablet: stack AI product cards vertically (scroll chat down for each) */
@media(max-width:768px){
  .product-cards-msg .product-cards-row{
    flex-direction:column;
    flex-wrap:nowrap;
    overflow-x:visible;
    gap:.85rem;
    width:100%;
    padding:.45rem 0 .35rem;
  }
  .product-cards-msg .product-card{
    width:100%;
    min-width:0;
    max-width:100%;
    flex-shrink:0;
  }
  .product-cards-msg .msg-bubble{
    width:100%;
    min-width:0;
    box-sizing:border-box;
  }
  .product-cards-msg.msg{
    align-items:flex-start;
    max-width:100%;
  }
  .product-cards-msg .pc-img-wrap{
    min-height:140px;
    max-height:220px;
  }
  /* Avoid large hover lift on touch (tap targets) */
  .product-cards-msg .product-card:hover{
    transform:none;
    box-shadow:0 6px 24px rgba(0,0,0,.1);
  }
  .product-cards-msg .product-card:active{
    transform:translateY(-1px);
  }
}

/* Optional label above card row */
.pc-label{
  font-size:.72rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(245,240,232,.55);
  margin-bottom:.65rem;
}

.pc-chips{
  display:flex;
  flex-wrap:wrap;
  gap:.45rem;
  margin:-.1rem 0 .8rem;
}
.pc-chip{
  appearance:none;
  border:1px solid rgba(200,151,58,.22);
  background:rgba(200,151,58,.10);
  color:rgba(245,240,232,.78);
  padding:.35rem .7rem;
  border-radius:999px;
  font:inherit;
  font-size:.72rem;
  cursor:pointer;
  transition:transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.pc-chip:hover{
  background:rgba(200,151,58,.18);
  border-color:rgba(200,151,58,.45);
  color:rgba(245,240,232,.92);
  transform:translateY(-1px);
}
.pc-chip:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:2px;
}

/* Price disclaimer (chat cards + analyse/compare hints) */
.pc-disclaimer{
  font-size:.65rem;
  line-height:1.45;
  color:rgba(245,240,232,.45);
  margin:-.35rem 0 .75rem;
  max-width:42rem;
}
.section-hint{
  font-size:.78rem;
  line-height:1.5;
  color:rgba(245,240,232,.48);
  margin:-.35rem auto 1rem;
  max-width:36rem;
  text-align:center;
}

/* Recent question chips */
.recent-chat-wrap{
  display:flex;
  flex-direction:column;
  gap:.4rem;
  margin:.35rem 0 .6rem;
  padding:0 .15rem;
}
.recent-chat-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.5rem;
  flex-wrap:wrap;
  width:100%;
}
.recent-chat-label{
  font-size:.68rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:rgba(245,240,232,.42);
  flex-shrink:0;
}
.recent-clear{
  appearance:none;
  border:none;
  background:transparent;
  color:rgba(245,240,232,.45);
  font-size:.65rem;
  letter-spacing:.04em;
  text-decoration:underline;
  text-underline-offset:2px;
  cursor:pointer;
  padding:.2rem .35rem;
  font-family:inherit;
  flex-shrink:0;
}
.recent-clear:hover{color:rgba(245,240,232,.78)}
.recent-clear:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:2px;
  border-radius:4px;
}
.recent-chat-chips{
  display:flex;
  flex-wrap:wrap;
  gap:.4rem;
  width:100%;
  min-width:0;
}
.recent-chip{
  appearance:none;
  border:1px solid rgba(200,151,58,.18);
  background:rgba(26,26,24,.45);
  color:rgba(245,240,232,.72);
  padding:.32rem .72rem;
  border-radius:999px;
  font:inherit;
  font-size:.72rem;
  cursor:pointer;
  max-width:100%;
  text-align:left;
  transition:background .15s ease,border-color .15s ease,color .15s ease;
}
.recent-chip:hover{
  background:rgba(200,151,58,.12);
  border-color:rgba(200,151,58,.35);
  color:rgba(245,240,232,.9);
}
.recent-chip:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:2px;
}

/* Respect OS “reduce motion” (hero, chat, loaders, etc.) */
@media (prefers-reduced-motion: reduce) {
  html{scroll-behavior:auto !important;}
  .hero-orb,.hero-content,.hero-stats,.hero-badge::before,.chat-dot,.msg,.typing-dot{animation:none !important;}
  .typing-dot{opacity:.65;}
  .deals-refresh-btn.spinning{animation:none !important;}
  .deal-card-skeleton,.deal-card-skeleton::after{animation:none !important;}
  .pc-heart.pulse{animation:none !important;}
  .toast{transition:opacity .15s ease,transform .15s ease;}
  #scrollProgress{transition:none !important;}
}
