:root {
  --bg-page:#ffffff;
  --bg-elev:#ffffff;
  --text-main:#0a0a0a;
  --text-dim:#555;
  --line:#00000022;
  --card-line:#0000002e;
  --accent:#c2a464;
  --radius:14px;
  --shadow-card:0 28px 54px rgba(0,0,0,.08);
  --max-width:1200px;
  --input-bg:#fff;
  --input-text:#0a0a0a;
  --input-border:#00000033;
  --link:#0a0a0a;
  /* высота шапки + запас */
  --topbar-offset:150px;
}

/* dark */
[data-theme="dark"] {
  --bg-page:#121212;     /* фон страницы (было 070707 — слишком чёрный) */
  --bg-elev:#1a1a1a;     /* фон карточек/блоков (было 0f0f0f) */
  --text-main:#f1f1f1;
  --text-dim:#bbbbbb;
  --line:#ffffff1f;
  --card-line:#ffffff33;
  --shadow-card:0 28px 54px rgba(0,0,0,.65);
  --input-bg:#121212;
  --input-text:#efefef;
  --input-border:#ffffff33;
  --link:#f1f1f1;
}


html{
  font-size:14px;  /* аккуратный “зум-аут” */
}




*{box-sizing:border-box;margin:0;padding:0;}
html{
  scroll-behavior:smooth;
  scroll-padding-top:var(--topbar-offset);
}
body{
  background:var(--bg-page);
  color:var(--text-main);
  font-family:"Montserrat",system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
  line-height:1.65;
}
img{max-width:100%;height:auto;display:block;}
a{color:var(--link);text-decoration:none;}
a:hover{color:var(--accent);}





.editorial-card,
.info-card,
.contact-card{
  background:var(--bg-elev);
  border:1px solid var(--card-line);
  border-radius:var(--radius);
  box-shadow:var(--shadow-card);
  padding:28px;
  opacity:0;
  transform:translateY(22px);
  transition:all .6s cubic-bezier(.2,.7,.3,1);
}

.editorial-card.visible,
.info-card.visible,
.contact-card.visible{
  opacity:1;
  transform:translateY(0);
}


/* TOP NAV (fixed) */
.topbar {
  position:fixed;
  top:0; left:0; right:0;
  background:rgba(255,255,255,0.88);
  -webkit-backdrop-filter:blur(12px);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
  z-index:1000;
  font-size:.85rem;
  text-transform:uppercase;
  letter-spacing:.08em;
}

[data-theme="dark"] .topbar {
  background:rgba(24,24,24,0.85); /* мягче, приятнее */
  border-bottom:1px solid #ffffff22; /* чуть выразительнее линия */
}

.topbar-inner{
  max-width:var(--max-width);
  margin:0 auto;
  padding:14px 22px;
  display:flex;
  flex-wrap:wrap;        /* бренд+меню в первой строке, tools во второй */
  align-items:center;
  gap:14px;
}

/* бренд и меню в ОДНОЙ строке */
.brand{
  font-family:"Playfair Display",Georgia,serif;
  font-size:1.05rem;
  font-weight:600;
  letter-spacing:.07em;
  white-space:nowrap;

  flex:0 0 auto;         /* больше НЕ на всю ширину */
}

.nav-links{
  flex:1 1 auto;         /* занимает оставшееся место в первой строке */
  display:flex;
  flex-wrap:wrap;
  gap:30px;
  align-items:center;
  justify-content:center;/* меню по центру */
  margin-left: 160px; /* поставь сколько тебе нравится */
}

/* 2-я строка: языки + тема + корзина */
.right-tools{
  flex:1 1 100%;         /* отдельная строка */
  display:flex;
  align-items:center;
  gap:16px;
}

/* остальное (lang-switch, theme-toggle, cart-icon) как у тебя уже: */
.lang-switch{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
  font-size:.85rem;
}
.lang-switch button{
  display:flex;
  align-items:center;
  gap:6px;
  cursor:pointer;
  background:transparent;
  border:1px solid transparent;
  padding:6px 10px;
  border-radius:999px;
  color:var(--text-main);
}
.lang-switch .current-lang{
  color:var(--accent);
  border-color:var(--line);
}
.flag{font-size:1rem;}

.theme-toggle button{
  border:1px solid var(--line);
  background:transparent;
  padding:6px 10px;
  border-radius:999px;
  cursor:pointer;
  font-size:.78rem;
  letter-spacing:.06em;
  color:var(--text-main);
}

/* корзина уезжает вправо во второй строке */
.cart-icon{
  margin-left:auto;
}

