/* 
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5; 
    display: flex;
    justify-content: center;
    align-items: flex-start; 
    min-height: 100vh;
}

.product-container {
    width: 100%;
    max-width: 450px; 
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden; 
    margin-top: 20px; 
    margin-bottom: 20px; 
} */

.sidebar.product-sidebar{
    border-color: #F0F0F0;
}

.product-sidebar {
    padding: 0px !important;
}

.qty-hidden{
  position:absolute !important;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}


.price-section {
    background-color: #284D97; 
    color: #ffffff;
    padding: 30px 20px;
    text-align: center;
}

.price {
    font-size: 48px;
    font-weight: bold;
    margin: 0;
    line-height: 1.1;
}

.currency {
    font-size: 36px;
    font-weight: normal;
}

.iva {
    font-size: 16px;
    opacity: 0.8;
    margin-top: 5px;
}


.availability-section {
    background-color: #c3ecfe; 
    color: #ffffff;
    padding: 15px 20px;
    text-align: center;
}

.availability-text {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    color: black;
}


.cta-section {
    background-color: #ffffff; 
    padding: 30px 20px;
    text-align: center;
}

.payment-row{
    color: black;
}
.add-to-cart-button {
    background-color: #ffdd57; 
    color: #292929; 
    border: none;
    padding: 15px 30px;
    border-radius: 25px; 
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; 
    transition: background-color 0.3s ease;
    width: 100%; 
    box-sizing: border-box; 
    margin-bottom: 20px;
}

.add-to-cart-button:hover {
    background-color: #e0c34c; 
}

.cart-icon {
    width: 24px;
    height: 24px;
    fill: currentColor; 
}

.payment-options {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.6;
}

.payment-options p {
    margin: 5px 0;
}

.secura-badge {
    height: 20px; 
    vertical-align: middle; 
    margin-left: 5px;
}


.delivery-section {
    margin:15px;
    background-color: #E1EBEC; 
    padding: 30px 20px;
    border-top: 1px solid #e0e0e0; 
}

.delivery-section h2 {
    color: #292929; 
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: bold;
}

.delivery-section p {
    color: #555555; 
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 13px;
    color: #777777; 
    margin-top: 15px;
}


.info-blocks {
  background:#ffffff;
  color:#000; /* textos */
  padding:30px 20px;
  display:flex;
  flex-direction:column;
  gap:25px;
}

.info-block { display:flex; align-items:center; gap:15px; text-align:left; }

/* círculo del ícono */
.icon-container{
  flex-shrink:0;
  width:50px; height:50px;
  border-radius:50%;
  background:#fff;                 /* fondo blanco */
  border:2px solid #29aae1;        /* borde azul claro */
  display:flex; justify-content:center; align-items:center;
}

/* tamaño del svg */
.info-icon{ width:28px; height:28px; }

/* forzar color de los paths del SVG */
.info-icon *{
  stroke:#c3ecfe !important;       /* trazos azul claro */
  fill:transparent !important;     /* sin relleno */
  stroke-width:1.8;                 /* opcional: un pelín más grueso */
}

.text-content h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 5px 0;
}

.text-content p {
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
    opacity: 0.8;
}


@media (max-width: 480px) {
    .price {
        font-size: 40px;
    }
    .currency {
        font-size: 30px;
    }
    .add-to-cart-button {
        font-size: 16px;
        padding: 12px 25px;
    }
    .info-blocks {
        padding: 20px 15px;
        gap: 20px;
    }
    .icon-container {
        width: 40px;
        height: 40px;
    }
    .info-icon {
        width: 24px;
        height: 24px;
    }
    .text-content h3 {
        font-size: 16px;
    }
    .text-content p {
        font-size: 13px;
    }
}

 /*Que el bloque NO reserve altura de más */
.product-sidebar,
.sidebar.product-sidebar,
.product-container {
  height: auto !important;
  min-height: 0 !important;
}

 /*Por si el sidebar es sticky y estira el contenido */
.sidebar.product-sidebar {
    align-self: flex-start;
    display: none;
}