/* =========================
   EP Base
========================= */
:root{
  --ep-container: 1245px;
  --ep-gutter: 0px;
  --ep-topbar-h: 36px;
  --ep-header-h: 85px;
  --ep-radius: 10px;
  --ep-border: #e7edf3;
  --ep-text: #1f2a37;
  --ep-muted: #6b7280;
  --ep-blue: #1f6feb;
  --ep-bg: #ffffff;
  --ep-overlay: rgba(15, 23, 42, 0.45);
}

.ep-container{
  max-width: var(--ep-container);
  margin: 0 auto;
  padding-left: var(--ep-gutter);
  padding-right: var(--ep-gutter);
}

body.ep-mega-open{
  overflow: hidden;
}

/* =========================
   TOPBAR
========================= */
.ep-topbar{
  height: var(--ep-topbar-h);
  border-bottom: 1px solid var(--ep-border);
  background: var(--ep-bg);
  font-size: 13px;
  color: var(--ep-muted);
}

.ep-topbar__inner{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ep-topbar__links{ min-width: 0; }

.ep-topbar__links a{
  color: inherit;
  text-decoration: none;
}

.ep-topbar-menu{
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  align-items: center;
  gap: 22px;
}

.ep-topbar-menu a{
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 2px;
  line-height: 1;
}

.ep-topbar__right{
  display: flex;
  align-items: center;
  gap: 16px;
}

.ep-topbar__sep{
  margin: 0 8px;
  opacity: 0.6;
}

.ep-topbar__controls{
  display: flex;
  align-items: center;
  gap: 8px;
}

.ep-topbar__btn{
  appearance: none;
  border: 1px solid transparent;
  background: transparent;
  color: inherit;
  font: inherit;
  padding: 4px 8px;
  border-radius: 8px;
  cursor: pointer;
}

/* =========================
   MAIN HEADER ROW
========================= */
.ep-header{
  height: var(--ep-header-h);
  background: var(--ep-bg);
}

.ep-header__inner{
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

.ep-logo{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.ep-categories{
  flex: 0 0 auto;
}

.ep-categories__btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 40px;
  padding: 0 22px;
  border-radius: var(--ep-radius);
  border: 1px solid var(--ep-border);
  background: #107cc0;
  cursor: pointer;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.ep-categories__icon{
  font-size: 22px;
  line-height: 1;
}
.ep-categories__btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}


.ep-categories__icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  position: relative;
  top: -2px;
}

.ep-search{
  flex: 1 1 auto;
  min-width: 240px;
}

.ep-search form{
  display: block;
}
.ep-search input[type="search"],
.ep-search input[type="text"]{
  width: 100%;
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid #e8e8e8;
  outline: none;
  background: #F3F6F8;
  font-size: 15px;
  font-weight: 600;
  color: #114064;
}


.ep-search button,
.ep-search input[type="submit"]{
  display: none;
}

.ep-cart{
  flex: 0 0 auto;
}

.ep-cart__btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--ep-radius);
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  color: var(--ep-text);
  font-weight: 600;
  position: relative;
}

.ep-cart__badge{
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--ep-blue);
  color: #fff;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  padding: 0 5px;
}

