/* ══════════════════════════════════════════════════════
   NOVUS — shop.css  (product grid + single product)
   ══════════════════════════════════════════════════════ */

.novus-toast {
    position: fixed; bottom: 2rem; left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--plum); color: #fff;
    padding: .75rem 1.5rem; border-radius: 100px;
    font-family: var(--font-sans); font-size: .75rem; letter-spacing: .1em;
    box-shadow: 0 8px 32px rgba(45,10,78,.25);
    opacity: 0; transition: opacity .35s, transform .35s var(--ease);
    z-index: 9999; pointer-events: none; white-space: nowrap;
}
.novus-toast.is-visible       { opacity: 1; transform: translateX(-50%) translateY(0); }
.novus-toast--info            { background: var(--plum); }
.novus-toast--error           { background: #b91c1c; }

/* hide WooCommerce messages (we'll use custom toasts instead) */
.woocommerce-message{
  display: none!important;
}

/* ══════════════════════════════════════════════════════
   WISHLIST BUTTONS (YITH) — overrides for better integration
   ══════════════════════════════════════════════════════ */
.pd-wishlist-icon .yith-wcwl-add-to-wishlist-button__label {
  display: none !important;
}

.pd-wishlist-icon .yith-wcwl-add-to-wishlist,
.pd-wishlist-icon .addtowishlist {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px;
  width: 56px;
  height: 56px;
  text-decoration: none !important;
}

/* If YITH outputs icon elements */
.pd-wishlist-icon .yith-wcwl-icon,
.pd-wishlist-icon i,
.pd-wishlist-icon span {
  font-size: 0;
}

/* ── PAGE TABS ── */
.page-tabs {
  background: var(--cream);
  padding: 2rem 4rem;
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(107,33,168,0.1);
  position: sticky; top: 70px; z-index: 100;
  backdrop-filter: blur(10px);
}
.tab-btn {
  background: none; border: none;
  padding: 0.6rem 1.5rem;
  font-family: var(--font-sans); font-size: 0.68rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); cursor: none; transition: all 0.3s;
  border-bottom: 2px solid transparent; margin-bottom: -1px; font-weight: 400;
}
.tab-btn:hover, .tab-btn.active { color: var(--plum); border-bottom-color: var(--violet); }
.page-tabs-wrap .page        { display: none; }
.page-tabs-wrap .page.active { display: block; }


/* ══════════════════════════════════════════════════════
   SHOP HERO
   ══════════════════════════════════════════════════════ */
.shop-hero { padding: 10rem 4rem 5rem; background: var(--plum); text-align: center; }
.shop-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--cream); font-weight: 300; letter-spacing: 0.08em;
}
.shop-hero p { color: rgba(253,252,250,0.6); margin-top: 0.8rem; font-size: 0.9rem; }


/* ══════════════════════════════════════════════════════
   SHOP FILTERS + CONTENT
   ══════════════════════════════════════════════════════ */
.shop-filters {
  padding: 2rem 4rem; background: var(--cream);
  display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
  border-bottom: 1px solid rgba(107,33,168,0.1);
  position: sticky; top: 70px; z-index: 100;
}
.filter-label {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); font-weight: 400; margin-right: 0.5rem;
}
.filter-chip {
  background: none; border: 1px solid rgba(107,33,168,0.2);
  padding: 0.4rem 1rem; font-family: var(--font-sans);
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--charcoal); cursor: none; transition: all 0.3s;
  text-decoration: none; display: inline-block;
}
.filter-chip:hover, .filter-chip.active { background: var(--plum); border-color: var(--plum); color: var(--cream); }

.shop-content {
  padding: 4rem;
  display: grid; grid-template-columns: 240px 1fr; gap: 3rem;
  background: var(--warm-white);
}
.shop-sidebar h3 {
  font-family: var(--font-sans); font-size: 0.68rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--charcoal); font-weight: 500;
  margin-bottom: 1.2rem; margin-top: 2rem;
}
.shop-sidebar h3:first-child { margin-top: 0; }
.sidebar-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.5rem 0; font-size: 0.82rem; color: var(--muted); cursor: none;
  border-bottom: 1px solid rgba(107,33,168,0.07);
  transition: color 0.3s; text-decoration: none;
}
.sidebar-item:hover { color: var(--plum); }
.sidebar-count {
  background: var(--pale-lavender); color: var(--violet);
  font-size: 0.65rem; padding: 0.1rem 0.5rem; border-radius: 20px;
}

/* ── Mobile Filter Toggle ── */
.mobile-filter-btn {
  display: none; align-items: center; gap: 0.5rem;
  background: none; border: 1px solid rgba(107,33,168,0.25);
  padding: 0.5rem 1rem; font-family: var(--font-sans);
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--charcoal); cursor: pointer; margin-left: auto; transition: all 0.3s;
}
.mobile-filter-btn:hover { background: var(--plum); color: var(--cream); border-color: var(--plum); }


/* ══════════════════════════════════════════════════════
   SHOP TOOLBAR + PAGINATION
   ══════════════════════════════════════════════════════ */
.shop-toolbar {
  grid-column: 1 / -1; display: flex;
  justify-content: space-between; align-items: center;
  padding: 1.5rem 0; border-bottom: 1px solid rgba(107,33,168,0.1); margin-bottom: 0.5rem;
}
.shop-results,
.woocommerce-result-count { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.08em; margin: 0; }
.woocommerce-notices-wrapper:empty { display: none; margin: 0; padding: 0; }

