/* ============================================================
   Favourite Care — Store v3.1 (pastel storefront)
   Palette + type matched to the home page (brand tokens).
   Loads LAST. Tokens scoped to shop + card so global
   header/footer are untouched.
   ============================================================ */

.fc-store,
.fc-highlight,
.product-card-s {
  /* Brand palette (mirrors theme tokens.css / home page) */
  --deep-purple: #3D3463;   /* fc-plum */
  --royal-purple: #332B52;  /* fc-plum-deep */
  --care-violet: #6B5396;   /* fc-violet */
  --soft-pink: #B05F9D;     /* fc-orchid */
  --gentle-pink: #CE93BE;   /* fc-orchid-soft */
  --sage: #7FA593;          /* fc-sage */
  --sage-light: #CFE3D9;    /* fc-sage-light */
  --ivory: #FBF8F4;         /* fc-ivory */
  --lavender-mist: #F7EFF3; /* fc-blush-wash */
  --lilac-border: #E9E2DA;  /* fc-line */
  --charcoal: #2E2A45;      /* fc-heading */
  --slate: #5F5A72;
  /* Soft 2-tone washes for card / hero media (all on-brand) */
  --wash-blush-1: #FBEFF6;  --wash-blush-2: #EAC9DE;
  --wash-violet-1: #F1ECF8; --wash-violet-2: #D7C8E8;
  --wash-sage-1: #EDF3F0;   --wash-sage-2: #CFE3D9;
  --wash-ivory-1: #FCF6EF;  --wash-ivory-2: #F3E7DB;

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(61,52,99,0.06);
  --shadow-md: 0 14px 34px -18px rgba(61,52,99,0.30);
  --shadow-lg: 0 22px 52px -24px rgba(61,52,99,0.38);
  --font-display: 'Fraunces', Georgia, serif;
  --font-script: 'Dancing Script', cursive;
}

@keyframes fcBlink { 0%,100%{opacity:1} 50%{opacity:.3} }
@keyframes fcRing { to { transform: rotate(360deg) } }
@keyframes fcFloaty { 0%,100%{transform:translateY(0) rotate(-4deg)} 50%{transform:translateY(-10px) rotate(-4deg)} }

.fc-store .display-serif {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
}
.fc-store .display-serif em {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 700;
  color: var(--soft-pink);
}