.nav-links a {
  padding:8px 12px;
  border-radius:999px;
  transition:background .2s,color .2s;
}
.nav-links a.active {
  color:var(--accent);
}

/* 2-я строка: языки + тема слева, корзина справа */
.right-tools {
  flex:1 1 100%;         /* третья строка */
  display:flex;
  align-items:center;
  gap:16px;
}

/* языки */
.lang-switch{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
  font-size:.85rem;
}
.lang-switch button{
  display:flex;
  align-items:center;
  gap:6px;
  cursor:pointer;
  background:transparent;
  border:1px solid transparent;
  padding:6px 10px;
  border-radius:999px;
  color:var(--text-main);   /* ВАЖНО: только через переменную */
}
.lang-switch .current-lang{
  color:var(--accent);
  border-color:var(--line);
}
.flag{font-size:1rem;}

/* тема */
.theme-toggle button{
  border:1px solid var(--line);
  background:transparent;
  padding:6px 10px;
  border-radius:999px;
  cursor:pointer;
  font-size:.78rem;
  letter-spacing:.06em;
  color:var(--text-main);   /* тоже через переменную */
}

/* корзина уезжает вправо на этой же строке */
.cart-icon{
  margin-left: 787px; /* вместо auto */
}
/**/
.cart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    padding: 6px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;

    background: var(--bg-elev);
    color: var(--text-main);
    font-size: .85rem;

    cursor: pointer;
    transition: 0.2s;
}
.cart-icon:hover {
    border-color: var(--accent);
}
.cart-icon svg {
    width: 18px;
    height: 18px;
}
.cart-count {
    background: var(--accent);
    color: #fff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:.7rem;
}
/**/

/* Корзина — иконка всегда красится через переменную */
.cart-icon-svg,
.cart-icon-svg path,
.cart-icon-svg circle {
  fill: var(--text-main) !important;
}
.cart-icon:hover .cart-icon-svg path,
.cart-icon:hover .cart-icon-svg circle {
  fill: var(--accent) !important;
}


/* PAGE */
.page{
  max-width:var(--max-width);
  margin:0 auto;
  padding:calc(var(--topbar-offset) + 30px) 24px 110px;
}
/* спец-отступ только для коллекции */
.page-collection{
  padding-top: 121px; /* подгони 130/140/150 как тебе по глазу */
}

/* HERO */
.hero{
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 34px 68px rgba(0,0,0,.12);
  margin:0 auto 108px;
  max-width:1100px;
  background:var(--bg-elev);
}
.hero-content{
  display:flex;
  flex-wrap:wrap;
  align-items:stretch;
}
.hero-text{
  flex:1 1 50%;
  min-width:320px;
  padding:86px 62px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.hero-eyebrow{
  font-size:.78rem;
  font-weight:600;
  color:var(--accent);
  letter-spacing:.15em;
  margin-bottom:16px;
}
.hero-title{
  font-family:"Playfair Display",serif;
  font-size:2.4rem;
  font-weight:600;
  line-height:1.2;
  letter-spacing:.03em;
  text-transform:uppercase;
  margin-bottom:20px;
}
.hero-desc{
  font-size:1rem;
  color:var(--text-dim);
  line-height:1.75;
  margin-bottom:32px;
}
.btn{
  display:inline-block;
  padding:12px 20px;
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:.15em;
  border:1px solid var(--text-main);
  color:var(--text-main);
  background:transparent;
  font-weight:600;
  border-radius:999px;
  transition:.25s;
}
/* общий курсор для всех кнопок */
.btn,
.btn-sm,
button.btn,
button.btn-sm,
.btn-icon {
  cursor: pointer;
}

/* маленькие кнопки (Collection / cards) */
.btn-sm,
.btn.small{
  font-size:.72rem;
  padding:8px 10px;
  border-radius:10px;
  border:1px solid var(--card-line);
  background:var(--bg-elev);
  cursor:pointer;
  color:var(--text-main);
}
/* залитые (primary) — BUY */
.btn.primary,
.btn-sm.primary{
  border-color:var(--text-main);
  background:var(--text-main);
  color:var(--bg-page);
  transition:.25s;
}
/* hover для обычных (Wishlist, второстепенные) */
.btn:hover,
.btn-sm:hover,
.btn.small:hover{
  background:var(--text-main);
  color:var(--bg-page);
}
/* hover для BUY (primary) */
.btn.primary:hover,
.btn-sm.primary:hover{
  background:var(--accent);
  border-color:var(--accent);
  color:var(--bg-page);
}

/* BUY — всегда золотая, поверх primary */
.buy-btn{
  background:var(--accent);
  border-color:var(--accent);
  color:#fff;
}
.buy-btn:hover{
  filter:brightness(1.05);
  transform:translateY(-1px);
}

/* Wishlist — круглая иконка‑сердце */
.btn-icon{
  width:34px;
  height:34px;
  border-radius:50%;
  border:1px solid var(--card-line);
  background:var(--bg-elev);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.25s;
}
.btn-icon svg{
  width:16px;
  height:16px;
  fill:var(--text-main);
}
.btn-icon:hover{
  background:var(--text-main);
}
.btn-icon:hover svg{
  fill:var(--bg-page);
}

.hero-image{
  flex:1 1 50%;
  min-width:320px;
  background:#000;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:54px 26px;
}
.hero-image img{
  width:72%;
  border-radius:12px;
  box-shadow:0 22px 44px rgba(0,0,0,.35);
  filter:brightness(.9);
  transition:.35s;
}
.hero-image img:hover{
  filter:brightness(1);
  transform:scale(1.02);
}

/* SECTION */
.section{margin-bottom:130px;}
.section-head{
  display:flex;
  align-items:flex-end;
  gap:12px;
  margin-bottom:42px;
}
.section-head h2{
  font-family:"Playfair Display",serif;
  font-size:1.12rem;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.section-head h2 a{
  color:inherit;
  text-decoration:none;
}
.section-head h2 a:hover{
  color:var(--accent);
}
.section-head .line{
  flex:1;
  height:1px;
  background:var(--line);
  transform:translateY(-4px);
}
/*
@media (min-width:900px){
  html{
    scroll-snap-type:y proximity;
  }
  .hero,
  .section{
    scroll-snap-align:start;
    scroll-snap-stop:always;
  }
}
*/

/* GRIDS / CARDS */
.grid-3{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(290px,1fr));
  gap:34px;
}
.grid-2{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(390px,1fr));
  gap:34px;
}