/* =========================
   MEGA OVERLAY (full screen)
========================= */
.ep-mega{
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.ep-mega__backdrop{
  position: absolute;
  inset: 0;
  background: var(--ep-overlay);
}

.ep-mega__panel{
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: flex-start;
  padding-top: 14px;
  padding-bottom: 14px;
}

.ep-mega__grid{
  width: 100%;
  height: calc(100vh - 28px);
  background: #fff;
  border-radius: 7px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr;
  border: 1px solid var(--ep-border);
}

/* LEFT */
.ep-mega__left{
  height: 100%;
  overflow: auto;
  border-right: 1px solid var(--ep-border);
  background: #fff;
}

.ep-mega__cats{
  list-style: none;
  margin: 0;
  padding: 10px 0;
}

.ep-mega__cat{
  margin: 0;
}

.ep-mega__catlink{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  text-decoration: none;
  color: var(--ep-text);
  font-weight: 600;
}

.ep-mega__cat.is-active .ep-mega__catlink{
  background: #f1f7ff;
}

/* RIGHT */
.ep-mega__right{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  height: 100%;
}

.ep-mega__content{
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;

  padding: 18px;
}
.ep-mega__placeholder{
  display: block;
  margin: 0;
  padding: 0;
}

.ep-mega__title{
  font-size: 24px;
  font-weight: 800;
  margin: 4px 0 14px;
  color: var(--ep-text);
}

.ep-mega__items{
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 14px;
}


.ep-mega-card{
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 12px 14px;
  border: 1px solid var(--ep-border);
  border-radius: 7px;
  text-decoration: none;
  color: var(--ep-text);
  background: #fff;
  min-height: 86px;
  flex: 0 0 52px;
}

.ep-mega-card__img{
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: #f3f4f6;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ep-mega-card__img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.ep-mega-card__imgph{ width:100%; height:100%; display:block; }

.ep-mega-card__name{
  font-weight: 600;
}

.ep-mega-card__sub{
  margin-top: 3px;
  color: #ccc;
  font-size: 13px;
}
.ep-mega-card__name,
.ep-mega-card__sub{
  display: block;
  line-height: 1.15;
}

/* =========================
   Responsive
========================= */
@media (max-width: 980px){
  .ep-topbar{ display:none; }

  .ep-mega__grid{
    grid-template-columns: 1fr;
  }
  .ep-mega__left{
    border-right: 0;
    border-bottom: 1px solid var(--ep-border);
    max-height: 40vh;
  }
  .ep-mega__items{
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }
}

@media (max-width: 560px){
  .ep-header__inner{
    gap: 10px;
  }
  .ep-search{
    min-width: 0;
  }
  .ep-mega__items{
    grid-template-columns: 1fr;
  }
}


.ep-logo__img{
  width: 52px;
  height: 52px;
  display: block;
}

.ep-brand{
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.ep-logo__img{
  width: 52px;
  height: 52px;
  display: block;
}

.ep-slogan{
  line-height: 1.2;
  color: var(--ep-text);
  font-weight: 600;
  max-width: 240px;
}

.ep-slogan p{
  margin: 0;
  font-size: 16px;
}


/* =========================
   Mobile header layout
========================= */
@media (max-width: 980px){
  .ep-header{
    height: auto;
    padding: 10px 0;
  }

  .ep-header__inner{
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
  }

  .ep-brand{
    flex: 1 1 auto;
    min-width: 0;
  }

  .ep-cart{
    margin-left: auto;
  }


  .ep-categories{
    flex: 0 0 auto;
    order: 10;
  }

  .ep-search{
    flex: 1 1 100%;
    order: 11;
    min-width: 0;
    padding:3px;
  }



.ep-categories__label{
  font-size: 16px;
  line-height: 1;
}

  .ep-slogan{
    max-width: 100%;
    min-width: 0;
  }

  .ep-slogan p{
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .ep-search input[type="search"],
  .ep-search input[type="text"]{
    height: 42px;
  }
}

@media (max-width: 560px){
  .ep-slogan{
    display: none;
  }

  .ep-logo__img{
    width: 44px;
    height: 44px;
  }

  .ep-categories__btn{
    height: 38px;
  }

  .ep-search input[type="search"],
  .ep-search input[type="text"]{
    height: 40px;
  }
}


.ep-topbar__delivery{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}
.ep-topbar__icon{
  display: inline-flex;
  align-items: center;
}

.ep-topbar__icon svg{
  width: 20px;
  height: 20px;
  display: block;
}
.ep-topbar__phone{
  line-height: 1;
}
.ep-topbar__meta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}




/* Mobile burger button (hidden on desktop) */
.ep-mnav-btn{
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  padding: 8px;
  border-radius: 10px;
  cursor: pointer;
}

.ep-mnav-btn__icon{
  display: block;
  font-size: 30px;
  line-height: 1;
    color: #111 !important;
  -webkit-text-fill-color: #111 !important;
}

/* show burger when topbar is hidden */
@media (max-width: 980px){
  .ep-mnav-btn{ display: inline-flex; align-items: center; justify-content: center; }
  .ep-topbar{ display: none; }
}

/* Mobile menu overlay */
.ep-mnav{
  position: fixed;
  inset: 0;
  z-index: 10000;
}

.ep-mnav__overlay{
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,.45);
}

.ep-mnav__panel{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: min(360px, 88vw);
  background: #fff;
  border-right: 1px solid var(--ep-border);
  display: flex;
  flex-direction: column;
}

.ep-mnav__head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--ep-border);
}

.ep-mnav__title{
  font-weight: 800;
}

