/*
Color crema de Cósmico: hsla(var(--white-hsl), 1) COLOR CREMA
Color secundario: rgba(45, 93, 82, 0.9) VERDE UN POCO MAS CLARO
Color primario: #2d5d52 VERDE OSCURO
*/


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Inter Regular'), local('Inter-Regular');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Inter Bold'), local('Inter-Bold');
}

@font-face {
    font-family: 'SF Pro';
    src: url('https://applesocial.s3.amazonaws.com/assets/styles/fonts/sanfrancisco/sfprodisplay-regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro';
    src: url('https://applesocial.s3.amazonaws.com/assets/styles/fonts/sanfrancisco/sfprodisplay-bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "SF Pro", -apple-system, BlinkMacSystemFont, sans-serif;
}
.main-header {
    height: 90px;
    background-color: #2d5d52;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
.navbar {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    margin: 0;
}
.nav-links-group {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.header-logo-img {
    min-width: 48px;
    min-height: 48px;
    height: 48px;
    width: 48px;
    object-fit: contain;
    margin-top: -8px;
}
.header-logo a {
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}
.header-list {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.header-list a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s ease;
}
.header-list a:hover {
    opacity: 0.8;
}
.main-nav-mobile {
    display: none;
}
.main-header-burguer {
    display: none;
}
@media (max-width: 685px) {
    .header-list {
        display: none;
    }
    .main-nav-mobile {
        display: flex;
        align-items: center;
        gap: 16px;
    }
    .main-header-burguer {
        display: flex;
        flex-direction: column;
        width: 24px;
        height: 24px;
        border: 0;
        background: transparent;
        gap: 4px;
        cursor: pointer;
        padding: 0;
    }
    .main-header-burguer > div {
        background-color: white;
        height: 2px;
        width: 100%;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    .main-header-burguer.active > div:first-child {
        transform: translateY(6px) rotate(45deg);
    }
    .main-header-burguer.active > div:nth-child(2) {
        opacity: 0;
    }
    .main-header-burguer.active > div:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    .main-header-mobile-carrito {
        color: white;
        text-decoration: none;
        font-size: 16px;
    }
}
.mobile-menu {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    background: #2d5d52;
    padding: 20px;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.mobile-menu.active {
    transform: translateY(0);
}
.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-menu li {
    margin: 16px 0;
}
.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 8px 0;
    transition: opacity 0.3s ease;
}
.mobile-menu a:hover {
    opacity: 0.8;
}
li, a {
    list-style-type: none;
    text-decoration: none;
    color: beige;
    font: 400 16px "Inter", sans-serif;
}
.header-logo a{
    align-self: center;
    color: beige;
    font-size: 32px;
    font-family: "SF Pro", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    font-style: normal;
}
.main-content-intro {
    padding: 48px;
    background-color: #2d5d52;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.main-content-intro img {
    max-width: 100%;
    height: 300px; 
    object-fit:fill; 
    object-position: center;
}
.intro-title {
    font-family: "SF Pro", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: white;
}
.intro-text {
    font-family: "SF Pro", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: white;
    margin: 8px 0px;
}
.left-intro {
    padding: 8px;
}
.button-intro {
    border-radius: 8px;
    border: none;
    padding: 8px;
    min-height: 30px;
    min-width: 100px;
    background-color: #eee;
}
.button-intro:hover{
    background-color: #53aa7f;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
.content {
    display: flex;
    padding: 16px 64px;
    flex-direction: column;
}
.content-title {
    justify-content: center;
    align-self: center;
    font-family: "SF Pro", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    font-size: 36px;
}
.content-box {
    width: 250px;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}
.box-container {
    display: flex;
    justify-content: space-between;
    margin: 16px 48px 48px 48px;
    flex-wrap: wrap;
}
.content-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.content-box:hover {
    transform: scale(1.05);
}
.content-box-info {
    padding: 8px 0px;
    font-family: "SF Pro", -apple-system, BlinkMacSystemFont, sans-serif;
    text-align: center;
    width: 150px;
}
.content-box.img2 img {
    transform: scale(1.7);
    transform-origin: bottom center;
}
.content-quote {
    padding: 48px 160px;
    background-color: #e5e7eb;
}
.quote {
    font-family: "SF Pro", -apple-system, BlinkMacSystemFont, sans-serif;
    font-style: italic;
    font-weight: 300;
    font-size: 36px;
    color: #1f2937;
    text-align: left;
}
.quote-author {
    font-family: "SF Pro", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #1f2937;
    text-align: right;
}
.ad-card {
    margin: 48px 128px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #379767;
    height: 100px;
    border-radius: 8px;
}
.card-title {
    font-family: "SF Pro", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #eee;
}
.card-text {
    font-family: "SF Pro", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #eee;
}
.card-button {
    background-color: transparent;
    color: #eee;
    border: solid #eee;
    padding: 4px 12px;
    font-size: 12px;
}
.card-button:hover {
    background-color: rgb(117, 117, 117);
}
.footer {
    background-color: #f6ecd2;
    color: #2d5d52;
    padding: 60px 0 20px;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    gap: 40px;
}
.footer-column {
    flex: 1;
}
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}
.footer-logo a {
    color: #2d5d52;
    text-decoration: none;
    font-size: 32px;
    font-weight: bold;
}
.footer-favicon {
    width: 96px;
    height: 96px;
}
.footer-column h3 {
    color: #2d5d52;
    margin-bottom: 20px;
    font-size: 22px;
}
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-column ul li {
    margin-bottom: 10px;
}
.footer-column ul li a {
    color: #2d5d52;
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-size: 18px;
}
.footer-column ul li a:hover {
    opacity: 0.7;
}
.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px;
    border-top: 1px solid rgba(45, 93, 82, 0.2);
    text-align: center;
}
.footer-text {
    color: #2d5d52;
    font-size: 16px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    .footer-column {
        text-align: center;
    }
    .footer-logo {
        align-items: center;
    }
}
@media (max-width: 768px) {
    .main-content-intro {
        flex-direction: column;
        text-align: center;
    }
    
    .left-intro {
        width: 100%;
    }
    
    .main-content-intro img {
        width: 100%;
        height: auto;
    }
    
    .box-container {
        margin: 16px;
        justify-content: center;
    }
    
    .content-quote {
        padding: 24px;
    }
    
    .ad-card {
        margin: 24px;
        flex-direction: column;
        height: auto;
        padding: 16px;
        text-align: center;
        gap: 16px;
    }
}
.box-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}
/* Estilos para el catálogo */
.catalogo-container {
    padding: 48px;
    max-width: 1200px;
    margin: 0 auto;
}
.catalogo-title {
    text-align: center;
    margin-bottom: 12px;
    margin-top: 54px;
    color: #2d5d52;
}
.filtros-container-title {
    margin: 0;
    margin-top: 32px;
}
div.filtros-container-title h3 {
    margin-bottom: 8px;
}
/* Estilos para los filtros */
.filtros-container {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    padding: 24px;
    padding-top: 0;
    justify-content: center;
}
.filtro-item {
    flex: 1;
    max-width: 200px;
    padding: 20px 32px;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}
.filtro-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.filtro-item.activo {
    background: #2d5d52;
    border-color: #1e3f38;
}
.filtro-item h3 {
    color: #666;
    font-family: "SF Pro", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin: 0;
}
.filtro-item.activo h3 {
    color: white;
}
@media (max-width: 768px) {
    .filtros-container {
        flex-direction: column;
        align-items: center;
    }
    .filtro-item {
        width: 100%;
        max-width: 300px;
    }
}

.productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    padding: 16px;
}
.producto-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 330px;
    position: relative;
}
.producto-card:hover {
    transform: translateY(-5px);
}
.producto-card img {
    width: 100%;
    height: 330px;
    object-fit: cover;
}
.producto-card h3 {
    padding: 16px 16px 8px;
    color: #2d5d52;
    font-size: 1.2em;
    min-height: 3em;
    display: flex;
    align-items: center;
}
.producto-card p {
    padding: 0 16px;
    color: #666;
    flex-grow: 1;
    margin-bottom: 16px;
}
.producto-card .precio {
    font-weight: bold;
    color: #2d5d52;
    font-size: 1.2em;
    padding: 8px 16px;
    margin-bottom: 16px;
}
.btn-agregar {
    width: 100%;
    padding: 12px;
    background: #2d5d52;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: auto;
}
.btn-agregar:hover {
    background: #1e3f38;
}
.btn-agregar:disabled {
    background: #ccc;
    cursor: not-allowed;
}
/* Estilos para el carrito */
.carrito-container {
    padding: 48px;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 54px;
}
.carrito-title {
    text-align: center;
    margin-bottom: 32px;
    color: #2d5d52;
}
.carrito-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}
.carrito-item {
    display: flex;
    align-items: center;
    padding: 16px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.carrito-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
}
.item-details {
    flex: 1;
    padding: 0 16px;
}
.item-details h3 {
    color: #2d5d52;
    margin-bottom: 8px;
}
.item-details p {
    color: #666;
}
.btn-eliminar-cart {
    padding: 8px 16px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.btn-eliminar-cart:hover {
    background: #c82333;
}
.carrito-total {
    margin-top: 32px;
    text-align: right;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
}
.btn-whatsapp {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 32px auto;
    padding: 16px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background 0.3s ease;
}
.btn-whatsapp:hover {
    background: #128C7E;
}
@media (max-width: 768px) {
    .carrito-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 16px;
        gap: 12px;
    }
    .carrito-item img {
        width: 330px;
        height: 330px;
        object-fit: cover;
        border-radius: 8px;
    }
    .item-details {
        width: 100%;
    }
    .btn-eliminar-cart {
        width: 100%;
        max-width: 50%;
    }
    .contacto-title {
        margin-top: 24px;
    }
}
/* Estilos para la página de contacto */
.contacto-container {
    padding: 48px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 54px;
}
.contacto-title {
    text-align: center;
    margin-bottom: 48px;
    color: #2d5d52;
    font-family: "SF Pro", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    font-size: 36px;
}
.contacto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 24px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.contacto-info {
    padding: 24px;
}
.contacto-info h2 {
    color: #2d5d52;
    margin-bottom: 24px;
    font-family: "SF Pro", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    font-size: 24px;
}
.contacto-info p {
    margin-bottom: 16px;
    font-size: 18px;
    color: #666;
}
.contacto-form {
    padding: 24px;
}
.contacto-form h2 {
    color: #2d5d52;
    margin-bottom: 24px;
    font-family: "SF Pro", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    font-size: 24px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2d5d52;
    font-weight: 500;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: "SF Pro", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d5d52;
    box-shadow: 0 0 0 2px rgba(45, 93, 82, 0.1);
}
.btn-enviar {
    background: #2d5d52;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: "SF Pro", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.3s ease;
}
.btn-enviar:hover {
    background: #1e3f38;
}
@media (max-width: 768px) {
    .contacto-content {
        grid-template-columns: 1fr;
    }
    .contacto-container {
        padding: 24px;
    }
    .contacto-info,
    .contacto-form {
        padding: 16px;
    }
}