.piece-card,
.card{
  background:var(--bg-elev);
  border:1px solid var(--card-line);
  border-radius:var(--radius);
  box-shadow:var(--shadow-card);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  opacity:0;
  transform:translateY(22px);
  transition:all .6s cubic-bezier(.2,.7,.3,1);
}
.piece-card.visible,
.card.visible{opacity:1;transform:translateY(0);}
.piece-img,
.img{
  background:#111;
  aspect-ratio:3/4;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
}
.piece-img img,
.img img{
  max-width:100%;
  max-height:100%;
  object-fit:cover;
  border-radius:6px;
  box-shadow:0 16px 32px rgba(0,0,0,.4);
}
.piece-body,
.body{
  padding:20px 20px 24px;
}
.piece-title,
.title{
  font-family:"Playfair Display",serif;
  font-size:1rem;
  font-weight:600;
  text-transform:uppercase;
  margin-bottom:10px;
}
.piece-meta,
.meta{
  font-size:.8rem;
  color:var(--text-dim);
  margin-bottom:10px;
}
.piece-copy{
  font-size:.9rem;
  line-height:1.6;
  color:var(--text-main);
}
.piece-actions,
.row{
  display:flex;
  gap:8px;
  margin-top:6px;
}
.btn-sm,
.btn.small{
  font-size:.72rem;
  padding:8px 10px;
  border-radius:10px;
  border:1px solid var(--card-line);
  background:var(--bg-elev);
  cursor:pointer;
  color:var(--text-main);   /* ← ЭТО ГЛАВНОЕ */
}
.btn-sm.primary,
.btn.primary{
  border-color:var(--text-main);
  background:var(--text-main);
  color:var(--bg-page);
}

/* info-grid */
.info-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(330px,1fr));
  gap:34px;
}
.info-head{
  font-family:"Playfair Display",serif;
  font-size:.78rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.1em;
  margin-bottom:10px;
  color:var(--accent);
}
.info-title{
  font-family:"Playfair Display",serif;
  font-size:1.08rem;
  font-weight:600;
  margin-bottom:10px;
}

/* contact */
.contact-block{border-top:1px solid var(--line);padding-top:40px;}
.contact-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(370px,1fr));
  gap:30px;
}
.contact-card b{
  color:var(--accent);
  text-transform:uppercase;
  letter-spacing:.1em;
  font-size:.8rem;
}
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin:12px 0;
}
.form-row.single{grid-template-columns:1fr;}
label{
  font-size:.82rem;
  color:var(--text-dim);
  margin-bottom:4px;
  display:block;
}
input,textarea{
  width:100%;
  border:1px solid var(--input-border);
  background:var(--input-bg);
  color:var(--input-text);
  border-radius:10px;
  padding:10px 12px;
  font-size:.95rem;
}
textarea{min-height:120px;resize:vertical;}
.submit-row{display:flex;gap:10px;margin-top:10px;}
.small-note{
  font-size:.8rem;
  color:var(--text-dim);
  margin-top:8px;
}