/* ===== Banner (matches home: lilac wash + pink/teal orbs) ===== */
.fc-store .store-banner {
  background:
    radial-gradient(circle at 88% 6%, rgba(176,95,157,0.16), transparent 24rem),
    radial-gradient(circle at 6% 96%, rgba(127,165,147,0.16), transparent 22rem),
    linear-gradient(180deg, #FDF9FB 0%, #F6F1FB 100%);
  padding: 36px 0 28px;
  position: relative;
  overflow: hidden;
}
.fc-store .banner-orb { position:absolute; border-radius:50%; filter:blur(60px); opacity:.5; pointer-events:none; }
.fc-store .banner-orb.b1 { width:340px; height:340px; top:-120px; right:-70px; background:radial-gradient(circle,var(--gentle-pink),transparent 70%); }
.fc-store .banner-orb.b2 { width:300px; height:300px; bottom:-120px; left:-60px; background:radial-gradient(circle,var(--sage),transparent 70%); opacity:.28; }
.fc-store .breadcrumb { display:flex; gap:8px; align-items:center; font-size:13px; color:var(--slate); margin-bottom:18px; position:relative; }
.fc-store .breadcrumb a { color:var(--slate); }
.fc-store .breadcrumb .current { color:var(--deep-purple); font-weight:500; }

/* ===== Promo carousel ===== */
.fc-store .promo-carousel {
  position:relative; background:#fff; border:1px solid var(--lilac-border);
  border-radius:28px; overflow:hidden; min-height:320px;
  box-shadow:0 22px 52px -28px rgba(61,52,99,.4);
}
.fc-store .promo-slide {
  display:none; grid-template-columns:1.4fr 1fr; gap:32px;
  padding:44px 56px; align-items:center; min-height:320px;
}
.fc-store .promo-slide.active { display:grid; }
.fc-store .promo-tag {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(61,52,99,.08); color:var(--deep-purple);
  padding:6px 14px; border-radius:var(--radius-pill);
  font-family:'Poppins',sans-serif; font-size:11.5px; font-weight:600;
  letter-spacing:.1em; text-transform:uppercase; margin-bottom:14px;
}
.fc-store .promo-tag.teal { background:rgba(127,165,147,.16); color:#5B7E6B; }
.fc-store .promo-tag .dot { width:6px; height:6px; border-radius:50%; background:currentColor; animation:fcBlink 1.4s infinite; }
.fc-store .promo-copy h1 { font-family:var(--font-display); font-weight:600; font-size:clamp(32px,4vw,50px); line-height:1.04; margin-bottom:14px; color:var(--deep-purple); letter-spacing:-.02em; }
.fc-store .promo-copy p { color:var(--slate); font-size:16px; line-height:1.55; max-width:460px; margin-bottom:22px; }
.fc-store .promo-actions { display:flex; gap:16px; align-items:center; flex-wrap:wrap; }
.fc-store .promo-actions .btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:14px 26px; border-radius:var(--radius-pill);
  font-family:'Poppins',sans-serif; font-weight:600; font-size:14.5px;
  border:none; cursor:pointer; text-decoration:none; transition:all .25s;
  background:linear-gradient(120deg,var(--deep-purple),var(--care-violet)); color:#fff;
  box-shadow:0 14px 30px -14px rgba(61,52,99,.55);
}
.fc-store .promo-actions .btn:hover { transform:translateY(-2px); box-shadow:0 18px 36px -14px rgba(61,52,99,.65); }
.fc-store .promo-visual { position:relative; display:grid; place-items:center; min-height:240px; }
.fc-store .promo-ring { position:absolute; width:280px; height:280px; border:2px dashed rgba(61,52,99,.16); border-radius:50%; animation:fcRing 30s linear infinite; }
.fc-store .promo-ring.teal { border-color:rgba(127,165,147,.34); }
.fc-store .promo-shape {
  position:relative; width:230px; height:250px; border-radius:32px; display:grid; place-items:center;
  box-shadow:0 24px 50px -20px rgba(61,52,99,.28); transform:rotate(-4deg);
  animation:fcFloaty 5s ease-in-out infinite; overflow:hidden;
}
.fc-store .promo-shape::after { content:""; position:absolute; inset:0; background:radial-gradient(circle at 50% 46%, rgba(255,255,255,.9), rgba(255,255,255,0) 64%); }
.fc-store .promo-shape img.promo-photo { position:relative; z-index:1; width:80%; height:80%; object-fit:contain; transform:rotate(4deg); filter:drop-shadow(0 12px 20px rgba(61,52,99,.18)); }
.fc-store .promo-nav {
  position:absolute; top:50%; transform:translateY(-50%); width:36px; height:36px;
  border-radius:50%; background:#fff; border:1px solid var(--lilac-border);
  color:var(--deep-purple); cursor:pointer; display:grid; place-items:center; transition:all .2s; z-index:2;
}
.fc-store .promo-nav:hover { background:var(--deep-purple); color:#fff; }
.fc-store .promo-nav.prev { left:14px; }
.fc-store .promo-nav.next { right:14px; }
.fc-store .promo-dots { position:absolute; bottom:18px; left:50%; transform:translateX(-50%); display:flex; gap:8px; }
.fc-store .promo-dots .dot { width:8px; height:8px; border-radius:50%; background:var(--lilac-border); cursor:pointer; transition:all .3s; }
.fc-store .promo-dots .dot.active { background:var(--deep-purple); width:28px; border-radius:4px; }

/* ===== Category pills ===== */
.fc-store .cat-pills { display:flex; gap:8px; overflow-x:auto; scrollbar-width:none; padding:20px 0 4px; margin-bottom:4px; }
.fc-store .cat-pills::-webkit-scrollbar { display:none; }
.fc-store .cat-pill {
  padding:8px 17px; border-radius:var(--radius-pill); border:1.5px solid var(--lilac-border);
  background:#fff; color:var(--charcoal); font-family:'Poppins',sans-serif; font-size:12.5px;
  font-weight:500; cursor:pointer; white-space:nowrap; transition:all .2s; flex-shrink:0; text-decoration:none;
}
.fc-store .cat-pill:hover { border-color:var(--soft-pink); color:var(--soft-pink); }
.fc-store .cat-pill.active { background:linear-gradient(120deg,var(--deep-purple),var(--care-violet)); color:#fff; border-color:transparent; }

/* ===== Trust badges ===== */
.fc-store .trust-badges { display:flex; overflow-x:auto; scrollbar-width:none; border:1px solid var(--lilac-border); border-radius:20px; background:#fff; box-shadow:0 4px 18px -8px rgba(61,52,99,.12); margin-top:18px; }
.fc-store .trust-badges::-webkit-scrollbar { display:none; }
.fc-store .tb-item { flex:1; min-width:142px; display:flex; flex-direction:column; align-items:center; gap:8px; padding:22px 16px; text-align:center; border-right:1px solid var(--lilac-border); }
.fc-store .tb-item:last-child { border-right:none; }
.fc-store .tb-ico { width:46px; height:46px; border-radius:50%; display:grid; place-items:center; font-size:21px; }
.fc-store .tb-title { font-family:'Poppins',sans-serif; font-size:12.5px; font-weight:700; color:var(--deep-purple); }
.fc-store .tb-sub { font-size:10.5px; color:var(--slate); line-height:1.35; }

/* ===== Shop layout ===== */
.fc-store .shop-layout { display:grid; grid-template-columns:262px 1fr; gap:40px; padding:48px 0 72px; }
.fc-store .filters { position:sticky; top:100px; align-self:start; background:#fff; border:1px solid var(--lilac-border); border-radius:var(--radius-lg); padding:24px; box-shadow:var(--shadow-sm); }
.fc-store .filters h4 { font-family:'Poppins',sans-serif; font-size:12px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--charcoal); margin:0 0 14px; padding-bottom:12px; border-bottom:1px solid var(--lilac-border); }
.fc-store .filter-group { margin-bottom:26px; }
.fc-store .filter-group:last-of-type { margin-bottom:18px; }
.fc-store .filter-list { display:flex; flex-direction:column; gap:10px; }
.fc-store .filter-list label { display:flex; align-items:center; gap:10px; font-size:14px; color:var(--charcoal); cursor:pointer; }
.fc-store .filter-list label .count { color:var(--slate); margin-left:auto; font-size:12.5px; }
.fc-store .filter-list input { accent-color:var(--soft-pink); width:16px; height:16px; }
.fc-store .filters-actions { display:flex; gap:8px; align-items:center; }
.fc-store .filters-actions a { flex:1; text-align:center; padding:11px; border-radius:var(--radius-pill); font-family:'Poppins',sans-serif; font-weight:500; font-size:13px; border:1px solid var(--lilac-border); background:#fff; color:var(--charcoal); text-decoration:none; }
.fc-store .filters-actions button.primary { flex:1; padding:11px; border-radius:var(--radius-pill); font-family:'Poppins',sans-serif; font-weight:600; font-size:13px; cursor:pointer; background:linear-gradient(120deg,var(--deep-purple),var(--care-violet)); color:#fff; border:1px solid transparent; }

.fc-store .results-bar { display:flex; justify-content:space-between; align-items:center; margin-bottom:24px; flex-wrap:wrap; gap:14px; }
.fc-store .results-bar .count, .fc-store .results-bar .woocommerce-result-count { color:var(--slate); font-size:14px; margin:0; }
.fc-store .results-tools { display:flex; gap:10px; align-items:center; }
.fc-store .sort-bar { display:flex; gap:10px; align-items:center; margin:0; }
.fc-store .sort-select { padding:10px 14px; border:1px solid var(--lilac-border); border-radius:var(--radius-pill); background:#fff; font-family:'Poppins',sans-serif; font-size:13.5px; color:var(--charcoal); cursor:pointer; }
/* Mobile filter toggle (hidden on desktop) */
.fc-store .fc-filter-btn { display:none; align-items:center; gap:8px; padding:10px 18px; border-radius:var(--radius-pill); border:1px solid var(--lilac-border); background:#fff; color:var(--deep-purple); font-family:'Poppins',sans-serif; font-weight:600; font-size:13px; cursor:pointer; }
.fc-store .fc-filter-btn svg { width:16px; height:16px; }

/* ===== Product grid + card ===== */
.fc-product-grid, .product-grid-store { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; list-style:none; margin:0; padding:0; }
.fc-highlight .fc-product-grid { grid-template-columns:repeat(4,1fr); }
ul.products.fc-product-grid::before, ul.products.fc-product-grid::after { display:none; content:none; }

li.product-card-s {
  background:#fff; border-radius:var(--radius-lg); border:1px solid var(--lilac-border);
  overflow:hidden; transition:all .3s cubic-bezier(.22,.61,.36,1); position:relative;
  width:auto !important; float:none !important; margin:0 !important; list-style:none;
}
li.product-card-s:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:transparent; }
.product-card-s .pc-image { aspect-ratio:1; position:relative; overflow:hidden; display:grid; place-items:center; }
/* soft white spotlight so the product reads clean on the wash — no colour tint */
.product-card-s .pc-image::after { content:""; position:absolute; inset:0; background:radial-gradient(circle at 50% 46%, rgba(255,255,255,.92), rgba(255,255,255,0) 66%); }
.product-card-s .pc-image img.pc-photo { position:relative; z-index:1; width:78%; height:78%; object-fit:contain; transition:transform .5s cubic-bezier(.22,.61,.36,1); filter:drop-shadow(0 10px 16px rgba(61,52,99,.12)); }
.product-card-s:hover .pc-image img.pc-photo { transform:scale(1.06); }
.product-card-s .pc-image.baby1 { background:linear-gradient(135deg,var(--wash-blush-1),var(--wash-ivory-2)); }
.product-card-s .pc-image.baby3 { background:linear-gradient(135deg,var(--wash-violet-1),var(--wash-blush-2)); }
.product-card-s .pc-image.fem1 { background:linear-gradient(135deg,var(--wash-blush-1),var(--wash-blush-2)); }
.product-card-s .pc-image.fem3 { background:linear-gradient(135deg,var(--wash-violet-1),var(--wash-violet-2)); }
.product-card-s .pc-image.home1 { background:linear-gradient(135deg,var(--wash-sage-1),var(--wash-sage-2)); }
.product-card-s .pc-image.home2 { background:linear-gradient(135deg,#E6F0EC,var(--wash-sage-2)); }
.product-card-s .pc-image.home3 { background:linear-gradient(135deg,var(--wash-violet-1),var(--wash-sage-2)); }
.product-card-s .pc-badge { position:absolute; top:12px; left:12px; padding:5px 12px; background:#fff; border-radius:var(--radius-pill); font-size:11px; font-weight:600; font-family:'Poppins',sans-serif; color:var(--deep-purple); z-index:2; box-shadow:0 4px 12px -4px rgba(61,52,99,.25); }
.product-card-s .pc-badge.new { background:var(--soft-pink); color:#fff; }
.product-card-s .pc-badge.sale { background:#C0497A; color:#fff; }
.product-card-s .pc-fav { position:absolute; top:12px; right:12px; width:34px; height:34px; border-radius:50%; background:#fff; display:grid; place-items:center; color:var(--slate); border:none; cursor:pointer; transition:all .2s; z-index:2; box-shadow:0 4px 12px -4px rgba(61,52,99,.25); }
.product-card-s .pc-fav:hover { color:var(--soft-pink); transform:scale(1.1); }
.product-card-s .pc-fav.active { color:var(--soft-pink); }
.product-card-s .pc-fav.active svg { fill:var(--soft-pink); }
.product-card-s .pc-quick {
  position:absolute; bottom:12px; left:12px; right:12px; background:linear-gradient(120deg,var(--deep-purple),var(--care-violet)); color:#fff;
  border:none; padding:11px; border-radius:var(--radius-pill); font-family:'Poppins',sans-serif; font-weight:600;
  font-size:13px; cursor:pointer; opacity:0; transform:translateY(8px); transition:all .3s cubic-bezier(.22,.61,.36,1);
  display:flex; align-items:center; justify-content:center; gap:6px; text-decoration:none; text-align:center;
}
.product-card-s:hover .pc-quick { opacity:1; transform:none; }
.product-card-s .pc-quick:hover { filter:brightness(1.08); color:#fff; }
.product-card-s .pc-quick.loading, .product-card-s .pc-quick.added { opacity:1; transform:none; }
.product-card-s .pc-info { padding:16px 18px 20px; }
.product-card-s .pc-cat { font-size:10.5px; color:var(--soft-pink); font-family:'Poppins',sans-serif; font-weight:600; letter-spacing:.12em; text-transform:uppercase; }
.product-card-s .pc-name { display:block; font-family:'Poppins',sans-serif; font-size:15.5px; font-weight:600; color:var(--deep-purple); margin:5px 0 4px; line-height:1.3; text-decoration:none; }
.product-card-s .pc-desc { font-size:12.5px; color:var(--slate); margin-bottom:10px; }
.product-card-s .pc-foot { display:flex; justify-content:space-between; align-items:flex-end; gap:8px; }
.product-card-s .pc-price { font-family:'Poppins',sans-serif; font-weight:700; font-size:16px; color:var(--deep-purple); line-height:1.2; }
.product-card-s .pc-price del { color:var(--slate); font-weight:400; font-size:12.5px; margin-left:4px; }
.product-card-s .pc-price ins { text-decoration:none; }
.product-card-s .pc-stock { font-size:11px; color:#4E7D60; font-weight:500; display:flex; align-items:center; gap:4px; white-space:nowrap; }
.product-card-s .pc-stock::before { content:""; width:6px; height:6px; border-radius:50%; background:#4E7D60; }
.product-card-s .pc-stock.low { color:#B05454; }
.product-card-s .pc-stock.low::before { background:#B05454; }

/* ===== Highlight rows (Bestsellers / New arrivals) ===== */
.fc-highlight { max-width:1240px; margin:0 auto; padding:44px 32px 0; }
.fc-highlight .fc-highlight__head { display:flex; flex-direction:column; gap:4px; margin-bottom:20px; }
.fc-highlight .fc-eyebrow { font-family:'Poppins',sans-serif; font-size:12px; font-weight:600; letter-spacing:.16em; text-transform:uppercase; color:var(--soft-pink); }
.fc-highlight h2 { font-family:var(--font-display); font-weight:600; font-size:30px; color:var(--deep-purple); margin:0; letter-spacing:-.02em; }
.fc-highlight h2 em { font-family:var(--font-script); font-style:normal; font-weight:700; color:var(--soft-pink); }

/* ===== Wide promos ===== */
.fc-store .wide-promos { display:grid; grid-template-columns:1fr 1fr; gap:20px; padding:8px 0 0; }
.fc-store .w-promo { border-radius:24px; padding:32px 36px; display:flex; align-items:center; justify-content:space-between; overflow:hidden; position:relative; min-height:168px; }
.fc-store .w-promo.club { background:radial-gradient(circle at 90% 0%, rgba(176,95,157,.32), transparent 60%), linear-gradient(135deg,var(--deep-purple),#443A7D); color:#fff; }
.fc-store .w-promo.bulk { background:linear-gradient(135deg,var(--wash-sage-1) 0%,var(--wash-sage-2) 70%,#BFD8CC 130%); color:var(--charcoal); }
.fc-store .w-promo::before { content:""; position:absolute; width:260px; height:260px; border-radius:50%; background:rgba(255,255,255,.08); right:-60px; top:-70px; pointer-events:none; }
.fc-store .wp-t h3 { font-family:var(--font-display); font-size:21px; font-weight:600; margin:0 0 6px; line-height:1.2; letter-spacing:-.01em; }
.fc-store .w-promo.club .wp-t h3 { color:#fff; }
.fc-store .wp-t p { font-size:12.5px; opacity:.85; margin:0 0 14px; max-width:260px; }
.fc-store .wp-btn { display:inline-flex; align-items:center; gap:6px; padding:10px 22px; border-radius:var(--radius-pill); font-family:'Poppins',sans-serif; font-weight:600; font-size:12.5px; border:none; cursor:pointer; text-decoration:none; }
.fc-store .w-promo.club .wp-btn { background:#fff; color:var(--deep-purple); }
.fc-store .w-promo.bulk .wp-btn { background:var(--deep-purple); color:#fff; }
.fc-store .wp-art { font-size:58px; flex-shrink:0; filter:drop-shadow(0 6px 12px rgba(0,0,0,.1)); }

/* ===== Responsive ===== */
@media (max-width:980px) {
  .fc-store .shop-layout { grid-template-columns:1fr; gap:18px; padding:28px 0 56px; }
  .fc-store .fc-filter-btn { display:inline-flex; }
  .fc-store .filters { position:static; display:none; }
  .fc-store .filters.open { display:block; animation:fcSheet .25s ease; }
  .fc-product-grid, .product-grid-store { grid-template-columns:1fr 1fr; }
  .fc-highlight .fc-product-grid { grid-template-columns:1fr 1fr; }
  .fc-store .wide-promos { grid-template-columns:1fr; }
}
@keyframes fcSheet { from{opacity:0; transform:translateY(-8px)} to{opacity:1; transform:none} }
@media (max-width:600px) {
  .fc-store .promo-slide { grid-template-columns:1fr; padding:24px 20px; min-height:auto; }
  .fc-store .promo-visual { order:-1; min-height:160px; }
  .fc-store .promo-shape { width:170px; height:188px; }
  .fc-store .promo-copy h1 { font-size:clamp(24px,7vw,32px); }
  .fc-store .promo-copy p { font-size:13.5px; -webkit-line-clamp:3; }
  .fc-product-grid, .product-grid-store, .fc-highlight .fc-product-grid { grid-template-columns:1fr 1fr; gap:12px; }
  .fc-store .tb-sub { display:none; }
  .fc-store .tb-item { min-width:106px; padding:14px 8px; }
  .fc-store .tb-ico { width:38px; height:38px; font-size:18px; }
  .product-card-s .pc-info { padding:12px 13px 16px; }
  .product-card-s .pc-name { font-size:14px; }
  .fc-highlight { padding:32px 18px 0; }
  .fc-store .container { padding-left:18px; padding-right:18px; }
}
@media (max-width:380px) {
  .fc-product-grid, .product-grid-store, .fc-highlight .fc-product-grid { grid-template-columns:1fr; }
}

/* ============================================================
   PDP gallery — Store v3 (square main box + uniform square thumbs)
   Selectors sit OUTSIDE .fc-store token scope, so brand hex is inline.
   Specificity (0,0,4,2) beats commerce.css; store2 also loads last.
   ============================================================ */
.woocommerce .product div.images .woocommerce-product-gallery__wrapper {
  border:1px solid #E9E2DA;
  border-radius:20px;
  background:#fff;
  overflow:hidden;
  box-shadow:0 18px 40px -28px rgba(61,52,99,.45);
}
/* Main image: force a clean square box. Constrain the IMG (not the
   flexslider viewport) so flexslider measures a square and sizes itself —
   works with the slider instead of fighting its inline height. */
.woocommerce .product div.images .woocommerce-product-gallery__wrapper img,
.woocommerce .product div.images .woocommerce-product-gallery__image img {
  box-sizing:border-box;
  aspect-ratio:1 / 1;
  object-fit:contain;
  width:100%;
  height:auto;
  padding:18px;
  background:#fff;
}
/* Thumbnails: flex row so any count (4–6 imgs) fills one clean line —
   no orphaned wrap, no left-cluster. Each thumb a uniform square. */
.woocommerce .product div.images .flex-control-thumbs {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
  padding:0;
  list-style:none;
}
.woocommerce .product div.images .flex-control-thumbs li {
  flex:1 1 0;
  min-width:0;
  width:auto;
  margin:0;
  float:none;
}
.woocommerce .product div.images .flex-control-thumbs img {
  box-sizing:border-box;
  aspect-ratio:1 / 1;
  object-fit:contain;
  width:100%;
  height:auto;
  padding:6px;
  background:#fff;
  border:1px solid #E9E2DA;
  border-radius:12px;
  opacity:.6;
  cursor:pointer;
  transition:opacity .15s ease, border-color .15s ease;
}
.woocommerce .product div.images .flex-control-thumbs img:hover,
.woocommerce .product div.images .flex-control-thumbs img.flex-active {
  opacity:1;
  border-color:#6B5396;
}
@media (max-width:980px) {
  .woocommerce .product div.images .woocommerce-product-gallery__wrapper img,
  .woocommerce .product div.images .woocommerce-product-gallery__image img { padding:14px; }
}
@media (max-width:480px) {
  .woocommerce .product div.images .flex-control-thumbs { gap:8px; }
  .woocommerce .product div.images .flex-control-thumbs img { padding:4px; border-radius:10px; }
}
