/*
Theme Name:   Kadence Child – Safe Laser
Template:     kadence
Version:      1.0.0
Text Domain:  kadence-child
*/

/* ─── DESIGN TOKENS ─────────────────────────────────────────────────────── */
:root {
  --sl-red:       #d91a32;
  --sl-red-dark:  #b81528;
  --sl-red-bg:    #fdf2f4;
  --sl-yellow:    #e8b84b;
  --sl-text:      #222222;
  --sl-text-md:   #555555;
  --sl-text-sm:   #888888;
  --sl-border:    #e5e5e5;
  --sl-bg-light:  #f7f7f7;
  --sl-white-link: #ffffff;
  --sl-green:     #2e9e5b;
  --sl-r:         6px;
}

/* ─── CONTACT TOP BAR ───────────────────────────────────────────────────── */
.site-header-inner-wrap .sl-topbar-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-html { line-height: 1;}

#main-header .site-header-inner-wrap .sl-topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--sl-white-link);
  text-decoration: none;
  letter-spacing: .2px;
  transition: color .2s;
}
.site-header-inner-wrap .sl-topbar-link:hover {
  color: var(--sl-red-bg);
}
.site-header-inner-wrap .sl-topbar-link svg {
  width: 13px;
  height: 13px;
  color: var(--sl-white-link);
  flex-shrink: 0;
}
.site-header-inner-wrap .sl-topbar-sep {
  width: 1px;
  height: 14px;
  background: var(--sl-border);
  display: block;
}

/* ─── GUARANTEE STRIP ───────────────────────────────────────────────────── */
.sl-guarantee-strip {
  background: #fff;
  border-top: 1px solid var(--sl-border);
  border-bottom: 1px solid var(--sl-border);
  margin-bottom: 0;
}
.sl-guarantee-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--sl-border);
  border: 1px solid var(--sl-border);
}
@media (min-width: 768px) {
  .sl-guarantee-inner { grid-template-columns: repeat(4, 1fr); }
}
.sl-guar-item {
  background: #fff;
  padding: 20px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.sl-guar-item svg {
  width: 28px;
  height: 28px;
  color: var(--sl-red);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}
.sl-guar-item strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--sl-text);
}
.sl-guar-item span {
  font-size: 11px;
  color: var(--sl-text-sm);
}

/* ─── SHOP HEADER ───────────────────────────────────────────────────────── */
.sl-shop-header {
  padding: 36px 0 0;
}
.sl-shop-header h1,
.woocommerce-products-header__title.page-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--sl-text);
  margin-bottom: 8px;
}
.sl-title-line {
  width: 44px;
  height: 3px;
  background: var(--sl-red);
  border-radius: 2px;
}
.sl-shop-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--sl-border);
  border-bottom: 1px solid var(--sl-border);
  margin-bottom: 24px;
}
.sl-shop-count {
  font-size: 13px;
  color: var(--sl-text-sm);
}
.sl-shop-trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.sl-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--sl-text-md);
}
.sl-trust-item svg {
  width: 14px;
  height: 14px;
  color: var(--sl-red);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* ─── PRODUCT GRID (4-col) ──────────────────────────────────────────────── */
.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 24px !important;
  float: none !important;
  margin: 0 0 56px !important;
}
@media (min-width: 560px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (min-width: 900px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

/* ─── PRODUCT CARD ──────────────────────────────────────────────────────── */
li.product.sl-prod-card {
  background: #fff;
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-r);
  overflow: hidden;
  display: flex !important;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
  position: relative;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
  width: auto !important;
}
li.product.sl-prod-card:hover {
  box-shadow: 0 6px 22px rgba(0,0,0,.09);
  transform: translateY(-2px);
}
li.product.sl-prod-card.featured {
  border-color: rgba(217,26,50,.4);
  box-shadow: 0 0 0 2px rgba(217,26,50,.12);
}

/* Flag badge — inside image area, top-right */
.sl-prod-flag {
  position: absolute;
  top: 5px;
  right: 5px;
  background: var(--sl-red);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
}

/* Image area */
.sl-prod-img-area {
  background: #f5f5f5;
  padding: 0; 
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  border-bottom: 1px solid var(--sl-border);
  position: relative;
  overflow: hidden;
}
.sl-prod-img-area img {
  width: 100%;
  height: 100%;
  max-height: 200px;
  object-fit: cover;
  transition: transform .3s;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,.1));
}
.sl-prod-card:hover .sl-prod-img-area img {
  transform: scale(1.06) translateY(-4px);
}
.sl-prod-img-area a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Card body */
.sl-prod-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

/* Name + tagline */
.sl-prod-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--sl-text);
  line-height: 1.2;
  text-decoration: none;
  display: block;
}
.sl-prod-name:hover { color: var(--sl-red); }
.sl-prod-tagline {
  font-size: 11px;
  color: var(--sl-text-sm);
  font-style: italic;
  margin-top: 2px;
}