/* footer */
.site-footer{
  text-align:center;
  font-size:.85rem;
  color:var(--text-dim);
  border-top:1px solid var(--line);
  padding:40px 24px 70px;
  margin-top:40px;
}

/* modal */
.modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:2000;
}
.modal.open{display:flex;}
.modal-card{
  width:min(780px,92vw);
  background:var(--bg-elev);
  color:var(--text-main);
  border-radius:16px;
  border:1px solid var(--line);
  box-shadow:0 40px 80px rgba(0,0,0,.45);
}
.modal-head{
  padding:12px 16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-bottom:1px solid var(--line);
}
.modal-body{
  padding:16px;
  display:grid;
  grid-template-columns:220px 1fr;
  gap:16px;
}
.modal-body img{
  width:100%;
  border-radius:10px;
  border:1px solid var(--line);
  background:#111;
}
.modal-meta{
  font-size:.85rem;
  color:var(--text-dim);
  margin-bottom:6px;
}
.modal-copy{
  font-size:.95rem;
  line-height:1.6;
}
.modal-close{
  border:none;
  background:transparent;
  cursor:pointer;
  font-size:22px;
  color:var(--text-main);
}
.modal-foot{
  padding:10px 16px 14px;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:flex-end;
}

/* ---------- CART / WISHLIST TABS IN PANEL ---------- */

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-tabs {
  display: flex;
  gap: 6px;
}

.cart-tab {
  border: none;
  background: transparent;
  cursor: pointer;

  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;

  padding: 6px 10px;
  border-radius: 999px;

  color: var(--text-dim);
  transition: .2s;
}

.cart-tab.active {
  background: var(--text-main);
  color: var(--bg-page);
}

/* по умолчанию wishlist скрыт */
#wishlistItems,
#wishlistEmpty {
  display: none;
}

/* режим: показываем корзину */
.cart-panel[data-mode="cart"] #cartItems,
.cart-panel[data-mode="cart"] #cartEmpty {
  display: block;
}
.cart-panel[data-mode="cart"] #wishlistItems,
.cart-panel[data-mode="cart"] #wishlistEmpty {
  display: none;
}

/* режим: показываем wishlist */
.cart-panel[data-mode="wishlist"] #cartItems,
.cart-panel[data-mode="wishlist"] #cartEmpty {
  display: none;
}
.cart-panel[data-mode="wishlist"] #wishlistItems,
.cart-panel[data-mode="wishlist"] #wishlistEmpty {
  display: block;
}

/* чуть компактнее айтемы wishlist */
#wishlistItems li {
  font-size: .84rem;
  padding: 4px 0;
}

/* cart sidebar */
.cart-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.42);
  display:flex;                  /* ВСЕГДА flex */
  align-items:stretch;
  justify-content:flex-end;
  z-index:2100;

  opacity:0;                     /* скрыта визуально */
  pointer-events:none;           /* клики не проходят */
  transition:opacity .25s ease;  /* плавное появление фона */
}

.cart-overlay.open{
  opacity:1;
  pointer-events:auto;
}

.cart-panel{
  width:min(360px,88vw);
  background:var(--bg-elev);
  color:var(--text-main);
  padding:20px 18px 16px;
  box-shadow:-12px 0 40px rgba(0,0,0,.35);
  border-left:1px solid var(--line);
  display:flex;
  flex-direction:column;
  gap:8px;

  transform:translateX(100%);                /* спрятана за правым краем */
  transition:transform .3s cubic-bezier(.2,.7,.3,1);
}



/* общая обёртка секций внутри панели */
.cart-section{
  margin-top: 10px;
}

/* по умолчанию спрячем wishlist, пусть стартует Cart */
.cart-section-wishlist{
  display:none;
}

/* когда панель в режиме CART */
.cart-panel[data-mode="cart"] .cart-section-cart{
  display:block;
}
.cart-panel[data-mode="cart"] .cart-section-wishlist{
  display:none;
}

/* когда панель в режиме WISHLIST */
.cart-panel[data-mode="wishlist"] .cart-section-cart{
  display:none;
}
.cart-panel[data-mode="wishlist"] .cart-section-wishlist{
  display:block;
}






/* когда overlay открыт — панель заезжает внутрь */
.cart-overlay.open .cart-panel{
  transform:translateX(0);
}