/* Estilos para las opciones de grabado */
#grabado-opciones {
    margin: 16px 0;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
}
.grabado-opcion {
    margin-bottom: 12px;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}
.grabado-opcion:hover {
    background-color: #e9ecef;
}
.grabado-opcion label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "SF Pro", -apple-system, BlinkMacSystemFont, sans-serif;
    color: #2d5d52;
    cursor: pointer;
}
.grabado-opcion input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}
/* Estilos para el botón flotante del carrito */
.carrito-flotante {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #2d5d52;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
}
.carrito-flotante.visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}
.carrito-flotante:hover {
    transform: scale(1.1);
    background: #1e3f38;
}
.carrito-flotante svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}
/* Estilos para la página de inicio */
.hero-section {
    margin-top: -90px;
    padding-top: 247px;
    padding-bottom: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #486C64;
    background-image: linear-gradient(rgba(72, 108, 100, 0.75), rgba(72, 108, 100, 0.75)), url('../img/fondo-stock.webp');
    background-size: cover;
    background-position: 50% 35%;
    background-repeat: no-repeat;
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}
.hero-content {
    max-width: 800px;
    padding: 0 8px;
    text-align: left;
}
.hero-content h1 {
    font-family: 'SF Pro', sans-serif;
    font-weight: bold;
    font-size: 48px;
    margin-bottom: 16px;
}
.hero-content p {
    font-family: 'SF Pro', sans-serif;
    font-weight: normal;
    font-size: 24px;
    margin-bottom: 16px;
    opacity: 0.9;
}
.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background: white;
    color: #2d5d52;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.features-section {
    padding: 64px 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    background: #f8f9fa;
}