/* Depth bar — single row: label + bar + value */
.sl-depth-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sl-depth-label {
  font-size: 11px;
  color: var(--sl-text-sm);
  white-space: nowrap;
  flex-shrink: 0;
}
.sl-depth-bar {
  flex: 1;
  height: 5px;
  background: var(--sl-border);
  border-radius: 3px;
  overflow: hidden;
}
.sl-depth-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--sl-yellow), var(--sl-red));
}
.sl-depth-fill.blue      { background: linear-gradient(90deg, #4f8ef7, #a78bfa); }
.sl-depth-fill.light-red { background: linear-gradient(90deg, var(--sl-red), #fb7185); }
.sl-depth-val {
  font-size: 11px;
  font-weight: 700;
  color: var(--sl-text-sm);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Coloured chip badges */
.sl-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.sl-chip {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2px;
  padding: 3px 8px;
  border-radius: 20px;
  border: 1px solid;
}
.sl-chip-ir { color: #ff6b35; border-color: rgba(255,107,53,.35); background: rgba(255,107,53,.07); }
.sl-chip-bl { color: #4f8ef7; border-color: rgba(79,142,247,.35); background: rgba(79,142,247,.07); }
.sl-chip-rd { color: var(--sl-red); border-color: rgba(217,26,50,.3); background: rgba(217,26,50,.06); }
.sl-chip-gr { color: #555; border-color: #ddd; background: #f5f5f5; }

/* Spec rows — Image #8 style: key left, value right */
.sl-spec-rows {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sl-prod-body .sl-spec-rows {
    margin: 0;
    padding-left: 0;
}

.sl-spec-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding: 5px 0;
  border-bottom: 1px solid var(--sl-border);
}
.sl-spec-row:last-child { border-bottom: none; }
.sl-spec-key {
  font-size: 11px;
  color: var(--sl-text-sm);
}
.sl-spec-val {
  font-size: 11px;
  font-weight: 700;
  color: var(--sl-text);
  text-align: right;
}
.sl-spec-val--accent { color: var(--sl-red); }

/* Use-case tags */
.sl-use-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.sl-use-tag {
  font-size: 10px;
  color: var(--sl-text-sm);
  background: var(--sl-bg-light);
  border: 1px solid var(--sl-border);
  padding: 2px 7px;
  border-radius: 20px;
}

.sl-prod-divider {
  height: 1px;
  background: var(--sl-border);
  margin: 0;
}

/* Stock status */
.sl-stock-line {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--sl-green);
}
.sl-stock-line::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sl-green);
  display: block;
  flex-shrink: 0;
}

/* Price */
.sl-price-wrap { margin-top: 2px; }
.sl-prod-card .price,
.sl-prod-card .woocommerce-Price-amount {
  font-size: 22px !important;
  font-weight: 800 !important;
  color: var(--sl-red) !important;
  letter-spacing: -.5px;
  line-height: 1;
}
.sl-prod-card .price .woocommerce-Price-currencySymbol {
  font-size: 12px;
  font-weight: 400;
  color: var(--sl-text-sm);
  vertical-align: bottom;
  margin-left: 2px;
}
.sl-price-note {
  font-size: 10px;
  color: var(--sl-text-sm);
  margin-top: 2px;
}

/* Add to cart button */
.sl-prod-card .button.add_to_cart_button,
.sl-prod-card a.button {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100% !important;
  padding: 10px 16px !important;
  background: var(--sl-red) !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  border: none !important;
  border-radius: 30px !important;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, box-shadow .2s !important;
  margin-top: auto;
  box-shadow: none !important;
  letter-spacing: 0;
}
.sl-prod-card .button.add_to_cart_button:hover,
.sl-prod-card a.button:hover {
  background: var(--sl-red-dark) !important;
  box-shadow: 0 4px 12px rgba(217,26,50,.3) !important;
  color: #fff !important;
}
.sl-prod-card .button.added::after { display: none; }

/* Details link */
.sl-btn-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 8px 16px;
  background: transparent;
  color: var(--sl-text-md);
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--sl-border);
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color .2s, color .2s;
  box-sizing: border-box;
}
.sl-btn-detail:hover {
  border-color: var(--sl-red);
  color: var(--sl-red);
}

/* Hide default WooCommerce result count & ordering on shop */
.woocommerce-result-count,
.woocommerce-ordering {
  display: none !important;
}

/* ─── ACCESSORIES SECTION ───────────────────────────────────────────────── */
.sl-acc-section {
  background: var(--sl-bg-light);
  border-top: 1px solid var(--sl-border);
  padding: 48px 0 64px;
  /* full-width breakout from WooCommerce container */
  margin-left:  calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  max-width: 100vw;
  box-sizing: border-box;
}
.sl-acc-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.sl-sec-heading {
  margin-bottom: 28px;
}
.sl-sec-heading h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  color: var(--sl-text);
  margin-bottom: 8px;
}
.sl-sec-line {
  width: 40px;
  height: 3px;
  background: var(--sl-yellow);
  border-radius: 2px;
}

.sl-acc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 480px)  { .sl-acc-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px)  { .sl-acc-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .sl-acc-grid { grid-template-columns: repeat(6, 1fr); } }

.sl-acc-card {
  background: #fff;
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-r);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.sl-acc-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.sl-acc-img {
  background: #fafafa;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}
.sl-acc-img img {
  max-width: 80px;
  max-height: 70px;
  object-fit: contain;
  display: block;
}
.sl-acc-body {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
}
.sl-acc-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--sl-text);
  margin-bottom: 4px;
  line-height: 1.3;
  text-decoration: none;
  display: block;
  min-height: 2.6em; /* reserves space for 2 lines — keeps price + button aligned */
}
.sl-acc-name:hover { color: var(--sl-red); }
.sl-acc-avail {
  font-size: 10px;
  color: var(--sl-green);
  font-weight: 600;
  margin-bottom: 6px;
}
.sl-acc-price {
  font-size: 14px;
  font-weight: 800;
  color: var(--sl-red);
  margin-bottom: 8px;
}
.sl-acc-price .price,
.sl-acc-price .woocommerce-Price-amount {
  font-size: 14px !important;
  font-weight: 800 !important;
  color: var(--sl-red) !important;
}
.sl-acc-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px;
  width: 100%;
  padding: 10px 12px !important;
  background: var(--sl-red) !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: .3px;
  text-transform: uppercase;
  white-space: nowrap;
  border: none !important;
  border-radius: 20px !important;
  box-shadow: none !important;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s;
  box-sizing: border-box;
  margin-top: 4px;
}
.sl-acc-btn:hover,
.sl-acc-btn:focus {
  background: var(--sl-red-dark) !important;
  color: #fff !important;
}
.sl-acc-btn svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════════════════════
   SINGLE PRODUCT PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Kadence wrapper reset for single product ── */
.single-product #primary,
.single-product .content-area,
.single-product .content-container {
  max-width: none !important;
  padding: 0 !important;
  float: none !important;
  width: 100% !important;
}

/* ── Page wrapper ── */
.sl-product-page {
  padding-bottom: 80px; /* room for mobile sticky */
}

/* ── Shared container ── */
.sl-pp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* ── Top product grid ── */
.sl-pp-wrap {
  padding: 32px 0 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) {
  .sl-pp-wrap {
    grid-template-columns: minmax(0, 420px) 1fr;
    gap: 48px;
    align-items: start;
  }
}

/* Mobile title */
.sl-pp-title-mob { margin-bottom: 20px; }
.sl-pp-title-mob h1 { font-size: 24px; font-weight: 800; line-height: 1.2; color: var(--sl-text); }
@media (min-width: 768px) { .sl-pp-title-mob { display: none; } }

/* ── Gallery ─────────────────────────────────────────────────────────────── */
.sl-pg { position: static; }
@media (min-width: 768px) {
  .sl-pg {
    position: sticky;
    top: 80px;
  }
}

/* Kadence sets div.product div.images to width:48% float:left — undo that */
.sl-pg div.images {
  float: none !important;
  width: 100% !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Fixed-height viewport so landscape images don't collapse the gallery */
.sl-pg .woocommerce-product-gallery { position: relative; }
.sl-pg .flex-viewport {
  height: 440px !important;
  background: #f5f5f5;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

/* Each slide fills the viewport and centers its image */
.sl-pg .woocommerce-product-gallery__image {
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 440px !important;
}
.sl-pg div.images img {
  display: block;
  max-height: 440px;
  width: auto !important;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto;
}

/* Thumbnail strip */
.sl-pg .flex-control-nav.flex-control-thumbs {
  position: static !important;
  transform: none !important;
  left: auto !important;
  right: auto !important;
  margin-top: 6px !important;
  display: flex !important;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  list-style: none !important;
  padding: 0 !important;
  background: none !important;
}
.sl-pg .flex-control-thumbs li {
  list-style: none !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
}
.sl-pg .flex-control-thumbs li img {
  width: 70px !important;
  height: 70px !important;
  object-fit: cover;
  border-radius: 4px;
  border: 2px solid transparent !important;
  opacity: .6;
  transition: opacity .2s, border-color .2s;
  display: block;
}
.sl-pg .flex-control-thumbs li img.flex-active,
.sl-pg .flex-control-thumbs li img:hover {
  border-color: var(--sl-red) !important;
  opacity: 1 !important;
}

/* Navigation arrows */
.sl-pg .flex-direction-nav { list-style: none; margin: 0; padding: 0; }
.sl-pg .flex-direction-nav li { list-style: none; }
.sl-pg .flex-direction-nav a {
  position: absolute;
  top: 220px; /* half of 440px viewport — keeps arrows centred on the image, not the full gallery+thumbs */
  transform: translateY(-50%);
  z-index: 5;
  width: 38px; height: 38px;
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .2s, background .2s;
  text-decoration: none;
  font-size: 0;
}
.sl-pg .flex-direction-nav a:hover { background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,.24); }
.sl-pg .flex-direction-nav a.flex-prev { left: 10px; }
.sl-pg .flex-direction-nav a.flex-next { right: 10px; }
.sl-pg .flex-direction-nav a::before {
  content: '';
  display: block;
  flex-shrink: 0;
  text-indent: 0;
  width: 18px; height: 18px;
  background: center/contain no-repeat;
}
.sl-pg .flex-direction-nav a.flex-prev::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'/%3E%3C/svg%3E");
}
.sl-pg .flex-direction-nav a.flex-next::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
}
.sl-pg .flex-direction-nav .flex-disabled { display: none !important; }

