:root {
    --catskill-white: #f8fafc;
    --aquamarine-blue: #7ed3d3;
    --charm: #73d0d0;
    --scandal: #fce4e4;
    --water-leaf: #a6e8dd;
    --beauty-bush: #eeb4c6;
    --azalea: #fad4e2;
    --lily: #c5a5ab;
    --neptune: #84bcb4;
    --wafer: #e0cccc;
    --text-color: #2d3a4a;
}

/* Fuentes principales */
body, p, li, a, span, td, th, input, textarea, select, button {
    font-family: 'Open Sans', 'Funnel Display', Arial, Helvetica, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lobster Two', 'Montserrat Alternates', Arial, Helvetica, sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 1000;
    padding: 1.5rem;
    background-color: var(--catskill-white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Elimina height/min-height para el estado normal */
    transition: padding 1.2s cubic-bezier(0.4,0,0.2,1), background 1.2s cubic-bezier(0.4,0,0.2,1);
}

.nav__controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1002;
}

.nav__logo-link {
    display: block;
    text-decoration: none;
    width: fit-content;
    transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1), max-height 1.2s cubic-bezier(0.4,0,0.2,1), margin 1.2s cubic-bezier(0.4,0,0.2,1);
    opacity: 1;
    max-height: 120px;
    margin: 0.5rem auto;
    overflow: hidden;
    display: block;
}

.nav__logo {
    max-width: 100px;
    margin: 0.5rem auto;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 3px solid transparent;
    background: 
        linear-gradient(var(--catskill-white), var(--catskill-white)) padding-box,
        linear-gradient(to bottom, var(--aquamarine-blue) 50%, #e8b9bc 50%) border-box;
}

.nav__logo-link:hover .nav__logo {
    /* transform: scale(1.05); */
}

.nav.nav--compact .nav__logo-link {
    opacity: 0;
    max-height: 0;
    margin: 0;
    pointer-events: none;
}

.nav__list {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: inherit;
}

.nav__link {
    color: var(--charm);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.5px;
}

/* Eliminar subrayado animado en los enlaces del nav */
.nav__link::after {
    display: none !important;
}

.nav__link:hover {
    color: var(--aquamarine-blue);
    text-shadow: 0 0 8px rgba(110, 222, 201, 0.3);
}

.nav__link.active {
    color: #73d0d0 !important;
    border-bottom: none !important;
}

.nav__link.active::after {
    width: 100%;
}

.nav a,
.nav__link {
    color: #181818 !important;
    border-bottom: none !important;
}

.hamburger {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    background: var(--charm);
    transition: all 0.3s ease-in-out;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--charm);
    transition: all 0.3s ease-in-out;
}

.hamburger::before {
    transform: translateY(-8px);
}

.hamburger::after {
    transform: translateY(8px);
}

/* Animación cuando el menú está abierto */
.nav__toggle.active .hamburger {
    background: transparent;
}

.nav__toggle.active .hamburger::before {
    transform: rotate(45deg);
}

.nav__toggle.active .hamburger::after {
    transform: rotate(-45deg);
}

.language-toggle {
    display: flex;
    gap: 0.3rem;
    background: var(--catskill-white);
    border: 2px solid var(--aquamarine-blue);
    border-radius: 20px;
    padding: 0.2rem;
    box-shadow: 0 0 8px rgba(110, 222, 201, 0.2);
    position: absolute;
    top: 0.5rem;
    right: 1.5rem;
}

.language-toggle__btn {
    background: none;
    border: none;
    padding: 0.3rem 0.8rem;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    color: #181818 !important;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.language-toggle__btn:hover {
    color: var(--catskill-white);
    background: var(--aquamarine-blue);
}

.language-toggle__btn.active {
    background: var(--aquamarine-blue);
    color: var(--catskill-white);
    box-shadow: 0 0 12px var(--aquamarine-blue);
}