.feature-card {
    text-align: center;
    padding: 32px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.178);
    transition: transform 0.3s ease;
    min-width: 280px;
    max-width: 400px;
}
.feature-card:hover {
    transform: translateY(-5px);
}
.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}
.feature-card h3 {
    color: #2d5d52;
    font-size: 24px;
    margin-bottom: 16px;
}
.feature-card p {
    color: #666;
    line-height: 1.6;
}
.about-section {
    padding: 80px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.about-content h2 {
    color: #2d5d52;
    font-size: 36px;
    margin-bottom: 24px;
}
.about-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 3px;
}
.about-image{
    display: flex;
    flex: 1 1 0;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.about-img-vertical {
    height: auto;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.32);
    background: #eee;
    flex: 1 1 40%;
    max-width: 100%;
    min-width: 200px;
    height: auto;
}
.cta-section {
    background: #2d5d52;
    padding: 80px 48px;
    text-align: center;
    color: white;
}
.cta-content {
    max-width: 800px;
    margin: 0 auto;
}
.cta-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
}
.cta-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
}
.btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background: white;
    color: #2d5d52;
}
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 24px;
        margin-top: 24px;
    }
    .hero-content h1 {
        font-size: 36px;
    }
    .hero-content p {
        font-size: 20px;
    }
    .features-section {
        padding: 48px 24px;
    }
    .about-section {
        padding: 48px 24px;
        grid-template-columns: 1fr;
    }
    .about-image img {
        height: 300px;
    }
    .cta-section {
        padding: 48px 24px;
    }
    .cta-content h2 {
        font-size: 28px;
    }
    .cta-content p {
        font-size: 18px;
    }
}
.stock-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #2d5d52;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    z-index: 1;
}
.stock-badge.sin-stock {
    background: #dc3545;
}
.encargue-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ffc107;
    color: #000;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    z-index: 1;
}