.woocommerce-ordering { margin: 0; }
.woocommerce-ordering select {
  font-family: var(--font-sans); font-size: 0.68rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--charcoal); background: var(--cream);
  border: 1px solid rgba(107,33,168,0.2); padding: 0.55rem 2.2rem 0.55rem 1rem;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%236B21A8' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.75rem center;
  cursor: pointer; transition: border-color 0.3s;
}
.woocommerce-ordering select:focus { outline: none; border-color: var(--violet); }
.woocommerce-ordering select:hover { border-color: rgba(107,33,168,0.5); }

.shop-pagination, .shop-empty { grid-column: 1 / -1; }
.shop-pagination { display: flex; justify-content: center; padding-top: 3rem; }
.woocommerce-pagination ul {
  display: flex; gap: 0.4rem; list-style: none;
  margin: 0; padding: 0; flex-wrap: wrap; justify-content: center;
}
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; font-family: var(--font-sans); font-size: 0.75rem;
  color: var(--charcoal); border: 1px solid rgba(107,33,168,0.15);
  text-decoration: none; transition: all 0.3s;
}
.woocommerce-pagination ul li a:hover,
.woocommerce-pagination ul li span.current { background: var(--plum); color: var(--cream); border-color: var(--plum); }


/* ══════════════════════════════════════════════════════
   PRODUCT GRID
   ══════════════════════════════════════════════════════ */
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-content: start; }
.products-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 2rem; }


/* ══════════════════════════════════════════════════════
   PRODUCT CARD
   ══════════════════════════════════════════════════════ */
.product-card {
  width: 100%; background: var(--warm-white);
  overflow: hidden; position: relative;
  transition: transform 0.4s var(--ease);
}
.product-card:hover { transform: translateY(-4px); }

