/** Shopify CDN: Minification failed

Line 908:0 Unexpected "}"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:category-cards (INDEX:8) */
/* ── Heading ── */
.uniivo-cats__heading {
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 3.55rem);
  font-weight: 600;
  color: #121212;
  margin: 0 0 28px;
}

/* ── BASE grid (shared) ── */
.uniivo-cats__grid {
  display: flex;
  gap: 20px;
}

/* ── ≤3 cards: stretch to fill full row ── */
.uniivo-cats__grid--fill {
  flex-wrap: nowrap;
}
.uniivo-cats__grid--fill .uniivo-cats__card {
  flex: 1 1 0;          /* equal stretch, no fixed width */
  min-width: 0;
}

/* ── >3 cards: horizontal scroll slider ── */
.uniivo-cats__grid--slider {
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* Enable smooth mouse-drag scrolling on desktop */
  cursor: grab;
}
.uniivo-cats__grid--slider:active {
  cursor: grabbing;
}
.uniivo-cats__grid--slider::-webkit-scrollbar {
  display: none;
}
.uniivo-cats__grid--slider .uniivo-cats__card {
  flex: 0 0 calc((100% - 40px) / 3);   /* 3 cards visible at once */
  min-width: calc((100% - 40px) / 3);
  scroll-snap-align: start;
}

/* ── Card base styles ── */
.uniivo-cats__card {
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.uniivo-cats__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
}

/* ── Image ── */
.uniivo-cats__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.uniivo-cats__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.uniivo-cats__card:hover .uniivo-cats__img { transform: scale(1.03); }
.uniivo-cats__img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(0,0,0,0.05);
}

/* ── Footer row (label + arrow) ── */
.uniivo-cats__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px 28px;
}
.uniivo-cats__label {
  font-size: 1.475rem;
  font-weight: 650;
  color: #121212;
  line-height: 1.35;
}
.uniivo-cats__arrow {
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.2s ease;
}
.uniivo-cats__card:hover .uniivo-cats__arrow { transform: translateX(4px); }

/* ── Mobile ── */
@media (max-width: 749px) {
  .uniivo-cats__grid--fill {
    flex-wrap: wrap;      /* stack on small screens */
  }
  .uniivo-cats__grid--fill .uniivo-cats__card {
    flex: 0 0 100%;
  }
  .uniivo-cats__grid--slider {
    gap: 14px;
    padding-left: 4px;
  }
  .uniivo-cats__grid--slider .uniivo-cats__card {
    flex: 0 0 80vw;
    min-width: 80vw;
  }
}
/* END_SECTION:category-cards */

/* START_SECTION:comparison-table (INDEX:12) */
.uniivo-compare__wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
/* Images */
.uniivo-compare__images {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.uniivo-compare__single-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  max-height: 520px;
}
.uniivo-compare__img-ph {
  width: 100%;
  min-height: 400px;
  border-radius: 20px;
  background: #f7c6d0;
}
/* Content */
.uniivo-compare__heading {
  font-size: clamp(2.5rem, 5.0vw, 3.55rem);
  font-weight: 600;
  color: #121212;
  margin: 0 0 8px;
  line-height: 1.2;
}
.uniivo-compare__sub {
  font-size: 1.2rem;
  color: #666;
  margin: 0 0 24px;
  line-height: 1.5;
}
.uniivo-compare__brand {
  color: #D81B60;
  text-decoration: none;
  font-weight: 500;
}
/* Table */
.uniivo-compare__table {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
}
.uniivo-compare__row {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  gap: 12px;
}
.uniivo-compare__row:last-child { border-bottom: none; }
.uniivo-compare__col-bad {
  font-size: 1.2rem;
  font-weight: 580;
  color: #888;
  text-align: left;
}
.uniivo-compare__col-good {
  font-size: 1.2rem;
  color: #0D5B45;
  font-weight: 580;
  text-align: left;
}
.uniivo-compare__icon-cell { display: flex; justify-content: center; }
.uniivo-compare__row-icon { width: 44px; height: 44px; object-fit: contain; }
/* CTA */
.uniivo-compare__cta { margin-top: 24px; text-align: center; }
.uniivo-compare__btn {
  display: inline-block;
  padding: 12px 40px;
  border: 1.5px solid #D81B60;
  color: #D81B60;
  border-radius: 40px;
  font-size: 1.175rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}