.ep-mnav__close{
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.ep-mnav__nav{
  overflow: auto;
  padding: 10px 0;
}

.ep-mnav__list{
  list-style: none;
  margin: 0;
  padding: 0;
}

.ep-mnav__list li{
  margin: 0;
}

.ep-mnav__list a{
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: var(--ep-text);
  font-weight: 600;
}

.ep-mnav__list a:hover{
  background: #f3f7ff;
}

/* block body scroll when mobile menu open */
body.ep-mnav-open{ overflow: hidden; }






@media (max-width: 560px){
  .ep-mega-card{
    min-height: 56px;
    padding: 10px 12px;
    border-radius: 12px;
  }

  .ep-mega-card__img{
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

  .ep-mega-card__name{
    font-size: 18px;
  }

  .ep-mega-card__sub{
    font-size: 12px;
    margin-top: 2px;
  }

  .ep-mega__items{
    gap: 10px;
  }
}

@media (max-width: 980px){
  .ep-mega__grid{
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .ep-mega__left{
    flex: 0 0 auto;
    width: 100%;
    max-height: 38vh;
    overflow: auto;
    border-right: 0;
    border-bottom: 1px solid var(--ep-border);
  }

  .ep-mega__right{
    flex: 1 1 auto;
    width: 100%;
    overflow: auto;
    display: block;
  }

  .ep-mega__content{
    padding: 16px;
  }

  .ep-mega__placeholder{
    margin: 0;
  }
}



.pll-lang-select
{
    height:26px;
    border-radius: 5px;
}



/* Sticky header (topbar + main header) */
.ep-site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
}

.ep-site-header{
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}

.product-categories .count{display:none!important;}

.widget_product_categories .product-categories > li > a::before,
.widget_product_categories .product-categories > li::before{
  content: none !important;
  display: none !important;
}



/* --- Sidebar: Product Categories (Woo widget) --- */
.widget_product_categories{
  background: #fff;
  border: 1px solid #e8eef6;
  border-radius: 10px;
  overflow: hidden;
}

.widget_product_categories .widget-title{
  margin: 0;
  padding: 18px 18px;
  font-size: 18px;
  font-weight: 700;
  color: #1b2430;
  border-bottom: 1px solid #e8eef6;
}

.widget_product_categories .product-categories{
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget_product_categories .product-categories > li{
  margin: 0;
  padding: 0;
  border-top: 1px solid #e8eef6;
}

.widget_product_categories .product-categories > li > a{
  display: block;
  padding: 12px 18px;
  text-decoration: none;
  color: #1b2430;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.2;
}

/* hover */
.widget_product_categories .product-categories > li > a:hover{
  background: #f5f9ff;
  color: #1a73e8;
}

/* active/current */
.widget_product_categories .product-categories > li.current-cat > a,
.widget_product_categories .product-categories > li.current-cat-parent > a{
  background: #eef6ff;
  color: #1a73e8;
}

/* hide counters */
.widget_product_categories .product-categories .count{
  display: none !important;
}

/* remove fake checkbox/bullet (pseudo-elements) */
.widget_product_categories .product-categories > li::before,
.widget_product_categories .product-categories > li > a::before{
  content: none !important;
  display: none !important;
}

.widget_product_categories .product-categories > li > a{
  padding-left: 18px !important;
}

.widget_product_categories .product-categories{
  border-top: 0 !important;
  padding-top: 0 !important;
}




/* slider */
.t15-hero { margin: 0 0 2rem; }
.t15-hero__viewport {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  min-height: 360px;
}

.t15-hero__slides { position: relative; height: 100%; min-height: 360px; }
.t15-hero__slide.is-active{ opacity:1; pointer-events:auto; }

.t15-hero__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 18px;
  border-radius: 10px;
}


.t15-hero__media img{ display:block; width:100%; height:auto; max-width: 440px; }
.t15-hero__media{
  transform: translate(-300px, 50px);
}


.t15-hero__nav{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  cursor:pointer;
}
.t15-hero__prev{ left: 14px; }
.t15-hero__next{ right: 14px; }

.t15-hero__bullets{
  position:absolute;
  left:0; right:0; bottom: 14px;
  z-index:3;
  display:flex;
  gap:8px;
  justify-content:center;
  align-items:center;
}
.t15-hero__bullet{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  opacity: .45;
  cursor:pointer;
}
.t15-hero__bullet.is-active{ opacity: 1; width: 24px; }

@media (max-width: 992px){
  .t15-hero__inner{ grid-template-columns: 1fr; padding: 22px; }
  .t15-hero__media{ display:none; }
  .t15-hero__title{ font-size: 34px; }
}




/* HERO base */
.t15-hero{
  position: relative;
  margin: 0 0 1rem;
}

.t15-hero__viewport{
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: #eaf4ff;
  min-height: 320px;
}

/* Slides */
.t15-hero__slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
}

.t15-hero__slide.is-active{
  opacity: 1;
  pointer-events: auto;
}

.t15-hero__inner{
  height: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 48px 56px;
}


@media (max-width: 900px){
  .t15-hero__inner{
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }
}

/* Text */
.t15-hero__title{
  font-size: 45px;
  line-height: 1.05;
  margin: 0 0 12px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-shadow: 1px 1px 1px #f1f6ff;
}

.t15-hero__subtitle{
  font-size: 18px;
  line-height: 1.35;
  margin: 0 0 22px;
  font-weight: 600;
  opacity: .85;
  text-shadow: 1px 1px 1px #f1f6ff;
}

.t15-hero__btn{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;

  background: #1479c9;
  color: #fff;

  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}

.t15-hero__btn:hover{ filter: brightness(1.04); }
.t15-hero__btn:active{ transform: translateY(1px); }

.t15-hero__btn-ico{
  display: inline-flex;
}


.t15-hero__nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,.7);
  box-shadow: 0 10px 18px rgba(0,0,0,.10);
  cursor: pointer;
  display: grid;
  place-items: center;
  color: rgba(0,0,0,.65);
  display: none;
}

.t15-hero__nav:hover{ background: rgba(255,255,255,.9); }

.t15-hero__nav_prev{ left: 14px; }
.t15-hero__nav_next{ right: 14px; }


.t15-hero__bullets{
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  align-items: center;
}

.t15-hero__bullet{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,.75);
  cursor: pointer;
  padding: 0;
}

.t15-hero__bullet.is-active{
  width: 34px;
  background: rgba(255,255,255,.95);
}



