/** Shopify CDN: Minification failed

Line 188:1 Expected "}" to go with "{"

**/
/* DUORETAIL Theme Base */
body {
  background-color: #fff;
}
.banner--medium {
  width: 100%;
  max-width: 100%;
}
a[href*="blogs"] {
  display: inline-block;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Arial', sans-serif;
  color: #fff;
  background-color: #000;
  border-radius: 6px; /* colțuri semi-rotunde */
  border: 1.5px solid #fff;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.15);
  transition: all 0.25s ease-in-out;
}

a[href*="blogs"]:hover {
  background-color: #111;
  transform: scale(1.04);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}


.page-width {
  max-width: 1536px !important; /* lățimea maximă setată la 1536px */
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

.icon-svg {
  width: 24px;
  height: 24px;
  display: inline-block;
}

svg.icon {
  display: inline-block;
  vertical-align: middle;
}


body {
  font-family: 'Poppins', 'Lora', Arial, sans-serif;
}
@font-face {
  font-family: 'Lora';
  src: url('/path-to-lora.woff2') format('woff2');
  font-display: swap;
}

.hero-section img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
}
.page-width {
  max-width: 100% !important;
  padding: 0 10px; /* sau 20px pentru margini */
}
.header__icons svg {
  fill: #fff !important;      /* umplere albă */
  stroke: #000 !important;    /* contur negru */
  stroke-width: 2 !important;
}
.icon-account, .icon-cart {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.product-card img {
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
}

/* Previne zoom-ul automat pe inputuri la focus */
input[type="search"],
input[type="text"],
input[type="email"],
input[type="tel"] {
  font-size: 16px !important;
  line-height: 1.4;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  transition: none !important;
}


.product-card img[title],
.product-card img[alt] {
  pointer-events: none;
}


.header__icons svg {
  color: inherit;
  fill: inherit;
  stroke: inherit;
  transition: fill 0.2s ease-in-out, stroke 0.2s ease-in-out;
}


/* Dezactivare interacțiune pe imagini - valid W3C */
@supports (pointer-events: none) {
  .product-card img[title],
  .product-card img[alt] {
    pointer-events: none;
  }
}

/* Carduri produs - poziționare corectă și overflow */
.product-card,
.product-grid-item {
  position: relative;
  overflow: hidden;
}

/* Imagini responsive */
.product-card img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Evidențiere imagini fără alt/title */
.product-card img:not([alt]):not([title]) {
  outline: 2px dashed red;

/* Evită overflow vizibil pe imagini, video și canvas */
img, video, canvas {
  overflow: hidden !important;
  display: block; /* elimină spațiul de sub imagine */
  max-width: 100%;
  height: auto;
}

/* Dacă ai container pentru imagini, setează dimensiuni minime */
.image-magnify-hover, .product-image, .product__image {
  width: 100%; /* sau o dimensiune fixă dacă știi */
  height: auto;
  min-height: 200px; /* ajustează după nevoie */
}

/* Dacă ai spații dinamice pentru conținut (ex: reclame), rezervă-le locul */
.ad-container, .dynamic-content {
  min-height: 150px; /* setează înălțimea minimă */
  overflow: hidden;
}

/* Fonturi: asigură fallback pentru fonturi ca să nu cauzeze shift */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif !important;
}

  .product__media-container {
  width: 100%;       /* sau o lățime fixă / max-width */
  max-width: 540px;  /* să se potrivească cu dimensiunea din sizes */
  aspect-ratio: 1946 / 2754; /* păstrează proporția fixă */
}
.trust-wishlist-wrapper {
  min-height: 80px; /* sau cât ai nevoie să nu miște conținutul */
}
img, video, canvas {
  overflow: hidden; /* evită conținutul care iese în afară */
  display: block;   /* elimină spațiul alb de sub imagine */
}