/* Magnify / zoom trigger — top-right, matches nav-arrow style */
.sl-pg .woocommerce-product-gallery__trigger {
  position: absolute;
  top: 10px;
  right: 10px;
  left: auto !important;
  z-index: 10;
  width: 38px; height: 38px;
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow .2s, background .2s;
  text-indent: -9999px;
  overflow: hidden;
  font-size: 0;
}
.sl-pg .woocommerce-product-gallery__trigger:hover {
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.24);
}
.sl-pg .woocommerce-product-gallery__trigger::after {
  content: '';
  display: block;
  flex-shrink: 0;
  text-indent: 0;
  width: 16px; height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ── ATC Popup ───────────────────────────────────────────────────────────── */
.sl-atc-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.sl-atc-overlay[hidden] { display: none !important; }
.sl-atc-modal {
  background: #fff;
  border-radius: 16px;
  padding: 40px 28px 28px;
  max-width: 380px;
  width: 100%;
  position: relative;
  text-align: center;
  animation: slAtcIn .22s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  box-shadow: 0 24px 64px rgba(0,0,0,.22);
}
@keyframes slAtcIn {
  from { transform: scale(.88); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.sl-atc-dismiss {
  position: absolute; top: 12px; right: 12px;
  width: 30px; height: 30px;
  border: none; background: var(--sl-bg-light);
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center; padding: 0;
  color: var(--sl-text-sm);
}
.sl-atc-dismiss svg { width: 15px; height: 15px; }
.sl-atc-dismiss:hover { background: var(--sl-border); }
.sl-atc-check {
  width: 58px; height: 58px;
  margin: 0 auto 14px;
}
.sl-atc-check svg { width: 58px; height: 58px; }
.sl-atc-check-circle {
  stroke: var(--sl-red); stroke-width: 2;
  stroke-dasharray: 166; stroke-dashoffset: 166;
  fill: none;
  animation: slCircle .5s ease forwards;
}
.sl-atc-check-mark {
  stroke: var(--sl-red); stroke-width: 3;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 48; stroke-dashoffset: 48;
  fill: none;
  animation: slCheck .3s .45s ease forwards;
}
@keyframes slCircle { to { stroke-dashoffset: 0; } }
@keyframes slCheck  { to { stroke-dashoffset: 0; } }
.sl-atc-label {
  font-size: 18px; font-weight: 800; color: var(--sl-text); margin: 0 0 4px;
}
.sl-atc-name {
  font-size: 13px; color: var(--sl-text-md); margin: 0 0 22px;
}
.sl-atc-btns { display: flex; flex-direction: column; gap: 10px; }
.sl-atc-continue {
  background: var(--sl-bg-light); border: 1px solid var(--sl-border);
  border-radius: var(--sl-r); padding: 11px;
  font-size: 14px; font-weight: 600; color: var(--sl-text);
  cursor: pointer; width: 100%;
}
.sl-atc-continue:hover { background: var(--sl-border); }
.sl-atc-cart-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--sl-red); color: #fff !important;
  border-radius: var(--sl-r); padding: 11px;
  font-size: 14px; font-weight: 700; text-decoration: none !important;
  transition: background .2s;
}
.sl-atc-cart-btn:hover { background: var(--sl-red-dk, #b8162a); }
.sl-atc-cart-btn svg { width: 17px; height: 17px; flex-shrink: 0; }

/* ── Product info ── */
.sl-pp-info { padding-top: 4px; }

.sl-pp-title-desk h1 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800; line-height: 1.2; color: var(--sl-text);
}
.sl-pp-title-desk .sl-title-line { margin-top: 10px; }
.sl-pp-title-desk { margin-bottom: 24px; }
@media (max-width: 767px) { .sl-pp-title-desk { display: none; } }

.sl-pp-price-wrap { margin-bottom: 12px; }
.sl-pp-price-wrap .price,
.sl-pp-price-wrap .woocommerce-Price-amount {
  font-size: 28px !important;
  font-weight: 800 !important;
  color: var(--sl-red) !important;
  line-height: 1;
}
.sl-pp-price-wrap .woocommerce-Price-currencySymbol {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: var(--sl-text-sm) !important;
}
.sl-pp-price-note { font-size: 12px; color: var(--sl-text-sm); margin-top: 4px; }

.sl-pp-stock {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--sl-green);
  margin-bottom: 12px;
}
.sl-pp-stock-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sl-green); flex-shrink: 0;
}

.sl-pp-tagline {
  font-size: 14px; font-weight: 700; color: var(--sl-text);
  margin-bottom: 14px;
}

/* Mobile-only: breathing room around the price block */
@media (max-width: 767px) {
  .sl-pp-price-wrap { margin-top: 24px; margin-bottom: 16px; }
  .sl-pp-price-wrap .price,
  .sl-pp-price-wrap .woocommerce-Price-amount {
    font-size: 32px !important;
  }
  .sl-pp-stock { margin-bottom: 16px; font-size: 14px; }
  .sl-pp-tagline { margin-bottom: 20px; font-size: 15px; }
}

/* ─────────────────────────────────────────────────────────────────────────
 * /recenzii/ ONLY (page-id-1503)
 * - cancel Kadence's negative-margin break-out so testimonials stay
 *   inside the pale-blue section background
 * - turn each testimonial group into a distinct white card
 * - on mobile, force columns to stack and constrain widths
 * Scoped to .page-id-1503 to avoid affecting other Kadence-built pages.
 * ───────────────────────────────────────────────────────────────────── */
.page-id-1503 .kb-row-layout-wrap .wp-block-group.alignfull,
.page-id-1503 .kb-row-layout-wrap .wp-block-columns.alignfull,
.page-id-1503 .kb-row-layout-wrap .alignfull,
.page-id-1503 .kb-row-layout-wrap .wp-block-columns.alignwide,
.page-id-1503 .kb-row-layout-wrap .alignwide {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 100% !important;
}

