@font-face {
    font-family: 'MADE Coachella';
    src: url('../font/MADECoachella-Black.woff2') format('woff2'),
         url('../font/MADECoachella-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'MADE Coachella';
    src: url('../font/MADECoachella-Bold.woff2') format('woff2'),
         url('../font/MADECoachella-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'MADE Coachella';
    src: url('../font/MADECoachella-Light.woff2') format('woff2'),
         url('../font/MADECoachella-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'MADE Coachella';
    src: url('../font/MADECoachella-Medium.woff2') format('woff2'),
         url('../font/MADECoachella-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'MADE Coachella';
    src: url('../font/MADECoachella-Thin.woff2') format('woff2'),
         url('../font/MADECoachella-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'MADE Coachella';
    src: url('../font/MADECoachella.woff2') format('woff2'),
         url('../font/MADECoachella.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.font-made {
    font-family: 'MADE Coachella', sans-serif;
}

@media (max-width: 767px) {
    .ps-carousel .ps-slide a {
        margin-bottom: 75px; /* sube el botón */
    }
}
.separador-producto{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:0px;
    margin:0.5rem 0;
}

.separador-producto .linea{
    flex:1;
    height:1px;
    background:#6947333d;
}

.btn-producto{
    display:inline-block;
    background:#00903e;
    color:#fff;
    text-decoration:none;
    padding:12px 40px;
    border-radius:999px;
    font-size:1.25rem;
    transition:.3s;
}

.btn-producto:hover{
    background:#00903eda;
}


/*SINGLE PRODUCT*/
/* ===============================
   SECCIÓN HERO (single-producto)
   =============================== */

.hero-section {
    /* Imagen de fondo */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    
    /* Altura fija en desktop */
    height: 300px;
    
    /* Margen inferior (equivalente al antiguo mb-20) */
    margin-bottom: 5rem; /* 80px si 1rem=16px */
    
    /* Para centrar el contenido interno */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    /* Contenedor que centra el texto y da padding lateral */
    width: 100%;
    max-width: 1200px; /* similar a container de Tailwind */
    margin: 0 auto;
    padding: 0 1rem; /* px-4 aprox, puedes ajustar */
    text-align: center;
}

.hero-text {
    color: white;
    /* Si quieres sombra para mejorar legibilidad */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-text-1 {
    display: block;
    font-size: 2.5rem;   /* 40px aprox, equivalente a text-4xl */
    font-weight: 300;     /* font-light */
    font-family: 'Made', sans-serif; /* asumiendo que 'font-made' es una font personalizada */
    line-height: 1.2;
}

.hero-text-2 {
    display: block;
    font-size: 2.5rem;
    font-weight: 300;
    font-family: 'Made', sans-serif;
    line-height: 1.2;
}

/* ========== RESPONSIVE ========== */

/* Tablets (pantallas entre 768px y 1024px) */
@media (max-width: 1024px) {
    .hero-section {
        height: 250px;
        margin-bottom: 3rem;
    }
    
    .hero-text-1, 
    .hero-text-2 {
        font-size: 2rem; /* 32px */
    }
}

/* Móviles grandes (640px - 768px) */
@media (max-width: 768px) {
    .hero-section {
        height: 200px;
        margin-bottom: 2rem;
    }
    
    .hero-text-1, 
    .hero-text-2 {
        font-size: 1.75rem; /* 28px */
    }
}

/* Móviles pequeños (hasta 480px) */
@media (max-width: 480px) {
    .hero-section {
        height: 150px;
        margin-bottom: 1.5rem;
    }
    
    .hero-text-1, 
    .hero-text-2 {
        font-size: 1.5rem; /* 24px */
    }
    
    .hero-container {
        padding: 0 0.75rem;
    }
}





/* ==================== CONTENEDOR PRINCIPAL SINGLE PRODUCT==================== */
.mi-contenedor {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}
@media (min-width: 640px) {
    .mi-contenedor {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}

/* ==================== GRID DOS COLUMNAS ==================== */
.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}
@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}
@media (min-width: 1280px) {
    .product-grid {
        gap: 5rem;
    }
}

/* ==================== GALERÍA ==================== */
.product-gallery {
    margin-bottom: 2rem;
}
.gallery-main {
    position: relative;
    background-color: #FCF6EB;
    border-radius: 1.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}
.gallery-main-img {
    max-width: 100%;
    height: auto;
    display: inline-block;
  
}


.gallery-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
}
.badge-icon {
    width: 55px;
    height: auto;
}
.badge span {
    font-size: 1rem;
}
.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}
.thumbnail-item {
    cursor: pointer;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.2s ease;
}
.thumbnail-item img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.thumbnail-item:hover {
    transform: scale(1.05);
}

/* ==================== INFORMACIÓN PRODUCTO ==================== */
.info-label {
    color: #00953b;
    display: inline-block;
    margin-bottom: 0.25rem;
    font-weight: 500;
}
.info-title {
    color: #00953b;
    font-size: 48px;
    font-weight: 500;
    font-family: 'MADE Coachella', sans-serif;
    margin-bottom: 1.25rem;
    line-height: 48px;
}



.checklist {
    list-style: none;
    padding-left: 0;
}

.checklist li {
    position: relative;
    padding-left: 2rem;      /* espacio para el círculo */
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 1.2rem;           /* tamaño del círculo */
    height: 1.2rem;
    background-color: #00903e; /* color del círculo */
    color: white;             /* color de la palomita */
    border-radius: 50%;       /* forma circular */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;      /* tamaño del check */
    font-weight: bold;
}


.presentaciones-label {
    color: #00953b;
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}
.presentaciones {
    display: flex;
    gap: 1rem;
    width: 100%;
}
.presentacion-item {
    width: 20%;
    background: #f5f0e2;
    text-align: center;
    padding: 0.75rem;
    border-radius: 0.25rem;
    
}
.btn-whatsapp, .btn-ficha {
    display: block;
    text-align: center;
    background-color: #00903e;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    margin: 1rem 0;
    text-decoration: none;
    transition: background 0.3s;
}
.btn-whatsapp:hover {
    background-color: rgba(0,144,62,0.85);
}
.btn-ficha {
    background-color: #00903e;
    width: 260px;
}
.btn-ficha:hover {
    background-color: #8a5f3e;
}
.btn-icon {
    width: 1.5rem;
    height: 1.5rem;
    fill: white;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
}
.delivery-box {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffc600;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    gap: 0.5rem;
}
.delivery-box img {
    height: 75px;
}
.delivery-title {
    font-size: 1.875rem;
    font-family: 'Made', sans-serif;
    line-height: 1.2;
}
.delivery-cond {
    font-size: 0.875rem;
}
.ingredientes-label {
    color: #00953b;
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

/* Responsive ajustes */
@media (max-width: 768px) {
    .gallery-main {
        padding: 1.5rem;
    }
    .badge-icon {
        width: 40px;
    }
    .badge span {
        font-size: 0.875rem;
    }
    .gallery-thumbnails {
        gap: 0.75rem;
    }
    .info-title {
        font-size: 2rem;
    }
    .delivery-title {
        font-size: 1.5rem;
    }
}
@media (max-width: 480px) {
    .gallery-main {
        padding: 1rem;
    }
    .badge-icon {
        width: 35px;
    }
    .presentaciones {
        flex-direction: column;
    }
    .presentacion-item {
        width: 100%;
    }
}

.thumbnail-item.active {
    border: 2px solid #00953b;
    transform: scale(1.02);
}


/* ===============================
   SECCIÓN BENEFICIOS (cs_titulo, cs_descripcion, cs_lista)
   =============================== */

.benefits-section {
    background-color: #00903e;
    padding: 2.5rem 0;  /* py-10 = 2.5rem */
}

.benefits-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .benefits-container {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;  /* espacio entre columnas en móvil */
}






@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 7rem;  /* gap-28 ≈ 7rem */
    }
}

@media (min-width: 1280px) {
    .benefits-grid {
        gap: 7rem;  /* xl:gap-28 igual */
    }
}

.benefits-content {
    padding: 2.5rem 0;  /* py-10 */
}

.benefits-title {
    color: white;
    font-size: 48px;     /* text-5xl */
    font-weight: 500;    /* font-light */
    font-family: 'MADE Coachella', sans-serif;
    line-height: 48px;
    margin-bottom: 1.25rem; /* mb-5 */
}

.benefits-description {
    color: white;
    font-size: 1rem;
    line-height: 1.5;
}

.benefits-list-wrapper {
    padding: 2.5rem 0;  /* py-10 */
}

@media (min-width: 768px) {
    .benefits-list-wrapper {
        padding-left: 3rem;  /* md:pl-12 ≈ 3rem */
    }
}

.benefit-item {
    background-color: white;
    border-radius: 0.25rem; /* rounded-xs */
    padding: 1rem;           /* p-4 */
    margin-bottom: 1rem;     /* mb-4 */
    width: 100%;
    max-width: 100%;
    text-align: center;      /* si quieres centrado, sino omite */
}

@media (min-width: 640px) {
    .benefit-item {
        width: auto;
        margin-left: 0;
        margin-right: 0;
        text-align: left;    /* opcional */
    }
}



/* Logo y botón en la segunda columna */
.benefits-list-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2.5rem 0;
}

.benefits-logo {
    margin-bottom: 2rem;
}

.benefits-logo-img {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.benefits-button-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.benefits-btn {
    display: inline-block;
    background-color: white;
    color: #00903e;
    text-decoration: none;
    font-weight: bold;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.benefits-btn:hover {
    background-color: #f0f0f0;
    transform: scale(1.02);
    color: #007a32;
}

/* Ajuste en tablets/desktop */
@media (min-width: 768px) {
    .benefits-list-wrapper {
        padding-left: 3rem;
        align-items: flex-start; /* alinear a la izquierda en desktop */
    }
    .benefits-logo-img {
        max-width: 70%;
    }
}



/* Opcional: efecto hover */
.benefit-item:hover {
    transform: translateY(-2px);
    transition: transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}




/* ==================== SECCIÓN FICHA TÉCNICA ==================== */
.ficha-tecnica-section {
    margin: 3rem 0;
    background-color: #fffdfc; /* opcional, para contraste */
}
.ficha-tecnica-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 640px) {
    .ficha-tecnica-container {
        padding: 0 5rem;
    }
}
.ficha-tecnica-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) {
    .ficha-tecnica-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}
/* Columna izquierda */
.ficha-tecnica-left {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%; /* para igualar altura */
}

.ficha-title {
    font-size: 40px;
    font-family: 'MADE Coachella', sans-serif;
    color: #00903e;
    margin-bottom: 1rem;
    line-height: 40px;
}
}
.ficha-desc-label {
    font-weight: 400;
    color: #00903e;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

h3.ficha-desc-label {
    font-weight: 500;
    color: #00903e;
    font-family: 'MADE Coachella', sans-serif;
    font-size: 20px;
}

.ficha-desc {
    margin-bottom: 1rem;
    color: #00903e;
    font-weight: 500;
}

p.ficha-nutri-label {
    font-weight: 600;
    color: #00903e;
}

.ficha-nutri-img img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1rem 0;
}
/* Columna derecha */
.ficha-tecnica-right {

    padding: 2rem;

    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}
.ficha-brand {
    color: #00953b;
    font-weight: 500;
    display: inline-block;
    font-size: 14px;
}
.ficha-subtitle {
    font-size: 30px;
    font-family: 'MADE Coachella', sans-serif;
    color: #00903e;
    margin-bottom: 0.75rem;
    line-height: 30px;
    padding-top: 10px;
}
.ficha-rsa {
   
    font-weight: bold;
    color: #694733;
}
.ficha-ingredientes-label,
.ficha-modo-label,
.ficha-vida-label {
    font-weight: bold;
    color: #694733;
  
    margin-bottom: 0.25rem;
}
.ficha-ingredientes,
.ficha-modo,
.ficha-vida {
    margin-bottom: 0.75rem;
}
.ficha-code {
    margin-top: 1.5rem;
    padding-left: 50px;
}
.ficha-code img {
    max-width: 150px;
    height: auto;
    display: inline-block;
}
/* Ajustes móvil */
@media (max-width: 767px) {
    .ficha-tecnica-left,
    .ficha-tecnica-right {
        min-height: auto;
    }
    .ficha-title {
        font-size: 1.5rem;
    }
    .ficha-subtitle {
        font-size: 1.25rem;
    }
}


/* ===============================
   SECCIÓN MANOS A LA OBRA
   =============================== */

.manos-section {
    background-color: #a86132;
    padding: 4rem 1rem;  /* py-16 aprox, espaciado vertical */
    text-align: center;
}

.manos-container {
    max-width: 800px;    /* ancho máximo para que el texto no sea demasiado ancho */
    margin: 0 auto;
}

.manos-title {
    color: white;
    font-size: 2.5rem;   /* 40px */
    font-family: 'MADE Coachella', sans-serif;
    font-weight: 400;    /* normal */
    margin-bottom: 1.5rem;
 
    letter-spacing: 1px;
}

.manos-description {
    color: white;
    font-size: 16px; 
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .manos-section {
        padding: 3rem 1rem;
    }
    
    .manos-title {
        font-size: 2rem;
    }
    
    .manos-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .manos-title {
        font-size: 1.75rem;
    }
    
    .manos-description {
        font-size: 0.95rem;
    }
}
/* Icono equivale en esquina superior izquierda de la galería */
.equivale-icon {
    position: absolute;
    top: 1.25rem;   /* equivalente a top-5 (1.25rem = 20px) */
    left: 1.25rem;  /* equivalente a left-5 */
    z-index: 10;    /* para que esté por encima de la imagen */
}

@media (max-width: 640px) {
    .equivale-icon {
        top: 0.75rem;
        left: 0.75rem;
        transform: scale(0.8); /* reduce tamaño si es necesario */
    }
}


/* ===============================
   ICONO EQUIVALE (template part)
   =============================== */
.product-gallery .equivale-wrapper {
    margin: 0.75rem 0;   /* my-3 */
    text-align: left;
    padding-left:28px;
}

.equivale-wrapper {
    margin: 0.75rem 0;   /* my-3 */
    text-align: left;
  
}


.equivale-texto {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 0.25rem;

}

/* Sobrescribe para el contexto del single product */
.product-gallery .equivale-texto {
 
    padding-top: 14px;
}

.equivale-icon-img {
    width: 2rem;          /* w-12 = 48px */
    height: auto;
    display: block;
  
}

.equivale-azucar {
    font-size: 14px;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

/* Colores condicionales */
.equivale-text-white {
    color: white;
}

.equivale-text-brown {
    color: #694733;   /* el color marrón que usabas */
}

/* Responsive (para pantallas más grandes, similar a xl:text-base) */
@media (min-width: 1280px) {
    
    .equivale-azucar {
        font-size:14px;  /* text-base */
    }
    .equivale-icon-img {
        width: 2rem;       /* xl:w-16 = 64px */
    }
}

/* Si en front-page quieres otro tamaño, puedes añadir un selector específico */
.front-page,
.front-page .equivale-azucar {
    font-size: 14px;
}
@media (min-width: 1280px) {
    .front-page,
    .front-page .equivale-azucar {
        font-size: 14px; /* xl:text-xs en home */
    }
    .front-page .equivale-icon-img {
        width: 3rem;        /* xl:w-12 */
    }
}