/* Sensisweet Woo Premium — mobile-first, strak + cart/checkout responsive */

:root{
  --swp-shadow: 0 14px 40px rgba(20,20,20,.10);
  --swp-shadow2: 0 10px 22px rgba(20,20,20,.06);
  --swp-border: 1px solid rgba(20,20,20,.10);
  --swp-gap: 16px;
}

*{ box-sizing: border-box; }
img{ max-width: 100%; height: auto; }
body{ margin:0; background: var(--swp-bg); color: var(--swp-text); font-family: var(--swp-font); }

.swp-container{ max-width: var(--swp-maxw); margin:0 auto; padding: 18px 16px; }
@media (min-width: 768px){ .swp-container{ padding: 28px 18px; } }

/* Header */
.swp-topbar{
  background: color-mix(in srgb, var(--swp-surface) 85%, white 15%);
  border-bottom: 1px solid rgba(20,20,20,.08);
  font-weight: 650;
  color: var(--swp-ink);
  font-size: 13px;
}
.swp-topbar .swp-container{ padding: 10px 16px; }

.swp-header{
  border-bottom: 1px solid rgba(20,20,20,.08);
  background:#fff;
  position: sticky;
  top: 0;
  z-index: 50;
}
.swp-header__row{
  display:grid;
  gap: 12px;
  position: relative;
}
.swp-header__controls{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 12px;
  flex-wrap:wrap;
}
.swp-header__meta{
  display:flex;
  gap:8px;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
}
.swp-brand{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:100%;
  text-decoration:none;
  color:var(--swp-ink);
  font-weight: 900;
  letter-spacing:-0.02em;
}
.swp-brand__text{ font-size: 20px; }
.swp-brand__logo{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: cover;
  border:1px solid rgba(20,20,20,.08);
}

.swp-iconbtn{
  border: 1px solid rgba(20,20,20,.12);
  background:#fff;
  border-radius: 999px;
  padding: 10px 12px;
  text-decoration:none;
  color: var(--swp-ink);
  font-weight: 850;
  font-size: 13px;
  white-space: nowrap;
}
.swp-iconbtn{
  min-height: 44px;
}
.swp-sr-only{
  position:absolute !important;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
.swp-cartbtn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:46px;
  min-width:46px;
  padding:10px;
}
.swp-cartbtn__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  line-height:1;
}
.swp-cartbtn__icon svg{
  width:20px;
  height:20px;
  display:block;
}
.swp-cartbtn__count{
  position:absolute;
  top:-5px;
  right:-4px;
  min-width:18px;
  height:18px;
  padding:0 4px;
  border-radius:999px;
  background:var(--swp-ink);
  color:#fff;
  font-size:11px;
  font-weight:900;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 10px rgba(20,20,20,.18);
}
.swp-navtoggle{ display:inline-flex; }
@media (min-width: 980px){ .swp-navtoggle{ display:none; } }

.swp-nav{ position: relative; }
.swp-nav ul{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:12px; }
.swp-nav a{ color: var(--swp-ink); text-decoration:none; font-weight: 800; }
.swp-nav a:hover{ text-decoration: underline; }
.swp-nav .menu-item{ position:relative; }
.swp-nav .menu-item-has-children > a{ display:inline-flex; align-items:center; gap:8px; }
.swp-nav .menu-item-has-children > a::after{ content:"▾"; font-size:.8em; line-height:1; }
.swp-nav .sub-menu{ list-style:none; margin:8px 0 0; padding:10px 0 0 14px; display:flex; flex-direction:column; gap:10px; }
.swp-nav .sub-menu a{ font-weight:700; font-size:.95em; }


@media (max-width: 979px){
  .swp-brand{
    margin-inline:auto;
    margin-bottom: 4px;
  }
  .swp-brand.has-logo .swp-brand__text{
    display:none;
  }
  .swp-brand__logo{
    width: var(--swp-logo-size-mobile, 56px);
    height: var(--swp-logo-size-mobile, 56px);
    border-radius: 14px;
  }
  .swp-nav{
    position:absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    background:#fff;
    border: 1px solid rgba(20,20,20,.10);
    border-radius: 16px;
    box-shadow: var(--swp-shadow2);
    padding: 14px;
    display:none;
    z-index: 60;
  }
  .swp-nav.is-open{ display:block; }
  .swp-note{ display:none; }
}
@media (min-width: 980px){
  .swp-header__row{
    grid-template-columns: auto 1fr auto;
    align-items:center;
    gap:18px;
  }
  .swp-brand{
    width:auto;
    justify-content:flex-start;
  }
  .swp-nav{ position: static; display:block !important; justify-self:center; }
  .swp-nav > div > ul,
  .swp-nav > ul,
  .swp-nav ul:first-child{ flex-direction:row; gap:16px; flex-wrap:wrap; }
  .swp-nav .sub-menu{
    position:absolute;
    top:100%;
    left:0;
    min-width:240px;
    margin:12px 0 0;
    padding:14px;
    border:1px solid rgba(20,20,20,.10);
    border-radius:16px;
    background:#fff;
    box-shadow: var(--swp-shadow2);
    display:none;
    z-index:70;
  }
  .swp-nav .menu-item-has-children:hover > .sub-menu,
  .swp-nav .menu-item-has-children:focus-within > .sub-menu{ display:flex; }
  .swp-brand__logo{
    width: var(--swp-logo-size-desktop, 72px);
    height: var(--swp-logo-size-desktop, 72px);
    border-radius: 16px;
  }
}

/* Type */
.swp-title{ margin:0; font-size: clamp(26px, 6vw, 44px); line-height:1.06; letter-spacing:-0.03em; color: var(--swp-ink); }
.swp-h2{ margin:0; font-size: clamp(20px, 4.5vw, 34px); line-height:1.12; letter-spacing:-0.02em; color: var(--swp-ink); }
.swp-subtitle{ margin:0; color: var(--swp-muted); max-width: 72ch; line-height:1.65; }
.swp-prose{ max-width: 72ch; line-height:1.75; }
.swp-muted{ color: var(--swp-muted); }

/* Buttons */
.swp-btn,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button{
  border-radius: 999px !important;
  padding: 12px 16px !important;
  font-weight: 900 !important;
  border: 1px solid rgba(20,20,20,.14) !important;
  background: var(--swp-ink) !important;
  color:#fff !important;
  box-shadow: 0 12px 22px rgba(20,20,20,.10) !important;
  text-decoration:none !important;
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  transition: transform .12s ease, opacity .12s ease, box-shadow .12s ease;
}
.swp-btn:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover{
  opacity:.95;
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(20,20,20,.14) !important;
}
.swp-btn--ghost{
  background: transparent !important;
  color: var(--swp-ink) !important;
  box-shadow:none !important;
}
.swp-actions{ display:flex; flex-wrap:wrap; gap:10px; align-items:center; }

/* Badge + cards */
.swp-badge{
  display:inline-flex;
  width:fit-content;
  padding:6px 12px;
  border-radius:999px;
  background: color-mix(in srgb, var(--swp-accent) 22%, transparent);
  color: var(--swp-ink);
  font-weight: 850;
  font-size: 12px;
}
.swp-card{
  background: color-mix(in srgb, var(--swp-surface) 92%, white 8%);
  border-radius: var(--swp-radius);
  border: var(--swp-border);
  box-shadow: var(--swp-shadow2);
  padding: 16px;
}

/* Homepage */
.swp-hero{
  border-radius: calc(var(--swp-radius) + 6px);
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--swp-surface) 92%, white 8%),
    color-mix(in srgb, var(--swp-surface) 78%, white 22%)
  );
  border: var(--swp-border);
  box-shadow: var(--swp-shadow2);
  padding: 18px;
  display:grid;
  gap: 16px;
}
@media (min-width: 980px){
  .swp-hero{ padding: 34px; grid-template-columns: 1.1fr .9fr; align-items:start; }
}

.swp-hero-collage{
  border-radius: 18px;
  border: 1px solid rgba(20,20,20,.08);
  background:#fff;
  padding: 10px;
}
.swp-hero-collage__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.swp-hero-collage__img{
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid rgba(20,20,20,.08);
  background:#fff;
  aspect-ratio: 4 / 3;
}
.swp-hero-collage__img img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