.page-id-1503 .kb-row-layout-wrap > .kt-row-column-wrap > .wp-block-kadence-column > .kt-inside-inner-col > .wp-block-group.alignfull {
  background: #fff;
  border: 1px solid #e6ecf3;
  border-radius: 14px;
  box-shadow: 0 2px 6px rgba(15, 35, 70, 0.04), 0 8px 20px rgba(15, 35, 70, 0.04);
  padding: 32px 40px !important;
  margin: 0 0 24px 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  box-sizing: border-box;
}
.page-id-1503 .kb-row-layout-wrap > .kt-row-column-wrap > .wp-block-kadence-column > .kt-inside-inner-col > .wp-block-group.alignfull:last-child {
  margin-bottom: 0 !important;
}
.page-id-1503 .kb-row-layout-wrap > .kt-row-column-wrap > .wp-block-kadence-column > .kt-inside-inner-col {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.page-id-1503 .kb-row-layout-wrap .wp-block-group.alignfull .wp-block-spacer {
  height: 12px !important;
}

/* Tighten the gap between the big number and its label in the stats row. */
.page-id-1503 .kadence-row-stats_row .wp-block-kadence-column p {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.page-id-1503 .kadence-row-stats_row .wp-block-kadence-column p + p {
  margin-top: 6px !important;
}

@media (max-width: 767px) {
  .page-id-1503 .kb-row-layout-wrap > .kt-row-column-wrap > .wp-block-kadence-column > .kt-inside-inner-col > .wp-block-group.alignfull {
    padding: 20px 18px !important;
    margin-bottom: 16px !important;
    border-radius: 12px;
  }
  .page-id-1503 .entry-content .wp-block-columns.alignwide,
  .page-id-1503 .entry-content .wp-block-columns,
  .page-id-1503 .entry-content .alignwide {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box;
  }
  .page-id-1503 .entry-content .wp-block-column {
    max-width: 100% !important;
    flex-basis: 100% !important;
    box-sizing: border-box;
  }
}

/* Short description — collapsible */
.sl-pp-desc-wrap {
  margin-bottom: 20px;
  position: relative;
}
.sl-pp-desc {
  font-size: 14px;
  color: var(--sl-text-md);
  line-height: 1.7;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.sl-pp-desc p { margin-bottom: 10px; }
.sl-pp-desc p:last-child { margin-bottom: 0; }
.sl-pp-desc strong { color: var(--sl-text); }

/* Collapsed state */
.sl-pp-desc--collapsed {
  max-height: 110px;
  mask-image: linear-gradient(to bottom, #000 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 50%, transparent 100%);
}

/* Expanded state */
.sl-pp-desc:not(.sl-pp-desc--collapsed) {
  max-height: 2000px;
  mask-image: none;
  -webkit-mask-image: none;
}

/* Toggle button */
.sl-pp-desc-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--sl-red);
  line-height: 1;
}
.sl-pp-desc-toggle:hover,
.sl-pp-desc-toggle:focus,
.sl-pp-desc-toggle:focus-visible { color: var(--sl-red-dark); background: none !important; box-shadow: none !important; outline: none; }
.sl-pp-desc-toggle-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.sl-pp-pkg {
  background: var(--sl-bg-light);
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-r);
  padding: 12px 16px;
  margin-bottom: 20px;
}
.sl-pp-pkg-title {
  font-size: 11px; font-weight: 700; letter-spacing: .4px;
  text-transform: uppercase; color: var(--sl-text-sm);
  margin-bottom: 6px;
}
.sl-pp-pkg p { font-size: 13px; color: var(--sl-text-md); }

/* ── WooCommerce add-to-cart form override ── */
.single-product .sl-pp-info form.cart {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 20px !important;
  flex-wrap: wrap;
}
.single-product .sl-pp-info .quantity {
  display: flex !important;
  align-items: center !important;
  border: 1px solid var(--sl-border) !important;
  border-radius: var(--sl-r) !important;
  overflow: hidden !important;
  background: #fff !important;
  height: 46px !important;
}
.single-product .sl-pp-info .qty {
  width: 52px !important;
  height: 100% !important;
  border: none !important;
  outline: none !important;
  text-align: center !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--sl-text) !important;
  background: transparent !important;
  -moz-appearance: textfield !important;
}
.single-product .sl-pp-info .qty::-webkit-outer-spin-button,
.single-product .sl-pp-info .qty::-webkit-inner-spin-button { -webkit-appearance: none; }
.single-product .sl-pp-info .single_add_to_cart_button {
  flex: 1 !important;
  min-width: 160px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  background: var(--sl-red) !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  padding: 12px 24px !important;
  border-radius: 30px !important;
  border: none !important;
  cursor: pointer !important;
  text-decoration: none !important;
  height: 46px !important;
  transition: background .2s, box-shadow .2s !important;
  box-shadow: none !important;
}
.single-product .sl-pp-info .single_add_to_cart_button:hover {
  background: var(--sl-red-dark) !important;
  box-shadow: 0 4px 16px rgba(217,26,50,.35) !important;
}

/* ── Trust strip ── */
.sl-pp-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--sl-border);
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-r);
  overflow: hidden;
}
.sl-pp-trust-cell {
  background: #fff;
  padding: 12px 10px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.sl-pp-trust-cell svg { width: 20px; height: 20px; color: var(--sl-red); }
.sl-pp-trust-cell strong { font-size: 12px; font-weight: 700; color: var(--sl-text); }
.sl-pp-trust-cell span { font-size: 10px; color: var(--sl-text-sm); }

/* ── Specialist consultation box ── */
.sl-pp-specialist {
  margin-top: 20px;
  padding: 16px;
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-r);
  background: #fff;
}
.sl-pp-specialist-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--sl-text);
  margin-top: 0;
  margin-bottom: 14px;
  line-height: 1.4;
}
.sl-pp-specialist-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sl-pp-specialist-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-decoration: none;
  color: var(--sl-text-md);
  transition: color .2s;
}
.sl-pp-specialist-row:hover { color: var(--sl-red); }
.sl-pp-specialist-row svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--sl-red);
  margin-top: 2px;
}
.sl-pp-specialist-row span { display: flex; flex-direction: column; gap: 2px; }
.sl-pp-specialist-row strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--sl-text);
  display: block;
}
.sl-pp-specialist-row small {
  font-size: 11px;
  color: var(--sl-text-sm);
  display: block;
}