@media (max-width: 768px) {
    .nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 2rem 4rem;
        min-height: 8rem;
        position: relative;
    }

    .nav__toggle {
        display: block;
    }

    .hamburger {
        width: 20px;
        height: 2px;
    }

    .hamburger::before,
    .hamburger::after {
        width: 20px;
        height: 2px;
    }

    .hamburger::before {
        transform: translateY(-6px);
    }

    .hamburger::after {
        transform: translateY(6px);
    }

    .nav__logo-link {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 0.5rem;
        transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1), max-height 1.2s cubic-bezier(0.4,0,0.2,1), margin 1.2s cubic-bezier(0.4,0,0.2,1), top 1.2s cubic-bezier(0.4,0,0.2,1);
    }
    
    .nav__logo {
        max-width: 100px;
        margin: 0.5rem auto;
    }

    .language-toggle {
        top: 50%;
        transform: translateY(-50%);
        padding: 0.15rem;
        border-width: 1px;
        right: 1rem;
    }

    .language-toggle__btn {
        padding: 0.15rem 0.4rem;
        font-size: 0.7rem;
    }

    .nav__list {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--catskill-white);
        padding: 0;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
        z-index: 1001;
    }

    .nav__list.active {
        max-height: 500px;
        padding: 1rem;
    }

    .nav__item {
        width: 100%;
        text-align: center;
    }

    .nav__link {
        padding: 1rem;
        display: block;
        text-align: center;
        width: 100%;
    }

    .nav__link::after {
        left: 50%;
        transform: translateX(-50%);
        width: 0;
    }

    .nav__link:hover::after {
        width: 25%;
    }

    .main {
        padding: 1rem;
        margin-top: 4rem;
        position: relative;
        z-index: 1;
    }

    .main__title {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
    }

    .categories {
        gap: 1.5rem;
    }

    .category-card__title {
        font-size: 1.3rem;
        padding: 0.8rem;
    }

    .main__title::after {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 1.5rem 3rem;
    }

    .nav__toggle {
        padding: 0.4rem;
        left: 0.8rem;
    }

    .hamburger {
        width: 18px;
        height: 1.5px;
    }

    .hamburger::before,
    .hamburger::after {
        width: 18px;
        height: 1.5px;
    }

    .hamburger::before {
        transform: translateY(-5px);
    }

    .hamburger::after {
        transform: translateY(5px);
    }

    .language-toggle {
        padding: 0.1rem;
        right: 0.8rem;
    }

    .language-toggle__btn {
        padding: 0.1rem 0.3rem;
        font-size: 0.65rem;
    }

    .main {
        padding: 0.8rem;
        margin-top: 3rem;
    }

    .main__title {
        font-size: 44px !important;
        margin-bottom: 22px !important;
        padding: 10px 16px !important;
        word-break: break-word !important;
        line-height: 1.2 !important;
        background: none !important;
        color: #fff !important;
        text-align: center !important;
    }
    .main__title::after {
        width: 70vw !important;
        max-width: 400px !important;
    }

    .categories {
        gap: 1rem;
    }

    .category-card__title {
        font-size: 1.2rem;
    }
}

@media (max-width: 350px) {
    .main__title {
        font-size: 34px !important;
        padding: 8px 10px !important;
    }
    .main__title::after {
        width: 80vw !important;
    }
}

.main {
    padding: 2rem;
    margin-top: 3rem;
}

.main__title {
    text-align: center;
    color: #fff;
    font-family: 'Lobster Two', 'Montserrat Alternates', Arial, Helvetica, sans-serif;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    margin-top: 4rem;
}
@media (max-width: 768px) {
    .main__title {
        margin-top: 2.5rem;
    }
}
@media (max-width: 480px) {
    .main__title {
        margin-top: 1.5rem;
    }
}

/* Eliminar subrayado decorativo en el título principal */
.main__title::after {
    display: none !important;
}

.main__subtitle {
    text-align: center;
    color: #fff !important;
    font-family: 'Lobster Two', 'Montserrat Alternates', Arial, Helvetica, sans-serif;
    font-size: 3.5rem !important;
    margin: 2.5rem 0 1.5rem 0;
    position: relative;
    padding-bottom: 0.5rem;
}

/* Eliminar subrayado decorativo en el subtítulo principal */
.main__subtitle::after {
    display: none !important;
}

h2[data-i18n="cafes"],
h2[data-i18n="tes"] {
    color: #73d0d0 !important;
}

.categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.category-card {
    display: block;
    text-decoration: none;
    background: var(--catskill-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.category-card__image {
    width: 100%;
    height: 75%;
    overflow: hidden;
}

.category-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-card__img {
    transform: scale(1.05);
}

.category-card__title {
    padding: 1rem;
    margin: 0;
    color: var(--charm);
    font-family: 'Lobster Two', 'Montserrat Alternates', Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    text-align: center;
    background: var(--catskill-white);
    border-top: 2px solid var(--aquamarine-blue);
    height: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer {
    background: var(--catskill-white);
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
    border-top: 3px solid var(--aquamarine-blue);
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer__section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__title {
    color: var(--charm);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 2px;
    background: var(--aquamarine-blue);
    box-shadow: 0 0 8px var(--aquamarine-blue);
}

.footer__text {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer__link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer__link:hover {
    color: var(--charm);
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer__social-link:hover {
    color: var(--charm);
}

.footer__bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.footer__copyright {
    color: var(--text-color);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 1rem 1.5rem;
    }

    .footer__container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .footer__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__section {
        text-align: center;
    }

    .footer__title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 250px;
    }

    .footer__social {
        justify-content: center;
    }
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    margin: 0;
    box-sizing: border-box;
    background: var(--catskill-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card__image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.product-card:hover .product-card__img {
    transform: scale(1.05);
}

.product-card__content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-card__title {
    font-family: inherit;
    font-size: 1.5rem;
    color: var(--charm);
    margin: 0;
}

.product-card__description {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.product-card__allergens {
    color: var(--text-color);
    font-size: 0.8rem;
    margin: 0;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.allergen-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--charm);
}

.allergen-icon i {
    font-size: 1rem;
}

.allergen-icon span {
    font-size: 0.7rem;
}

.product-card__price {
    color: #181818 !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: left;
    display: block;
}

@media (max-width: 768px) {
    .products {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .product-card__image {
        height: 180px;
    }
    
    .product-card__price {
        font-size: 0.95rem;
        padding: 0 !important;
        margin: 0 !important;
    }
}

@media (max-width: 480px) {
    .products {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .product-card__price {
        font-size: 0.9rem;
        padding: 0 !important;
        margin: 0 !important;
    }
}

.icecream-cups .products {
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Estilos del Carrusel */
.carousel-container {
    position: relative;
    max-width: 100%;
    margin: 2rem auto;
    overflow: visible;
}

.carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
    width: 100%;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--aquamarine-blue);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: white;
    transition: background-color 0.3s ease;
}

.carousel-button:hover {
    background-color: var(--charm);
}

.carousel-button--left {
    left: -12px;
    transform: translateY(-50%);
}

.carousel-button--right {
    right: -12px;
    transform: translateY(-50%);
}

/* Ajustes para dispositivos móviles */
@media (max-width: 768px) {
    .carousel-container {
        padding: 0 8px;
        margin: 1rem 0;
    }

    .carousel {
        gap: 6px;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .product-card {
        flex: 0 0 95%;
        min-width: 95%;
        scroll-snap-align: start;
    }

    .carousel-button {
        width: 30px;
        height: 30px;
    }

    .carousel-button--left {
        left: 2px;
    }

    .carousel-button--right {
        right: 2px;
    }
}

@media (min-width: 769px) {
    .carousel {
        justify-content: flex-start;
        scrollbar-width: none; /* Firefox */
    }
    .carousel::-webkit-scrollbar {
        display: none; /* Chrome, Safari y Opera */
    }
    .product-card {
        flex: 0 0 30vw;
        min-width: 300px;
        max-width: 350px;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        padding: 0 5px;
        margin: 1rem 0;
    }

    .carousel {
        gap: 4px;
    }

    .product-card {
        flex: 0 0 92%;
        min-width: 92%;
    }

    .carousel-button {
        width: 25px;
        height: 25px;
    }

    .carousel-button--left {
        left: -12px;
        transform: translateY(-50%);
    }

    .carousel-button--right {
        right: -12px;
        transform: translateY(-50%);
    }
}

/* Estilos para bloques de categoría en bebidas.html */
.category-block {
    background: var(--catskill-white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 2rem auto;
    padding: 2rem;
    max-width: 800px;
    border: 2px solid var(--aquamarine-blue);
}

.category-block .main__title {
    font-family: 'Lobster Two', 'Montserrat Alternates', Arial, Helvetica, sans-serif;
    font-size: 2.5rem;
    color: var(--charm);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.category-block .main__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 2px;
    background: var(--aquamarine-blue);
    box-shadow: 0 0 8px var(--aquamarine-blue);
}

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

.product-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--aquamarine-blue);
    font-size: 1.1rem;
    color: var(--text-color);
    transition: transform 0.3s ease;
}

.product-list li:hover {
    transform: translateX(10px);
}

.product-list li:last-child {
    border-bottom: none;
}

.product-price {
    font-family: 'Lobster Two', 'Montserrat Alternates', Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
    color: var(--charm);
    font-weight: bold;
    margin-left: 1rem;
}

@media (max-width: 768px) {
    .category-block {
        margin: 1rem 0;
        padding: 1.5rem;
    }
    
    .category-block .main__title {
        font-size: 2rem;
    }
    
    .product-list li {
        font-size: 1rem;
        padding: 0.8rem 0;
    }
    
    .product-price {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .category-block {
        margin: 0.8rem 0;
        padding: 1rem;
    }
    
    .category-block .main__title {
        font-size: 1.8rem;
    }
    
    .product-list li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }
    
    .product-price {
        font-size: 1rem;
    }
}

.row-categories {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 2.5rem;
}

.row-categories .category-block {
    flex: 1 1 0;
    min-width: 220px;
    max-width: 400px;
    margin: 0;
    border-radius: 12px;
    border: 2px solid var(--aquamarine-blue);
}

@media (max-width: 900px) {
    .row-categories {
        flex-direction: column;
        gap: 1.2rem;
        align-items: stretch;
    }
    .row-categories .category-block {
        max-width: 100%;
        min-width: 0;
    }
}

@media (min-width: 901px) {
    .row-categories .category-block {
        border: 2px solid var(--aquamarine-blue);
    }
}

/* Estilos para el favicon circular */
link[rel="icon"] {
    display: none;
}

/* Franja promocional */
.promotional-banner {
    background: #fbd8c8 !important;
    border-top: 2px solid #daa19c;
    border-bottom: 2px solid #daa19c;
    padding: 2rem 0;
    margin: 3rem 0;
    text-align: center;
    border-radius: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.promotional-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.promotional-banner__text {
    font-family: 'Funnel Display', 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #181818 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

/* Etiqueta de producto */
.product-label {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fbd8c8 !important;
    color: #181818 !important;
    border: 2px solid #daa19c !important;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.product-card__image {
    position: relative;
}

@media (max-width: 768px) {
    .promotional-banner {
        padding: 1.5rem 1rem;
        margin: 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .promotional-banner__text {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .product-label {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .promotional-banner {
        padding: 1rem 0.8rem;
        margin: 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .promotional-banner__text {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
    }
    
    .product-label {
        font-size: 0.6rem;
        padding: 0.15rem 0.5rem;
        top: 5px;
        right: 5px;
    }
}

/* Tarjeta de producto no disponible */
.product-card--unavailable {
    opacity: 0.5;
    filter: grayscale(100%);
    position: relative;
}
.product-label--unavailable {
    background: #b71c1c;
    color: #fff;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 8px;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 16px;
  margin: 40px auto;
  max-width: 900px;
}
@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}
.products-grid .product-card {
  width: 100%;
}
h1.main__title {
    color: #fff;
}
@media (max-width: 400px) {
  .category-card__title {
    font-size: 1rem !important;
    word-break: break-word !important;
    white-space: normal !important;
    padding: 0.5rem !important;
  }
}
@media (max-width: 480px) {
  .main__subtitle {
    font-size: 44px !important;
    padding: 10px 16px !important;
    word-break: break-word !important;
    line-height: 1.2 !important;
  }
}
@media (max-width: 350px) {
  .main__subtitle {
    font-size: 34px !important;
    padding: 8px 10px !important;
  }
}
.category-block .main__title {
    color: #73d0d0 !important;
}
@media (max-width: 480px) {
  .category-block .main__title {
    color: #73d0d0 !important;
  }
}
@media (max-width: 350px) {
  .category-block .main__title {
    color: #73d0d0 !important;
  }
}

@media (max-width: 600px) {
  .product-card__price {
    margin-left: 0;
    text-align: left;
    display: block;
  }
}

.product-card__price {
  margin-left: 0;
  text-align: left;
  display: block;
}

.category-block .product-price {
    font-family: 'Funnel Display', 'Open Sans', Arial, Helvetica, sans-serif;
}

.img-ajustada {
    /* Sin estilos, restaurado a estado original */
}

.product-card__button {
  background: var(--aquamarine-blue);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.7rem;
  box-shadow: 0 2px 8px rgba(110, 222, 201, 0.15);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  outline: none;
  display: inline-block;
  align-self: flex-start;
}
.product-card__button:hover, .product-card__button:focus {
  background: var(--charm);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 16px rgba(110, 222, 201, 0.25);
}

body {
    background-color: #f8fafc;
    padding-top: 200px;
}

@media (max-width: 768px) {
    body {
        padding-top: 100px; /* Ajusta según la altura de la nav en móvil */
    }
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        z-index: 1000;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 80px; /* Ajusta según la altura de la nav en móvil pequeño */
    }
}

.nav.nav--compact {
    /* En escritorio, solo animar el padding y el background */
    transition: padding 1.2s cubic-bezier(0.4,0,0.2,1), background 1.2s cubic-bezier(0.4,0,0.2,1);
    min-height: unset !important;
    height: unset !important;
}

@media (max-width: 768px) {
    .nav {
        transition: height 1.2s cubic-bezier(0.4,0,0.2,1), min-height 1.2s cubic-bezier(0.4,0,0.2,1), padding 1.2s cubic-bezier(0.4,0,0.2,1), background 1.2s cubic-bezier(0.4,0,0.2,1);
    }
    .nav.nav--compact {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        min-height: 36px !important;
        height: 36px !important;
        transition: height 1.2s cubic-bezier(0.4,0,0.2,1), min-height 1.2s cubic-bezier(0.4,0,0.2,1), padding 1.2s cubic-bezier(0.4,0,0.2,1), background 1.2s cubic-bezier(0.4,0,0.2,1);
    }
}

.main {
    /* sin padding lateral extra */
}

@media (max-width: 768px) {
    .main {
        /* sin padding lateral extra */
    }
    .main__title {
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .main {
        /* sin padding lateral extra */
    }
    .main__title {
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .nav.nav--compact .nav__logo-link {
        top: -50px;
    }
}