/* Footer */
.swp-footer{
  margin-top: 34px;
  border-top: 1px solid rgba(20,20,20,.10);
  background: color-mix(in srgb, var(--swp-surface) 82%, white 18%);
  padding: 26px 0 18px;
}
.swp-footer__grid{ display:grid; gap: 18px; }
@media (min-width: 980px){ .swp-footer__grid{ grid-template-columns: 1.15fr .85fr; align-items:start; } }
.swp-footer h3{ margin:0; color: var(--swp-ink); letter-spacing:-0.02em; }
.swp-footer pre{ white-space:pre-wrap; margin:0; font-family: inherit; color: var(--swp-muted); line-height:1.7; }
.swp-footer__main,
.swp-footer__contactcard,
.swp-footer__brandlinks,
.swp-footer__payments{
  background:#fff;
  border:1px solid rgba(20,20,20,.08);
  border-radius:18px;
  box-shadow: var(--swp-shadow2);
}
.swp-footer__main{ padding:18px; }
.swp-footer__side{ display:grid; gap:14px; }
.swp-footer__contactcard{ padding:18px; }
.swp-footer__image-wrap{
  margin-top:14px;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(20,20,20,.08);
  background:#fff;
}
.swp-footer__image-wrap img{ width:100%; display:block; }
.swp-footer__brandlinks{
  padding:14px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items:stretch;
  gap:10px;
}
.swp-social-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  width:100%;
  min-width:0;
  padding:8px 10px;
  border-radius:999px;
  text-decoration:none;
  color:var(--swp-ink);
  background: color-mix(in srgb, var(--swp-surface) 84%, white 16%);
  border:1px solid rgba(20,20,20,.08);
  font-weight:700;
  font-size:12px;
  line-height:1.2;
  text-align:center;
}
.swp-social-link:hover{ transform: translateY(-1px); }
.swp-social-link--instagram .swp-social-link__icon{
  background:linear-gradient(135deg,#405DE6 0%,#C13584 55%,#FCAF45 100%);
}
.swp-social-link--trustpilot .swp-social-link__icon,
.swp-social-link__icon--trustpilot{
  background:#00B67A;
  color:#fff;
}
.swp-social-link__icon{
  width:26px;
  height:26px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--swp-ink);
  color:#fff;
  flex:0 0 auto;
}
.swp-social-link__icon svg{ width:14px; height:14px; display:block; }
.swp-trustpilot-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-width:0;
  min-height:44px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(20,20,20,.08);
  background: color-mix(in srgb, var(--swp-surface) 84%, white 16%);
  text-decoration:none;
}
.swp-social-link span:last-child{
  white-space:nowrap;
}
.swp-trustpilot-badge img{ display:block; max-height:24px; width:auto; max-width:100%; }
@media (max-width: 560px){
  .swp-footer__brandlinks{
    grid-template-columns: 1fr;
  }
  .swp-social-link,
  .swp-trustpilot-badge{
    font-size:14px;
  }
}
.swp-footer__payments{
  margin-top:18px;
  padding:16px;
  text-align:center;
}
.swp-footer__payments-text{
  color:var(--swp-ink);
  font-weight:700;
  margin-bottom:12px;
}
.swp-footer__payments-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:10px;
  justify-items:center;
}
@media (min-width: 700px){ .swp-footer__payments-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (min-width: 980px){ .swp-footer__payments-grid{ grid-template-columns: repeat(6, minmax(0,1fr)); } }
.swp-payment-badge{
  width:100%;
  max-width:120px;
  min-height:56px;
  padding:10px 12px;
  border-radius:14px;
  background:#fff;
  border:1px solid rgba(20,20,20,.08);
  display:flex;
  align-items:center;
  justify-content:center;
}
.swp-payment-badge img{ max-width:100%; max-height:28px; width:auto; height:auto; display:block; }
.swp-footer__copy{ margin-top: 16px; color: var(--swp-muted); font-size: 13px; text-align:center; }

/* Woo base */
.woocommerce .woocommerce-breadcrumb{ color: var(--swp-muted); margin: 0 0 12px !important; }
.woocommerce .woocommerce-breadcrumb a{ color: var(--swp-muted); text-decoration:none; }
.woocommerce .woocommerce-breadcrumb a:hover{ text-decoration:underline; }

/* Woo base */
.woocommerce .woocommerce-breadcrumb{ color: var(--swp-muted); margin: 0 0 12px !important; }
.woocommerce .woocommerce-breadcrumb a{ color: var(--swp-muted); text-decoration:none; }
.woocommerce .woocommerce-breadcrumb a:hover{ text-decoration:underline; }

/* Product grid (instelbaar) */
.woocommerce ul.products{
  display:grid !important;
  grid-template-columns: repeat(var(--swp-grid-cols-mobile, 2), minmax(0, 1fr)) !important;
  gap: var(--swp-gap) !important;
  margin: 18px 0 0 !important;
}
@media (min-width: 900px){
  .woocommerce ul.products{ grid-template-columns: repeat(var(--swp-grid-cols-desktop, 4), minmax(0, 1fr)) !important; }
}
.woocommerce ul.products::before, .woocommerce ul.products::after{ display:none !important; }
.woocommerce ul.products li.product{ float:none !important; width:auto !important; margin:0 !important; }

/* Thumbnail sizing */
.swp-product-media{
  background:#fff;
  border: 1px solid rgba(20,20,20,.08);
  border-radius: calc(var(--swp-radius) + 6px);
  padding: 14px;
  position: relative;
}
.swp-product-media img{
  width: 100% !important;
  height: calc(var(--swp-thumb-h-mobile, 150) * 1px) !important;
  object-fit: contain !important;
  display:block !important;
}
@media (min-width: 900px){
  .swp-product-media img{ height: calc(var(--swp-thumb-h-desktop, 190) * 1px) !important; }
}
/* Cart/Checkout mobile fixes */
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce{
  max-width: 100%;
}

.woocommerce-cart-form{
  width: 100%;
  overflow-x: auto; /* safety */
}

.woocommerce table.shop_table{
  width: 100% !important;
}

@media (max-width: 760px){
  .woocommerce table.shop_table thead{ display:none; }
  .woocommerce table.shop_table tr{
    display:block;
    border: 1px solid rgba(20,20,20,.10);
    border-radius: 16px;
    overflow:hidden;
    margin: 0 0 12px 0;
    background: #fff;
  }
  .woocommerce table.shop_table td{
    display:flex;
    justify-content:space-between;
    gap: 12px;
    padding: 10px 12px !important;
    border-top: 1px solid rgba(20,20,20,.08);
  }
  .woocommerce table.shop_table td::before{
    content: attr(data-title);
    font-weight: 800;
    color: var(--swp-muted);
  }
  .woocommerce table.shop_table td.product-thumbnail::before{ content: ''; }
  .woocommerce table.shop_table td.product-thumbnail{ justify-content:flex-start; }
  .woocommerce table.shop_table td.product-thumbnail img{ width: 64px; height: auto; border-radius: 10px; border:1px solid rgba(20,20,20,.08); }

  .woocommerce .cart-collaterals{
    width: 100%;
  }
  .woocommerce .cart-collaterals .cart_totals{
    float:none !important;
    width: 100% !important;
  }
  .woocommerce .cart-collaterals .cart_totals table{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    border: 1px solid rgba(20,20,20,.10);
  }
}

/* Form fields */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select{
  border-radius: 14px;
  border: 1px solid rgba(20,20,20,.14);
  padding: 12px 12px;
}



/* ===== Bombees-achtige moderne secties ===== */

.swp-section{ margin-top: 26px; }
.swp-center{ text-align:center; }

/* HERO banner */
.swp-hero-banner{ margin-top: 10px; }
.swp-hero-banner--bleed{
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.swp-hero-media{
  position: relative;
  border-radius: calc(var(--swp-radius) + 8px);
  overflow: hidden;
  border: var(--swp-border);
  background: color-mix(in srgb, var(--swp-surface) 70%, white 30%);
  box-shadow: var(--swp-shadow2);
}
.swp-hero-banner--bleed .swp-hero-media{
  width: 100vw;
  max-width: 100vw;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  box-shadow: none;
}
.swp-hero-media img{
  width: 100%;
  display:block;
  max-width: none;
  background: #fff;
}
.swp-hero-fit--contain img{ height: 420px; object-fit: contain; }
.swp-hero-fit--cover img{ height: 420px; object-fit: cover; }

/* Full-width hero must also work on phones when browsers request the desktop site.
   In that mode the CSS viewport can stay narrow, so this cannot depend on desktop media queries. */
.swp-hero-banner--bleed .swp-hero-fit--contain img,
.swp-hero-banner--bleed .swp-hero-fit--cover img{
  width: 100vw;
  height: clamp(320px, 42vw, 560px);
  object-fit: cover !important;
  object-position: center center;
}
.swp-hero-banner--bleed .swp-hero-overlay{
  padding-left: max(16px, calc((100vw - var(--swp-maxw)) / 2 + 18px));
  padding-right: max(16px, calc((100vw - var(--swp-maxw)) / 2 + 18px));
}
@media (max-width: 720px){
  .swp-hero-banner--bleed .swp-hero-fit--contain img,
  .swp-hero-banner--bleed .swp-hero-fit--cover img{
    height: clamp(520px, 132vw, 760px);
  }
}
.swp-hero-placeholder{
  padding: 48px 18px;
  text-align:center;
  color: var(--swp-muted);
}

.swp-hero-overlay{
  position:absolute;
  inset: 0;
  display:flex;
  align-items:center;
  padding: 18px;
  background: linear-gradient(90deg, rgba(0,0,0,.58) 0%, rgba(0,0,0,.18) 60%, rgba(0,0,0,0) 100%);
}
@media (max-width: 720px){
  .swp-hero-overlay{
    align-items:flex-end;
    padding: 14px;
    background: linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.42) 46%, rgba(0,0,0,.68) 100%);
  }
}
.swp-hero-overlay-inner{
  width: min(720px, 100%);
  color: #fff;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
  box-shadow: none;
}
@media (max-width: 720px){
  .swp-hero-overlay-inner{
    width: 100%;
    padding: 0;
    border-radius: 0;
  }
}
@media (min-width: 900px){
  .swp-hero-overlay-inner{ padding: 0; }
}
 .swp-hero-title{
  margin:0;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-shadow: 0 8px 22px rgba(0,0,0,.28);
}
@media (max-width: 720px){
  .swp-hero-title{
    font-size: clamp(22px, 7.6vw, 34px);
    line-height: 1.12;
  }
}
 .swp-hero-text{
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.5;
  opacity: .98;
  text-shadow: 0 6px 18px rgba(0,0,0,.25);
}
@media (max-width: 720px){
  .swp-hero-text{
    font-size: 15px;
    line-height: 1.6;
  }
}
.swp-hero-overlay .swp-actions{ margin-top: 14px; }
.swp-hero-overlay .swp-hero-btn{
  min-width: min(320px, 100%);
  justify-content: center;
  font-size: 18px;
  padding: 14px 24px !important;
}
@media (max-width: 720px){
  .swp-hero-overlay .swp-actions{
    flex-direction: column;
    align-items: stretch;
  }
  .swp-hero-overlay .swp-actions .swp-btn,
  .swp-hero-overlay .swp-actions .swp-hero-btn{
    width: 100%;
    min-width: 0;
  }
}
.swp-hero-overlay .swp-btn,
.swp-hero-overlay .swp-btn--ghost,
.swp-hero-overlay .swp-hero-btn{
  background: transparent !important;
  color:#fff !important;
  border: 1.5px solid rgba(255,255,255,.72) !important;
  box-shadow: none !important;
  min-height: 58px;
}
.swp-hero-overlay .swp-btn:hover,
.swp-hero-overlay .swp-btn--ghost:hover,
.swp-hero-overlay .swp-hero-btn:hover{
  background: rgba(255,255,255,.08) !important;
  color:#fff !important;
  border-color: rgba(255,255,255,.9) !important;
}
@media (max-width: 720px){
  .swp-hero-overlay .swp-subtitle{
    font-size: 14px;
    line-height: 1.5;
  }
}

/* Features */
.swp-features{
  display:grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 820px){
  .swp-features{ grid-template-columns: repeat(4, 1fr); }
}
.swp-feature{
  background:#fff;
  border: var(--swp-border);
  border-radius: calc(var(--swp-radius) + 2px);
  padding: 16px;
  box-shadow: var(--swp-shadow2);
  text-align:center;
}
.swp-feature__icon{ font-size: 24px; line-height: 1; }
.swp-feature__title{ margin-top: 10px; font-weight: 800; }
.swp-feature__body{ margin-top: 8px; color: var(--swp-muted); font-size: 14px; line-height: 1.45; }

/* Album slider */
.swp-album{
  margin-top: 14px;
  overflow-x:auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
}
.swp-album-track{
  display:flex;
  gap: 14px;
  padding: 4px 2px;
}
.swp-album-item{
  flex: 0 0 72%;
  max-width: 72%;
  scroll-snap-align: start;
  border-radius: calc(var(--swp-radius) + 6px);
  overflow:hidden;
  border: var(--swp-border);
  background:#fff;
  box-shadow: var(--swp-shadow2);
}
@media (min-width: 820px){
  .swp-album-item{ flex-basis: 24%; max-width: 24%; }
}
.swp-album-item img{
  width:100%;
  height: 260px;
  object-fit: cover;
  display:block;
}

/* Reviews */
.swp-reviews{
  margin-top: 14px;
  display:grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px){
  .swp-reviews{ grid-template-columns: repeat(3, 1fr); }
}
.swp-review{
  background:#fff;
  border: var(--swp-border);
  border-radius: calc(var(--swp-radius) + 6px);
  padding: 16px;
  box-shadow: var(--swp-shadow2);
}
.swp-review__stars{
  font-weight: 800;
  letter-spacing: .08em;
}
.swp-review-source{
  display:flex;
  justify-content:center;
  margin: 12px 0 18px;
}
.swp-reviews-summary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  padding:12px 18px;
  background:#fff;
  border: var(--swp-border);
  border-radius: 999px;
  box-shadow: var(--swp-shadow2);
}
.swp-reviews-summary__label{
  font-weight:800;
}
.swp-reviews-summary__score{
  font-weight:900;
  font-size:18px;
}
.swp-reviews-summary__stars{
  letter-spacing:.12em;
  color:#00B67A;
}
.swp-reviews-summary__count{
  color: var(--swp-muted);
  font-weight:700;
}
.swp-review__title{
  margin-top: 10px;
  font-weight: 800;
  color: var(--swp-ink);
}
.swp-review__text{
  margin-top: 10px;
  color: var(--swp-muted);
  line-height: 1.55;
  min-height: 64px;
}
.swp-review__meta{
  margin-top: 12px;
  display:flex;
  flex-wrap:wrap;
  gap:8px 12px;
  align-items:center;
}
.swp-review__name{
  font-weight: 800;
}
.swp-review__source,
.swp-review__date{
  color: var(--swp-muted);
  font-size: 13px;
}
.swp-review__source{
  font-weight:700;
}

/* Promises */
.swp-promises{
  margin-top: 14px;
  display:grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 900px){
  .swp-promises{ grid-template-columns: repeat(4, 1fr); }
}
.swp-promise{
  background:#fff;
  border: var(--swp-border);
  border-radius: calc(var(--swp-radius) + 6px);
  padding: 16px;
  box-shadow: var(--swp-shadow2);
  text-align:center;
}
.swp-promise__icon{ font-size: 22px; line-height: 1; }
.swp-promise__title{ margin-top: 10px; font-weight: 900; }
.swp-promise__body{ margin-top: 8px; color: var(--swp-muted); font-size: 14px; line-height: 1.45; }

.swp-section-head{ display:grid; gap: 8px; margin-bottom: 14px; }

/* Review form */
.swp-review-form .swp-form label{ display:block; font-weight: 700; margin-bottom: 6px; }
.swp-review-form .swp-form input[type="text"],
.swp-review-form .swp-form textarea,
.swp-review-form .swp-form select{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(20,20,20,.16);
  padding: 10px 12px;
  font: inherit;
}
.swp-review-form .swp-form p{ margin: 0 0 12px 0; }

/* BESTSELLER badge */
.woocommerce ul.products li.product .swp-product-media,
.woocommerce ul.products li.product .woocommerce-loop-product__link,
.woocommerce-page ul.products li.product .swp-product-media,
.woocommerce-page ul.products li.product .woocommerce-loop-product__link{ position: relative; display:block; }
.swp-bestseller{
  position:absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(20,20,20,.85);
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: var(--swp-shadow2);
}

/* Make product cards more "clean" */
.woocommerce ul.products li.product .swp-card{
  padding: 14px;
}
.woocommerce ul.products li.product .swp-card img{
  border-radius: calc(var(--swp-radius) + 6px);
}

.swp-page-body{display:grid;gap:16px;}
.swp-page-body > *{max-width:100%;}


/* Collapsible (review form on homepage) */
.swp-collapse{
  overflow: hidden;
  transition: max-height .28s ease;
  max-height: 0;
}
.swp-collapse.is-open{
  max-height: 2000px;
}