.btn-comprar {
    display: inline-block;
    padding: 12px 24px;
    background-color: #bd914a;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-comprar:hover {
    background-color: #ffb642;
}

.features-cards {
    display: flex;
    justify-content: space-around;
    gap: 32px;
    flex-wrap: wrap;

}
.feature-card {
    flex: 1 1 0;
}
/* estilos para redes sociales */
.contacto-redes {
    display: flex;
    justify-content: flex-start;
    gap: 24px;
    margin-top: 24px;
}

.contacto-redes a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #f8f9fa;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contacto-redes a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contacto-icon {
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease;
}

.icon-wpp {
    width: 60px;
    height: 60px;
}

.contacto-redes a:hover .contacto-icon {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .contacto-redes {
        justify-content: center;
        margin-top: 32px;
    }
    
    .contacto-redes a {
        width: 56px;
        height: 56px;
    }
    
    .contacto-icon {
        width: 42px;
        height: 42px;
    }
    
    .icon-wpp {
        width: 56px;
        height: 56px;
    }
}

.filtros-container-title h3 {
    color: #2d5d52;
    font-family: "SF Pro", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 16px;
    text-align: center;
}

/* Agrego animacion a los contenedores en todas las páginas */
@keyframes appear {
    from {
        opacity: 0.3;
        scale: 0.7;
    }
    to {
        opacity: 1;
        scale: 1;
    }
}