/* ── Tabs ── */
.sl-pp-tabs-outer {
  border-top: 1px solid var(--sl-border);
  padding-bottom: 56px;
  position: relative;
}
.sl-pp-tabs-sticky {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 2px solid var(--sl-border);
  transition: box-shadow .2s;
}
body.admin-bar .sl-pp-tabs-sticky { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .sl-pp-tabs-sticky { top: 46px; }
}
.sl-pp-tabs-sticky--stuck {
  box-shadow: 0 3px 16px rgba(0,0,0,.1);
}
.sl-pp-tabs-nav {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.sl-pp-tabs-nav::-webkit-scrollbar { display: none; }
.sl-pp-tab-btn {
  flex-shrink: 0;
  padding: 14px 22px;
  font-size: 13px; font-weight: 600;
  background: none !important;
  border: none !important;
  border-bottom: 3px solid transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  cursor: pointer;
  color: var(--sl-text-md) !important;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
  font-family: inherit;
  text-transform: none !important;
  letter-spacing: normal !important;
}
.sl-pp-tab-btn:hover,
.sl-pp-tab-btn:focus {
  background: none !important;
  color: var(--sl-red) !important;
  box-shadow: none !important;
}
.sl-pp-tab-btn.active {
  color: var(--sl-red) !important;
  border-bottom-color: var(--sl-red) !important;
  background: none !important;
}

.sl-pp-tab-panel { display: none; padding: 32px 0; }
.sl-pp-tab-panel.active { display: block; }

/* Specs tab */
.sl-pp-specs { list-style: none; }
.sl-pp-specs li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--sl-border);
}
.sl-pp-specs li:last-child { border-bottom: none; }
.sl-pp-spec-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sl-red); margin-top: 4px; flex-shrink: 0;
}
.sl-pp-spec-key { font-size: 13px; font-weight: 700; color: var(--sl-text); min-width: 200px; }
.sl-pp-spec-val { font-size: 13px; color: var(--sl-text-md); }

/* Accordion — Recomandat pentru tab */
.sl-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 0;
  max-width: 800px;
}
.sl-acc-item {
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-r);
  overflow: hidden;
}
.sl-acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  background: var(--sl-bg-light);
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  color: var(--sl-text);
  font-family: inherit;
  transition: background .15s;
  border-radius: 0;
}
.sl-acc-head:hover { background: var(--sl-red); color: #fff; }
.sl-acc-head[aria-expanded="true"] { background: var(--sl-red); color: #fff; }
.sl-acc-icon {
  flex-shrink: 0;
  color: var(--sl-text-md);
  transition: transform .25s;
}
.sl-acc-head:hover .sl-acc-icon,
.sl-acc-head[aria-expanded="true"] .sl-acc-icon { color: #fff; }
.sl-acc-head[aria-expanded="true"] .sl-acc-icon { transform: rotate(45deg); }
.sl-accordion-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}
.sl-acc-inner {
  padding: 16px 20px 20px;
  border-top: 1px solid var(--sl-border);
}

/* Generic tab content */
.sl-pp-tab-content { font-size: 14px; color: var(--sl-text-md); line-height: 1.7; max-width: 800px; }
.sl-pp-tab-content p { margin-bottom: 12px; }
.sl-pp-tab-content ul { padding-left: 20px; margin-bottom: 12px; }
.sl-pp-tab-content li { margin-bottom: 6px; }
.sl-pp-tab-content strong { color: var(--sl-text); }
.sl-pp-tab-content h3,
.sl-pp-tab-content h4 { color: var(--sl-text); font-weight: 700; margin: 16px 0 8px; }

/* Long description collapse */
.sl-desc-wrap { position: relative; }
.sl-desc-body {
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.sl-desc-body--collapsed {
  max-height: 320px;
  mask-image: linear-gradient(to bottom, #000 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 55%, transparent 100%);
}
.sl-desc-body:not(.sl-desc-body--collapsed) {
  max-height: 9999px;
  mask-image: none;
  -webkit-mask-image: none;
}
.sl-desc-fade {
  display: none; /* handled by mask-image instead */
}
.sl-desc-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  background: none !important;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--sl-red);
  line-height: 1;
  box-shadow: none !important;
  outline: none;
}
.sl-desc-toggle:hover,
.sl-desc-toggle:focus,
.sl-desc-toggle:focus-visible {
  color: var(--sl-red-dark);
  background: none !important;
  box-shadow: none !important;
  outline: none;
}
.sl-desc-toggle-icon { transition: transform 0.3s ease; flex-shrink: 0; }

/* Video tab */
.sl-pp-video-wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  max-width: 720px;
  border-radius: var(--sl-r);
  overflow: hidden;
}
.sl-pp-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

em {
  color: var(--sl-red);
}

/* .home #primary h2,
h2.sec-title {
    font-size: clamp(22px, 3vw, 30px) !important;
    font-weight: 800 !important;
    color: var(--text) !important;
    margin-bottom: 1em !important;
    line-height: 1.2 !important;
} */

.entry-content blockquote {
  border-left: 4px solid var(--sl-bg-light);  
}

.wp-block-group em {
  color: var(--sl-bg-light);
}

#efecte.section {
    padding: 0 0;
}

/* ── Related products ── */
.sl-pp-related-outer {
  background: var(--sl-bg-light);
  border-top: 1px solid var(--sl-border);
  padding: 48px 0 64px;
}
.sl-pp-related-title {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 800; color: var(--sl-text);
  margin-bottom: 8px;
}
.sl-pp-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 480px) { .sl-pp-related-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .sl-pp-related-grid { grid-template-columns: repeat(4, 1fr); } }