/* === MOBILE:  */
@media (max-width: 600px){


/* 
  .t15-hero__content{
    padding: 16px 14px;
  }
 */
    .t15-hero__viewport{
    height: 180px !important;
    min-height: 0 !important;
  }
    .t15-hero__slides,
  .t15-hero__slide{
    height: 100% !important;
    min-height: 0 !important;
  }

  .t15-hero__title{
    font-size: 20px !important;
    line-height: 1.08 !important;
    margin: 0 0 10px !important;
    text-shadow: 1px 1px 1px #f1f6ff;
  }

  .t15-hero__subtitle{
    font-size: 14px !important;
    line-height: 1.25 !important;
    margin: 0 0 12px !important;
    max-width: 26ch;
  }

  .t15-hero__btn{
    padding: 10px 14px !important;
    border-radius: 10px !important;
  }
  .t15-hero__btn-text{
    font-size: 14px !important;
  }


  .t15-hero__slide{
/*     background-size: contain !important; */
background-size: cover !important;
    background-position: center center !important;
    background-color: #cfe8ff;
  }

/* 
  .t15-hero__viewport{
    min-height: 260px;
  }
 */
  .t15-hero__inner{
    height: 100%;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  

}



.t15-hero__slide::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.25);
  pointer-events: none;
}
.t15-hero__inner{
  position: relative;
  z-index: 1;
}

/* slider */



/* light gray */
body {
  background: #fbfbfb !important;
}
#page,
.site,
.site-main,
.layout,
.layout--no-sidebar,
section.content {
  background: transparent !important;
}
/* light gray */




/* prod cell */

.woocommerce ul.products li.t15-card,
li.t15-card{
  background:#fff !important;
/*   border:0 !important; */
  border-radius:18px !important;
  overflow:hidden !important;
  padding:22px 18px 0 !important;
}


/* 
li.t15-card .t15-gift-badge,
li.t15-card .t15-sale-badge{
  position:absolute !important;
  top:18px !important;
  right:18px !important;
  width:44px !important;
  height:44px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  border-radius:999px !important;
  background:#fff !important;
  border:1px solid rgba(0,0,0,.06) !important;
  box-shadow:0 10px 24px rgba(0,0,0,.08) !important;
  padding:0 !important;
}
li.t15-card .t15-gift-badge svg{ width:22px !important; height:22px !important; }
 */
li.t15-card .t15-gift-badge,
li.t15-card .t15-sale-badge {
position:absolute !important;
  top:7px !important;
  right:0px !important;
/*   background: #7fda69; */
/*   background: green; */
  background: #e60000;
  box-sizing: border-box;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1rem;
  padding: 5px;
  width: 50px;
}

li.t15-card img{
  width:100% !important;
  height:210px !important;
  object-fit:contain !important;
/*   margin:4px auto 14px !important; */
}


li.t15-card .t15-card__title{
  font-size:19px !important;
  font-weight:600 !important;
  line-height:1.12 !important;
  margin:8px 0 12px !important;
  color:#0f172a !important;
    text-align: center !important;
  width: 106% !important;
}

li.t15-card .t15-card__aingre{
  margin:0 0 12px !important;
  font-size:15px !important;
  color:#64748b !important;
}
li.t15-card .t15-card__aingre-label{
  font-weight:700 !important;
  color:#6b7280 !important;
}
li.t15-card .t15-card__aingre-value a{
  color:#0b77b6 !important;
  text-decoration:underline !important;
}

li.t15-card .t15-dose-line{
  font-size:14px !important;
    color:#999 !important;
  margin:0 0 14px !important;
}

li.t15-card .price{
  font-size:26px !important;
  font-weight:900 !important;
  color:#0f172a !important;
  margin:6px 0 6px !important;
}


li.t15-card .t15-free-pills-note{
/*   margin:0 0 18px !important; */
  font-size:12px !important;
/*   color:#b91c1c !important; */
}

.t15-dose-line{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  position: relative;
}

.t15-dose-line::after{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 15px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,1));
}






/* =========================
   BUTTON -> BOTTOM BAR
   ========================= */

li.t15-card a.t15-cta,
li.t15-card a.t15-cta:visited,
li.t15-card a.t15-cta:hover,
li.t15-card a.t15-cta:active{
  -webkit-appearance:none !important;
  appearance:none !important;
  border:none !important;
  outline:none !important;
  box-shadow:none !important;
  text-decoration:none !important;
}


li.t15-card a.t15-cta{
  margin-top:auto !important;

  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:5px !important;

  width:calc(100% + 44px) !important;
  margin-left:-22px !important;
  margin-right:-22px !important;

  padding:5px 22px !important;
  background:#0b77b6 !important;
  color:#fff !important;
    font-size:14px;
  font-weight:600 !important;
  letter-spacing:.6px !important;
  text-transform:uppercase !important;

  border-top:1px solid rgba(0,0,0,.06) !important;
  border-radius:0 0 18px 18px !important;
}





.woocommerce ul.products li.t15-card{
  min-height: 380px !important;
}
@media (max-width: 600px){
  .woocommerce ul.products li.t15-card{ min-height: 356px !important; }
}