/* Dashicons alignment */
.swp-feature__icon .dashicons,
.swp-promise__icon .dashicons{
  font-size: 28px;
  width: 28px;
  height: 28px;
}



/* HARD FORCE GRID FIX */
body .woocommerce ul.products,
body.woocommerce ul.products,
body .woocommerce-page ul.products{
display:grid !important;
grid-template-columns:repeat(2,minmax(0,1fr)) !important;
gap:20px !important;
}

@media(min-width:768px){
body .woocommerce ul.products,
body.woocommerce ul.products,
body .woocommerce-page ul.products{
grid-template-columns:repeat(3,minmax(0,1fr)) !important;
}
}

@media(min-width:980px){
body .woocommerce ul.products,
body.woocommerce ul.products,
body .woocommerce-page ul.products{
grid-template-columns:repeat(4,minmax(0,1fr)) !important;
gap:16px !important;
}
}

body .woocommerce ul.products li.product,
body .woocommerce-page ul.products li.product{
float:none !important;
width:100% !important;
max-width:none !important;
margin:0 !important;
}



/* PREMIUM PRODUCT CARDS */

body .woocommerce ul.products li.product{
background:#fff;
border-radius:18px;
padding:14px;
box-shadow:0 8px 30px rgba(0,0,0,0.06);
transition:transform .25s ease, box-shadow .25s ease;
}

body .woocommerce ul.products li.product:hover{
transform:translateY(-6px);
box-shadow:0 16px 40px rgba(0,0,0,0.12);
}

body .woocommerce ul.products li.product img{
border-radius:14px;
}

body .woocommerce ul.products li.product .button{
width:100%;
margin-top:10px;
border-radius:999px;
font-weight:700;
}

/* BESTSELLER SLIDER */

.swp-product-slider{
display:flex;
overflow-x:auto;
gap:20px;
padding-bottom:10px;
scroll-snap-type:x mandatory;
}

.swp-product-slider .product{
min-width:260px;
scroll-snap-align:start;
}



/* v2.3.1 product image consistency fixes */
.swp-product-media{
  aspect-ratio: 1 / 1 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  overflow:hidden !important;
}
.swp-product-media img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  display:block !important;
}

/* Single product image always visible */
.swp-single-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
}
@media (min-width: 980px){
  .swp-single-grid{
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
    align-items:start;
  }
}
.swp-single-media{
  overflow:hidden;
}
.swp-single-media .woocommerce-product-gallery,
.swp-single-media .images{
  width:100% !important;
  float:none !important;
  margin:0 !important;
}
.swp-single-media .woocommerce-product-gallery__wrapper img,
.swp-single-media .images img,
.swp-single-media img.wp-post-image{
  width:100% !important;
  height:auto !important;
  display:block !important;
  border-radius:16px;
}
.swp-single-summary{
  min-width:0;
}

/* prevent theme from hiding single-product images */
.single-product .product .images,
.single-product .product .woocommerce-product-gallery{
  opacity:1 !important;
  visibility:visible !important;
  display:block !important;
}


/* v2.3.2 equal product image sizing on shop page */
body .woocommerce ul.products li.product .swp-card{
  display:flex !important;
  flex-direction:column !important;
  height:100% !important;
}

body .woocommerce ul.products li.product .swp-product-media{
  width:100% !important;
  aspect-ratio:1 / 1 !important;
  min-height:0 !important;
  overflow:hidden !important;
  display:block !important;
  border-radius:14px !important;
  background:#f8f8f8 !important;
}

body .woocommerce ul.products li.product .swp-product-media img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  display:block !important;
}

body .woocommerce ul.products li.product .woocommerce-loop-product__link img,
body .woocommerce ul.products li.product img.attachment-woocommerce_thumbnail,
body .woocommerce ul.products li.product img.wp-post-image{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
}


/* v2.3.3 hard shop image equal-size fix */
body .woocommerce ul.products li.product .swp-shop-card{
  display:flex !important;
  flex-direction:column !important;
  height:100% !important;
}

body .woocommerce ul.products li.product .swp-product-media{
  position:relative !important;
  width:100% !important;
  aspect-ratio:1 / 1 !important;
  overflow:hidden !important;
  display:block !important;
  border-radius:14px !important;
  background:#f6f6f6 !important;
  margin:0 !important;
}

body .woocommerce ul.products li.product .swp-product-media .onsale{
  position:absolute !important;
  top:10px !important;
  left:10px !important;
  z-index:2 !important;
}

body .woocommerce ul.products li.product .swp-shop-image,
body .woocommerce ul.products li.product .swp-product-media img,
body .woocommerce ul.products li.product img.attachment-woocommerce_thumbnail,
body .woocommerce ul.products li.product img.wp-post-image{
  width:100% !important;
  height:100% !important;
  max-width:none !important;
  object-fit:cover !important;
  display:block !important;
  margin:0 !important;
  border-radius:14px !important;
}

body .woocommerce ul.products li.product .swp-shop-title{
  min-height:2.6em;
}

body .woocommerce ul.products li.product .swp-shop-price{
  min-height:1.8em;
}

/* v2.3.4 Elementor/Woo hard equal-image fix */
body .woocommerce ul.products li.product .swp-shop-card,
body .woocommerce-page ul.products li.product .swp-shop-card{
  display:flex !important;
  flex-direction:column !important;
  height:100% !important;
}

body .woocommerce ul.products li.product .swp-product-media,
body .woocommerce-page ul.products li.product .swp-product-media,
body .elementor-widget-woocommerce-products ul.products li.product .swp-product-media,
body .elementor-widget-woocommerce-archive-products ul.products li.product .swp-product-media{
  position:relative !important;
  display:block !important;
  width:100% !important;
  min-height:0 !important;
  padding:0 !important;
  margin:0 !important;
  line-height:0 !important;
  overflow:hidden !important;
  border-radius:14px !important;
  background:#f6f6f6 !important;
  isolation:isolate !important;
}

body .woocommerce ul.products li.product .swp-product-media::before,
body .woocommerce-page ul.products li.product .swp-product-media::before,
body .elementor-widget-woocommerce-products ul.products li.product .swp-product-media::before,
body .elementor-widget-woocommerce-archive-products ul.products li.product .swp-product-media::before{
  content:"";
  display:block;
  padding-top:100%;
}

body .woocommerce ul.products li.product .swp-product-media .onsale,
body .woocommerce-page ul.products li.product .swp-product-media .onsale{
  position:absolute !important;
  top:10px !important;
  left:10px !important;
  z-index:3 !important;
}

body .woocommerce ul.products li.product .swp-shop-image,
body .woocommerce ul.products li.product .swp-product-media > img,
body .woocommerce-page ul.products li.product .swp-shop-image,
body .woocommerce-page ul.products li.product .swp-product-media > img,
body .elementor-widget-woocommerce-products ul.products li.product .swp-product-media > img,
body .elementor-widget-woocommerce-archive-products ul.products li.product .swp-product-media > img,
body .woocommerce ul.products li.product img.attachment-woocommerce_thumbnail,
body .woocommerce ul.products li.product img.wp-post-image,
body .woocommerce-page ul.products li.product img.attachment-woocommerce_thumbnail,
body .woocommerce-page ul.products li.product img.wp-post-image{
  position:absolute !important;
  inset:0 !important;
  width:100% !important;
  height:100% !important;
  min-width:100% !important;
  min-height:100% !important;
  max-width:none !important;
  object-fit:cover !important;
  object-position:center center !important;
  display:block !important;
  margin:0 !important;
  border-radius:14px !important;
  transform:translateZ(0);
}

body .woocommerce ul.products li.product .swp-shop-title,
body .woocommerce-page ul.products li.product .swp-shop-title{
  min-height:2.6em;
}

body .woocommerce ul.products li.product .swp-shop-price,
body .woocommerce-page ul.products li.product .swp-shop-price{
  min-height:1.8em;
}


/* v2.3.5 ultimate Elementor/default Woo equal-image fix */
body .woocommerce ul.products li.product .swp-equal-media,
body .woocommerce-page ul.products li.product .swp-equal-media,
body .elementor-widget-woocommerce-products ul.products li.product .swp-equal-media,
body .elementor-widget-woocommerce-archive-products ul.products li.product .swp-equal-media{
  position:relative !important;
  display:block !important;
  width:100% !important;
  padding-top:100% !important;
  overflow:hidden !important;
  border-radius:14px !important;
  background:#f6f6f6 !important;
  line-height:0 !important;
  margin:0 0 10px 0 !important;
}

body .woocommerce ul.products li.product .swp-equal-media > img,
body .woocommerce-page ul.products li.product .swp-equal-media > img,
body .elementor-widget-woocommerce-products ul.products li.product .swp-equal-media > img,
body .elementor-widget-woocommerce-archive-products ul.products li.product .swp-equal-media > img{
  position:absolute !important;
  inset:0 !important;
  width:100% !important;
  height:100% !important;
  min-width:100% !important;
  min-height:100% !important;
  max-width:none !important;
  object-fit:cover !important;
  object-position:center center !important;
  display:block !important;
  margin:0 !important;
  border-radius:14px !important;
}

/* extra defensive overrides for theme/widget image rules */
body .woocommerce ul.products li.product img.swp-shop-image,
body .woocommerce ul.products li.product .swp-equal-media img,
body .woocommerce-page ul.products li.product img.swp-shop-image,
body .woocommerce-page ul.products li.product .swp-equal-media img{
  float:none !important;
  aspect-ratio:auto !important;
}