/* ── Mobile sticky bar ── */
.sl-pp-sticky {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: #fff;
  border-top: 1px solid var(--sl-border);
  padding: 10px 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
  transform: translateY(100%);
  transition: transform .3s;
}
.sl-pp-sticky--visible { transform: translateY(0); }
.sl-pp-sticky-inner {
  display: flex; align-items: center; gap: 12px;
  max-width: 480px; margin: 0 auto;
}
.sl-pp-sticky-price .price,
.sl-pp-sticky-price .woocommerce-Price-amount {
  font-size: 18px !important;
  font-weight: 800 !important;
  color: var(--sl-red) !important;
}
.sl-pp-sticky-price small {
  display: block; font-size: 11px; color: var(--sl-text-sm); font-weight: 400;
}
.sl-pp-sticky-cta {
  flex: 1;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  background: var(--sl-red) !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  padding: 12px 20px !important;
  border-radius: 30px !important;
  border: none !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: background .2s !important;
  box-shadow: none !important;
}
.sl-pp-sticky-cta:hover { background: var(--sl-red-dark) !important; color: #fff !important; }
.sl-pp-sticky-cta svg { width: 15px; height: 15px; }
@media (max-width: 767px) { .sl-pp-sticky { display: block; } }

/* ─── FOOTER ────────────────────────────────────────────────────────────── */
.site-footer,
.site-footer .footer-wrap {
  background: #1a1a1a !important;
}
.site-footer {
  padding: 48px 0 24px;
}

/* Widget headings */
.site-footer .widget-title,
.site-footer h1, .site-footer h2, .site-footer h3,
.site-footer h4, .site-footer h5, .site-footer h6 {
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .8px !important;
  margin-bottom: 14px !important;
}

/* All text */
.site-footer,
.site-footer p,
.site-footer li,
.site-footer span {
  color: #888;
}

/* All links */
.site-footer a {
  color: #888 !important;
  text-decoration: none !important;
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
  transition: color .2s;
}
.site-footer a:hover { color: #fff !important; }

/* Footer bottom bar */
.site-footer .footer-bottom-wrap,
.site-footer .site-info {
  border-top: 1px solid #333 !important;
  padding-top: 20px !important;
  font-size: 14px !important;
  color: #555 !important;
}
.site-footer .footer-bottom-wrap a,
.site-footer .site-info a {
  color: #666 !important;
  font-size: 14px;
  display: inline;
  margin-bottom: 0;
}
.site-footer .footer-bottom-wrap a:hover,
.site-footer .site-info a:hover { color: #999 !important; }

/* Nav menu in footer */
.site-footer .menu li { margin-bottom: 6px; }
.site-footer .menu a {
  color: #888 !important;
  font-size: 14px;
  display: block;
}
.site-footer .menu a:hover { color: #fff !important; }

/* ── Footer first widget: brand block ── */
.sl-fw-logo-link {
  display: inline-block !important;
  /* margin-bottom: 16px !important; */
}
.sl-fw-logo-img {
  max-width: 130px !important;
  width: 140px;
  height: auto !important;
  display: block !important;
  opacity: .9;
}

.sl-fw-tagline {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}

#colophon .footer-html p {
  font-size: 12px;
}

.sl-fw-divider {
  width: 32px;
  height: 2px;
  background: var(--sl-red);
  border-radius: 2px;
  margin-bottom: 16px;
}

.sl-fw-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sl-fw-ci {
  display: flex !important;
  align-items: flex-start !important;
  gap: 8px !important;
  font-size: 12px !important;
  color: #777 !important;
  text-decoration: none !important;
  margin-bottom: 0 !important;
  line-height: 1.5 !important;
  transition: color .2s !important;
}
.sl-fw-ci svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--sl-red);
  stroke: currentColor;
}
.sl-fw-ci:hover { color: #fff !important; }

/* ── ANPC badges: smaller & neater ── */
.site-footer .widget img {
  max-width: 140px !important;
  height: auto !important;
  display: block;
  margin-bottom: 8px;
  border-radius: 4px;
  opacity: .85;
  transition: opacity .2s;
}
.site-footer .widget img:hover { opacity: 1; }


    /* ── HERO ── */
    .hero { background: #f0f0f0; overflow: hidden; position: relative; }
    .hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 1fr; min-height: 420px; }
    @media (min-width: 768px) { .hero-inner { grid-template-columns: 1fr 1fr; } }

    .hero-content { padding: 52px 0 48px; display: flex; flex-direction: column; justify-content: center; }
    .hero-questions { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
    .hero-q {
      display: inline-block; background: var(--red); color: #fff;
      font-size: clamp(18px, 3vw, 26px); font-weight: 800; line-height: 1.1;
      padding: 8px 16px; border-radius: 3px;
      width: fit-content;
    }
    .hero-q:nth-child(2) { margin-left: 20px; }
    .hero-q:nth-child(3) { margin-left: 40px; }

    .hero-brand { display: flex; align-items: center; gap: 14px; margin: 16px 0; }
    .hero-brand-circle { width: 56px; height: 56px; border-radius: 50%; border: 2px solid var(--red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .hero-brand-circle svg { width: 28px; height: 28px; color: var(--red); }
    .hero-brand-text { font-family: 'Open Sans', sans-serif; font-size: 18px; font-weight: 800; letter-spacing: -0.5px; color: var(--text); line-height: 1.2; }
    .hero-brand-text em { color: var(--red); font-style: normal; }

    .hero-answer { font-size: clamp(28px, 5vw, 46px); font-weight: 800; color: var(--text); line-height: 1.05; margin-bottom: 24px; letter-spacing: -1px; }
    .hero-answer span { color: var(--red); }

    .hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
    .btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: #fff; font-family: 'Open Sans', sans-serif; font-size: 14px; font-weight: 700; padding: 12px 24px; border-radius: 30px; border: none; cursor: pointer; text-decoration: none; transition: background .2s, box-shadow .2s; }
    .btn-primary:hover { background: var(--red-dark); box-shadow: 0 4px 16px rgba(217,26,50,.35); }
    .btn-primary svg { width: 16px; height: 16px; }
    .btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--text); font-family: 'Open Sans', sans-serif; font-size: 14px; font-weight: 700; padding: 11px 22px; border-radius: 30px; border: 2px solid var(--text); cursor: pointer; text-decoration: none; transition: border-color .2s, color .2s; }
    .btn-outline:hover { border-color: var(--red); color: var(--red); }

    .hero-image { display: flex; align-items: flex-end; justify-content: center; padding-top: 32px; position: relative; overflow: hidden; }
    .hero-image::before { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 280px; height: 280px; border-radius: 50%; background: rgba(217,26,50,.08); }
    .hero-image img { max-height: 380px; width: auto; object-fit: contain; position: relative; z-index: 1; filter: drop-shadow(0 16px 40px rgba(0,0,0,.15)); }
    @media (max-width: 767px) { .hero-image { padding-top: 0; max-height: 200px; overflow: hidden; } .hero-image img { max-height: 180px; } }

    /* ── SECTION SHARED ── */
    .section { padding: 64px 0; }
    .section-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
    .sec-title { font-size: clamp(22px, 3vw, 30px); font-weight: 800; color: var(--text); margin-bottom: 8px; line-height: 1.2; }
    .sec-line { width: 44px; height: 3px; background: var(--yellow); border-radius: 2px; margin-bottom: 40px; }
    .sec-sub { font-size: 13px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; color: var(--text-sm); margin-bottom: 6px; }

    /* ── EFFECTS SECTION ── */
    .effects-section { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .effects-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
    @media (min-width: 768px) { .effects-grid { grid-template-columns: repeat(4,1fr); } }

    .effect-card { text-align: center; }
    .effect-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--red-bg); border: 2px solid rgba(217,26,50,.15); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
    .effect-icon svg { width: 28px; height: 28px; color: var(--red); }
    .effect-title { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
    .effect-desc { font-size: 12px; color: var(--text-md); line-height: 1.5; }

    /* ── PRODUCTS SECTION ── */
    .products-section { background: var(--bg-light); }
    .products-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
    @media (min-width: 900px) { .products-grid { grid-template-columns: repeat(4,1fr); } }

    .prod-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: box-shadow .2s, transform .2s; display: flex; flex-direction: column; }
    .prod-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.1); transform: translateY(-3px); }
    .prod-img-wrap { background: #fafafa; padding: 24px; display: flex; align-items: center; justify-content: center; min-height: 160px; position: relative; }
    .prod-img-wrap img { max-width: 120px; max-height: 120px; object-fit: contain; transition: transform .3s; }
    .prod-card:hover .prod-img-wrap img { transform: scale(1.05); }
    .prod-badge { position: absolute; top: 10px; left: 10px; background: var(--red); color: #fff; font-size: 9px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; padding: 3px 8px; border-radius: 3px; }
    .prod-body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
    .prod-name { font-size: 14px; font-weight: 800; color: var(--text); line-height: 1.2; }
    .prod-depth { display: flex; align-items: center; gap: 8px; }
    .prod-depth-bar { flex: 1; height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
    .prod-depth-fill { height: 100%; background: linear-gradient(90deg, var(--red), #ff6b35); border-radius: 2px; }
    .prod-depth-label { font-size: 10px; color: var(--text-sm); white-space: nowrap; }
    .prod-desc { font-size: 11px; color: var(--text-md); line-height: 1.5; flex: 1; }
    .prod-price { font-size: 18px; font-weight: 800; color: var(--red); }
    .prod-price small { font-size: 11px; color: var(--text-sm); font-weight: 400; display: block; }
    .prod-stock { display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; color: var(--green); }
    .prod-stock::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); display: block; }
    .prod-cta { display: flex; align-items: center; justify-content: center; gap: 6px; width: 100%; padding: 10px; background: var(--red); color: #fff; font-family: 'Open Sans', sans-serif; font-size: 12px; font-weight: 700; border: none; border-radius: 20px; cursor: pointer; text-decoration: none; transition: background .2s; margin-top: auto; }
    .prod-cta:hover { background: var(--red-dark); }
    .prod-cta svg { width: 13px; height: 13px; }

    /* ── CONDITIONS SECTION ── */
    .conditions-section { background: #1f1f2e; }
    .conditions-section .sec-title { color: #fff; }
    .conditions-section .sec-line { background: var(--red); }
    .conditions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
    @media (min-width: 600px) { .conditions-grid { grid-template-columns: repeat(3, 1fr); } }
    @media (min-width: 900px) { .conditions-grid { grid-template-columns: repeat(4, 1fr); } }

    .cond-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r); padding: 20px 16px; transition: background .2s, border-color .2s; cursor: default; }
    .cond-card:hover { background: rgba(217,26,50,.12); border-color: rgba(217,26,50,.3); }
    .cond-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(217,26,50,.15); border: 1px solid rgba(217,26,50,.25); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
    .cond-icon svg { width: 22px; height: 22px; color: var(--red); }
    .cond-name { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 6px; line-height: 1.3; }
    .cond-list { font-size: 11px; color: rgba(255,255,255,.55); line-height: 1.6; }

    /* ── TESTIMONIALS ── */
    .testimonials-section { background: var(--white); }
    .testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
    @media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2,1fr); } }

    .testi-card { background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--r); padding: 28px; position: relative; }
    .testi-card::before { content: '\201C'; font-size: 80px; font-family: Georgia, serif; color: rgba(217,26,50,.15); position: absolute; top: 8px; left: 20px; line-height: 1; }
    .testi-quote { font-size: 14px; color: var(--text-md); line-height: 1.7; font-style: italic; margin-bottom: 20px; position: relative; z-index: 1; padding-top: 20px; }
    .testi-author { display: flex; align-items: center; gap: 12px; }
    .testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--red-bg); border: 2px solid rgba(217,26,50,.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .testi-avatar svg { width: 22px; height: 22px; color: var(--red); }
    .testi-name { font-size: 13px; font-weight: 700; color: var(--text); }
    .testi-role { font-size: 11px; color: var(--text-sm); margin-top: 2px; }

    /* ── TRUST SECTION ── */
    .trust-section { background: var(--red); }
    .trust-section .sec-title { color: #fff; }
    .trust-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
    @media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4,1fr); } }
    .trust-item { text-align: center; }
    .trust-icon-wrap { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.25); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
    .trust-icon-wrap svg { width: 26px; height: 26px; color: #fff; }
    .trust-stat { font-size: 28px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 4px; }
    .trust-label { font-size: 12px; color: rgba(255,255,255,.8); font-weight: 600; }

    /* ── CTA BANNER ── */
    .cta-banner { background: var(--bg-light); border-top: 1px solid var(--border); padding: 56px 0; text-align: center; }
    .cta-banner h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; color: var(--text); margin-bottom: 12px; }
    .cta-banner p { font-size: 15px; color: var(--text-md); margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; }
    .cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

    .vc_btn3-shape-rounded.vc_btn3-style-modern.vc_btn3-color-default {
      width: 200px;
      padding: 10px 16px !important;
      background: var(--sl-red) !important;
      color: #fff !important;
      font-size: 13px !important;
      font-weight: 700 !important;
      border: none !important;
      border-radius: 30px !important;
      cursor: pointer;
      text-decoration: none;
      transition: background .2s, box-shadow .2s !important;
      margin-top: auto;
      box-shadow: none !important;
      letter-spacing: 0;
    }