li.t15-card a.t15-cta .t15-cta__icon img{
  width:20px !important;
  height:20px !important;
  filter:brightness(0) invert(1) !important;
}

li.t15-card a.t15-cta:hover{
  background:#2395DD !important;
}

li.t15-card a.t15-cta .t15-cta__label{
  border:0 !important;
}


li.t15-card{
  text-align: center;
}

li.t15-card .t15-card__aingre{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

li.t15-card .t15-card__aingre-label,
li.t15-card .t15-card__aingre-value{
  display: inline;
}


li.t15-card .t15-dose-line{
  text-align: center !important;
}


li.t15-card .pill-price{
  display: block !important;
  width: 100% !important;
  text-align: left !important;
}



.pill-price del,
.pill-price del .woocommerce-Price-amount,
.pill-price del .woocommerce-Price-amount bdi {
  color: #6b7280 !important;
  font-size: 0.85em;
  opacity: .95;
}
/* 
.pill-price del {
  text-decoration-color: rgba(107,114,128,.65);
  text-decoration-thickness: 1px;
  text-decoration-line: line-through;
}
 */


.pill-price ins,
.pill-price ins .woocommerce-Price-amount,
.pill-price ins .woocommerce-Price-amount bdi {
  text-decoration: none !important;
}

li.t15-card .ppilule_words{
  padding-left: 0 !important;
  margin-left: 6px;
  font-weight: 600;
}
.t15-card .pill-price #pilltop-per-pill .woocommerce-Price-amount bdi{
  font-weight: 600 !important;
}


li.t15-card .t15-free-pills-note{
  text-align: center !important;
}



/* Mobile: CTA = icon only (do not change layout/grid) */
@media (max-width: 480px) {

  .woocommerce ul.products li.t15-card{
    align-items: stretch !important;
  }


  .woocommerce ul.products li.t15-card a.t15-cta.t15-cta--cart{

    max-width: none !important;
    flex: 0 0 auto !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-height: 48px !important;
    padding: 0 14px !important;
    gap: 0 !important;
  }


  .woocommerce ul.products li.t15-card a.t15-cta.t15-cta--cart .t15-cta__label{
    display: none !important;
  }
  
  li.t15-card .t15-card__title{
  margin:-20px 0 12px !important;
  }
  
  li.t15-card .t15-dose-line {
  font-size: 12px !important;
    letter-spacing: -0.08em !important;
  }
}

/* prod cell */

/* Cart button: icon + label stacked */
.t15-carticon-btn{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  background: transparent;
  border: 0;
  line-height: 1;
}

/* Keep badge positioning stable */
.t15-carticon{
  position: relative;
  display: inline-flex;
  line-height: 0;
}

.t15-carticon .carticon-icon{
  display: block;
  width: 32px;
  height: 22px;
  object-fit: contain;
}

/* Label under icon */
.t15-cartlabel{
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 600px) {
.t15-cartlabel{
display:none;
}
}


.woocommerce div.product div.images img {
padding:5px;
}



/* prod */

.t15-dose-tabs{
  display:flex;
  align-items:flex-end;
  gap:8px;
  margin: 0 0 -14px 0;
}

/* base tab */
.t15-dose-tab{
  background: #f3f6fb !important;
  color: #005091 !important;

  border: 2px solid transparent !important;
  border-bottom: 0 !important;

  border-radius: 12px 12px 0 0 !important;
  padding: 10px 18px !important;
  font-weight: 700 !important;
  cursor: pointer;
}
@media (max-width: 768px){
    .t15-dose-tab{
    padding: 10px 10px !important;
    }
    .t15-dose-tabs{
      gap:2px;
    }
}



.t15-dose-tab.is-active{
  background: #fff !important;
  border-color: #005091 !important;
  color: #111 !important;

  position: relative;
  z-index: 3;
}


.t15-packages__list{
  border: 2px solid #005091;
  border-radius: 14px;
  padding-top: 10px;
  position: relative;
  z-index: 1;
}


.t15-packages__list{
  border-top-left-radius: 0 !important;
    padding: 18px 10px !important;
  box-sizing: border-box;
}


@supports (-webkit-touch-callout: none) {

  .t15-dose-tabs{
    position: relative;
    z-index: 10;
    isolation: isolate;
  }

  .t15-dose-tab{
    position: relative;
    z-index: 11;
    transform: translateZ(0);
  }

  .t15-dose-tab.is-active{
    z-index: 12;
    background: #fff !important;
    color: #111 !important;
    -webkit-text-fill-color: #111;
  }


  .t15-dose-tab.is-active::after{
    content: "";
    position: absolute;
    left: 4px;
    right: 4px;
    bottom: -2px;
    height: 4px;
    background: #fff;
    border-radius: 0;
    z-index: 13;
    pointer-events: none;
  }
}
@supports (-webkit-touch-callout: none) {

  .t15-dose-tab{
    border-bottom: 0 !important;
  }

  .t15-dose-tab:not(.is-active)::after{
    content: none !important;
  }
}
@supports (-webkit-touch-callout: none) {
  .t15-dose-tab{
    box-shadow: none !important;
    background-clip: padding-box;
  }
}
@media (max-width: 768px){
  .t15-dose-tab:not(.is-active){
    transform: translateY(-2px);
    border-bottom: 0 !important;
  }
  .t15-dose-tab.is-active{
    padding-top: 9px !important;
    padding-bottom: 11px !important;
  }
}