.product-image {
  position: relative; overflow: hidden;
  aspect-ratio: 3 / 4; background: var(--pale-lavender); margin-bottom: 1.2rem;
}
.product-image img,
.woocommerce ul.products li.product .woocommerce-loop-product__link img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  display: block; transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover .product-image img { transform: scale(1.07); }
.product-img-bg { width: 100%; height: 100%; display: block; transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.product-card:hover .product-img-bg { transform: scale(1.07); }

.p-img-1 { background: radial-gradient(circle at 60% 30%, rgba(201,169,110,0.3) 0%, transparent 40%), linear-gradient(to bottom, #8B5CF6, #5B21B6); }
.p-img-2 { background: repeating-linear-gradient(60deg, transparent, transparent 15px, rgba(255,255,255,0.06) 15px, rgba(255,255,255,0.06) 16px), linear-gradient(to bottom, #7C3AED, #4C1D95); }
.p-img-3 { background: radial-gradient(ellipse at 50% 50%, rgba(168,85,247,0.4) 0%, transparent 60%), linear-gradient(to bottom, #9333EA, #2D0A4E); }
.p-img-4 { background: repeating-conic-gradient(rgba(255,255,255,0.05) 0deg 15deg, transparent 15deg 30deg), linear-gradient(to bottom, #6B21A8, #3D1466); }

.product-tags {
  position: absolute; top: 1rem; left: 1rem;
  display: flex; flex-direction: column; gap: 0.4rem; z-index: 2;
}
.tag { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.25rem 0.7rem; font-weight: 500; }
.tag-new  { background: var(--gold); color: var(--plum); }
.tag-sold { background: rgba(45,10,78,0.8); color: var(--cream); }

.product-actions {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
  display: flex; gap: 0.5rem;
  transform: translateY(20px); opacity: 0;
  transition: all 0.4s ease; z-index: 2;
}
.product-card:hover .product-actions { transform: translateY(0); opacity: 1; }

.pa-btn {
  flex: 1; background: var(--plum); color: var(--cream);
  border: none; padding: 0.8rem; font-family: var(--font-sans);
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  cursor: none; transition: background 0.3s; text-align: center;
  text-decoration: none; display: flex; align-items: center;
  justify-content: center; gap: 6px; white-space: nowrap;
}
.pa-btn:hover { background: var(--violet); color: var(--cream); }


/* ══════════════════════════════════════════════════════
   WISHLIST BUTTONS
   ══════════════════════════════════════════════════════ */

/* ── 1. Card grid heart (.pa-btn-wish) ── */
.pa-btn-wish {
  flex: none !important; width: 42px !important; padding: 0 !important;
  background: rgba(253,252,250,0.95) !important;
  color: var(--plum) !important;
  text-decoration: none !important; cursor: none;
  display: flex !important; align-items: center !important;
  justify-content: center !important;
  font-size: 0 !important; /* kill YITH text */
}
.pa-btn-wish:hover { background: var(--cream) !important; color: var(--violet) !important; }

/* Suppress YITH injected content */
.pa-btn-wish span,
.pa-btn-wish i,
.pa-btn-wish .yith-wcwl-icon { display: none !important; }

/* Heart via ::before only */
.pa-btn-wish::before { content: '♡'; font-size: 1rem; line-height: 1; transition: color 0.25s; }
.pa-btn-wish.added::before,
.pa-btn-wish.is-added::before  { content: '♥'; color: #e0194a; }
.pa-btn-wish.loading::before   { content: '…'; opacity: 0.5; }
.pa-btn-wish.loading           { opacity: 0.5; pointer-events: none; }

@keyframes wl-pop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.5); }
  70%  { transform: scale(0.88); }
  100% { transform: scale(1); }
}
.pa-btn-wish.added,
.pa-btn-wish.is-added { animation: wl-pop 0.4s ease forwards; }


/* ── 2. Single product page (.pd-wishlist-icon) ── */
.pd-wishlist-icon {
  flex-shrink: 0; width: 56px; height: 56px;
  border: 1px solid rgba(107,33,168,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s; position: relative; overflow: hidden;
}
.pd-wishlist-icon:hover { background: var(--pale-lavender); border-color: var(--violet); }

/* Suppress YITH text inside box */
.pd-wishlist-icon .add_to_wishlist span,
.pd-wishlist-icon .add_to_wishlist i,
.pd-wishlist-icon .add_to_wishlist .yith-wcwl-icon,
.pd-wishlist-icon .feedback { display: none !important; }

/* Make YITH anchor fill the box */
.pd-wishlist-icon .add_to_wishlist {
  display: flex !important; align-items: center !important;
  justify-content: center !important;
  width: 100% !important; height: 100% !important;
  text-decoration: none !important; color: var(--plum) !important;
  background: none !important; border: none !important;
  padding: 0 !important; font-size: 0 !important;
}
.pd-wishlist-icon .add_to_wishlist::before          { content: '♡'; font-size: 1.25rem; color: var(--plum); transition: color 0.25s, transform 0.25s; }
.pd-wishlist-icon .add_to_wishlist:hover::before    { color: var(--violet); transform: scale(1.2); }
.pd-wishlist-icon .add_to_wishlist.added::before,
.pd-wishlist-icon .add_to_wishlist.is-added::before { content: '♥'; color: #e0194a; }
.pd-wishlist-icon .add_to_wishlist.loading::before  { content: '…'; opacity: 0.5; }

/* Fallback no-YITH button */
.pd-wishlist-icon .wl-fallback-btn {
  width: 100%; height: 100%; background: none; border: none;
  cursor: pointer; font-size: 1.25rem; color: var(--plum); transition: color 0.25s;
}
.pd-wishlist-icon .wl-fallback-btn:hover { color: var(--violet); }

/* Fallback plain .wishlist-btn */
.wishlist-btn {
  width: 56px; height: 56px; border: 1px solid rgba(107,33,168,0.2);
  background: none; font-size: 1.2rem; cursor: none; transition: all 0.3s; color: var(--plum);
}
.wishlist-btn:hover { background: var(--pale-lavender); border-color: var(--violet); }


/* ══════════════════════════════════════════════════════
   PRODUCT INFO
   ══════════════════════════════════════════════════════ */
.product-info { padding: 0 0.2rem; }
.product-info .product-sub { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.4rem; }
.product-info .product-sub a { color: var(--muted); text-decoration: none; }
.product-info h3 { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 400; color: var(--charcoal); letter-spacing: 0.03em; margin-bottom: 0.3rem; line-height: 1.3; }
.product-info h3 a { color: inherit; text-decoration: none; }
.product-price { font-family: var(--font-serif); font-size: 1rem; color: var(--plum); font-weight: 500; }
.product-price .old,
.product-price del { text-decoration: line-through; color: var(--muted); font-size: 0.85rem; margin-right: 0.5rem; font-weight: 300; }
.product-price ins { text-decoration: none; color: var(--plum); }
.color-dots { display: flex; gap: 0.4rem; margin-top: 0.6rem; }
.cdot { width: 12px; height: 12px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.1); cursor: pointer; transition: transform 0.2s ease; }
.cdot:hover { transform: scale(1.3); }


/* ══════════════════════════════════════════════════════
   SINGLE PRODUCT — LAYOUT
   ══════════════════════════════════════════════════════ */
.product-page { padding: calc(var(--header-h, 72px) + 2rem) 4rem 2rem; }
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

.pd-breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; letter-spacing: 0.1em; color: var(--muted);
  margin-bottom: 2rem; flex-wrap: wrap; grid-column: 1 / -1;
}
.pd-breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.3s; }
.pd-breadcrumb a:hover { color: var(--plum); }
.pd-breadcrumb span { color: rgba(107,33,168,0.3); }
.pd-breadcrumb span:last-child { color: var(--charcoal); font-weight: 500; }


/* ══════════════════════════════════════════════════════
   PRODUCT GALLERY
   ══════════════════════════════════════════════════════ */
.product-gallery { position: sticky; top: 100px; }
.product-main-image {
  position: relative; overflow: hidden;
  aspect-ratio: 1 / 1; background: var(--pale-lavender); margin-bottom: 1rem;
}
.product-main-image img, #main-product-img {
  transition: opacity 0.22s ease, transform 0.22s ease;
  will-change: opacity, transform;
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  display: block;
}

#main-product-img.is-changing {
  opacity: 0.35;
  transform: scale(0.985);
}
.zoom-hint {
  position: absolute; bottom: 1rem; right: 1rem;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(10px);
  padding: 0.5rem 0.8rem; font-size: 0.6rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--plum); font-weight: 500;
}
.product-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
.thumb { aspect-ratio: 1; overflow: hidden; cursor: none; border: 2px solid transparent; transition: border-color 0.3s; }
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb.active { border-color: var(--violet); }
.thumb-bg { width: 100%; height: 100%; }
.thumb-1 { background: linear-gradient(135deg, #8B5CF6, #5B21B6); }
.thumb-2 { background: linear-gradient(135deg, #9333EA, #6B21A8); }
.thumb-3 { background: linear-gradient(135deg, #7C3AED, #2D0A4E); }
.thumb-4 { background: linear-gradient(135deg, #A855F7, #4C1D95); }


/* ══════════════════════════════════════════════════════
   PRODUCT DETAILS
   ══════════════════════════════════════════════════════ */
.sub-name { font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--violet); margin-bottom: 0.8rem; }
.sub-name a { color: var(--violet); text-decoration: none; }
.pd-title, .product-details h1 { font-family: var(--font-serif); font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 400; color: var(--plum); letter-spacing: 0.02em; line-height: 1.2; margin-bottom: 0.5rem; }
.pd-reviews { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(107,33,168,0.1); }
.pd-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.1em; }
.pd-count { font-size: 0.78rem; color: var(--muted); }
.pd-price { font-family: var(--font-serif); font-size: 1.8rem; color: var(--plum); font-weight: 400; margin-bottom: 1.5rem; }
.pd-price del { font-size: 1.2rem; color: var(--muted); margin-right: 0.5rem; }
.pd-price ins { text-decoration: none; }
.pd-short-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.85; letter-spacing: 0.02em; margin-bottom: 1.8rem; padding-bottom: 1.8rem; border-bottom: 1px solid rgba(107,33,168,0.1); }
.pd-short-desc p { margin-bottom: 0.6rem; }
.pd-short-desc p:last-child { margin-bottom: 0; }
.pd-short-desc strong { color: var(--charcoal); font-weight: 500; }
.pd-short-desc a { color: var(--violet); text-decoration: none; border-bottom: 1px solid rgba(107,33,168,0.3); transition: border-color 0.3s; }
.pd-short-desc a:hover { border-bottom-color: var(--violet); }

.pd-option-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--charcoal); font-weight: 500; margin-bottom: 0.8rem; display: flex; justify-content: space-between; align-items: center; }
.pd-option-label span { color: var(--violet); font-weight: 400; text-transform: none; letter-spacing: 0; }
.pd-size-guide { color: var(--violet); text-decoration: none; font-size: 0.72rem; font-weight: 400; text-transform: none; letter-spacing: 0; }

.size-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.8rem; }
.size-btn { width: 48px; height: 48px; border: 1px solid rgba(107,33,168,0.2); background: none; font-family: var(--font-sans); font-size: 0.75rem; color: var(--charcoal); cursor: none; transition: all 0.3s; font-weight: 400; letter-spacing: 0.05em; }
.size-btn:hover, .size-btn.active { background: var(--plum); color: var(--cream); border-color: var(--plum); }
.size-btn.sold-out { opacity: 0.3; text-decoration: line-through; cursor: not-allowed; }

.color-picker { display: flex; gap: 0.6rem; margin-bottom: 2rem; }
.color-swatch { width: 36px; height: 36px; border-radius: 50%; cursor: none; border: 2px solid transparent; transition: all 0.3s; position: relative; }
.color-swatch.active::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid var(--violet); }
.cs-1 { background: linear-gradient(135deg, #8B5CF6, #4C1D95); }
.cs-2 { background: linear-gradient(135deg, #F59E0B, #D97706); }
.cs-3 { background: linear-gradient(135deg, #EC4899, #9333EA); }
.cs-4 { background: linear-gradient(135deg, #10B981, #2D0A4E); }

.add-to-cart { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: stretch; }
.qty-input { display: flex; align-items: center; border: 1px solid rgba(107,33,168,0.2); flex-shrink: 0; }
.qty-btn { width: 44px; height: 56px; background: none; border: none; font-size: 1.2rem; color: var(--plum); cursor: none; transition: background 0.3s; }
.qty-btn:hover { background: var(--pale-lavender); }
.qty-num { width: 44px; height: 56px; border: none; text-align: center; font-family: var(--font-sans); font-size: 0.9rem; color: var(--charcoal); background: none; -moz-appearance: textfield; }
.qty-num::-webkit-inner-spin-button, .qty-num::-webkit-outer-spin-button { -webkit-appearance: none; }
.atc-btn { flex: 1; background: var(--plum); color: var(--cream); border: none; font-family: var(--font-sans); font-size: 0.78rem; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 500; cursor: none; transition: all 0.4s; position: relative; overflow: hidden; height: 56px; }
.atc-btn::after { content: ''; position: absolute; inset: 0; background: var(--violet); transform: translateX(-101%); transition: transform 0.4s ease; }
.atc-btn:hover::after { transform: translateX(0); }
.atc-btn span { position: relative; z-index: 1; }

.pd-usp { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(107,33,168,0.1); }
.usp-item { text-align: center; padding: 1rem; }
.usp-icon { font-size: 1.3rem; margin-bottom: 0.5rem; }
.usp-text { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); line-height: 1.5; }


/* ══════════════════════════════════════════════════════
   PRODUCT DETAIL TABS
   ══════════════════════════════════════════════════════ */
.pd-tabs-wrap { padding: 4rem 0rem 4rem; background: var(--warm-white); }
.pd-tabs-nav { display: flex; gap: 0; border-bottom: 1px solid rgba(107,33,168,0.12); overflow-x: auto; scrollbar-width: none; }
.pd-tabs-nav::-webkit-scrollbar { display: none; }
.pd-tab-btn { background: none; border: none; border-bottom: 2px solid transparent; margin-bottom: -1px; padding: 1rem 2rem; font-family: var(--font-sans); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); font-weight: 400; cursor: none; transition: all 0.3s ease; white-space: nowrap; flex-shrink: 0; }
.pd-tab-btn:hover { color: var(--plum); }
.pd-tab-btn.is-active { color: var(--plum); border-bottom-color: var(--gold); font-weight: 500; }
.pd-tabs-body { border: 1px solid rgba(107,33,168,0.08); border-top: none; background: var(--cream); }
.pd-tab-panel { display: none; padding: 3rem; }
.pd-tab-panel::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); margin-bottom: 2rem; }
.pd-tab-panel.is-active { display: block; animation: tabFadeIn 0.35s ease; }
@keyframes tabFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.pd-tab-content { max-width: 720px; }
.pd-tab-content p { font-size: 0.92rem; color: var(--muted); line-height: 1.9; margin-bottom: 1.2rem; letter-spacing: 0.02em; }
.pd-tab-content p:last-child { margin-bottom: 0; }
.pd-tab-content h3, .pd-tab-content h4 { font-family: var(--font-serif); color: var(--plum); font-weight: 400; margin: 1.5rem 0 0.8rem; letter-spacing: 0.03em; }
.pd-tab-content h3 { font-size: 1.2rem; }
.pd-tab-content h4 { font-size: 1rem; }
.pd-tab-content ul, .pd-tab-content ol { padding-left: 1.2rem; margin-bottom: 1.2rem; }
.pd-tab-content li { font-size: 0.9rem; color: var(--muted); line-height: 1.85; margin-bottom: 0.4rem; }
.pd-tab-content ul li::marker { color: var(--gold); }
.pd-tab-content strong { color: var(--charcoal); font-weight: 500; }


/* ══════════════════════════════════════════════════════
   ACCORDION
   ══════════════════════════════════════════════════════ */
.pd-accordion { margin-top: 2rem; }
.accordion-item { border-bottom: 1px solid rgba(107,33,168,0.1); }
.accordion-header { display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 0; cursor: none; font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--charcoal); font-weight: 500; }
.accordion-icon { color: var(--violet); font-size: 1rem; }
.accordion-body { padding: 0 0 1.2rem; font-size: 0.85rem; color: var(--muted); line-height: 1.8; display: none; }


/* ══════════════════════════════════════════════════════
   YOU MAY ALSO LIKE — Random Products
   ══════════════════════════════════════════════════════ */
.novus-random-products { padding: 6rem 4rem; background: var(--cream); }
.nrp-header { text-align: center; margin-bottom: 3rem; }
.nrp-tag { display: inline-block; font-family: var(--font-sans); font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.nrp-title { font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 300; color: var(--plum); letter-spacing: 0.03em; line-height: 1.15; }
.nrp-title em { font-style: italic; color: var(--violet); }

.nrp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.nrp-card { position: relative; background: var(--warm-white); overflow: hidden; transition: transform 0.4s var(--ease, cubic-bezier(0.16,1,0.3,1)); }
.nrp-card:hover { transform: translateY(-4px); }

/* Beat woocommerce-layout.css: .woocommerce-page img { height: auto } */
.woocommerce-page .nrp-image .nrp-img,
.woocommerce .nrp-image .nrp-img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.nrp-image { position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;        /* Square — works for ALL product types */
  background: var(--pale-lavender); }
.nrp-img-link { display: block; width: 100%; height: 100%; }
.nrp-img {  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;  /* center instead of top */
  display: block;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);}
.nrp-card:hover .nrp-img { transform: scale(1.06); }
.nrp-img-placeholder { width: 100%; height: 100%; display: block; }

.nrp-tag-sale { position: absolute; top: 0.8rem; left: 0.8rem; background: var(--gold); color: var(--plum); font-family: var(--font-sans); font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.2rem 0.6rem; z-index: 2; }

/* Wishlist icon — top right */
/* Wishlist icon — top right corner on NRP cards */
.nrp-wl-btn {
  position: absolute; top: 0.7rem; right: 0.7rem;
  width: 36px; height: 36px;
  background: rgba(253,252,250,0.92);
  display: flex; align-items: center; justify-content: center;
  z-index: 3; transition: background 0.25s;
}
.nrp-wl-btn:hover { background: var(--cream); }

/* Kill ALL text/content YITH injects */
.nrp-wl-btn .yith-wcwl-add-to-wishlist,
.nrp-wl-btn .yith-wcwl-add-button,
.nrp-wl-btn .add_to_wishlist,
.nrp-wl-btn a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important; height: 36px !important;
  font-size: 0 !important;           /* kills raw text */
  color: transparent !important;
  text-decoration: none !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  line-height: 0 !important;
  letter-spacing: 0 !important;
}

/* Kill span, i, img inside */
.nrp-wl-btn .yith-wcwl-add-to-wishlist *,
.nrp-wl-btn .yith-wcwl-add-button *,
.nrp-wl-btn .add_to_wishlist *,
.nrp-wl-btn a * { display: none !important; }

/* Show heart via ::before on the <a> */
.nrp-wl-btn .add_to_wishlist::before,
.nrp-wl-btn a::before {
  content: '';
  display: block !important;
  width: 18px; height: 18px;
  background-color: var(--plum);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: background-color 0.25s, transform 0.25s;
  flex-shrink: 0;
}
.nrp-wl-btn .add_to_wishlist:hover::before,
.nrp-wl-btn a:hover::before { background-color: var(--violet); transform: scale(1.2); }

/* Filled heart when added */
.nrp-wl-btn .add_to_wishlist.added::before,
.nrp-wl-btn .add_to_wishlist.is-added::before,
.nrp-wl-btn a.added::before,
.nrp-wl-btn a.is-added::before {
  background-color: #e0194a;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e0194a' stroke='%23e0194a' stroke-width='1.8'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e0194a' stroke='%23e0194a' stroke-width='1.8'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'/%3E%3C/svg%3E");
}

/* Fallback no-YITH */
.nrp-wl-fallback {
  background: none; border: none; cursor: pointer;
  width: 18px; height: 18px;
  background-color: var(--plum);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.8'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.8'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'/%3E%3C/svg%3E");
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
}
.nrp-wl-fallback:hover { background-color: var(--violet); }



.nrp-wl-btn .add_to_wishlist span,
.nrp-wl-btn .add_to_wishlist i,
.nrp-wl-btn .add_to_wishlist .yith-wcwl-icon,
.nrp-wl-btn .feedback { display: none !important; }
.nrp-wl-btn .add_to_wishlist { display: flex !important; align-items: center !important; justify-content: center !important; width: 100% !important; height: 100% !important; text-decoration: none !important; background: none !important; border: none !important; padding: 0 !important; font-size: 0 !important; color: var(--plum) !important; }
.nrp-wl-btn .add_to_wishlist::before              { content: '♡'; font-size: 0.95rem; color: var(--plum); transition: color 0.2s, transform 0.2s; }
.nrp-wl-btn .add_to_wishlist:hover::before        { color: var(--violet); transform: scale(1.2); }
.nrp-wl-btn .add_to_wishlist.added::before,
.nrp-wl-btn .add_to_wishlist.is-added::before     { content: '♥'; color: #e0194a; }
.nrp-wl-btn .add_to_wishlist.loading::before      { content: '…'; opacity: 0.5; }
.nrp-wl-btn .nrp-wl-fallback { background: none; border: none; cursor: pointer; font-size: 0.95rem; color: var(--plum); transition: color 0.2s; }
.nrp-wl-btn .nrp-wl-fallback:hover { color: var(--violet); }

/* ATC overlay */
.nrp-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 0.75rem; transform: translateY(100%); transition: transform 0.38s cubic-bezier(0.16,1,0.3,1); z-index: 2; }
.nrp-card:hover .nrp-overlay { transform: translateY(0); }

.nrp-atc-btn { display: block; width: 100%; padding: 0.75rem; background: var(--plum); color: var(--cream); font-family: var(--font-sans); font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none; text-align: center; border: none; cursor: pointer; transition: background 0.3s; position: relative; overflow: hidden; z-index: 0; }
.nrp-atc-btn::after { content: ''; position: absolute; inset: 0; background: var(--violet); transform: translateX(-101%); transition: transform 0.3s ease; z-index: -1; }
.nrp-atc-btn:hover { color: var(--cream); }
.nrp-atc-btn:hover::after { transform: translateX(0); }
.nrp-atc-btn.nrp-atc-oos { background: rgba(45,10,78,0.4); cursor: not-allowed; }
.nrp-atc-btn.nrp-atc-oos::after { display: none; }

.nrp-info { padding: 1rem 0.4rem 0.4rem; }
.nrp-cat { font-family: var(--font-sans); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.3rem; }
.nrp-name { font-family: var(--font-serif); font-size: 1rem; font-weight: 400; color: var(--charcoal); letter-spacing: 0.02em; line-height: 1.3; margin-bottom: 0.3rem; }
.nrp-name a { color: inherit; text-decoration: none; transition: color 0.2s; }
.nrp-name a:hover { color: var(--plum); }
.nrp-price { font-family: var(--font-serif); font-size: 0.95rem; color: var(--plum); }
.nrp-price del { color: var(--muted); font-size: 0.82rem; margin-right: 0.3rem; }
.nrp-price ins { text-decoration: none; }

/* ══ YITH Wishlist — Feedback text fix ══ */

/* Hide "Browse your wishlist" text on ALL wishlist buttons */
.yith-wcwl-wishlistexistsbrowse,
.yith-wcwl-wishlistaddedbrowse {
  font-size: 0 !important;
  color: transparent !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
  text-decoration: none !important;
}

/* Show checkmark SVG via ::before when added */
.yith-wcwl-wishlistexistsbrowse::before,
.yith-wcwl-wishlistaddedbrowse::before {
  content: '';
  display: block !important;
  width: 18px; height: 18px;
  background-color: #e0194a;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e0194a' stroke='%23e0194a' stroke-width='1.8'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e0194a' stroke='%23e0194a' stroke-width='1.8'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'/%3E%3C/svg%3E");
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  flex-shrink: 0;
}

/* Hide the inner span text inside feedback link */
.yith-wcwl-wishlistexistsbrowse span,
.yith-wcwl-wishlistaddedbrowse span,
.yith-wcwl-wishlistexistsbrowse i,
.yith-wcwl-wishlistaddedbrowse i { display: none !important; }

/* Also hide "Product already in wishlist" tooltip if any */
.yith-wcwl-add-to-wishlist .feedback { display: none !important; }

/* ══════════════════════════════════════════════════════
   PRODUCT CARDS
══════════════════════════════════════════════════════ */
.pd-extra-text{
  margin-top: 28px;
  padding-top: 10px;
}

.pd-extra-block{
  margin-bottom: 24px;
}

.pd-extra-title{
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 500;
  font-family: var(--font-serif);
  color: var(--plum);
  letter-spacing: 0.03em;
}

.pd-extra-content{
  font-size: 15px;
  line-height: 1.9;
  color: #6f6660;
}

.pd-extra-content p{
  margin: 0 0 12px;
}

.pd-extra-content ul{
  margin: 0;
  padding-left: 18px;
}

.pd-extra-content li{
  margin-bottom: 8px;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */

/* ── ≤ 1200px ── */
@media (max-width: 1200px) {
  .shop-content { padding: 3rem; }
   .product-page { padding: calc(var(--header-h, 72px) + 1.5rem) 3rem 2rem; }
  .product-layout { gap: 3.5rem; }
  .pd-tabs-wrap { padding: 0 3rem 5rem; }
  .novus-random-products { padding: 5rem 3rem; }
  .nrp-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}

/* ── ≤ 1024px ── */
@media (max-width: 1024px) {
  .shop-hero    { padding: 7rem 2.5rem 4rem; }
  .shop-filters { padding: 1rem 2.5rem; }
  .shop-content { grid-template-columns: 200px 1fr; gap: 2rem; padding: 2.5rem; }
  .shop-grid    { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.product-page { padding: calc(var(--header-h, 68px) + 1.5rem) 2.5rem 2rem; }
  .product-layout { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .product-gallery { position: static; }
  .pd-tabs-wrap { padding: 0 2.5rem 5rem; }
  .pd-tab-btn   { padding: 0.85rem 1.25rem; }
  .pd-title, .product-details h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
  .pd-price { font-size: 1.5rem; }
  .novus-random-products { padding: 4rem 2.5rem; }
  .nrp-grid { grid-template-columns: repeat(3, 1fr); }
  .nrp-card:nth-child(4) { display: none; }
}

/* ── ≤ 900px ── */
@media (max-width: 900px) {
  .shop-grid    { grid-template-columns: repeat(2, 1fr); }
  .shop-content { grid-template-columns: 1fr; padding: 2rem; }
  .shop-sidebar { display: none; }
  .shop-sidebar.is-open { display: block; grid-column: 1 / -1; background: var(--cream); padding: 1.5rem; margin-bottom: 1rem; }
  .mobile-filter-btn { display: flex; }
  .product-actions { transform: translateY(0); opacity: 1; bottom: 0.6rem; left: 0.6rem; right: 0.6rem; gap: 0.4rem; }
  .pa-btn { padding: 0.7rem 0.5rem; font-size: 0.6rem; letter-spacing: 0.1em; }
  .pa-btn-wish { width: 36px !important; }
   .product-page { padding: calc(var(--header-h, 64px) + 1.25rem) 2rem 2rem; }
  .product-layout { grid-template-columns: 1fr; gap: 2rem; }
  .product-gallery { max-width: 560px; margin: 0 auto; width: 100%; }
  .add-to-cart { flex-wrap: wrap; gap: 0.75rem; }
  .atc-btn { flex: 1; min-width: 160px; }
  .pd-tabs-wrap { padding: 0 2rem 4rem; }
  .pd-tab-btn   { padding: 0.85rem 1rem; font-size: 0.65rem; }
  .pd-tab-panel { padding: 2rem; }
  .novus-random-products { padding: 4rem 2rem; }
  .nrp-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .nrp-card:nth-child(4) { display: block; }      /* show 4th again in 2-col */
  .nrp-overlay { transform: translateY(0) !important; }     /* always visible on touch */
  .nrp-atc-btn { font-size: 0.6rem; padding: 0.6rem; }
}

/* ── ≤ 768px ── */
@media (max-width: 768px) {
  .shop-hero    { padding: 5rem 1.5rem 3rem; }
  .shop-filters { padding: 0.75rem 1.5rem; gap: 0.5rem; }
  .filter-chip  { font-size: 0.62rem; padding: 0.3rem 0.65rem; }
  .shop-content { padding: 1.5rem 1rem; }
  .shop-grid    { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .shop-toolbar { flex-direction: column; gap: 0.75rem; align-items: flex-start; padding: 1rem 0; }
  .woocommerce-ordering select { font-size: 0.65rem; }
  .woocommerce-pagination ul li a,
  .woocommerce-pagination ul li span { width: 36px; height: 36px; font-size: 0.7rem; }
    .product-page { padding: calc(var(--header-h, 60px) + 1rem) 1.5rem 2rem; }
  .pd-title, .product-details h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .pd-price { font-size: 1.35rem; }
  .product-thumbs { gap: 0.35rem; }
  .add-to-cart { flex-direction: column; gap: 0.75rem; }
  .qty-input   { align-self: flex-start; }
  .atc-btn     { width: 100%; height: 58px; font-size: 0.75rem; }
  .pd-wishlist-icon { width: 100% !important;
  height: 52px !important;
  border-top: none;  }
  .size-btn { width: 44px; height: 44px; }
  .pd-usp { gap: 0.5rem; }
  .usp-icon { font-size: 1.1rem; }
  .usp-text { font-size: 0.62rem; letter-spacing: 0.07em; }
  .pd-tabs-wrap { padding: 0 1.5rem 4rem; }
  .pd-tab-btn   { padding: 0.75rem; font-size: 0.62rem; letter-spacing: 0.12em; }
  .pd-tab-panel { padding: 1.5rem; }
  .accordion-header { font-size: 0.72rem; padding: 1rem 0; }
  .accordion-body   { font-size: 0.82rem; }
  .novus-random-products { padding: 3.5rem 1.5rem; }
  .nrp-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .nrp-title { font-size: clamp(1.5rem, 5vw, 2rem); }
  .nrp-name { font-size: 0.88rem; }
  .nrp-price { font-size: 0.85rem; }
  .nrp-info { padding: 0.6rem 0.4rem 0.5rem; }
  
  /* YITH anchor bhi full width */
  .pd-wishlist-icon .yith-wcwl-add-to-wishlist,
  .pd-wishlist-icon .addtowishlist {
    width: auto;
    min-width: 52px;
    padding: 0 14px;
    gap: 8px;
  }

  .pd-wishlist-icon .yith-wcwl-add-to-wishlist-button__label {
    display: inline-block !important;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
  }

  .pd-wishlist-icon .yith-wcwl-icon {
    font-size: 16px !important;
  }
  
/* YITH anchor bhi full width */
.pd-wishlist-icon .add_to_wishlist {
  width: 100% !important;
  height: 52px !important;
}
.pd-wishlist-icon .add_to_wishlist::before {
  font-size: 1.4rem;
}

  
}

/* ── ≤ 480px ── */
@media (max-width: 480px) {
  .shop-hero    { padding: 4rem 1rem 2.5rem; }
  .shop-filters { padding: 0.6rem 1rem; }
  .shop-content { padding: 1rem; }
  .shop-grid    { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .woocommerce-pagination ul li a,
  .woocommerce-pagination ul li span { width: 32px; height: 32px; font-size: 0.68rem; }
    .product-page { padding: calc(var(--header-h, 56px) + 0.75rem) 1rem 2rem; }
  .product-thumbs { grid-template-columns: repeat(4, 72px); overflow-x: auto; gap: 0.3rem; padding-bottom: 0.25rem; scrollbar-width: none; }
  .product-thumbs::-webkit-scrollbar { display: none; }
  .thumb { flex-shrink: 0; }
  .atc-btn  {     padding: 10px 20px; font-size: 0.72rem; letter-spacing: 0.15em; }
.pd-wishlist-icon { height: 50px !important; }
  .pd-title, .product-details h1 { font-size: clamp(1.4rem, 7vw, 1.9rem); }
  .pd-price { font-size: 1.2rem; }
  .pd-reviews { gap: 0.5rem; margin-bottom: 1.25rem; padding-bottom: 1.25rem; }
  .pd-stars { font-size: 0.78rem; }
  .pd-count { font-size: 0.7rem; }
  .pd-usp { gap: 0.35rem; margin-top: 1.5rem; padding-top: 1.5rem; }
  .usp-item { padding: 0.6rem 0.25rem; }
  .usp-icon { font-size: 1rem; margin-bottom: 0.3rem; }
  .usp-text { font-size: 0.58rem; letter-spacing: 0.04em; }
  .pd-tabs-wrap { padding: 0 1rem 3rem; }
  .pd-tab-btn   { padding: 0.7rem 0.6rem; font-size: 0.6rem; letter-spacing: 0.08em; }
  .pd-tab-panel { padding: 1.25rem; }
  .novus-random-products { padding: 3rem 1rem; }
  .nrp-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .nrp-header { margin-bottom: 1.5rem; }
  .nrp-tag { font-size: 0.55rem; }
  .nrp-title { font-size: clamp(1.3rem, 6vw, 1.8rem); }
  .nrp-atc-btn { font-size: 0.6rem; padding: 0.6rem; letter-spacing: 0.1em; }
  .nrp-name { font-size: 0.82rem; }
  .nrp-price { font-size: 0.8rem; }
  .nrp-cat { font-size: 0.58rem; }
  .nrp-info { padding: 0.5rem 0.3rem 0.4rem; }
  .nrp-wl-btn { width: 30px; height: 30px; top: 0.5rem; right: 0.5rem; }
  .product-info h3 { font-size: 0.88rem; }
  .product-price   { font-size: 0.88rem; }
}

/* ── ≤ 380px ── */
@media (max-width: 380px) {
  /* Keep 2 columns even at 320px — single col is too big for product browsing */
  .nrp-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; max-width: 100%; margin: 0; }
  .novus-random-products { padding: 2.5rem 0.75rem; }
  .nrp-info { padding: 0.4rem 0.25rem 0.35rem; }
  .nrp-name { font-size: 0.78rem; }
  .nrp-price { font-size: 0.75rem; }
  .nrp-wl-btn { width: 28px; height: 28px; top: 0.4rem; right: 0.4rem; }
}