.cart-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.cart-title{
  font-family:"Playfair Display",serif;
  font-size:1.1rem;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.cart-close{
  border:none;
  background:transparent;
  cursor:pointer;
  font-size:20px;
  color:var(--text-main);
}
.cart-empty{
  font-size:.85rem;
  color:var(--text-dim);
  margin-top:6px;
}
.cart-items{
  list-style:none;
  padding:0;
  margin:4px 0 0;
  flex:1;
  overflow-y:auto;
  font-size:.86rem;
}
.cart-items li{
  padding:6px 0;
  border-bottom:1px solid var(--line);
}
.cart-actions{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-top:6px;
}

/* back to top */
.to-top{
  position:fixed;
  right:22px;
  bottom:22px;
  opacity:0;
  pointer-events:none;
  transform:translateY(8px);
  transition:.2s;
  z-index:1100;
}
.to-top.show{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}
.to-top button{
  background:var(--text-main);
  color:var(--bg-page);
  border:none;
  border-radius:999px;
  padding:12px 14px;
  cursor:pointer;
}

/* ---------- WISHLIST — HEART BUTTON ---------- */
.btn-icon.wishlist-btn {
  width: 44px;
  height: 44px;
  min-width: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: var(--bg-elev);
  border: 2px solid var(--card-line);

  cursor: pointer;
  transition: 0.22s ease;
}

.btn-icon.wishlist-btn svg {
  width: 22px;
  height: 22px;
  display: block;
}

.btn-icon.wishlist-btn svg path {
  fill: var(--text-main);
  transition: 0.22s ease;
}

/* hover */
.btn-icon.wishlist-btn:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}
.btn-icon.wishlist-btn:hover svg path {
  fill: var(--accent);
}

/* активное состояние (в wishlist) */
.btn-icon.wishlist-btn.active {
  border-color: var(--accent);
  background: var(--accent);
  transform: scale(1.03);
}
.btn-icon.wishlist-btn.active svg path {
  fill: #fff;
}

/* маленький "поп" при клике */
.btn-icon.wishlist-btn.pop {
  animation: wishlist-pop 0.18s ease-out;
}

@keyframes wishlist-pop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.12); }
  100% { transform: scale(1.03); }
}

/* тёмная тема — чуть другие цвета */
[data-theme="dark"] .btn-icon.wishlist-btn {
  border-color: #ffffff33;
  background: var(--bg-elev);
}
[data-theme="dark"] .btn-icon.wishlist-btn svg path {
  fill: #f5f5f5;
}
[data-theme="dark"] .btn-icon.wishlist-btn.active {
  background: var(--accent);
  border-color: var(--accent);
}
[data-theme="dark"] .btn-icon.wishlist-btn.active svg path {
  fill: #111;
}


/* responsive */
@media (max-width:900px){
  .topbar-inner{
    gap:10px;
    flex-wrap:wrap;
  }
  .nav-links{
    gap:18px;
    flex-wrap:wrap;    /* на мобилке можно переносить */
    justify-content:flex-start;
  }
  .hero-text{padding:56px 24px;}
  .page{padding:112px 16px 80px;}
  .hero{margin-bottom:86px;}
  .modal-body{grid-template-columns:1fr;}
  .form-row{grid-template-columns:1fr;}
}
html, body {
  scroll-behavior: smooth !important;
}
html {
  scroll-behavior: smooth !important;
}
/* ---------- BIGGER BUY + VIEW DETAILS BUTTONS ---------- */
.piece-actions .btn-sm {
  padding: 12px 18px;       /* было мелкое — теперь норм */
  font-size: 0.85rem;
  border-radius: 12px;
}

/* Primary BUY button */
.piece-actions .btn-sm.primary {
  border-width: 2px;
}

/* ---------- WISHLIST ROUND BUTTON ---------- */
.btn-icon.wishlist-btn {
  width: 44px;              /* увеличили кнопку */
  height: 44px;
  min-width: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: var(--bg-elev);
  border: 2px solid var(--card-line);
  cursor: pointer;

  transition: 0.25s;
}

/* Center + enlarge heart icon */
.btn-icon.wishlist-btn svg {
  width: 22px;
  height: 22px;
  display: block;
}

/* HEART COLOR */
.btn-icon.wishlist-btn svg path {
  fill: var(--text-main);
  transition: 0.25s;
}

/* HOVER EFFECT */
.btn-icon.wishlist-btn:hover {
  border-color: var(--accent);
}

.btn-icon.wishlist-btn:hover svg path {
  fill: var(--accent);
}

/* DARK MODE FIX */
[data-theme="dark"] .btn-icon.wishlist-btn {
  border-color: #ffffff33;
}

[data-theme="dark"] .btn-icon.wishlist-btn svg path {
  fill: #fff;
}