/* prod */


@media (max-width: 768px){
  .t15-langslot{
    display:flex;
    align-items:center;
    margin-left: 10px;
  }

  .t15-langslot .screen-reader-text{ display:none !important; }

  .t15-langslot select.pll-lang-select{
    height: 30px;
    padding: 0 10px;
    border-radius: 10px;
  }
  
  .ep-brand{
    flex: 0 0 auto !important;
  }
  .ep-categories__btn{
      padding: 0 12px;
    }
}
@media (min-width: 390px) and (max-width: 768px){
  .ep-categories{
    margin-left: auto;
    margin-right: 8px;
  }
}

.ep-mnav__phone{
  padding: 10px 16px;
  margin: 0 0 6px 0;
  font-size: 14px;
  line-height: 1.3;
  color: var(--ep-text, #111);
  border-bottom: 1px solid rgba(0,0,0,.08);
}






/* Mega menu: products-only mode */
.ep-mega[data-mode="products"] .ep-mega__left { display: none; }
.ep-mega[data-mode="products"] .ep-mega__grid { grid-template-columns: 1fr; }

.ep-mega__items--bestsellers {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ep-mega__items--bestsellers .ep-mega__item + .ep-mega__item {
  margin-top: 10px;
}

.ep-mega__itemlink {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.ep-mega__itemimg {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
}




/* Products-only tiles (like category mode cards) */
.ep-mega__items--bestsellers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ep-mega__items--bestsellers .ep-mega__item {
  margin: 0;
}

.ep-mega__items--bestsellers .ep-mega__itemlink {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 14px 16px;
  border: 1px solid #e9eef5;
  border-radius: 12px;
  background: #fff;

  text-decoration: none;
  transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease;
}

.ep-mega__items--bestsellers .ep-mega__itemlink:hover {
  border-color: #d7e3f3;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  transform: translateY(-1px);
}

.ep-mega__items--bestsellers .ep-mega__itemimg {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
}

/* mobile */
@media (max-width: 980px) {
  .ep-mega__items--bestsellers { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .ep-mega__items--bestsellers { grid-template-columns: 1fr; }
    .ep-mega__items--bestsellers {
    gap: 10px;
  }

  .ep-mega__items--bestsellers .ep-mega__itemlink {
    padding: 12px 14px;
  }
}


/* scroll on desktop */
/* EP MEGA: enable scroll on desktop too */
@media (min-width: 769px) {

  .ep-mega__panel{
    max-height: calc(100vh - 40px);
    overflow: hidden;
  }

  .ep-mega__grid{
    height: calc(100vh - 40px);
  }

  .ep-mega__left,
  .ep-mega__right{
    max-height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  #ep-mega-content{
    max-height: 100%;
    overflow-y: auto;
  }
}

/* scroll on desktop */
.ep-mega .ep-mega__panel a,
.ep-mega .ep-mega__panel a:visited,
.ep-mega .ep-mega__panel a:hover,
.ep-mega .ep-mega__panel a:active,
.ep-mega .ep-mega__panel a:focus {
  color: #38749f !important;
}


.ep-mega__right--full .ep-mega__items{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 768px){
  .ep-mega__right--full .ep-mega__items{
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.ep-mega__right--full .ep-mega__items > *{
  margin: 0 !important;
}

/* Mega menu: products-only mode */

/* close */
.ep-mega__panel { position: relative; }

.ep-mega__closebtn{
  position: absolute;
  top: 30px;
  right: 18px;
  width: 35px;
  height: 35px;
  border: 1px solid #e6eef9;
  background: #fff;
  border-radius: 10px;
  font-size: 22px;
  color:#000;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.ep-mega__closebtn:hover{
  background: #f5f8ff;
}
/* close */




/* prod pictograms */
.t15-checkout-info{
  margin: 14px 0 10px;
  padding: 14px 0;
  border-top: 1px solid #eef1f6;
  border-bottom: 1px solid #eef1f6;
}

.t15-checkout-info__row{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 14px;
}
.t15-checkout-info__left{ min-width: 0; }
.t15-checkout-info__label{ white-space: nowrap; }

.t15-checkout-info__left{
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 210px;
}

.t15-checkout-info__icon{
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  color: #1876b7;
}

.t15-checkout-info__label{
  font-weight: 600;
  font-size: 15px;
  line-height: 1.1;
  color: #3b4048;
}

.t15-checkout-info__dots{
  flex: 1;
  height: 1px;
  opacity: .55;
  background-image: repeating-linear-gradient(
    to right,
    #b7bfcc 0,
    #b7bfcc 6px,
    transparent 6px,
    transparent 10px
  );
}

.t15-checkout-info__right{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 180px;
}

.t15-checkout-info__value{
  font-weight: 600;
  font-size: 15px;
  color: #3b4048;
}

.t15-checkout-info__value.green{
  display: inline-flex;
  align-items: center;

  border: 1px dashed #1a8f3a;
  border-radius: 8px;

  padding: 4px 8px;
  color: #1a8f3a;

  line-height: 1.1;
}
@media (max-width: 600px){
  .t15-checkout-info__value.green{
    white-space: normal;
  }
}

.t15-pay-icons{
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.t15-pay-icons__logo{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 0 10px;
  border: 1px solid #d7dde6;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .4px;
  color: #3b4048;
  background: #fff;
  white-space: nowrap;
}
.t15-pay-icons__img{
  display: block;
  height: 24px;
  width: auto;
}

@media (max-width: 375px){
  .t15-checkout-info__row{ flex-wrap: wrap; gap: 5px; }
  .t15-checkout-info__left{ min-width: auto; }
  .t15-checkout-info__dots{ order: 3; width: 100%; }
  .t15-checkout-info__right{ min-width: auto; width: 100%; justify-content: flex-start; }
  .t15-checkout-info__label{ font-size: 13px; }
  .t15-checkout-info__value{ font-size: 13px; }
}

.t15-checkout-info__row > * { min-width: 0; }
.t15-checkout-info__label, 
.t15-checkout-info__value { overflow-wrap: anywhere; }

/* prod pictograms */












/* bonus */

.t15-packages .t15-package-row{flex-wrap:wrap;}
.t15-packages .t15-package-row__bonus-offer
{
    flex:0 0 100%;width:100%;margin-top:10px;
    padding-top:12px; 
    padding-left:12px;
    padding-right:12px;
    padding-bottom:12px;
    border-radius:10px;
/*     background:rgba(0,0,0,0.04); */
border: 1px dashed #1a8f3a;
  border-radius: 10px;
    font-size:16px;
    line-height:1.3;
}
.t15-packages .t15-package-row__bonus-offer strong{font-weight:600;}
.t15-packages .t15-package-row__bonus-offer 
.t15-bonus-sub{opacity:.75;font-size:13px;display: none;}

.t15-bonus-offer--mobile{display:none;}

@media (max-width: 599px){
  .t15-bonus-offer--desktop{display:none;}
  .t15-bonus-offer--mobile{display:block;width:100%;margin:0 0 10px 0;}
  .t15-package-row__right{align-items:stretch;}
}


.t15-package-row__slot{
  display: none;
}

@media (max-width: 599px){
  .t15-package-row__slot{
    display: block;
  }

}

.t15-package-row__slot { display: none; }
.t15-bonus-offer--mobile { display: none; }

@media (min-width: 600px){
  .t15-bonus-offer--desktop { display: block; }
}

@media (max-width: 599px){
  .t15-package-row__slot { display: block; }
  .t15-bonus-offer--mobile { display: block; }
  .t15-bonus-offer--desktop { display: none !important; }
}


.product .pill-price {
font-size:21px;
}
.t15-card .woocommerce-Price-amount bdi{
  white-space: nowrap;
}

.t15-card .woocommerce-Price-currencySymbol{
  margin-left: -0.18em;
  display: inline-block;
}


@media (max-width: 599px){

  .t15-package-row__left .t15-package-row__title-block{
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
  }

  .t15-package-row__left .t15-package-row__title-block{
    display: grid !important;
    grid-template-columns: 1fr 160px;
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 2px;
    align-items: start;
  }

  .t15-package-row__left .t15-package-row__dose{ grid-column: 1; grid-row: 1; }
  .t15-package-row__left .t15-package-row__qty { grid-column: 1; grid-row: 2; }

  .t15-package-row__left .t15-package-row__slot{
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .t15-package-row__title-block > .t15-package-row__slot{
    grid-column: 2 !important;
    grid-row: 1 / span 2 !important;
    justify-self: end;
    align-self: start;
    width: 150px;
  }
  
  
  
  .t15-package-row__image-tag {
    width: 50px;
    margin-top:-20px;
    margin-left:-7px;
}

  .t15-package-row__title-block{
    position: relative;
    display: block !important;
    padding-right: 172px;
  }

  .t15-package-row__dose,
  .t15-package-row__qty{
    margin: 0 !important;
    line-height: 1.2;
  }

  .t15-package-row__qty{
    margin-top: 2px !important;
  }

  .t15-package-row__slot{
    position: absolute;
    top: 0;
    right: 0;
    width: 160px;
    margin: 0 !important;
  }


  .t15-package-row__slot .t15-bonus-offer--mobile{
    width: 100%;
    margin: 0;
  }
  
  .t15-packages .t15-package-row__bonus-offer {
    font-size: 14px;
  }
  
    .t15-package-row__left{
        gap: 0px !important;
    }

    .woocommerce ul.products{ gap:10px; }
    
    .woocommerce ul.products li.product .attachment-woocommerce_thumbnail{
        margin: 10px auto;
        margin-top: -19px;
    }
}



.t15-bonus-offer--desktop img.emoji,
.t15-bonus-offer--desktop img.wp-smiley{
  width: 18px !important;
  height: 18px !important;
  vertical-align: -3px;
  margin-right: 6px;
}
.t15-bonus-offer--desktop{
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;


  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;

  margin-top: 0 !important;
}




@media (min-width: 600px) and (max-width: 1024px){
  .t15-package-row__bonus-offer.t15-bonus-offer--desktop{
    grid-column: 1 / -1 !important;
    justify-self: stretch;
    width: 100% !important;
  }
}
/* bonus */








@media (min-width: 600px) and (max-width: 1200px) {

  .t15-package-row{
    display: flex;
    flex-wrap: wrap;
  }

  .t15-package-row__left,
  .t15-package-row__middle,
  .t15-package-row__bonus{
    min-width: 0 !important;
  }


  .t15-package-row__right{
    flex: 0 0 180px !important;
    margin-left: auto !important;
    order: 4;
  }


  .t15-package-row__bonus-offer.t15-bonus-offer--desktop{
    flex: 0 0 100% !important;
    width: 100% !important;
    order: 5;
    align-self: stretch;
  }
}








/* Badge "Comprimidos gratis" */
.t15-price-bonus-row .t15-free-pills-note{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  
    border-width: 1px;
  padding: 7px 12px;

  background: transparent !important;
  color: #1a8f3a !important;

  border: 1px dashed #1a8f3a;
  border-radius: 8px;

  font-weight: 700;
  font-size: 12px;
  line-height: 1;

  padding: 6px 10px;

/*   margin: 0 0 0 auto !important; */
  white-space: nowrap;
}










.t15-package-row{
  border: 1px solid rgba(17, 24, 39, 0.10) !important;
  border-radius: 18px !important;
  padding: 16px 16px !important;
  margin-bottom: 4px;
  box-shadow: none !important;
}

.t15-package-row__left,
.t15-package-row__middle,
.t15-package-row__bonus,
.t15-package-row__right{
  border-bottom: 0 !important;
}


 
 
 

.t15-price-bonus-row{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}


.t15-price-bonus-row .pill-price,
.t15-price-bonus-row .price{
  white-space: nowrap;
}


.t15-price-bonus-row .t15-free-pills-note{
  margin: 0;
  margin-left: auto;
  white-space: normal;
  text-align: right;
}


.t15-price-bonus-row .ppilule_words,
.t15-price-bonus-row .pipule_words{
  display: none !important;
}


.t15-price-bonus-row{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
/*   flex-wrap: nowrap; */
  text-align: left;
}

.t15-price-bonus-row .pill-price{
  white-space: nowrap;
  margin-right: auto;
}

.t15-price-bonus-row .t15-free-pills-note{
  margin: 0;
  margin-left: auto;
  white-space: nowrap;
  text-align: right;
}

@media (max-width: 520px){
  .t15-price-bonus-row{
    flex-wrap: wrap;
  }
  .t15-price-bonus-row .t15-free-pills-note{
    white-space: normal;
  }
}







.cart_totals .t15-cart-bonus-voucher{
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border: 1px dashed #1a8f3a;
  border-radius: 8px;
  color: #1a8f3a;
  font-weight: 700;
  line-height: 1.1;
}




main.t15-main .t15-content ul.products.columns-4 > li.t15-card .t15-free-pills-note{
  padding: 6px 8px !important;
  font-size: 12px !important;
  line-height: 1.15 !important;
  max-width: 100% !important;
  white-space: normal !important;
  word-break: break-word !important;
}

main.t15-main .t15-content ul.products.columns-4 > li.t15-card .t15-price-bonus-row{
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px 10px !important;
}


.t15-trustbar{
  margin: 18px 0 0;
}

.t15-trustbar__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 16px;
  background: #edf1f5;
}

.t15-trustbar__left{
  display: flex;
  align-items: center;
  gap: 28px;
  min-width: 240px;
}

.t15-trustbar__icon{
  width: 60px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 auto;
}

.t15-trustbar__title{
  font-weight: 800;
  line-height: 1.1;
}

.t15-trustbar__sub{
  font-size: 13px;
  opacity: .75;
  line-height: 1.2;
  margin-top: 2px;
}

.t15-trustbar__logos{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px;
}

.t15-trustbar__logo{
  height: 37px;
  width: auto;
  object-fit: contain;
  flex: 0 0 auto;
  filter: grayscale(10%);
  opacity: .95;
}

/* mobile */
@media (max-width: 768px){
  .t15-trustbar__inner{
    flex-direction: column;
    align-items: flex-start;
  }
  .t15-trustbar__left{
    min-width: 0;
  }
  .t15-trustbar__logos{
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
  }
  .t15-trustbar__logo{
    height: 24px;
  }
}
@media (min-width: 481px) and (max-width: 980px) {
  .t15-trustbar__logos {
    justify-content: center !important;
  }
}


@media (max-width: 400px)
{
.t15-trustbar__icon
{
    height:35px;
}
}

.ep-slogan .ep-slogan-href
{
    text-decoration: none;
    color: #000;
}

@media (max-width: 980px) {
  /* When products panel is hidden on mobile -> let categories list fill the panel height */
  #ep-mega[data-cats-only="1"] .ep-mega__left{
    max-height: calc(100vh - 120px) !important;
    width: 100%;
  }
}