.uniivo-compare__btn:hover { background: #D81B60; color: #fff; }

@media (max-width: 749px) {
  .uniivo-compare__wrap { grid-template-columns: 1fr; gap: 32px; }
  .uniivo-compare__images { display: none; }
}
/* END_SECTION:comparison-table */

/* START_SECTION:featured-collection-custom (INDEX:19) */
.uniivo-fc__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.uniivo-fc__heading {
  font-size: clamp(2.5rem, 5.0vw, 3.55rem);
  font-weight: 600;
  color: #121212;
  margin: 0;
}
.uniivo-fc__viewall {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #D81B60;
  font-size: 1.45rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s;
}
.uniivo-fc__viewall:hover { gap: 10px; }

.uniivo-fc__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Card */
.uniivo-fc__card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.uniivo-fc__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
}

/* Image */
.uniivo-fc__img-link {
  position: relative;
  display: block;
  text-decoration: none;
}
.uniivo-fc__wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: background 0.2s;
}
.uniivo-fc__wishlist:hover { background: #FDECEF; }
.uniivo-fc__img-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #fafaf8;
}
.uniivo-fc__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.uniivo-fc__card:hover .uniivo-fc__img { transform: scale(1.04); }
.uniivo-fc__img-placeholder {
  width: 100%;
  aspect-ratio: 1/1;
  background: #f0f0f0;
}