.feature-card {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}
.about-content {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}
.about-img-vertical {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}
.cta-content {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}
.producto-card {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

/* Breakpoint para tablets y dispositivos medianos */
@media (max-width: 1024px) {
    .about-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-image {
        margin-top: 24px;
    }
    .about-img-vertical {
        width: 140px;
    }
}

/* Breakpoint para móviles */
@media (max-width: 768px) {
    .about-section {
        padding: 48px 24px;
    }
    .about-image {
        flex-direction: column;
        gap: 16px;
    }
    .about-img-vertical {
        width: 100%;
        max-width: 280px;
    }
}

/* Estilos para el panel de producto */
.producto-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    padding: 24px;
}

.producto-panel.active {
    opacity: 1;
    visibility: visible;
}

.producto-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.producto-panel-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    color: #38675a;
    transition: color 0.3s ease;
}

.producto-panel-close:hover {
    color: #2d5d52;
}

.producto-panel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.producto-panel-images {
    position: relative;
}

.producto-panel-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
}

.producto-panel-thumbnails {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.producto-panel-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.producto-panel-thumbnail.active {
    opacity: 1;
    border: 2px solid #2d5d52;
}

.producto-panel-info {
    display: flex;
    flex-direction: column;
}

.producto-panel-info h2 {
    color: #2d5d52;
    font-size: 24px;
    margin-bottom: 16px;
}

.producto-panel-info p {
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.producto-panel-precio {
    font-size: 28px;
    color: #2d5d52;
    font-weight: bold;
    margin-bottom: 24px;
}

.producto-panel-buttons {
    display: flex;
    gap: 16px;
    margin-top: auto;
}

.btn-comprar-ahora {
    flex: 1;
    padding: 16px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-comprar-ahora:hover {
    background: #128C7E;
}

.btn-agregar-panel {
    flex: 1;
    padding: 16px;
    background: #2d5d52;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-agregar-panel:hover {
    background: #1e3f38;
}

.producto-panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.producto-panel-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Estilos para el hover de producto-card */
.producto-card {
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.producto-card:hover {
    border-color: #000;
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .producto-panel {
        width: 95vw;
        max-width: 95vw; 
        max-height: 90vh; 
        top: 50%; 
        left: 50%; 
        overflow-y: auto; 
    }
    .producto-panel-content {
        grid-template-columns: 1fr;
    }

    .producto-panel-main-image {
        height: 300px;
        min-width: 150px;
        min-height: 150px;
    }

    .producto-panel-buttons {
        display: flex;
        flex-direction: row;
        gap: 10px;
    }
}

.carrito-items p {
    color: #666;
    font-size: 18px;
    margin-bottom: 16px;
}

.carrito-items .btn-comprar {
    margin-top: 8px;
}
.pedir-encargue {  
    background: #c87151;
    color: white;
    cursor: pointer;
}
.pedir-encargue:hover {
    background: #ba7b64;
    color: white;
}

.carrito-contador {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ff0000;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.carrito-flotante {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.carrito-flotante.visible {
    opacity: 1;
    visibility: visible;
}

.carrito-flotante svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.carrito-flotante:hover {
    transform: scale(1.1);
}

/* Estilos para el panel lateral del carrito */
.carrito-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background-color: white;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    z-index: 1001;
    transition: right 0.3s ease-in-out;
    padding: 20px;
    overflow-y: auto;
}

.carrito-panel.active {
    right: 0;
}

.carrito-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.carrito-panel-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

.carrito-panel-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.carrito-panel-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 15px;
}

.carrito-panel-item-info {
    flex-grow: 1;
}

.btn-eliminar {
    background-color: #ff4444;
    border: none;
    border-radius: 50%;
    min-width: 30px;
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding: 0;
    margin-left: 10px;
}

.btn-eliminar:hover {
    background-color: #ff0000;
}

.btn-eliminar svg {
    fill: white;
    width: 20px;
    height: 20px;
}

.carrito-panel-total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #eee;
    font-weight: bold;
}

.carrito-panel-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.carrito-panel-buttons button {
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.btn-ir-carrito {
    background-color: #333;
    color: white;
}

.btn-seguir-comprando {
    background-color: #f0f0f0;
    color: #333;
}

/* Overlay para el panel lateral */
.carrito-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
}

.carrito-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Estilos para el modal móvil */
.carrito-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 400px;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.carrito-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.carrito-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.carrito-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    position: relative;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#modal-timer-circle {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 32px;
    height: 32px;
    pointer-events: none;
}
#modal-timer-progress {
    transition: stroke-dashoffset 0.1s linear;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

.carrito-modal-content {
    text-align: center;
}

.carrito-modal-content img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin: 0 auto 15px;
    display: block;
}

.carrito-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.carrito-modal-buttons button {
    padding: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
}

.descuento-item {
    background-color: #f8f9fa;
    border-radius: 5px;
    padding: 10px;
    margin: 10px 0;
}

.descuento-item h3 {
    color: #2d5d52;
    margin: 0;
}

.descuento-valor {
    color: #2d5d52;
    font-weight: bold;
    font-size: 1.1em;
}

.carrito-modal-close span {
    position: relative;
    z-index: 2;
    color: #38675a;
}

@media (max-width: 768px) {
    .carrito-panel {
        display: none;
    }
}

@media (min-width: 769px) {
    .carrito-modal {
        display: none;
    }
}

.modal-item-unificado, .carrito-modal-item, .descuento-item, .total-modal-item {
    max-width: 500px;
    width: 100%;
    margin: 0 auto 10px auto !important;
    box-sizing: border-box;
    border-radius: 8px;
    background: #fff;
}
.total-modal-item {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eee;
    margin-top: 10px !important;
    padding-top: 10px;
    font-weight: bold;
    color: #2d5d52;
    font-size: 1.1em;
}
.total-modal-label {
    font-weight: bold;
    color: #2d5d52;
}
.total-modal-value {
    font-weight: bold;
    color: #2d5d52;
}
@media (max-width: 600px) {
    .modal-item-unificado, .carrito-modal-item, .descuento-item, .total-modal-item {
        width: 100%;
        border-radius: 0;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

.colores-disponibles {
    margin: 0 0 4px 0;
    display: flex;
    gap: 6px;
    align-items: center;
    padding: 0 16px;
}
.color-circulo {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #ccc;
    position: relative;
}

.carrito-item, .descuento-item {
    max-width: 700px;
    width: 100%;
    margin: 0 auto 20px auto;
    box-sizing: border-box;
}
.carrito-item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.carrito-item img:hover {
    box-shadow: 0 0 0 4px #2d5d52, 0 0 15px rgba(45, 93, 82, 0.3);
    transform: scale(1.02);
}
.modal-imagen-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.modal-imagen {
    width: 500px;
    max-width: 90vw;
    height: 500px;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    background: #fff;
    padding: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-imagen img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: none;
}
.modal-imagen-cerrar {
    position: absolute;
    top: 10px;
    right: 16px;
    font-size: 2rem;
    color: #2d5d52;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
}
.modal-imagen-flecha {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(45,93,82,0.15);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: background 0.2s;
}
.modal-imagen-flecha:hover {
    background: rgba(45,93,82,0.35);
}
.modal-imagen-flecha svg {
    width: 28px;
    height: 28px;
    fill: #2d5d52;
}
.modal-imagen-flecha.izq { left: 10px; }
.modal-imagen-flecha.der { right: 10px; }
@media (max-width: 600px) {
    .carrito-item, .descuento-item {
        max-width: 90vw;
        width: 90vw;
        border-radius: 0;
        margin-left: 0;
        margin-right: 0;
    }
}