/* ═════════════════════════════════════════════════════════════════════════
 * HOMEPAGE — [sl_uses_grid] "La ce e bun Safe Laser?"
 * Center body image with 4 cards on each side (desktop), stacked on mobile.
 * ═════════════════════════════════════════════════════════════════════ */
.sl-uses {
  position: relative;
  /* Full-bleed: break out of any constrained parent column */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 80px 20px;
  background-color: #1a0a0c;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  overflow: hidden;
  box-sizing: border-box;
}
.sl-uses::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0) 35%, rgba(0,0,0,0.55) 75%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}
.sl-uses-inner { position: relative; max-width: 1280px; margin: 0 auto; }
.sl-uses-head { text-align: center; margin-bottom: 56px; }
.sl-uses-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin: 0 0 8px;
  color: #fff;
  letter-spacing: -0.02em;
}
.sl-uses-title span { color: #ff5a64; }
.sl-uses-sub { font-size: 16px; opacity: 0.85; margin: 0; }

.sl-uses-grid {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 380px) 1fr;
  gap: 18px 60px;
  align-items: center;
  grid-auto-flow: dense;
}
/* Reserve the center column for the body image (already in bg) */
.sl-uses-grid::after {
  content: "";
  grid-column: 2;
  grid-row: 1 / span 4;
  min-height: 540px;
}

.sl-use-card {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  color: #fff;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.sl-use-card:hover,
.sl-use-card:focus,
.sl-use-card:active {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 90, 100, 0.6);
  transform: translateY(-2px);
  color: #fff !important;
  text-decoration: none !important;
}
.sl-use-card:hover .sl-use-title,
.sl-use-card:hover .sl-use-desc { color: #fff !important; }
.sl-use-card--left  { grid-column: 1; text-align: right; flex-direction: row-reverse; }
.sl-use-card--right { grid-column: 3; text-align: left;  flex-direction: row; }

.sl-use-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff5a64, #c4292f);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 8px 18px rgba(255, 90, 100, 0.3);
}
.sl-use-body { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 0; }
.sl-use-title { font-size: 21px; font-weight: 700; text-transform: uppercase; line-height: 24px;}
.sl-use-desc  { font-size: 15px; opacity: 0.75; line-height: 1.4; }

@media (max-width: 900px) {
  .sl-uses {
    padding: 56px 16px;
    background: linear-gradient(180deg, #2a0e11 0%, #4a1318 50%, #1a0a0c 100%) !important;
  }
  .sl-uses-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .sl-uses-grid::after { display: none; }
  .sl-use-card--left, .sl-use-card--right {
    grid-column: auto;
    flex-direction: row;
    text-align: left;
  }
}
@media (max-width: 560px) {
  .sl-uses-grid { grid-template-columns: 1fr; }
  .sl-uses-head { margin-bottom: 32px; }
}

.sl-uses-vet-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}
.sl-uses-vet-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #fff;
  color: #1a0a0c;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.sl-uses-vet-btn:hover,