/* Info */
.uniivo-fc__info {
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.uniivo-fc__title {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #121212;
  text-decoration: none;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.uniivo-fc__price-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.uniivo-fc__price {
  font-size: 1rem;
  font-weight: 600;
  color: #121212;
}
.uniivo-fc__price--sale { color: #D81B60; }
.uniivo-fc__price--compare {
  font-size: 0.875rem;
  color: #aaa;
  font-weight: 400;
}

/* ATC */
.uniivo-fc__form { margin: 0; }
.uniivo-fc__atc {
  width: 100%;
  padding: 11px 0;
  background: #D81B60;
  color: #fff;
  border: none;
  border-radius: 40px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: auto;
}
.uniivo-fc__atc:hover { background: #b01550; }
.uniivo-fc__atc:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* Bestseller badge */
.uniivo-badge-bestseller {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #D81B60;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 2;
  letter-spacing: 0.01em;
}

@media (max-width: 899px) {
  .uniivo-fc__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 480px) {
  .uniivo-fc__grid { gap: 10px; }
  .uniivo-fc__atc { font-size: 0.875rem; padding: 10px 0; }
}
/* END_SECTION:featured-collection-custom */

/* START_SECTION:hero-banner (INDEX:24) */
.uniivo-hero {
  padding: 48px 0 40px;
  overflow: hidden;
  position: relative;
}
.uniivo-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
}
/* Content */
.uniivo-hero__heading {
  font-size: clamp(3.0rem, 5.0vw, 4.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: #121212;
  margin: 0 0 16px;
  font-style: normal;
}
.uniivo-hero__accent {
  color: #D81B60;
  font-style: normal;
}
.uniivo-hero__sub {
  font-size: 1.4rem;
  color: #555;
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 420px;
}
.uniivo-hero__btns {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.uniivo-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 40px;
  font-size: 1.275rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.uniivo-hero__btn--solid {
  background: #0D5B45;
  color: #fff;
  border: 2px solid #0D5B45;
}
.uniivo-hero__btn--solid:hover { background: #064E3B; border-color: #064E3B; }
.uniivo-hero__btn--outline {
  background: transparent;
  color: #D81B60;
  border: 2px solid #D81B60;
}
.uniivo-hero__btn--outline:hover { background: #D81B60; color: #fff; }

/* Trust row */
.uniivo-hero__trust {
  display: flex;
  align-items: center;
  gap: 12px;
}
.uniivo-hero__avatars {
  display: flex;
}
.uniivo-hero__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-right: -10px;
  object-fit: cover;
  background: #E8F3ED;
}
.uniivo-hero__stars {
  color: #F5A623;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.uniivo-hero__trust-label {
  font-size: 12px;
  color: #555;
}
.uniivo-hero__trust-text { padding-left: 18px; }

/* Media */
.uniivo-hero__media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 580px;
}
.uniivo-hero__blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5800px;
  height: 580px;
  background: #FDECEF;
  border-radius: 20%;
  z-index: 0;
}
.uniivo-hero__img {
  position: relative;
  z-index: 1;
  max-height: 580px;
  width: 100%;
  object-fit: contain;
}
.uniivo-hero__leaf {
  position: absolute;
  top: 20px;
  left: 10px;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.uniivo-hero__heart {
  position: absolute;
  top: 30px;
  right: 20px;
  z-index: 2;
}

@media (max-width: 749px) {
  .uniivo-hero__inner { grid-template-columns: 1fr; }
  .uniivo-hero__media { min-height: 360px; order: -1; }
  .uniivo-hero__blob { width: 360px; height: 360px; }
  .uniivo-hero__heading { font-size: 2.5rem; }
}
/* END_SECTION:hero-banner */

/* START_SECTION:our-promise (INDEX:43) */
.uniivo-promise { position: relative; }
.uniivo-promise__leaf-deco {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 200px;
  height: 320px;
  pointer-events: none;
}
.uniivo-promise__heading {
  text-align: center;
  font-size: clamp(2.5rem, 5.0vw, 3.55rem);
  font-weight: 600;
  color: #121212;
  margin: 0 0 10px;
}
.uniivo-promise__sub {
  text-align: center;
  font-size: 1.4rem;
  color: #777;
  margin: 0 0 40px;
}
.uniivo-promise__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.uniivo-promise__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.uniivo-promise__icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid #D81B60;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  flex-shrink: 0;
}
.uniivo-promise__icon-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.uniivo-promise__emoji { font-size: 36px; line-height: 1; }
.uniivo-promise__item-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.uniivo-promise__item-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #121212;
}
.uniivo-promise__item-desc {
  font-size: 1.175rem;
  font-weight: 500;
  color: #555;
  line-height: 1.5;
}

.uniivo-promise__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* TABLET & LARGE MOBILE: 2 Columns */
@media (max-width: 899px) {
  .uniivo-promise__grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 32px 15px; /* Increased vertical gap, tighter horizontal gap */
  }
  .uniivo-promise__heading {
    font-size: 2.4rem; /* Slightly smaller heading for mobile */
  }
  .uniivo-promise__sub {
    font-size: 1.1rem;
    padding: 0 15px;
  }
}

/* SMALL MOBILE: Force 2 Columns instead of 1 */
@media (max-width: 480px) {
  .uniivo-promise__grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px 10px; 
  }
  
  .uniivo-promise__icon-circle {
    width: 70px; /* Smaller icons so they fit side-by-side */
    height: 70px;
  }
  
  .uniivo-promise__emoji {
    font-size: 36px;
  }

  .uniivo-promise__icon-img {
    width: 44px;
    height: 44px;
  }

  .uniivo-promise__item-title {
    font-size: 1.275rem; /* Smaller text to prevent overlapping */
  }

  .uniivo-promise__item-desc {
    font-size: 1.075rem;
  }
}
/* END_SECTION:our-promise */

/* START_SECTION:product-tabs (INDEX:47) */
.uniivo-ptabs{box-sizing:border-box;width:calc(100vw - 96px);max-width:1100px!important;margin:8px auto 28px!important;padding:0!important}
.uniivo-ptabs__heading{margin-bottom:18px}.uniivo-ptabs__eyebrow{display:block;margin-bottom:5px;color:#d81b60;font-size:12px;font-weight:800;letter-spacing:.16em;text-transform:uppercase}.uniivo-ptabs__heading h2{margin:0;color:#111;font-size:32px;line-height:1.12;font-weight:500}
.uniivo-ptabs__nav{display:flex;gap:10px;overflow-x:auto;scrollbar-width:none;margin-bottom:18px}.uniivo-ptabs__nav::-webkit-scrollbar{display:none}.uniivo-ptabs__tab{border:1px solid #eadfe3;background:#fff;color:#655e61;border-radius:28px;padding:10px 18px;font-size:14px;font-weight:700;white-space:nowrap;cursor:pointer}.uniivo-ptabs__tab.is-active{background:#d81b60;border-color:#d81b60;color:#fff}
.uniivo-ptabs__body{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(380px,.9fr);gap:22px;align-items:start}.uniivo-ptabs__panel{display:none}.uniivo-ptabs__panel.is-active{display:block}.uniivo-ptabs__description{padding:28px;border:1px solid #eadfe3;border-radius:18px;background:#fff;box-shadow:0 7px 20px rgba(28,20,24,.025);font-size:16px;line-height:1.6;letter-spacing:.02em;color:#3e3a3c;min-height:180px;box-sizing:border-box}.uniivo-ptabs__description p{margin:0}.uniivo-ptabs__specs{padding:22px 20px;border:1px solid #ead8de;border-radius:18px;background:#fff8fa;min-width:0}.uniivo-ptabs__specs h3{margin:0 0 14px;font-size:20px;font-weight:800;line-height:1.2;color:#171717}.uniivo-ptabs__spec-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}.uniivo-ptabs__spec-card{min-height:118px;padding:12px;display:grid;grid-template-columns:32px minmax(0,1fr);gap:8px;align-items:start;border:1px solid #eadfe3;border-radius:13px;background:#fff;box-sizing:border-box}.uniivo-ptabs__spec-icon{width:32px;height:32px;display:grid;place-items:center;border-radius:9px;background:#fff1f5;font-size:17px;line-height:1}.uniivo-ptabs__spec-label{display:block;margin:1px 0 5px;color:#969093;font-size:10px;font-weight:800;letter-spacing:.07em;line-height:1.1;text-transform:uppercase}.uniivo-ptabs__spec-card strong{display:block;color:#171717;font-size:14px;line-height:1.35;font-weight:750;overflow-wrap:anywhere}
@media(max-width:749px){.uniivo-ptabs{width:calc(100vw - 32px);max-width:none!important;margin:8px 16px 22px!important}.uniivo-ptabs__heading h2{font-size:27px}.uniivo-ptabs__nav{gap:8px;margin-bottom:16px}.uniivo-ptabs__tab{padding:9px 16px;font-size:14px}.uniivo-ptabs__body{grid-template-columns:1fr}.uniivo-ptabs__description{padding:22px 18px;font-size:16px;min-height:0}.uniivo-ptabs__specs{padding:18px 14px}.uniivo-ptabs__spec-grid{grid-template-columns:1fr}.uniivo-ptabs__spec-card{min-height:0}}
/* END_SECTION:product-tabs */

/* START_SECTION:product-trust-strip (INDEX:48) */
.uniivo-premium-trust{
  box-sizing:border-box;
  width:min(100%, 1100px);
  margin:var(--trust-mt) auto var(--trust-mb);
  padding:10px 18px;
  background:#f8f7f8 !important;
  border:1px solid #ead6df !important;
  border-radius:var(--trust-radius);
  color:#242025 !important;
  box-shadow:none !important;
  font-family:inherit;
}
.uniivo-premium-trust__grid{
  width:100%;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  align-items:center;
  justify-content:center;
}
.uniivo-premium-trust__item{
  min-width:0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  padding:9px 12px;
  border-right:1px solid #e4dce0 !important;
}
.uniivo-premium-trust__item:last-child{border-right:0 !important}
.uniivo-premium-trust__icon{
  width:36px !important;
  height:36px !important;
  min-width:36px;
  border-radius:50% !important;
  background:#fff !important;
  border:1px solid #e9b9cc !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  color:#df1d62 !important;
  box-shadow:0 1px 4px rgba(223,29,98,.12) !important;
}
.uniivo-premium-trust__icon span{
  color:#df1d62 !important;
  font-size:16px !important;
  line-height:1 !important;
}
.uniivo-premium-trust__icon img{
  width:24px !important;
  height:24px !important;
  object-fit:contain;
}
.uniivo-premium-trust__copy{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:2px;
  text-align:left;
}
.uniivo-premium-trust__copy strong{
  display:block !important;
  color:#242025 !important;
  font-size:12px !important;
  font-weight:750 !important;
  line-height:1.2 !important;
  letter-spacing:0 !important;
  opacity:1 !important;
  white-space:nowrap;
}
.uniivo-premium-trust__copy small{
  display:block !important;
  color:#706970 !important;
  font-size:9px !important;
  font-weight:500 !important;
  line-height:1.25 !important;
  letter-spacing:0 !important;
  opacity:1 !important;
  white-space:nowrap;
}

/* UNIIVO PDP refinement: inspired by clean fashion/baby retail product pages */
.uniivo-pdp__title{
  font-family:var(--font-body-family),Arial,Helvetica,sans-serif !important;
  font-size:32px !important;
  line-height:1.1 !important;
  letter-spacing:-0.02em !important;
  font-weight:600 !important;
  color:#171717 !important;
  margin:0 0 18px !important;
  max-width:680px;
}
.uniivo-pdp__benefit b{
  display:none !important;
}
.uniivo-pdp__benefits{
  padding:11px 12px !important;
}
.uniivo-pdp__benefit{
  gap:0 !important;
  font-size:13px !important;
  font-weight:500 !important;
  color:#292529 !important;
}
@media(max-width:989px){
  .uniivo-pdp__title{font-size:30px !important;line-height:1.12 !important}
}
@media(max-width:749px){
  .uniivo-pdp__title{font-size:27px !important;line-height:1.12 !important;letter-spacing:-0.015em !important;margin-bottom:15px !important}
}

@media(max-width:749px){
  .uniivo-premium-trust{width:calc(100% - 24px);padding:10px 8px;border-radius:16px}
  .uniivo-premium-trust__grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .uniivo-premium-trust__item{justify-content:flex-start;padding:10px 7px}
  .uniivo-premium-trust__item:nth-child(2){border-right:0 !important}
  .uniivo-premium-trust__item:nth-child(3),.uniivo-premium-trust__item:nth-child(4){border-top:1px solid #e4dce0 !important}
  .uniivo-premium-trust__icon{width:32px !important;height:32px !important;min-width:32px}
  .uniivo-premium-trust__icon img{width:21px !important;height:21px !important}
  .uniivo-premium-trust__copy strong{font-size:10px !important}
  .uniivo-premium-trust__copy small{font-size:8px !important}
}
/* END_SECTION:product-trust-strip */

/* START_SECTION:trust-strip (INDEX:53) */
.uniivo-trust-strip__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
.uniivo-trust-strip__item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  padding: 0 16px;
}
.uniivo-trust-strip__divider {
  width: 1px;
  height: 48px;
  background: #ebebeb;
  flex-shrink: 0;
}
.uniivo-trust-strip__icon-wrap {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #F0FBF6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.uniivo-trust-strip__icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.uniivo-trust-strip__icon-placeholder {
  font-size: 42px;
  line-height: 1;
}
.uniivo-trust-strip__text {
  display: flex;
  flex-direction: column;
  gap: 3.2px;
}
.uniivo-trust-strip__title {
  font-size: 1.475rem;
  font-weight: 750;
  color: #121212;
  line-height: 1.3;
  white-space: nowrap;
}
.uniivo-trust-strip__desc {
  font-size: 1.185rem;
  font-weight: 650;
  color: #555;
  line-height: 1.4;
}
@media (max-width: 899px) {
  .uniivo-trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }
  .uniivo-trust-strip__item {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 16px 8px;
    text-align: center;
  }
  .uniivo-trust-strip__divider {
    display: none;
  }
  .uniivo-trust-strip__icon-wrap {
    width: 64px;
    height: 64px;
  }
  .uniivo-trust-strip__icon {
    width: 48px;
    height: 48px;
  }
  .uniivo-trust-strip__text {
    align-items: center;
    gap: 2px;
    width: 100%;
  }
  .uniivo-trust-strip__title {
    font-size: 1.05rem;
    line-height: 1.2;
    white-space: normal;
  }
  .uniivo-trust-strip__desc {
    font-size: 0.85rem;
    line-height: 1.3;
    font-weight: 550;
  }
}
@media (max-width: 480px) {
  .uniivo-trust-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .uniivo-trust-strip__item {
    padding: 14px 6px;
  }
}
}
/* END_SECTION:trust-strip */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:header-dropdown-menu (INDEX:66) */
@media screen and (min-width: 990px) {
    .header__inline-menu .header__menu-item {
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 0.02em;
    }

    .header__inline-menu .header__menu-item > span {
      font-weight: 600;
    }

    .header__inline-menu > .list-menu--inline {
      gap: 0.7rem;
    }

    .header__inline-menu .header__menu-item:hover {
      opacity: 0.82;
    }
  }
/* END_SNIPPET:header-dropdown-menu */

/* START_SNIPPET:header-mega-menu (INDEX:67) */
@media screen and (min-width: 990px) {
    .header__inline-menu .header__menu-item {
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 0.02em;
    }

    .header__inline-menu .header__menu-item > span {
      font-weight: 600;
    }

    .header__inline-menu > .list-menu--inline {
      gap: 0.7rem;
    }

    .header__inline-menu .header__menu-item:hover {
      opacity: 0.82;
    }
  }
/* END_SNIPPET:header-mega-menu */