/* Contact form */
.swp-contact-form .swp-form label{ display:block; font-weight:700; margin-bottom:6px; }
.swp-contact-form .swp-form input[type="text"],
.swp-contact-form .swp-form input[type="email"],
.swp-contact-form .swp-form textarea{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(20,20,20,.16);
  padding:10px 12px;
  font:inherit;
  background:#fff;
}
.swp-contact-form .swp-form p{ margin:0 0 12px 0; }
.swp-form-grid{ display:grid; gap:12px; }
@media (min-width: 720px){
  .swp-form-grid--2{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
.swp-form-notice{
  border-radius:16px;
  padding:12px 14px;
  margin:0 0 14px 0;
  font-weight:600;
}
.swp-form-notice--success{
  background: rgba(34, 197, 94, .10);
  border:1px solid rgba(34, 197, 94, .28);
  color:#166534;
}
.swp-form-notice--error{
  background: rgba(220, 38, 38, .08);
  border:1px solid rgba(220, 38, 38, .22);
  color:#991b1b;
}


/* About page */
.swp-about-page{ display:grid; gap: 18px; }
.swp-about-hero__media{
  overflow:hidden;
  border-radius: calc(var(--swp-radius) + 8px);
  border: var(--swp-border);
  box-shadow: var(--swp-shadow2);
  background: color-mix(in srgb, var(--swp-surface) 78%, white 22%);
}
.swp-about-hero__media img{
  width:100%;
  display:block;
  aspect-ratio: 16 / 6;
  object-fit: cover;
}
.swp-about-copy{
  padding: 20px;
}
.swp-about-copy__body{
  margin-top: 14px;
}
.swp-about-copy__body > *:first-child{ margin-top: 0; }
.swp-about-copy__body > *:last-child{ margin-bottom: 0; }
@media (max-width: 720px){
  .swp-about-hero__media img{ aspect-ratio: 4 / 3; }
}


/* Information page */
.swp-info-page{
  display:grid;
  gap:18px;
}
.swp-info-intro{
  padding:20px;
}
.swp-info-intro .swp-subtitle{
  margin-top:10px;
}
.swp-info-links{
  display:grid;
  gap:16px;
}
@media (min-width: 760px){
  .swp-info-links{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.swp-info-link{
  display:grid;
  gap:8px;
  text-decoration:none;
  color:var(--swp-ink);
  padding:20px;
  transition: transform .12s ease, box-shadow .12s ease;
}
.swp-info-link:hover{
  transform: translateY(-1px);
  box-shadow: var(--swp-shadow);
}
.swp-info-link__eyebrow{
  font-size:12px;
  line-height:1.2;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--swp-muted);
}
.swp-info-link__title{
  font-size: clamp(20px, 3vw, 28px);
  line-height:1.08;
  letter-spacing:-0.02em;
  font-weight:900;
}
.swp-info-link__text{
  color:var(--swp-muted);
  line-height:1.7;
}
.swp-info-copy{
  padding:20px;
}
.swp-info-copy .swp-page-body > *:first-child{
  margin-top:0;
}
.swp-info-copy .swp-page-body > *:last-child{
  margin-bottom:0;
}


/* v2.3.16 shop desktop grid fix + compact cards */
@media (min-width: 980px){
  body.post-type-archive-product .swp-container,
  body.tax-product_cat .swp-container,
  body.tax-product_tag .swp-container,
  body.woocommerce-shop .swp-container,
  body.woocommerce-page.post-type-archive-product .swp-container{
    max-width: 1280px;
  }

  body .woocommerce ul.products li.product,
  body .woocommerce-page ul.products li.product{
    padding: 12px !important;
    border-radius: 16px !important;
  }

  body .woocommerce ul.products li.product .swp-shop-title,
  body .woocommerce-page ul.products li.product .swp-shop-title{
    font-size: 16px !important;
    line-height: 1.35 !important;
    margin-top: 8px !important;
    min-height: 2.7em;
  }

  body .woocommerce ul.products li.product .swp-shop-price,
  body .woocommerce-page ul.products li.product .swp-shop-price{
    font-size: 15px !important;
    margin-top: 4px !important;
  }

  body .woocommerce ul.products li.product .button,
  body .woocommerce-page ul.products li.product .button{
    margin-top: 10px !important;
    padding: 10px 14px !important;
    font-size: 14px !important;
  }
}


/* v2.3.18 equal title rows on desktop */


/* v2.3.19 price display fixes */
.single-product .product-type-variable .summary > p.price:empty,
.single-product .product-type-variable .summary > .price:empty{
  display:none !important;
  margin:0 !important;
}

body .woocommerce ul.products li.product .swp-shop-price .swp-price-prefix,
body .woocommerce-page ul.products li.product .swp-shop-price .swp-price-prefix{
  font-weight:600;
}


/* v2.3.20 equal archive card heights + from price */
@media (min-width: 980px){
  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products,
  body.woocommerce-shop ul.products,
  body.woocommerce-page.post-type-archive-product ul.products,
  body .woocommerce ul.products.products,
  body .woocommerce-page ul.products.products{
    align-items: stretch !important;
  }

  body.post-type-archive-product ul.products li.product,
  body.tax-product_cat ul.products li.product,
  body.tax-product_tag ul.products li.product,
  body.woocommerce-shop ul.products li.product,
  body.woocommerce-page.post-type-archive-product ul.products li.product,
  body .woocommerce ul.products.products li.product,
  body .woocommerce-page ul.products.products li.product{
    display: flex !important;
    align-self: stretch !important;
    height: 100% !important;
  }

  body.post-type-archive-product ul.products li.product .swp-shop-card,
  body.tax-product_cat ul.products li.product .swp-shop-card,
  body.tax-product_tag ul.products li.product .swp-shop-card,
  body.woocommerce-shop ul.products li.product .swp-shop-card,
  body.woocommerce-page.post-type-archive-product ul.products li.product .swp-shop-card,
  body .woocommerce ul.products.products li.product .swp-shop-card,
  body .woocommerce-page ul.products.products li.product .swp-shop-card{
    width: 100% !important;
    min-height: 100% !important;
  }

  body.post-type-archive-product ul.products li.product .swp-shop-price,
  body.tax-product_cat ul.products li.product .swp-shop-price,
  body.tax-product_tag ul.products li.product .swp-shop-price,
  body.woocommerce-shop ul.products li.product .swp-shop-price,
  body.woocommerce-page.post-type-archive-product ul.products li.product .swp-shop-price,
  body .woocommerce ul.products.products li.product .swp-shop-price,
  body .woocommerce-page ul.products.products li.product .swp-shop-price{
    display: block !important;
    min-height: 1.6em !important;
  }

  body.post-type-archive-product ul.products li.product .swp-shop-price:empty::before,
  body.tax-product_cat ul.products li.product .swp-shop-price:empty::before,
  body.tax-product_tag ul.products li.product .swp-shop-price:empty::before,
  body.woocommerce-shop ul.products li.product .swp-shop-price:empty::before,
  body.woocommerce-page.post-type-archive-product ul.products li.product .swp-shop-price:empty::before,
  body .woocommerce ul.products.products li.product .swp-shop-price:empty::before,
  body .woocommerce-page ul.products.products li.product .swp-shop-price:empty::before{
    content: '\00a0';
    visibility: hidden;
    display: inline-block;
  }
}

body .woocommerce ul.products li.product .swp-shop-price .swp-price-prefix,
body .woocommerce-page ul.products li.product .swp-shop-price .swp-price-prefix{
  font-weight: 600;
}


/* v2.3.21 fix stretched shop buttons */
body .woocommerce ul.products li.product .swp-actions,
body .woocommerce-page ul.products li.product .swp-actions{
  display:block !important;
  width:100% !important;
}

body .woocommerce ul.products li.product .swp-actions .button,
body .woocommerce-page ul.products li.product .swp-actions .button,
body .woocommerce ul.products li.product a.button,
body .woocommerce-page ul.products li.product a.button{
  position:static !important;
  display:inline-flex !important;
  width:auto !important;
  max-width:100% !important;
  min-height:0 !important;
  height:auto !important;
  flex:0 0 auto !important;
  align-self:flex-start !important;
  padding:10px 16px !important;
  line-height:1.2 !important;
  white-space:normal !important;
  text-align:center !important;
}

@media (min-width: 980px){
  body.post-type-archive-product ul.products li.product .swp-actions .button,
  body.tax-product_cat ul.products li.product .swp-actions .button,
  body.tax-product_tag ul.products li.product .swp-actions .button,
  body.woocommerce-shop ul.products li.product .swp-actions .button,
  body.woocommerce-page.post-type-archive-product ul.products li.product .swp-actions .button,
  body .woocommerce ul.products.products li.product .swp-actions .button,
  body .woocommerce-page ul.products.products li.product .swp-actions .button{
    width:auto !important;
  }
}


/* v2.3.22 robust loop button reset */
body .woocommerce ul.products li.product .swp-actions,
body .woocommerce-page ul.products li.product .swp-actions{
  display:block !important;
  clear:both !important;
  width:100% !important;
  overflow:visible !important;
}

body .woocommerce ul.products li.product .swp-loop-button,
body .woocommerce-page ul.products li.product .swp-loop-button{
  position:relative !important;
  inset:auto !important;
  top:auto !important;
  right:auto !important;
  bottom:auto !important;
  left:auto !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  float:none !important;
  clear:none !important;
  width:auto !important;
  min-width:0 !important;
  max-width:100% !important;
  height:auto !important;
  min-height:0 !important;
  max-height:none !important;
  padding:10px 16px !important;
  margin:0 !important;
  line-height:1.2 !important;
  white-space:nowrap !important;
  writing-mode:horizontal-tb !important;
  transform:none !important;
  aspect-ratio:auto !important;
}

body .woocommerce ul.products li.product .swp-loop-button::before,
body .woocommerce ul.products li.product .swp-loop-button::after,
body .woocommerce-page ul.products li.product .swp-loop-button::before,
body .woocommerce-page ul.products li.product .swp-loop-button::after{
  content:none !important;
  display:none !important;
}

/* v2.3.23 final shop + desktop hero cleanup */
body .woocommerce ul.products,
body .woocommerce-page ul.products{
  align-items: stretch !important;
  row-gap: 20px !important;
}

body .woocommerce ul.products li.product,
body .woocommerce-page ul.products li.product{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
  width: 100% !important;
  display: flex !important;
  align-self: stretch !important;
  float: none !important;
}

body .woocommerce ul.products li.product .swp-shop-card,
body .woocommerce-page ul.products li.product .swp-shop-card{
  width: 100% !important;
  min-height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 14px !important;
  background: #fff !important;
  border: 1px solid rgba(20,20,20,.08) !important;
  border-radius: 18px !important;
  box-shadow: 0 10px 28px rgba(0,0,0,.06) !important;
  overflow: hidden !important;
}

body .woocommerce ul.products li.product .swp-product-media,
body .woocommerce-page ul.products li.product .swp-product-media{
  position: relative !important;
  display: block !important;
  width: 100% !important;
  padding-top: 100% !important;
  margin: 0 0 12px 0 !important;
  overflow: hidden !important;
  border-radius: 16px !important;
  background: #f5f5f5 !important;
  line-height: 0 !important;
}

body .woocommerce ul.products li.product .swp-product-media::before,
body .woocommerce-page ul.products li.product .swp-product-media::before{
  content: none !important;
  display: none !important;
}

body .woocommerce ul.products li.product .swp-product-media > img,
body .woocommerce ul.products li.product img.swp-shop-image,
body .woocommerce-page ul.products li.product .swp-product-media > img,
body .woocommerce-page ul.products li.product img.swp-shop-image{
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  margin: 0 !important;
  border-radius: 16px !important;
}

body .woocommerce ul.products li.product .swp-shop-title,
body .woocommerce-page ul.products li.product .swp-shop-title{
  margin: 0 !important;
  font-size: 15px !important;
  line-height: 1.35 !important;
  min-height: calc(2 * 1.35em) !important;
  max-height: calc(2 * 1.35em) !important;
  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
}

body .woocommerce ul.products li.product .swp-shop-title a,
body .woocommerce-page ul.products li.product .swp-shop-title a{
  color: inherit !important;
  text-decoration: none !important;
}

body .woocommerce ul.products li.product .swp-shop-price,
body .woocommerce-page ul.products li.product .swp-shop-price{
  margin-top: 8px !important;
  min-height: 1.55em !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  color: #8d7a0d !important;
}

body .woocommerce ul.products li.product .swp-shop-price .swp-price-prefix,
body .woocommerce-page ul.products li.product .swp-shop-price .swp-price-prefix{
  font-weight: 700 !important;
}

body .woocommerce ul.products li.product .swp-actions,
body .woocommerce-page ul.products li.product .swp-actions{
  margin-top: auto !important;
  padding-top: 12px !important;
  display: block !important;
  width: 100% !important;
  clear: both !important;
  overflow: visible !important;
}

body .woocommerce ul.products li.product a.swp-loop-cta,
body .woocommerce-page ul.products li.product a.swp-loop-cta{
  all: unset;
  box-sizing: border-box;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: static !important;
  float: none !important;
  clear: none !important;
  width: auto !important;
  max-width: 100% !important;
  min-width: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 10px 16px !important;
  border-radius: 999px !important;
  background: var(--swp-ink) !important;
  color: #fff !important;
  font-family: inherit !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  text-align: center !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  box-shadow: 0 12px 22px rgba(20,20,20,.10) !important;
  transform: none !important;
  writing-mode: horizontal-tb !important;
}

body .woocommerce ul.products li.product a.swp-loop-cta:hover,
body .woocommerce-page ul.products li.product a.swp-loop-cta:hover{
  color: #fff !important;
  opacity: .96;
  transform: translateY(-1px) !important;
}

body .woocommerce ul.products li.product a.swp-loop-cta::before,
body .woocommerce ul.products li.product a.swp-loop-cta::after,
body .woocommerce-page ul.products li.product a.swp-loop-cta::before,
body .woocommerce-page ul.products li.product a.swp-loop-cta::after{
  content: none !important;
  display: none !important;
}

@media (max-width: 767px){
  body .woocommerce ul.products,
  body .woocommerce-page ul.products{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }

  body .woocommerce ul.products li.product .swp-shop-card,
  body .woocommerce-page ul.products li.product .swp-shop-card{
    padding: 10px !important;
    border-radius: 14px !important;
  }

  body .woocommerce ul.products li.product .swp-shop-title,
  body .woocommerce-page ul.products li.product .swp-shop-title{
    font-size: 13px !important;
  }

  body .woocommerce ul.products li.product .swp-shop-price,
  body .woocommerce-page ul.products li.product .swp-shop-price{
    font-size: 13px !important;
  }

  body .woocommerce ul.products li.product a.swp-loop-cta,
  body .woocommerce-page ul.products li.product a.swp-loop-cta{
    padding: 9px 13px !important;
    font-size: 13px !important;
    white-space: normal !important;
  }
}

@media (min-width: 980px){
  body.woocommerce-shop .swp-container,
  body.post-type-archive-product .swp-container,
  body.tax-product_cat .swp-container,
  body.tax-product_tag .swp-container,
  body.woocommerce-page.post-type-archive-product .swp-container{
    max-width: 1280px !important;
  }

  body .woocommerce ul.products,
  body .woocommerce-page ul.products{
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 20px !important;
  }

  body .woocommerce ul.products li.product .swp-shop-card,
  body .woocommerce-page ul.products li.product .swp-shop-card{
    padding: 14px !important;
  }
}

@media (min-width: 980px){
  .swp-hero-banner--bleed .swp-hero-fit--contain img,
  .swp-hero-banner--bleed .swp-hero-fit--cover img{
    height: clamp(460px, 40vw, 680px) !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  .swp-hero-overlay{
    align-items: center !important;
    padding-top: 28px !important;
    padding-bottom: 28px !important;
    background: linear-gradient(90deg, rgba(0,0,0,.58) 0%, rgba(0,0,0,.28) 52%, rgba(0,0,0,0) 82%) !important;
  }

  .swp-hero-overlay-inner{
    width: min(620px, 100%) !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }

  .swp-hero-title{
    font-size: clamp(34px, 3.8vw, 52px) !important;
  }

  .swp-hero-text{
    font-size: 17px !important;
    max-width: 52ch;
  }
}




/* v2.3.28 hard reset shop cards for mobile + desktop */
body.post-type-archive-product ul.products,
body.tax-product_cat ul.products,
body.tax-product_tag ul.products,
body.woocommerce-shop ul.products,
body.woocommerce-page.post-type-archive-product ul.products,
body .woocommerce ul.products.products,
body .woocommerce-page ul.products.products{
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  gap:16px !important;
  align-items:stretch !important;
}

body.post-type-archive-product ul.products li.product,
body.tax-product_cat ul.products li.product,
body.tax-product_tag ul.products li.product,
body.woocommerce-shop ul.products li.product,
body.woocommerce-page.post-type-archive-product ul.products li.product,
body .woocommerce ul.products.products li.product,
body .woocommerce-page ul.products.products li.product{
  float:none !important;
  width:auto !important;
  margin:0 !important;
  padding:0 !important;
  display:flex !important;
  align-self:stretch !important;
  min-width:0 !important;
}

body.post-type-archive-product ul.products li.product .swp-shop-card,
body.tax-product_cat ul.products li.product .swp-shop-card,
body.tax-product_tag ul.products li.product .swp-shop-card,
body.woocommerce-shop ul.products li.product .swp-shop-card,
body.woocommerce-page.post-type-archive-product ul.products li.product .swp-shop-card,
body .woocommerce ul.products.products li.product .swp-shop-card,
body .woocommerce-page ul.products.products li.product .swp-shop-card{
  position:relative !important;
  isolation:isolate !important;
  display:flex !important;
  flex-direction:column !important;
  width:100% !important;
  min-height:100% !important;
  padding:12px !important;
  background:#fff !important;
  border:1px solid rgba(20,20,20,.08) !important;
  border-radius:18px !important;
  box-shadow:0 10px 26px rgba(0,0,0,.06) !important;
  overflow:hidden !important;
}

body.post-type-archive-product ul.products li.product .swp-product-media,
body.tax-product_cat ul.products li.product .swp-product-media,
body.tax-product_tag ul.products li.product .swp-product-media,
body.woocommerce-shop ul.products li.product .swp-product-media,
body.woocommerce-page.post-type-archive-product ul.products li.product .swp-product-media,
body .woocommerce ul.products.products li.product .swp-product-media,
body .woocommerce-page ul.products.products li.product .swp-product-media{
  position:relative !important;
  display:block !important;
  width:100% !important;
  aspect-ratio:1 / 1 !important;
  padding-top:0 !important;
  margin:0 0 12px 0 !important;
  overflow:hidden !important;
  border-radius:16px !important;
  background:#f5f5f5 !important;
  line-height:0 !important;
}

body.post-type-archive-product ul.products li.product .swp-product-media > img,
body.tax-product_cat ul.products li.product .swp-product-media > img,
body.tax-product_tag ul.products li.product .swp-product-media > img,
body.woocommerce-shop ul.products li.product .swp-product-media > img,
body.woocommerce-page.post-type-archive-product ul.products li.product .swp-product-media > img,
body .woocommerce ul.products.products li.product .swp-product-media > img,
body .woocommerce-page ul.products.products li.product .swp-product-media > img,
body .woocommerce ul.products.products li.product img.swp-shop-image,
body .woocommerce-page ul.products.products li.product img.swp-shop-image{
  position:absolute !important;
  inset:0 !important;
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  object-position:center center !important;
  margin:0 !important;
  border-radius:16px !important;
}

body.post-type-archive-product ul.products li.product .swp-shop-title,
body.tax-product_cat ul.products li.product .swp-shop-title,
body.tax-product_tag ul.products li.product .swp-shop-title,
body.woocommerce-shop ul.products li.product .swp-shop-title,
body.woocommerce-page.post-type-archive-product ul.products li.product .swp-shop-title,
body .woocommerce ul.products.products li.product .swp-shop-title,
body .woocommerce-page ul.products.products li.product .swp-shop-title{
  margin:0 !important;
  font-size:15px !important;
  line-height:1.35 !important;
  min-height:calc(2 * 1.35em) !important;
  max-height:calc(2 * 1.35em) !important;
  overflow:hidden !important;
  display:-webkit-box !important;
  -webkit-box-orient:vertical !important;
  -webkit-line-clamp:2 !important;
  line-clamp:2 !important;
}

body.post-type-archive-product ul.products li.product .swp-shop-title a,
body.tax-product_cat ul.products li.product .swp-shop-title a,
body.tax-product_tag ul.products li.product .swp-shop-title a,
body.woocommerce-shop ul.products li.product .swp-shop-title a,
body.woocommerce-page.post-type-archive-product ul.products li.product .swp-shop-title a,
body .woocommerce ul.products.products li.product .swp-shop-title a,
body .woocommerce-page ul.products.products li.product .swp-shop-title a{
  color:inherit !important;
  text-decoration:none !important;
}

body.post-type-archive-product ul.products li.product .swp-shop-price,
body.tax-product_cat ul.products li.product .swp-shop-price,
body.tax-product_tag ul.products li.product .swp-shop-price,
body.woocommerce-shop ul.products li.product .swp-shop-price,
body.woocommerce-page.post-type-archive-product ul.products li.product .swp-shop-price,
body .woocommerce ul.products.products li.product .swp-shop-price,
body .woocommerce-page ul.products.products li.product .swp-shop-price{
  margin-top:8px !important;
  min-height:1.55em !important;
  font-size:14px !important;
  line-height:1.45 !important;
  color:#8d7a0d !important;
}

body.post-type-archive-product ul.products li.product .swp-shop-price .swp-price-prefix,
body.tax-product_cat ul.products li.product .swp-shop-price .swp-price-prefix,
body.tax-product_tag ul.products li.product .swp-shop-price .swp-price-prefix,
body.woocommerce-shop ul.products li.product .swp-shop-price .swp-price-prefix,
body.woocommerce-page.post-type-archive-product ul.products li.product .swp-shop-price .swp-price-prefix,
body .woocommerce ul.products.products li.product .swp-shop-price .swp-price-prefix,
body .woocommerce-page ul.products.products li.product .swp-shop-price .swp-price-prefix{
  font-weight:700 !important;
}

body.post-type-archive-product ul.products li.product .swp-actions,
body.tax-product_cat ul.products li.product .swp-actions,
body.tax-product_tag ul.products li.product .swp-actions,
body.woocommerce-shop ul.products li.product .swp-actions,
body.woocommerce-page.post-type-archive-product ul.products li.product .swp-actions,
body .woocommerce ul.products.products li.product .swp-actions,
body .woocommerce-page ul.products.products li.product .swp-actions{
  margin-top:auto !important;
  padding-top:12px !important;
  display:block !important;
  width:100% !important;
  position:static !important;
  clear:both !important;
  overflow:visible !important;
}

body.post-type-archive-product ul.products li.product .swp-actions > .added_to_cart,
body.tax-product_cat ul.products li.product .swp-actions > .added_to_cart,
body.tax-product_tag ul.products li.product .swp-actions > .added_to_cart,
body.woocommerce-shop ul.products li.product .swp-actions > .added_to_cart,
body.woocommerce-page.post-type-archive-product ul.products li.product .swp-actions > .added_to_cart,
body .woocommerce ul.products.products li.product .swp-actions > .added_to_cart,
body .woocommerce-page ul.products.products li.product .swp-actions > .added_to_cart{
  display:none !important;
}

body.post-type-archive-product ul.products li.product button.swp-loop-cta,
body.tax-product_cat ul.products li.product button.swp-loop-cta,
body.tax-product_tag ul.products li.product button.swp-loop-cta,
body.woocommerce-shop ul.products li.product button.swp-loop-cta,
body.woocommerce-page.post-type-archive-product ul.products li.product button.swp-loop-cta,
body .woocommerce ul.products.products li.product button.swp-loop-cta,
body .woocommerce-page ul.products.products li.product button.swp-loop-cta{
  -webkit-appearance:none !important;
  appearance:none !important;
  position:static !important;
  inset:auto !important;
  transform:none !important;
  float:none !important;
  clear:none !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:100% !important;
  max-width:100% !important;
  min-height:44px !important;
  margin:0 !important;
  padding:11px 14px !important;
  border:1px solid rgba(20,20,20,.14) !important;
  border-radius:999px !important;
  background:var(--swp-ink) !important;
  color:#fff !important;
  box-shadow:0 10px 20px rgba(20,20,20,.10) !important;
  font:inherit !important;
  font-size:13px !important;
  font-weight:900 !important;
  line-height:1.2 !important;
  text-align:center !important;
  white-space:normal !important;
  writing-mode:horizontal-tb !important;
  cursor:pointer !important;
}

body.post-type-archive-product ul.products li.product button.swp-loop-cta:hover,
body.tax-product_cat ul.products li.product button.swp-loop-cta:hover,
body.tax-product_tag ul.products li.product button.swp-loop-cta:hover,
body.woocommerce-shop ul.products li.product button.swp-loop-cta:hover,
body.woocommerce-page.post-type-archive-product ul.products li.product button.swp-loop-cta:hover,
body .woocommerce ul.products.products li.product button.swp-loop-cta:hover,
body .woocommerce-page ul.products.products li.product button.swp-loop-cta:hover{
  opacity:.96 !important;
}

body.post-type-archive-product ul.products li.product button.swp-loop-cta::before,
body.post-type-archive-product ul.products li.product button.swp-loop-cta::after,
body.tax-product_cat ul.products li.product button.swp-loop-cta::before,
body.tax-product_cat ul.products li.product button.swp-loop-cta::after,
body.tax-product_tag ul.products li.product button.swp-loop-cta::before,
body.tax-product_tag ul.products li.product button.swp-loop-cta::after,
body.woocommerce-shop ul.products li.product button.swp-loop-cta::before,
body.woocommerce-shop ul.products li.product button.swp-loop-cta::after,
body.woocommerce-page.post-type-archive-product ul.products li.product button.swp-loop-cta::before,
body.woocommerce-page.post-type-archive-product ul.products li.product button.swp-loop-cta::after,
body .woocommerce ul.products.products li.product button.swp-loop-cta::before,
body .woocommerce ul.products.products li.product button.swp-loop-cta::after,
body .woocommerce-page ul.products.products li.product button.swp-loop-cta::before,
body .woocommerce-page ul.products.products li.product button.swp-loop-cta::after{
  content:none !important;
  display:none !important;
}

@media (min-width: 768px){
  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products,
  body.woocommerce-shop ul.products,
  body.woocommerce-page.post-type-archive-product ul.products,
  body .woocommerce ul.products.products,
  body .woocommerce-page ul.products.products{
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
    gap:18px !important;
  }
}

@media (min-width: 980px){
  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products,
  body.woocommerce-shop ul.products,
  body.woocommerce-page.post-type-archive-product ul.products,
  body .woocommerce ul.products.products,
  body .woocommerce-page ul.products.products{
    grid-template-columns:repeat(4,minmax(0,1fr)) !important;
    gap:20px !important;
  }

  body.woocommerce-shop .swp-container,
  body.post-type-archive-product .swp-container,
  body.tax-product_cat .swp-container,
  body.tax-product_tag .swp-container,
  body.woocommerce-page.post-type-archive-product .swp-container{
    max-width:1280px !important;
  }
}



/* v2.3.29 final shop-button and card alignment fix */
body .woocommerce ul.products,
body .woocommerce-page ul.products{
  display:grid !important;
  grid-template-columns:repeat(2, minmax(0,1fr)) !important;
  gap:18px !important;
  align-items:stretch !important;
}

body .woocommerce ul.products li.product,
body .woocommerce-page ul.products li.product{
  float:none !important;
  width:auto !important;
  margin:0 !important;
  display:flex !important;
  min-width:0 !important;
}

body .woocommerce ul.products li.product .swp-shop-card,
body .woocommerce-page ul.products li.product .swp-shop-card{
  display:flex !important;
  flex-direction:column !important;
  width:100% !important;
  min-height:100% !important;
}

body .woocommerce ul.products li.product .swp-product-media,
body .woocommerce-page ul.products li.product .swp-product-media{
  position:relative !important;
  display:block !important;
  width:100% !important;
  aspect-ratio:1 / 1 !important;
  overflow:hidden !important;
  border-radius:18px !important;
  margin:0 0 12px !important;
  line-height:0 !important;
  background:#f6f6f6 !important;
}

body .woocommerce ul.products li.product img.swp-shop-image,
body .woocommerce-page ul.products li.product img.swp-shop-image{
  position:absolute !important;
  inset:0 !important;
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  object-position:center !important;
  margin:0 !important;
  border-radius:18px !important;
}

body .woocommerce ul.products li.product .swp-shop-title,
body .woocommerce-page ul.products li.product .swp-shop-title{
  min-height:calc(2 * 1.35em) !important;
  max-height:calc(2 * 1.35em) !important;
  margin:0 !important;
  overflow:hidden !important;
  display:-webkit-box !important;
  -webkit-line-clamp:2 !important;
  -webkit-box-orient:vertical !important;
  line-clamp:2 !important;
  line-height:1.35 !important;
}

body .woocommerce ul.products li.product .swp-shop-price,
body .woocommerce-page ul.products li.product .swp-shop-price{
  margin-top:8px !important;
  min-height:1.5em !important;
}

body .woocommerce ul.products li.product .swp-actions,
body .woocommerce-page ul.products li.product .swp-actions{
  margin-top:10px !important;
  padding-top:0 !important;
  display:flex !important;
  align-items:flex-start !important;
  justify-content:flex-start !important;
  width:100% !important;
  position:static !important;
  clear:both !important;
  overflow:visible !important;
}

body .woocommerce ul.products li.product a.swp-loop-cta,
body .woocommerce-page ul.products li.product a.swp-loop-cta,
body .woocommerce ul.products li.product > a.button,
body .woocommerce-page ul.products li.product > a.button,
body .woocommerce ul.products li.product .button.product_type_simple,
body .woocommerce ul.products li.product .button.product_type_variable,
body .woocommerce ul.products li.product .button.product_type_external,
body .woocommerce ul.products li.product .button.product_type_grouped,
body .woocommerce-page ul.products li.product .button.product_type_simple,
body .woocommerce-page ul.products li.product .button.product_type_variable,
body .woocommerce-page ul.products li.product .button.product_type_external,
body .woocommerce-page ul.products li.product .button.product_type_grouped{
  -webkit-appearance:none !important;
  appearance:none !important;
  position:static !important;
  inset:auto !important;
  float:none !important;
  clear:none !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  align-self:flex-start !important;
  width:auto !important;
  max-width:100% !important;
  min-width:0 !important;
  height:auto !important;
  min-height:38px !important;
  padding:10px 14px !important;
  margin:0 !important;
  border:1px solid rgba(20,20,20,.14) !important;
  border-radius:999px !important;
  background:var(--swp-ink) !important;
  color:#fff !important;
  box-shadow:none !important;
  font:inherit !important;
  font-size:13px !important;
  font-weight:800 !important;
  line-height:1.2 !important;
  text-align:center !important;
  text-decoration:none !important;
  white-space:normal !important;
  writing-mode:horizontal-tb !important;
  transform:none !important;
  overflow:visible !important;
  cursor:pointer !important;
}

body .woocommerce ul.products li.product a.swp-loop-cta:hover,
body .woocommerce-page ul.products li.product a.swp-loop-cta:hover,
body .woocommerce ul.products li.product > a.button:hover,
body .woocommerce-page ul.products li.product > a.button:hover{
  color:#fff !important;
  opacity:.96 !important;
  transform:none !important;
}

body .woocommerce ul.products li.product a.swp-loop-cta::before,
body .woocommerce ul.products li.product a.swp-loop-cta::after,
body .woocommerce-page ul.products li.product a.swp-loop-cta::before,
body .woocommerce-page ul.products li.product a.swp-loop-cta::after,
body .woocommerce ul.products li.product > a.button::before,
body .woocommerce ul.products li.product > a.button::after,
body .woocommerce-page ul.products li.product > a.button::before,
body .woocommerce-page ul.products li.product > a.button::after{
  content:none !important;
  display:none !important;
}

body .woocommerce ul.products li.product a.added_to_cart,
body .woocommerce-page ul.products li.product a.added_to_cart{
  display:none !important;
}

@media (min-width: 768px){
  body .woocommerce ul.products,
  body .woocommerce-page ul.products{
    grid-template-columns:repeat(3, minmax(0,1fr)) !important;
    gap:20px !important;
  }
}

@media (min-width: 1100px){
  body .woocommerce ul.products,
  body .woocommerce-page ul.products{
    grid-template-columns:repeat(4, minmax(0,1fr)) !important;
  }
}

/* v2.3.30 final loop CTA placement fix for shop + homepage */
body .woocommerce ul.products li.product,
body .woocommerce-page ul.products li.product,
body ul.products li.product{
  display:flex !important;
  flex-direction:column !important;
  align-items:stretch !important;
}

body .woocommerce ul.products li.product .swp-loop-actions,
body .woocommerce-page ul.products li.product .swp-loop-actions,
body ul.products li.product .swp-loop-actions{
  display:flex !important;
  flex-wrap:wrap !important;
  align-items:center !important;
  justify-content:flex-start !important;
  gap:8px !important;
  width:100% !important;
  margin-top:10px !important;
  position:static !important;
  clear:both !important;
  overflow:visible !important;
}

body .woocommerce ul.products li.product .swp-loop-actions > a,
body .woocommerce-page ul.products li.product .swp-loop-actions > a,
body ul.products li.product .swp-loop-actions > a,
body .woocommerce ul.products li.product .swp-loop-actions > button,
body .woocommerce-page ul.products li.product .swp-loop-actions > button,
body ul.products li.product .swp-loop-actions > button,
body .woocommerce ul.products li.product > a.button:not(.woocommerce-loop-product__link),
body .woocommerce-page ul.products li.product > a.button:not(.woocommerce-loop-product__link),
body ul.products li.product > a.button:not(.woocommerce-loop-product__link){
  position:static !important;
  inset:auto !important;
  top:auto !important;
  right:auto !important;
  bottom:auto !important;
  left:auto !important;
  float:none !important;
  clear:none !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:auto !important;
  max-width:100% !important;
  min-width:0 !important;
  height:auto !important;
  min-height:36px !important;
  max-height:none !important;
  padding:9px 14px !important;
  margin:0 !important;
  border-radius:999px !important;
  background:var(--swp-ink) !important;
  color:#fff !important;
  border:1px solid rgba(20,20,20,.12) !important;
  box-shadow:none !important;
  font:inherit !important;
  font-size:13px !important;
  font-weight:800 !important;
  line-height:1.2 !important;
  text-align:center !important;
  text-decoration:none !important;
  white-space:normal !important;
  writing-mode:horizontal-tb !important;
  word-break:normal !important;
  overflow-wrap:anywhere !important;
  transform:none !important;
  aspect-ratio:auto !important;
  z-index:auto !important;
}

body .woocommerce ul.products li.product a.added_to_cart,
body .woocommerce-page ul.products li.product a.added_to_cart,
body ul.products li.product a.added_to_cart{
  display:none !important;
}


/* v2.3.31 equal product images + aligned titles/prices/buttons */
body .woocommerce ul.products,
body .woocommerce-page ul.products,
body .woocommerce ul.products.products,
body .woocommerce-page ul.products.products{
  align-items: stretch !important;
}

body .woocommerce ul.products li.product,
body .woocommerce-page ul.products li.product,
body .woocommerce ul.products.products li.product,
body .woocommerce-page ul.products.products li.product{
  display: flex !important;
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  align-self: stretch !important;
}

body .woocommerce ul.products li.product .swp-shop-card,
body .woocommerce-page ul.products li.product .swp-shop-card,
body .woocommerce ul.products.products li.product .swp-shop-card,
body .woocommerce-page ul.products.products li.product .swp-shop-card{
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  gap: 0 !important;
}

body .woocommerce ul.products li.product .swp-product-media,
body .woocommerce-page ul.products li.product .swp-product-media,
body .woocommerce ul.products.products li.product .swp-product-media,
body .woocommerce-page ul.products.products li.product .swp-product-media,
body .woocommerce ul.products li.product .swp-equal-media,
body .woocommerce-page ul.products li.product .swp-equal-media,
body .woocommerce ul.products.products li.product .swp-equal-media,
body .woocommerce-page ul.products.products li.product .swp-equal-media{
  position: relative !important;
  display: block !important;
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  padding-top: 0 !important;
  overflow: hidden !important;
  border-radius: 16px !important;
  background: #f5f5f5 !important;
  flex: 0 0 auto !important;
}

body .woocommerce ul.products li.product .swp-product-media > img,
body .woocommerce-page ul.products li.product .swp-product-media > img,
body .woocommerce ul.products.products li.product .swp-product-media > img,
body .woocommerce-page ul.products.products li.product .swp-product-media > img,
body .woocommerce ul.products li.product img.swp-shop-image,
body .woocommerce-page ul.products li.product img.swp-shop-image,
body .woocommerce ul.products.products li.product img.swp-shop-image,
body .woocommerce-page ul.products.products li.product img.swp-shop-image,
body .woocommerce ul.products li.product .swp-equal-media > img,
body .woocommerce-page ul.products li.product .swp-equal-media > img,
body .woocommerce ul.products.products li.product .swp-equal-media > img,
body .woocommerce-page ul.products.products li.product .swp-equal-media > img{
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  margin: 0 !important;
  display: block !important;
}

body .woocommerce ul.products li.product .swp-shop-title,
body .woocommerce-page ul.products li.product .swp-shop-title,
body .woocommerce ul.products.products li.product .swp-shop-title,
body .woocommerce-page ul.products.products li.product .swp-shop-title{
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  overflow: hidden !important;
  min-height: calc(2 * 1.35em) !important;
  max-height: calc(2 * 1.35em) !important;
  margin: 12px 0 0 0 !important;
}

body .woocommerce ul.products li.product .swp-shop-price,
body .woocommerce-page ul.products li.product .swp-shop-price,
body .woocommerce ul.products.products li.product .swp-shop-price,
body .woocommerce-page ul.products.products li.product .swp-shop-price{
  min-height: 1.6em !important;
  margin: 8px 0 0 0 !important;
}

body .woocommerce ul.products li.product .swp-actions,
body .woocommerce-page ul.products li.product .swp-actions,
body .woocommerce ul.products.products li.product .swp-actions,
body .woocommerce-page ul.products.products li.product .swp-actions,
body .woocommerce ul.products li.product .swp-loop-actions,
body .woocommerce-page ul.products li.product .swp-loop-actions,
body .woocommerce ul.products.products li.product .swp-loop-actions,
body .woocommerce-page ul.products.products li.product .swp-loop-actions{
  margin-top: auto !important;
  padding-top: 12px !important;
  width: 100% !important;
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  clear: both !important;
}

body .woocommerce ul.products li.product a.swp-loop-cta,
body .woocommerce-page ul.products li.product a.swp-loop-cta,
body .woocommerce ul.products.products li.product a.swp-loop-cta,
body .woocommerce-page ul.products.products li.product a.swp-loop-cta{
  display: inline-flex !important;
  width: auto !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 38px !important;
  height: auto !important;
  padding: 10px 14px !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
  align-self: flex-start !important;
}

@media (max-width: 767px){
  body .woocommerce ul.products li.product .swp-shop-card,
  body .woocommerce-page ul.products li.product .swp-shop-card,
  body .woocommerce ul.products.products li.product .swp-shop-card,
  body .woocommerce-page ul.products.products li.product .swp-shop-card{
    padding: 10px !important;
  }

  body .woocommerce ul.products li.product .swp-shop-title,
  body .woocommerce-page ul.products li.product .swp-shop-title,
  body .woocommerce ul.products.products li.product .swp-shop-title,
  body .woocommerce-page ul.products.products li.product .swp-shop-title{
    font-size: 13px !important;
    line-height: 1.35 !important;
    min-height: calc(2 * 1.35em) !important;
    max-height: calc(2 * 1.35em) !important;
  }

  body .woocommerce ul.products li.product .swp-shop-price,
  body .woocommerce-page ul.products li.product .swp-shop-price,
  body .woocommerce ul.products.products li.product .swp-shop-price,
  body .woocommerce-page ul.products.products li.product .swp-shop-price{
    font-size: 13px !important;
  }
}

@media (min-width: 768px){
  body .woocommerce ul.products li.product .swp-shop-title,
  body .woocommerce-page ul.products li.product .swp-shop-title,
  body .woocommerce ul.products.products li.product .swp-shop-title,
  body .woocommerce-page ul.products.products li.product .swp-shop-title{
    font-size: 15px !important;
  }
}




/* v2.3.32 final equal shop cards + normal loop buttons */
body .woocommerce ul.products,
body.woocommerce ul.products,
body .woocommerce-page ul.products,
body .wc-block-grid__products{
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  gap:16px !important;
  align-items:stretch !important;
}

@media (min-width: 768px){
  body .woocommerce ul.products,
  body.woocommerce ul.products,
  body .woocommerce-page ul.products,
  body .wc-block-grid__products{
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
    gap:18px !important;
  }
}

@media (min-width: 980px){
  body .woocommerce ul.products,
  body.woocommerce ul.products,
  body .woocommerce-page ul.products,
  body .wc-block-grid__products{
    grid-template-columns:repeat(4,minmax(0,1fr)) !important;
    gap:20px !important;
  }
}

body .woocommerce ul.products li.product,
body.woocommerce ul.products li.product,
body .woocommerce-page ul.products li.product,
body .wc-block-grid__product{
  float:none !important;
  width:100% !important;
  margin:0 !important;
  display:flex !important;
  align-self:stretch !important;
  max-width:none !important;
}

body .woocommerce ul.products li.product .swp-shop-card,
body .woocommerce-page ul.products li.product .swp-shop-card,
body .wc-block-grid__product{
  width:100% !important;
  min-height:100% !important;
  display:grid !important;
  grid-template-rows:auto minmax(calc(2 * 1.35em), auto) minmax(1.5em, auto) auto !important;
  align-content:start !important;
  gap:8px !important;
  padding:12px !important;
  background:#fff !important;
  border:1px solid rgba(20,20,20,.08) !important;
  border-radius:18px !important;
  box-shadow:0 10px 24px rgba(0,0,0,.06) !important;
  overflow:hidden !important;
}

body .woocommerce ul.products li.product .swp-product-media,
body .woocommerce ul.products li.product .woocommerce-loop-product__link,
body .woocommerce-page ul.products li.product .swp-product-media,
body .woocommerce-page ul.products li.product .woocommerce-loop-product__link,
body .wc-block-grid__product-image{
  position:relative !important;
  display:block !important;
  width:100% !important;
  aspect-ratio:1 / 1 !important;
  padding-top:0 !important;
  margin:0 !important;
  overflow:hidden !important;
  border-radius:16px !important;
  background:#f5f5f5 !important;
  line-height:0 !important;
}

body .woocommerce ul.products li.product .swp-product-media > img,
body .woocommerce ul.products li.product .woocommerce-loop-product__link img,
body .woocommerce ul.products li.product img.swp-shop-image,
body .woocommerce ul.products li.product img.attachment-woocommerce_thumbnail,
body .woocommerce ul.products li.product img.wp-post-image,
body .woocommerce-page ul.products li.product .swp-product-media > img,
body .woocommerce-page ul.products li.product .woocommerce-loop-product__link img,
body .woocommerce-page ul.products li.product img.swp-shop-image,
body .woocommerce-page ul.products li.product img.attachment-woocommerce_thumbnail,
body .woocommerce-page ul.products li.product img.wp-post-image,
body .wc-block-grid__product-image img{
  position:absolute !important;
  inset:0 !important;
  width:100% !important;
  height:100% !important;
  max-width:none !important;
  object-fit:cover !important;
  object-position:center center !important;
  margin:0 !important;
  border-radius:16px !important;
}

body .woocommerce ul.products li.product .swp-shop-title,
body .woocommerce ul.products li.product .woocommerce-loop-product__title,
body .woocommerce-page ul.products li.product .swp-shop-title,
body .woocommerce-page ul.products li.product .woocommerce-loop-product__title,
body .wc-block-grid__product-title{
  margin:0 !important;
  min-height:calc(2 * 1.35em) !important;
  max-height:calc(2 * 1.35em) !important;
  line-height:1.35 !important;
  font-size:15px !important;
  overflow:hidden !important;
  display:-webkit-box !important;
  -webkit-box-orient:vertical !important;
  -webkit-line-clamp:2 !important;
  line-clamp:2 !important;
}

body .woocommerce ul.products li.product .swp-shop-title a,
body .woocommerce ul.products li.product .woocommerce-loop-product__link,
body .woocommerce-page ul.products li.product .swp-shop-title a,
body .woocommerce-page ul.products li.product .woocommerce-loop-product__link,
body .wc-block-grid__product-title a{
  text-decoration:none !important;
}

body .woocommerce ul.products li.product .swp-shop-price,
body .woocommerce ul.products li.product .price,
body .woocommerce-page ul.products li.product .swp-shop-price,
body .woocommerce-page ul.products li.product .price,
body .wc-block-grid__product-price{
  margin:0 !important;
  min-height:1.5em !important;
  font-size:14px !important;
  line-height:1.45 !important;
  color:#8d7a0d !important;
}

body .woocommerce ul.products li.product .swp-actions,
body .woocommerce ul.products li.product .swp-loop-actions,
body .woocommerce-page ul.products li.product .swp-actions,
body .woocommerce-page ul.products li.product .swp-loop-actions,
body .wc-block-grid__product .swp-actions,
body .wc-block-grid__product .swp-loop-actions{
  display:flex !important;
  flex-wrap:wrap !important;
  align-items:center !important;
  justify-content:flex-start !important;
  gap:8px !important;
  width:100% !important;
  margin:0 !important;
  padding:0 !important;
  align-self:end !important;
}

body .woocommerce ul.products li.product a.swp-loop-cta,
body .woocommerce ul.products li.product button.swp-loop-cta,
body .woocommerce ul.products li.product .swp-actions .button,
body .woocommerce ul.products li.product .swp-loop-actions .button,
body .woocommerce-page ul.products li.product a.swp-loop-cta,
body .woocommerce-page ul.products li.product button.swp-loop-cta,
body .woocommerce-page ul.products li.product .swp-actions .button,
body .woocommerce-page ul.products li.product .swp-loop-actions .button,
body .wc-block-grid__product a.swp-loop-cta,
body .wc-block-grid__product button.swp-loop-cta{
  position:static !important;
  inset:auto !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  float:none !important;
  width:auto !important;
  max-width:100% !important;
  min-width:0 !important;
  height:auto !important;
  min-height:36px !important;
  padding:9px 14px !important;
  margin:0 !important;
  border-radius:999px !important;
  background:var(--swp-ink, #151515) !important;
  color:#fff !important;
  font-size:13px !important;
  font-weight:800 !important;
  line-height:1.2 !important;
  text-align:center !important;
  text-decoration:none !important;
  white-space:normal !important;
  word-break:normal !important;
  overflow-wrap:anywhere !important;
  writing-mode:horizontal-tb !important;
  transform:none !important;
  box-shadow:none !important;
  border:0 !important;
}

@media (max-width: 767px){
  body .woocommerce ul.products li.product .swp-shop-card,
  body .woocommerce-page ul.products li.product .swp-shop-card,
  body .wc-block-grid__product{
    padding:10px !important;
    border-radius:14px !important;
  }

  body .woocommerce ul.products li.product .swp-shop-title,
  body .woocommerce ul.products li.product .woocommerce-loop-product__title,
  body .woocommerce-page ul.products li.product .swp-shop-title,
  body .woocommerce-page ul.products li.product .woocommerce-loop-product__title,
  body .wc-block-grid__product-title{
    font-size:13px !important;
  }

  body .woocommerce ul.products li.product .swp-shop-price,
  body .woocommerce ul.products li.product .price,
  body .woocommerce-page ul.products li.product .swp-shop-price,
  body .woocommerce-page ul.products li.product .price,
  body .wc-block-grid__product-price{
    font-size:13px !important;
  }
}




/* v2.3.33 universal product card alignment fix */
body ul.products,
body ul.products.products{
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  gap:16px !important;
  align-items:stretch !important;
}
@media (min-width: 768px){
  body ul.products,
  body ul.products.products{
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
    gap:18px !important;
  }
}
@media (min-width: 1100px){
  body ul.products,
  body ul.products.products{
    grid-template-columns:repeat(4,minmax(0,1fr)) !important;
    gap:20px !important;
  }
}

body ul.products::before,
body ul.products::after,
body ul.products.products::before,
body ul.products.products::after{
  display:none !important;
}

body ul.products li.product,
body ul.products.products li.product{
  float:none !important;
  width:100% !important;
  max-width:none !important;
  margin:0 !important;
  padding:0 !important;
  display:flex !important;
  align-self:stretch !important;
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
}

body ul.products li.product .swp-shop-card,
body ul.products.products li.product .swp-shop-card{
  width:100% !important;
  min-height:100% !important;
  display:flex !important;
  flex-direction:column !important;
  background:#fff !important;
  border:1px solid rgba(20,20,20,.08) !important;
  border-radius:18px !important;
  box-shadow:0 8px 24px rgba(0,0,0,.06) !important;
  padding:12px !important;
  overflow:hidden !important;
}

body ul.products li.product .swp-product-media,
body ul.products.products li.product .swp-product-media{
  position:relative !important;
  display:block !important;
  width:100% !important;
  aspect-ratio:1 / 1 !important;
  padding:0 !important;
  margin:0 0 12px 0 !important;
  overflow:hidden !important;
  border-radius:14px !important;
  background:#f5f5f5 !important;
  line-height:0 !important;
}

body ul.products li.product .swp-product-media::before,
body ul.products.products li.product .swp-product-media::before{
  content:none !important;
  display:none !important;
}

body ul.products li.product .swp-product-media > img,
body ul.products li.product img.swp-shop-image,
body ul.products.products li.product .swp-product-media > img,
body ul.products.products li.product img.swp-shop-image{
  position:absolute !important;
  inset:0 !important;
  width:100% !important;
  height:100% !important;
  min-width:100% !important;
  min-height:100% !important;
  max-width:none !important;
  display:block !important;
  margin:0 !important;
  object-fit:cover !important;
  object-position:center center !important;
  border-radius:14px !important;
}

body ul.products li.product .swp-shop-meta,
body ul.products.products li.product .swp-shop-meta{
  display:flex !important;
  flex-direction:column !important;
  flex:1 1 auto !important;
  min-height:0 !important;
}

body ul.products li.product .swp-shop-title,
body ul.products.products li.product .swp-shop-title{
  margin:0 !important;
  font-size:15px !important;
  line-height:1.35 !important;
  height:calc(2 * 1.35em) !important;
  min-height:calc(2 * 1.35em) !important;
  max-height:calc(2 * 1.35em) !important;
  overflow:hidden !important;
}

body ul.products li.product .swp-shop-title > a,
body ul.products.products li.product .swp-shop-title > a{
  display:-webkit-box !important;
  -webkit-box-orient:vertical !important;
  -webkit-line-clamp:2 !important;
  overflow:hidden !important;
  color:inherit !important;
  text-decoration:none !important;
}

body ul.products li.product .swp-shop-price,
body ul.products.products li.product .swp-shop-price{
  margin-top:8px !important;
  min-height:1.55em !important;
  font-size:14px !important;
  line-height:1.4 !important;
  color:#8d7a0d !important;
}

body ul.products li.product .swp-shop-price .swp-price-prefix,
body ul.products.products li.product .swp-shop-price .swp-price-prefix{
  font-weight:700 !important;
}

body ul.products li.product .swp-actions,
body ul.products.products li.product .swp-actions{
  margin-top:auto !important;
  padding-top:12px !important;
  display:flex !important;
  align-items:flex-end !important;
  justify-content:flex-start !important;
  width:100% !important;
  min-height:52px !important;
  clear:both !important;
  overflow:visible !important;
}

body ul.products li.product .swp-actions > a,
body ul.products.products li.product .swp-actions > a{
  flex:0 0 auto !important;
}

body ul.products li.product a.swp-loop-cta,
body ul.products.products li.product a.swp-loop-cta{
  all:unset;
  box-sizing:border-box;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  position:static !important;
  float:none !important;
  clear:none !important;
  width:auto !important;
  max-width:100% !important;
  min-width:0 !important;
  min-height:40px !important;
  height:auto !important;
  padding:10px 16px !important;
  border-radius:999px !important;
  background:var(--swp-ink) !important;
  color:#fff !important;
  font-family:inherit !important;
  font-size:14px !important;
  font-weight:800 !important;
  line-height:1.2 !important;
  text-decoration:none !important;
  text-align:center !important;
  white-space:normal !important;
  overflow-wrap:anywhere !important;
  cursor:pointer !important;
  box-shadow:0 10px 20px rgba(20,20,20,.10) !important;
  writing-mode:horizontal-tb !important;
  transform:none !important;
}

body ul.products li.product a.swp-loop-cta:hover,
body ul.products.products li.product a.swp-loop-cta:hover{
  color:#fff !important;
  opacity:.97 !important;
  transform:translateY(-1px) !important;
}

body ul.products li.product a.swp-loop-cta::before,
body ul.products li.product a.swp-loop-cta::after,
body ul.products.products li.product a.swp-loop-cta::before,
body ul.products.products li.product a.swp-loop-cta::after{
  content:none !important;
  display:none !important;
}

@media (max-width: 767px){
  body ul.products,
  body ul.products.products{
    gap:14px !important;
  }
  body ul.products li.product .swp-shop-card,
  body ul.products.products li.product .swp-shop-card{
    padding:10px !important;
    border-radius:16px !important;
  }
  body ul.products li.product .swp-product-media,
  body ul.products.products li.product .swp-product-media{
    margin-bottom:10px !important;
  }
  body ul.products li.product .swp-shop-title,
  body ul.products.products li.product .swp-shop-title{
    font-size:13px !important;
    line-height:1.34 !important;
    height:calc(2 * 1.34em) !important;
    min-height:calc(2 * 1.34em) !important;
    max-height:calc(2 * 1.34em) !important;
  }
  body ul.products li.product .swp-shop-price,
  body ul.products.products li.product .swp-shop-price{
    font-size:13px !important;
  }
  body ul.products li.product .swp-actions,
  body ul.products.products li.product .swp-actions{
    min-height:48px !important;
    padding-top:10px !important;
  }
  body ul.products li.product a.swp-loop-cta,
  body ul.products.products li.product a.swp-loop-cta{
    padding:9px 14px !important;
    font-size:13px !important;
  }
}


/* v2.3.34 final archive alignment lock */
body ul.products li.product .swp-shop-card{
  display:grid !important;
  grid-template-rows:auto 1fr !important;
  gap:12px !important;
  height:100% !important;
  min-height:100% !important;
  padding:0 !important;
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
}
body ul.products li.product .swp-product-media{
  position:relative !important;
  display:block !important;
  width:100% !important;
  aspect-ratio:1 / 1 !important;
  min-height:0 !important;
  margin:0 !important;
  padding:0 !important;
  overflow:hidden !important;
  border-radius:16px !important;
  background:#f4f4f4 !important;
}
body ul.products li.product .swp-product-media::before,
body ul.products li.product .swp-product-media::after{
  content:none !important;
  display:none !important;
}
body ul.products li.product .swp-product-media > img,
body ul.products li.product img.swp-shop-image{
  position:absolute !important;
  inset:0 !important;
  width:100% !important;
  height:100% !important;
  min-width:100% !important;
  min-height:100% !important;
  max-width:none !important;
  display:block !important;
  margin:0 !important;
  object-fit:cover !important;
  object-position:center center !important;
  border-radius:16px !important;
}
body ul.products li.product .swp-shop-meta{
  display:grid !important;
  grid-template-rows:minmax(4.05em, auto) minmax(24px, auto) auto !important;
  gap:8px !important;
  align-content:start !important;
  align-items:start !important;
  min-height:0 !important;
  height:100% !important;
}
body ul.products li.product .swp-shop-title{
  margin:0 !important;
  min-height:4.05em !important;
  max-height:4.05em !important;
  font-size:16px !important;
  line-height:1.35 !important;
  overflow:hidden !important;
}
body ul.products li.product .swp-shop-title > a{
  display:-webkit-box !important;
  -webkit-box-orient:vertical !important;
  -webkit-line-clamp:3 !important;
  overflow:hidden !important;
  text-decoration:none !important;
}
body ul.products li.product .swp-shop-price{
  display:flex !important;
  align-items:center !important;
  min-height:24px !important;
  margin:0 !important;
  line-height:1.35 !important;
}
body ul.products li.product .swp-shop-price:empty::before,
body ul.products li.product .swp-shop-price-placeholder{
  content:' a0';
  display:inline-block !important;
  min-height:24px !important;
  visibility:hidden !important;
}
body ul.products li.product .swp-actions{
  display:flex !important;
  align-items:flex-start !important;
  justify-content:flex-start !important;
  flex-wrap:wrap !important;
  gap:8px !important;
  width:100% !important;
  margin:0 !important;
  padding:0 !important;
  min-height:40px !important;
}
body ul.products li.product .swp-actions .swp-loop-cta,
body ul.products li.product a.swp-loop-cta{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:auto !important;
  max-width:100% !important;
  min-height:40px !important;
  margin:0 !important;
  padding:10px 16px !important;
  border-radius:999px !important;
  white-space:normal !important;
  writing-mode:horizontal-tb !important;
}
@media (max-width: 767px){
  body ul.products li.product .swp-shop-title{
    font-size:15px !important;
  }
}


/* v2.3.38 desktop header cleanup: hide mobile menu button on desktop */
.swp-mobile-only{ display:inline-flex; }
@media (min-width: 980px){
  .swp-mobile-only{ display:none !important; }
  .swp-header__controls > .swp-navtoggle{ display:none !important; }
  .swp-nav{ display:block !important; }
}


/* v2.3.39 single product price visibility */
body.single-product .summary .price,
body.single-product .summary p.price,
body.single-product .summary span.price{
  display:block !important;
  visibility:visible !important;
  opacity:1 !important;
  color:#111 !important;
  font-size: clamp(22px, 2.2vw, 30px) !important;
  font-weight: 700 !important;
  margin: 8px 0 14px !important;
}

body.single-product .summary .price .swp-price-prefix,
body.single-product .summary p.price .swp-price-prefix{
  font-size:.72em !important;
  font-weight:600 !important;
  margin-right:6px !important;
}


/* v2.3.40 variable product single price flow */
body.single-product .product-type-variable .summary .price .swp-single-price-note,
body.single-product .product-type-variable .summary p.price .swp-single-price-note{
  display:block !important;
  color:#4b5563 !important;
  font-size:16px !important;
  line-height:1.5 !important;
  font-weight:600 !important;
  margin:0 !important;
}

body.single-product .product-type-variable .summary form.variations_form{
  margin-top: 10px !important;
}

body.single-product .product-type-variable .summary .single_variation_wrap{
  display:block !important;
}

body.single-product .product-type-variable .summary .single_variation_wrap .woocommerce-variation{
  margin: 14px 0 10px !important;
}

body.single-product .product-type-variable .summary .single_variation_wrap .woocommerce-variation-price{
  display:block !important;
  margin: 0 0 12px !important;
}

body.single-product .product-type-variable .summary .single_variation_wrap .woocommerce-variation-price .price,
body.single-product .product-type-variable .summary .single_variation_wrap .woocommerce-variation-price .woocommerce-Price-amount{
  color:#111 !important;
  font-size: clamp(22px, 2.2vw, 30px) !important;
  font-weight:700 !important;
}

body.single-product .product-type-variable .summary .single_variation_wrap .woocommerce-variation-add-to-cart{
  margin-top: 6px !important;
}


/* v2.3.41 compact single product gallery for many images */
@media (min-width: 980px){
  .swp-single-grid{
    grid-template-columns:minmax(0,560px) minmax(0,1fr);
    gap:28px;
  }

  .swp-single-media{
    max-width:560px;
  }
}

.swp-single-media .flex-viewport{
  margin-bottom:12px;
}

.swp-single-media .woocommerce-product-gallery__image > a,
.swp-single-media .woocommerce-product-gallery__image img,
.swp-single-media .images img.wp-post-image{
  display:block !important;
}

.swp-single-media .flex-control-thumbs,
.swp-single-media ol.flex-control-thumbs{
  display:grid !important;
  grid-template-columns:repeat(auto-fill,minmax(56px,1fr)) !important;
  gap:8px !important;
  max-height:280px;
  overflow:auto;
  padding:0 4px 4px 0 !important;
  margin:0 !important;
  list-style:none !important;
}

.swp-single-media .flex-control-thumbs li,
.swp-single-media ol.flex-control-thumbs li{
  float:none !important;
  width:auto !important;
  margin:0 !important;
  padding:0 !important;
}

.swp-single-media .flex-control-thumbs img,
.swp-single-media ol.flex-control-thumbs img{
  width:100% !important;
  aspect-ratio:1 / 1;
  height:auto !important;
  object-fit:cover !important;
  border-radius:10px;
  opacity:1 !important;
  border:1px solid rgba(0,0,0,.08);
  background:#fff;
}

.swp-single-media .flex-control-thumbs img.flex-active,
.swp-single-media ol.flex-control-thumbs img.flex-active{
  border-color:rgba(0,0,0,.35);
}

@media (max-width: 979px){
  .swp-single-media .flex-control-thumbs,
  .swp-single-media ol.flex-control-thumbs{
    grid-template-columns:repeat(auto-fill,minmax(48px,1fr)) !important;
    gap:6px !important;
    max-height:220px;
  }

  .swp-single-media .woocommerce-product-gallery__wrapper img,
  .swp-single-media .images img,
  .swp-single-media img.wp-post-image{
    border-radius:14px;
  }
}


/* v2.3.66 blog + shop card hardening */
.swp-blog-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}
@media (min-width: 768px){
  .swp-blog-grid{ grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; }
}
.swp-blog-card{ display:flex; flex-direction:column; min-height:100%; }
.swp-blog-card__media{ display:block; aspect-ratio:1/1; border-radius:18px; overflow:hidden; background:#f5f5f5; }
.swp-blog-card__media img{ width:100%; height:100%; object-fit:cover; object-position:center; display:block; }
.swp-blog-card__body{ display:flex; flex-direction:column; gap:10px; flex:1; }
.swp-blog-card__title{ margin:0; font-size:22px; line-height:1.25; }
.swp-blog-card__title a{ color:inherit; text-decoration:none; }
.swp-blog-card__excerpt{ color:var(--swp-muted); line-height:1.65; }
.swp-blog-pagination{ margin-top:20px; }
.swp-blog-single__card{ display:grid; gap:18px; }
.swp-blog-single__media{ border-radius:18px; overflow:hidden; background:#f5f5f5; }
.swp-blog-single__media img{ width:100%; display:block; }

/* Make sure single-product gallery stays native and untouched */
.single-product .woocommerce-product-gallery,
.single-product div.product .images,
.single-product div.product .flex-control-thumbs{
  display:block !important;
}
.single-product div.product .flex-control-thumbs{ 
  margin-top:12px !important;
}
.single-product div.product .flex-control-thumbs li{
  width:25% !important;
  margin:0 0 8px !important;
  padding:0 4px !important;
}
.single-product div.product .flex-control-thumbs img{
  border-radius:12px !important;
  opacity:1 !important;
}


/* v2.3.68 final shop archive card sizing */

body.woocommerce-shop ul.products,
body.post-type-archive-product ul.products,
body.tax-product_cat ul.products,
body.tax-product_tag ul.products,
body.woocommerce-page.post-type-archive-product ul.products,
body .woocommerce ul.products.products,
body .woocommerce-page ul.products.products{
  justify-content:center !important;
}
@media (min-width: 980px){
  body.woocommerce-shop ul.products,
  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products,
  body.woocommerce-page.post-type-archive-product ul.products,
  body .woocommerce ul.products.products,
  body .woocommerce-page ul.products.products{
    grid-template-columns:repeat(auto-fit, minmax(260px, 280px)) !important;
    justify-content:center !important;
  }
  body.woocommerce-shop ul.products li.product,
  body.post-type-archive-product ul.products li.product,
  body.tax-product_cat ul.products li.product,
  body.tax-product_tag ul.products li.product,
  body.woocommerce-page.post-type-archive-product ul.products li.product,
  body .woocommerce ul.products.products li.product,
  body .woocommerce-page ul.products.products li.product{
    max-width:280px !important;
    justify-self:center !important;
    background:#fff !important;
    border:1px solid rgba(20,20,20,.08) !important;
    border-radius:22px !important;
    box-shadow:0 12px 28px rgba(0,0,0,.06) !important;
  }
}
body.woocommerce-shop ul.products li.product .swp-shop-title,
body.post-type-archive-product ul.products li.product .swp-shop-title,
body.tax-product_cat ul.products li.product .swp-shop-title,
body.tax-product_tag ul.products li.product .swp-shop-title,
body.woocommerce-page.post-type-archive-product ul.products li.product .swp-shop-title,
body .woocommerce ul.products.products li.product .swp-shop-title,
body .woocommerce-page ul.products.products li.product .swp-shop-title{
  min-height:2.7em !important;
}
body.woocommerce-shop ul.products li.product .swp-shop-price,
body.post-type-archive-product ul.products li.product .swp-shop-price,
body.tax-product_cat ul.products li.product .swp-shop-price,
body.tax-product_tag ul.products li.product .swp-shop-price,
body.woocommerce-page.post-type-archive-product ul.products li.product .swp-shop-price,
body .woocommerce ul.products.products li.product .swp-shop-price,
body .woocommerce-page ul.products.products li.product .swp-shop-price{
  min-height:2.8em !important;
}