.sl-uses-vet-btn:focus {
  background: #ff5a64;
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}
@media (max-width: 560px) {
  .sl-uses-vet-wrap { justify-content: center; }
}

/* ═════════════════════════════════════════════════════════════════════════
 * HOMEPAGE — [sl_products_showcase] product card grid
 * ═════════════════════════════════════════════════════════════════════ */
.sl-showcase {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 72px 24px 64px;
  background: #f5f6f7;
  box-sizing: border-box;
}
.sl-showcase-inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* Heading */
.sl-showcase-heading {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 36px;
  line-height: 1.2;
}
.sl-showcase-heading em {
  font-style: italic;
  color: #c4292f;
}

/* Card grid — reuses existing sl-prod-card styles */
.sl-showcase-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
/* Override WC default list reset that adds margins */
.sl-showcase .sl-showcase-cards > li.sl-prod-card {
  margin: 0 !important;
  float: none !important;
  width: auto !important;
}

/* "Mai multe" button */
.sl-showcase-more {
  text-align: center;
  margin-top: 40px;
}
.sl-showcase-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 48px;
  border-radius: 999px;
  background: #c4292f;
  color: #fff !important;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none !important;
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
}
.sl-showcase-more-btn:hover {
  background: #a01f24;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,41,47,0.28);
}

/* Responsive */
@media (max-width: 1024px) {
  .sl-showcase-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .sl-showcase { padding: 48px 16px 40px; }
  .sl-showcase-cards { grid-template-columns: 1fr;}
  .single-content .sl-showcase-cards { padding-left: 0; }
}

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS — [sl_testimonials]
   ══════════════════════════════════════════════════════════════ */
.sl-testimonials {
  background: #f5f6f7;
  padding: 72px 24px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
}
.sl-testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.sl-testimonials-heading {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 48px;
  line-height: 1.2;
}
.sl-testimonials-heading em {
  font-style: italic;
  color: #c0392b;
}
.sl-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.sl-testi-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #ede8e8;
}
.sl-testi-quote-mark {
  font-size: 72px;
  line-height: 1;
  font-family: Georgia, serif;
  color: #c0392b;
  opacity: 0.35;
  margin-bottom: -16px;
  user-select: none;
}
.sl-testi-text {
  font-size: 15px;
  line-height: 1.75;
  color: #333;
  font-style: italic;
  margin: 0;
  flex: 1;
}
.sl-testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 4px;
  border-top: 1px solid #f0eaea;
}
.sl-testi-avatar {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    margin-top: 10px;
}
.sl-testi-avatar svg { width: 100%; height: 100%; display: block; }
.sl-testi-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.sl-testi-name {
  font-weight: 700;
  font-size: 14px;
  color: #1a1a1a;
  line-height: 1.3;
}
.sl-testi-role {
  font-size: 12px;
  color: #c0392b;
  line-height: 1.4;
}

.sl-testimonials-more {
  text-align: center;
  margin-top: 40px;
}

.sl-testimonials-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 48px;
  border-radius: 999px;
  background: #c4292f;
  color: #fff !important;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none !important;
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
}
.sl-testimonials-more-btn:hover {
  background: #a01f24;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,41,47,0.28);
}

@media (max-width: 720px) {
  .sl-testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
  .sl-testi-card { padding: 28px 24px 24px; }
}

/* ══════════════════════════════════════════════════════════════
   LASER EFFECTS — [sl_laser_effects]
   ══════════════════════════════════════════════════════════════ */
.sl-effects {
  background: #fff;
  padding: 72px 24px;
  /* full-bleed out of WPBakery column */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
}
.sl-effects-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.sl-effects-heading {
  text-align: center;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 52px;
  line-height: 1.2;
}
.sl-effects-heading em {
  font-style: normal;
  color: #c0392b;
}
.sl-effects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.sl-effect-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 20px 32px;
  background: #fafafa;
  border: 1px solid #f0e4e4;
  border-radius: 16px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.sl-effect-card:hover {
  box-shadow: 0 8px 32px rgba(192,57,43,0.12);
  transform: translateY(-3px);
}
.sl-effect-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.sl-effect-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.sl-effect-title {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 10px;
  line-height: 1.3;
}
.sl-effect-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .sl-effects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 520px) {
  .sl-effects { padding: 48px 16px; }
  .sl-effects-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .sl-effect-card { padding: 28px 20px 24px; }
}

.wp-block-woocommerce-product-template li {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-id-1043 div.hero-section-overlay {
    background-size: auto 450px;
    background-position: 65%;
    background-repeat: no-repeat;
    background-image: url(https://www.safelaser.ro/wp-content/uploads/2026/05/page-static-96166713-ro.png);
}


.page-id-1634 .hero-section-overlay {
    background-size: auto 450px;
    background-position: 65%;
    background-repeat: no-repeat;
    background-image: url(https://www.safelaser.ro/wp-content/uploads/2026/05/page-static-59867725-ro.png);
}

.page-id-1637 .hero-section-overlay {
    background-size: auto 450px;
    background-position: 65%;
    background-repeat: no-repeat;
    background-image: url(https://www.safelaser.ro/wp-content/uploads/2026/05/page-static-79805216-ro.png);
}

.page-id-1059 .hero-section-overlay {
    background-size: auto 350px;
    background-position: 65%;
    background-repeat: no-repeat;
    background-image: url(https://www.safelaser.ro/wp-content/uploads/2026/05/page-static-22253093-ro.png);
}

.page-id-1051 .hero-section-overlay {
    background-size: auto 350px;
    background-position: 65%;
    background-repeat: no-repeat;
    background-image: url(https://www.safelaser.ro/wp-content/uploads/2026/05/page-static-34994756-ro.png);
}

.page-id-1646 .hero-section-overlay {
    background-size: auto 350px;
    background-position: 65%;
    background-repeat: no-repeat;
    background-image: url(https://www.safelaser.ro/wp-content/uploads/2026/05/page-static-82415411-ro.png);
}

.page-id-1061 .hero-section-overlay {
    background-size: auto 350px;
    background-position: 65%;
    background-repeat: no-repeat;
    background-image: url(https://www.safelaser.ro/wp-content/uploads/2026/05/page-static-43557326-ro.png);
}

.page-id-1657 .hero-section-overlay {
    background-size: auto 350px;
    background-position: 65%;
    background-repeat: no-repeat;
    background-image: url(https://www.safelaser.ro/wp-content/uploads/2026/05/page-static-76460573-ro.png);
}
.page-id-384 .hero-section-overlay {
    background-size: auto 350px;
    background-position: 100% 70%;
    background-repeat: no-repeat;
    background-image: url(https://www.safelaser.ro/wp-content/uploads/2026/05/page-static-21611432-ro.png);
}

.page-id-172 .hero-section-overlay {
    background-size: auto 370px;
    background-position: 65%;
    background-repeat: no-repeat;
    background-image: url(https://www.safelaser.ro/wp-content/uploads/2026/05/page-static-47351727-ro.png);
}