@font-face {
    font-family: "Cooper Hewitt";
    src: url("../fonts/CooperHewitt-Light.woff") format("woff"),
        url("../fonts/CooperHewitt-Thin.woff") format("woff");
}

@font-face {
    font-family: "Skranji";
    src: url("../fonts/Skranji-Regular.ttf");
    font-weight: normal;
}

@font-face {
    font-family: "Skranji";
    src: url("../fonts/Skranji-Bold.ttf");
    font-weight: bold;
}

@font-face {
    font-family: "Winky";
    src: url("../fonts/WinkyRough-VariableFont_wght.ttf");
    font-weight: normal;
}

@font-face {
    font-family: "PlexMono";
    src: url("../fonts/IBMPlexMono-Light.ttf");
    font-weight: lighter;
}

@font-face {
    font-family: "Kanit";
    src: url("../fonts/Kanit-Light.ttf");
    font-weight: lighter;
}

:root {
    --white: #ffffff;
    --light-grey: #d9d9d9;
    --beaver: #d4a373;
    --jet: #344e41;
    --eerie-black: #081c15;
    --black: #081c15;
    --hover: #f7a072;
    --crem: #faedcd;
    --border-gr: linear-gradient(to right, #7209b7 0% #fcbf49 100%);
    --green: #6a994e;
}

body {
    background-color: var(--jet);
}

svg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -10;
    filter: blur(15px);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
    scrollbar-width: thin;
    scrollbar-color: var(--crem) var(--eerie-black);
    scroll-behavior: smooth;
}

html::-webkit-scrollbar {
    width: 8px;
}

html::-webkit-scrollbar-track {
    background-color: var(--eerie-black);
}

html::-webkit-scrollbar-thumb {
    background-color: var(--crem);
}

::selection {
    background-color: #776254;
}

/* Header */

.header {
    background-color: var(--jet);
    padding: 0.8rem 3rem;
    display: flex;
    justify-content: start;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1;
    transition: 0.5s;
    box-shadow: 0 10px 16px -6px rgb(5 5 5 / 30%),
        0 25px 10px -24px rgb(5 5 5 / 10%);
}

.header.abajo {
    backdrop-filter: blur(15px);
    background: rgba(41, 41, 41, 0.3);
}

.header .logo__header {
    width: 4.5rem;
}

.header .logo__shop {
    width: 3.5rem;
    height: 3.5rem;
}

nav.nav_menu.active {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    top: 6.3rem;
    width: 100%;
    height: auto;
    background-color: var(--eerie-black);
    box-shadow: 0 10px 16px -6px rgb(5 5 5 / 30%),
        0 25px 10px -24px rgb(5 5 5 / 10%);
    animation: ease 0.4s left forwards;
}

@keyframes left {
    0% {
        left: 100%;
    }
    100% {
        left: 0;
    }
}

nav.nav_menu.active a {
    padding: 2rem;
    font-family: "Kanit";
    letter-spacing: 0.1rem;
    text-decoration: none;
    color: var(--crem);
    font-size: 2rem;
    width: 100%;
    text-align: center;
}

nav.nav_menu.active a:hover {
    color: var(--hover);
    background-color: var(--black);
    transition: all 0.4s;
}

nav.nav_menu.not-active a {
    display: none;
}

.btn {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translate(-50%, -50%);
    width: 3rem;
    cursor: pointer;
}

#button span {
    display: block;
    width: 100%;
    box-shadow: 0 10px 16px -6px rgb(5 5 5 / 30%),
        0 25px 10px -24px rgb(5 5 5 / 10%);
    border-radius: 3px;
    height: 0.3rem;
    background: var(--crem);
    transition: all 0.3s;
    position: relative;
}

span + span {
    margin-top: 0.6rem;
}

.active span:nth-child(1) {
    animation: ease 0.7s top forwards;
}

.not-active span:nth-child(1) {
    animation: ease 0.7s top-2 forwards;
}

.active span:nth-child(2) {
    animation: ease 0.7s scaled forwards;
}

.not-active span:nth-child(2) {
    animation: ease 0.7s scaled-2 forwards;
}

.active span:nth-child(3) {
    animation: ease 0.7s bottom forwards;
}

.not-active span:nth-child(3) {
    animation: ease 0.7s bottom-2 forwards;
}

@keyframes top {
    0% {
        top: 0;
        transform: rotate(0);
    }
    50% {
        top: 1rem;
        transform: rotate(0);
    }
    100% {
        top: 1rem;
        transform: rotate(45deg);
    }
}

@keyframes top-2 {
    0% {
        top: 0.8rem;
        transform: rotate(45deg);
    }
    50% {
        top: 0.8rem;
        transform: rotate(0deg);
    }
    100% {
        top: 0;
        transform: rotate(0deg);
    }
}

@keyframes bottom {
    0% {
        bottom: 0;
        transform: rotate(0);
    }
    50% {
        bottom: 0.8rem;
        transform: rotate(0);
    }
    100% {
        bottom: 0.8rem;
        transform: rotate(135deg);
    }
}

@keyframes bottom-2 {
    0% {
        bottom: 0.8rem;
        transform: rotate(135deg);
    }
    50% {
        bottom: 0.8rem;
        transform: rotate(0);
    }
    100% {
        bottom: 0;
        transform: rotate(0);
    }
}

@keyframes scaled {
    50% {
        transform: scale(0);
    }
    100% {
        transform: scale(0);
    }
}

@keyframes scaled-2 {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

/* Home */

.home {
    width: 100%;
    height: auto;
    background-color: var(--jet);
}

.container_image-home {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    padding: 12rem 0 5rem 0;
}

.image_home {
    max-width: 65%;
    transition: 0.4s;
    animation: image 2s;
}

.home_info {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.home_text-1 {
    font-family: "Kanit";
    color: var(--white);
    font-size: 2rem;
}

.home_text-2 {
    font-family: "Skranji";
    color: var(--black);
    font-size: 3.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.home_text-3 {
    font-family: "PlexMono";
    color: var(--white);
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    width: 28rem;
    margin: 0 auto;
    text-align: start;
}

.text-type {
    position: relative;
}

.text-type::after {
    content: "|";
    font-weight: 900;
    position: absolute;
    right: 0;
    color: var(--black);
    background-color: var(--jet);
    width: 100%;
    animation: typing 4s steps(28) alternate infinite;
}

@keyframes typing {
    to {
        width: 0%;
    }
}

.container_parrafo-info {
    display: none;
}

.git_button {
    background-color: var(--light-grey);
    border-radius: 3rem;
    padding: 0.6rem 2rem 0.5rem 2rem;
    color: var(--black);
    font-family: "Skranji";
    font-weight: bold;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin: 2rem 0;
    border: none;
    cursor: pointer;
}

.contact_button {
    display: none;
}

.links {
    display: flex;
    justify-content: center;
    padding: 2rem 0 6rem 0;
}

.links img {
    width: 2.4rem;
    margin: 0 0.5rem;
}

.links .icon-CodePen {
    width: 2.1rem;
    margin-top: 2px;
}

/* Sobre Nosotros */

.sobrenoso {
    background-color: var(--eerie-black);
    width: 100%;
    height: auto;
}

.sobrenoso h1 {
    display: block;
    text-align: center;
    color: var(--white);
    font-family: "Skranji";
    font-size: 2.4rem;
    letter-spacing: 0.1rem;
    padding-top: 6rem;
}

.container_texto-sobrenoso {
    display: flex;
    flex-direction: column;
    padding: 4rem 3rem 3rem 3rem;
}

.title_sobrenoso {
    font-family: "Kanit";
    color: var(--crem);
    text-align: center;
    font-size: 2.2rem;
    letter-spacing: 0.1rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.texto_sobrenoso {
    color: var(--light-grey);
    font-family: "Winky";
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
    white-space: pre-line;
    text-align: justify;
    line-height: 2.2rem;
}

.container_image-sobrenoso {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}

.image_sobrenoso {
    width: 65%;
    margin-bottom: 5rem;
    border-bottom: 2px solid var(--jet);
}

/* Habilidades */

.habilidades {
    background-color: var(--black);
    width: 100%;
    height: auto;
}

.habilidades h1 {
    display: block;
    text-align: center;
    color: var(--white);
    font-family: "Skranji";
    font-size: 2.4rem;
    letter-spacing: 0.1rem;
    padding: 6rem 0 5rem 0;
}

.puntos1-habilidades,
.puntos2-habilidades {
    display: none;
}

.container_fondoPuntos--habilidades img {
    display: none;
}

.cards_container--habilidades {
    display: grid;
    grid-template-columns: 13rem 13rem;
    grid-template-rows: 14rem 14rem 14rem;
    gap: 3rem;
    justify-content: center;
    padding-bottom: 5rem;
}

.cards--habilidades {
    background-color: #222;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 13rem;
    height: 14rem;
    cursor: pointer;
    box-shadow: 0 10px 16px -6px rgb(5 5 5 / 30%),
        0 25px 10px -24px rgb(5 5 5 / 10%);
}

.cards--habilidades img {
    margin-top: 0.7rem;
    width: 9rem;
}

.cards--habilidades p {
    color: var(--white);
    font-family: "Winky";
    letter-spacing: 0.1rem;
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
}

/* Servicios */

.services {
    background-color: var(--eerie-black);
    width: 100%;
    height: auto;
    padding: 0 1rem 1rem 1rem;
}

.services h1 {
    display: block;
    text-align: center;
    color: var(--white);
    font-family: "Skranji";
    font-size: 2.4rem;
    letter-spacing: 0.1rem;
    padding: 6rem 0 5rem 0;
}

.puntos1-proyectos,
.puntos2-proyectos {
    display: none;
}

.cards_container--services {
    margin-bottom: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cards--services {
    border-radius: 20px;
    padding-bottom: 2rem;
    background-color: var(--jet);
    min-width: 33rem;
    max-width: 38rem;
    box-shadow: 0 10px 16px -6px rgb(5 5 5 / 30%),
        0 25px 10px -24px rgb(5 5 5 / 10%);
}

.card_portafolio {
    margin-bottom: 4rem;
    border: 1px solid var(--eerie-black);
}

.container_imgCard--services {
    margin-bottom: 1rem;
    border-radius: 20px 20px 0 0;
}

.container_imgCard--services img {
    width: 100%;
    border-radius: 20px 20px 0 0;
}

.container_textCard--services {
    padding: 0 2rem;
    margin-bottom: 2rem;
}

.container_textCard--services h2 {
    font-family: "Kanit";
    letter-spacing: 0.1rem;
    font-size: 1.8rem;
    color: var(--crem);
    font-weight: bold;
    display: inline;
}

.container_textCard--services p {
    color: var(--white);
    font-family: "Winky";
    letter-spacing: 0.1rem;
    font-size: 1.4rem;
    margin-top: 1rem;
}

.container_btn--services {
    display: flex;
    justify-content: center;
}

.container_btn--services a {
    text-decoration: none;
    display: inline-block;
    margin: 0 1.5rem;
}

.container_btn--services button {
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15.8rem;
    letter-spacing: 0.1rem;
    font-weight: bold;
    cursor: pointer;
}

.btn_repo {
    padding: 0.8rem 0;
    background: none;
    color: var(--crem);
    border: 1px solid var(--crem);
    font-family: "Skranji";
}

.container_btn--services .btn_demo:hover {
    background: var(--crem);
    box-shadow: 0px 13px 33px -14px rgba(0, 0, 0, 0.75);
    transition: all 0.4s ease;
}

.btn_repo img {
    width: 2rem;
    margin-right: 0.8rem;
}

.container_btn--services .btn_repo:hover {
    background: var(--jet);
    box-shadow: 0px 13px 33px -14px rgba(0, 0, 0, 0.75);
    transition: all 0.4s ease;
}

/** Planes y Precios **/

.plans {
    background-color: var(--eerie-black);
    width: 100%;
    height: auto;
    padding: 0 1rem 1rem 1rem;
}

.plans h1 {
    display: block;
    text-align: center;
    color: var(--white);
    font-family: "Skranji";
    font-size: 2.9rem;
    letter-spacing: 0.1rem;
    padding: 6rem 0 5rem 0;
}

.cards_container--plans {
    margin-bottom: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.cards--plan {
    border-radius: 20px;
    padding-bottom: 2rem;
    background-color: var(--jet);
    min-width: 34rem;
    max-width: 43rem;
    box-shadow: 0 10px 16px -6px rgb(5 5 5 / 30%),
        0 25px 10px -24px rgb(5 5 5 / 10%);
    margin-bottom: 4rem;
    text-align: center;
    justify-content: center;
    margin: 5rem;
    margin-left: 0.7rem;
    margin-right: 0.5rem;
    position: relative;
}

.cards--plan:hover {
    box-shadow: 2px 7px 5px var(--jet);
    border: var(--crem) 2px solid;
    top: -10px;
}

.card_plan--tittle-1 {
    font-family: "Skranji";
    color: #fff;
    font-size: 3rem;
    padding: 2.2rem;
    padding-bottom: 0.7rem;
}

.card_plan--tittle-2 {
    font-family: "Skranji";
    color: var(--eerie-black);
    font-size: 4.5rem;
    padding: 0.2rem;
}

.card_plan--subtittle {
    font-family: "Kanit";
    color: #aaa;
    font-size: 1.9rem;
    padding: 0.2rem;
    font-style: italic;
}

@media (max-width: 980px) {
    .container_imgcard--plan img {
        height: 100px;
        width: 100px;
        filter: drop-shadow(0 10px 16px -6px rgb(8 8 8 / 10%));
    }

    .card_plan--carac {
        font-family: "Kanit";
        color: var(--crem);
        font-size: 1.6rem;
        padding: 1.4rem;
    }

    .parraf-right p,
    .parraf-left p {
        display: none;
    }
}
.card_plan--button {
    font-size: 16px;
    font-weight: 200;
    letter-spacing: 1px;
    padding: 13px 20px 13px;
    outline: 0;
    border: 2px solid black;
    cursor: pointer;
    position: relative;
    background-color: rgba(0, 0, 0, 0);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    margin: 3rem;
    color: var(--crem);
    font-family: "Kanit";
}

.card_plan--button:hover {
    box-shadow: 0 10px 16px -6px rgb(5 5 5 / 30%),
        0 25px 10px -24px rgb(5 5 5 / 10%);
    border-radius: 6px;
}

.card_plan--button:after {
    content: "";
    background-color: var(--eerie-black);
    width: 100%;
    z-index: -1;
    position: absolute;
    height: 100%;
    top: 9px;
    left: 9px;
    transition: 0.3s;
}

.card_plan--button:hover:after {
    top: 0px;
    left: 0px;
    border-radius: 5px;
}

@media (min-width: 768px) {
    .card_plan--button {
        padding: 13px 50px 13px;
    }
}

/* Contacto */

.contacto {
    background-color: var(--eerie-black);
    width: 100%;
    height: auto;
    padding: 0 2rem 5rem 2rem;
}

.contacto h1 {
    display: block;
    text-align: center;
    color: var(--white);
    font-family: "Skranji";
    font-size: 2.4rem;
    letter-spacing: 0.1rem;
    padding: 6rem 0 4rem 0;
}

.container_img--contacto {
    display: none;
}

.container--contacto {
    width: 100%;
    background-color: var(--jet);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    box-shadow: 0 5px 9px #222;
}

.container_text--contacto {
    width: 100%;
}

.container_text--contacto p {
    font-size: 1.6rem;
    font-family: "Winky";
    color: var(--white);
    margin-bottom: 3rem;
    letter-spacing: 1px;
    line-height: 2.3rem;
}

.form-contact input {
    font-family: "Kanit";
    background: transparent;
    border: 1px solid var(--light-grey);
    width: 100%;
    padding: 1rem;
    border-radius: 1rem;
    color: var(--white);
    font-size: 1.6rem;
    outline: none;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.form-contact input::placeholder {
    color: var(--light-grey);
}

.form-contact .input-invalid {
    border: 1px solid #574438;
    color: #574438;
}

.form-contact textarea {
    background: transparent;
    border: 1px solid var(--light-grey);
    font-family: "Kanit";
    width: 100%;
    padding: 1rem;
    border-radius: 1rem;
    color: var(--white);
    font-size: 1.6rem;
    outline: none;
    margin-bottom: 3rem;
    letter-spacing: 1px;
    resize: none;
}

.form-contact textarea::placeholder {
    color: var(--light-grey);
}

.form-contact textarea::-webkit-scrollbar {
    width: 8px;
}

.form-contact textarea::-webkit-scrollbar-track {
    background-color: #776254;
}

.form-contact textarea::-webkit-scrollbar-thumb {
    background-color: #574438;
}

.btn_form--contacto {
    display: flex;
    justify-content: center;
}

.btn_form--contacto button {
    background: var(--eerie-black);
    border: none;
    font-family: "Skranji";
    width: 20rem;
    padding: 0.8rem 1rem;
    border-radius: 1rem;
    color: var(--white);
    font-size: 1.8rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 1s all;
}

.btn_form--contacto button:hover {
    background: var(--crem);
    color: var(--eerie-black);
    font-weight: bold;
    transform: scale(1.1);
    box-shadow: 0px 9px 15px -1px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.btn_form--contacto button:active {
    background: #574438;
}

/* Footer */

footer {
    background-color: var(--jet);
}

.contianer--footer {
    border-top: 1px solid var(--crem);
    width: 90%;
    margin: 0 auto;
    padding-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container_redes-footer a {
    text-decoration: none;
}

.container_redes-footer img {
    width: 3.5rem;
    margin: 0 0.5rem 1.5rem 0.5rem;
}

.container_redes-footer .icon_codepen--footer {
    width: 3.1rem;
    margin-bottom: 1.7rem;
}

.container_text--footer {
    padding-bottom: 1rem;
}

.container_text--footer span {
    font-family: "Skranji";
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.container_text--footer span:nth-child(1),
.container_text--footer span:nth-child(3) {
    color: var(--light-grey);
}

.container_text--footer span:nth-child(4) {
    color: var(--beaver);
    letter-spacing: 0.1rem;
    margin-left: 0.2rem;
}

@media screen and (max-width: 980px) {
    .org h1 {
        display: block;
        text-align: center;
        color: var(--white);
        font-family: "Skranji";
        font-size: 3.5rem;
        letter-spacing: 0.1rem;
        padding-top: 5rem;
        margin-bottom: 10rem;
    }

    .card-face h2 {
        color: var(--crem);
        text-transform: uppercase;
        font-weight: 900;
        margin-bottom: 30px;
        position: relative;
        letter-spacing: 0.2rem;
        width: auto;
        text-align: start;
    }

    .card-face p {
        padding: 3px;
        cursor: pointer;
        font-size: 1.2rem;
        font-family: "Winky";
    }

    .org {
        width: 100%;
        height: auto;
        background: var(--jet);
        padding: 1rem;
    }

    .org-container {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
        align-items: center;
    }

    .scene {
        width: 100%;
        height: 300px;
    }

    .card {
        width: 65%;
        height: 80%;
        position: relative;
        transform-style: preserve-3d;
        transition: transform 0.8s;
        margin: auto;
        font-family: "Skranji";
        font-size: 1.5rem;
        color: var(--crem);
        letter-spacing: 0.1rem;
    }

    .card.flipped {
        transform: rotateX(180deg);
    }

    .card-face {
        position: absolute;
        width: 100%;
        height: 100%;
        backface-visibility: hidden;
        background: var(--black);
        border-radius: 12px;
        border: solid 1px var(--jet);
        box-shadow: 0 10px 16px -6px rgb(5 5 5 / 30%),
            0 25px 10px -24px rgb(5 5 5 / 10%);
        padding: 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .card-front img {
        max-width: 80%;
        max-height: 150px;
        object-fit: contain;
        margin-bottom: 4rem;
        margin-top: 0;
        filter: drop-shadow(0 10px 16px -6px rgb(8 8 8 / 10%));
    }

    .card-back {
        transform: rotateX(180deg);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .corner-button {
        position: absolute;
        bottom: 10px;
        padding: 8px 14px;
        border: none;
        font-family: "Skranji";
        font-weight: normal;
        letter-spacing: 0.1rem;
        border-radius: 6px;
        color: var(--crem);
        background: none;
        border: solid 1px var(--crem);
        font-size: 0.9rem;
        cursor: pointer;
        transition: 0.7s;
        margin-top: 5px;
    }

    .corner-button:hover {
        background-color: var(--jet);
        border: solid 1px var(--jet);
        transition: 0.7s;
    }

    .corner-button p {
        font-family: "Skranji";
    }
}

html,
body {
    overflow-x: hidden;
}

/** Car Shop **/

.cart-container {
    position: fixed;
    top: 6rem;
    right: -350px;
    width: 300px;
    background: var(--jet);
    color: var(--white);
    border: 2px solid var(--crem);
    border-radius: 12px 0 0 12px;
    box-shadow: 0 10px 16px -6px rgb(5 5 5 / 30%);
    z-index: 9999;
    transition: right 0.4s ease;
    padding: 1rem;
}

.cart-container.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--crem);
    padding-bottom: 0.5rem;
    font-family: 'Kanit';
}

.close-cart {
    background: none;
    border: none;
    color: var(--crem);
    font-size: 1.6rem;
    cursor: pointer;
}

.cart-items {
    margin-top: 1rem;
    max-height: 200px;
    overflow-y: auto;
}

.cart-items p {
    font-family: "Kanit";
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.cart-footer {
    border-top: 1px solid var(--crem);
    padding-top: 0.5rem;
    margin-top: 1rem;
    font-family: "Skranji";
    font-size: 1.5rem;
}

.cart-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--crem);
    color: var(--black);
    border: none;
    border-radius: 50%;
    font-size: 1.8rem;
    width: 4.2rem;
    height: 4.2rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 10000;
}

.logo__shop {
    cursor: pointer;
    transition: transform 0.2s;
    margin-left: 10rem;
}

.logo__shop:hover {
    transform: scale(1.1);
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    font-family: "Kanit";
    font-size: 1.4rem;
    color: var(--crem);
    border-bottom: 1px solid var(--light-grey);
    padding-bottom: 0.3rem;
}

.cart-icon-container {
    position: relative;
    display: inline-block;
}

.cart-count-bubble {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff6f61;
    color: white;
    font-size: 1.2rem;
    font-family: 'Kanit';
    font-weight: bold;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.remove-btn {
    background-color: transparent;
    border: 1px solid var(--hover);
    color: var(--hover);
    font-family: "Skranji";
    font-size: 1.1rem;
    padding: 0.5rem 0.7rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 7px;
    margin-top: 0;
}

.remove-btn:hover {
    background-color: var(--hover);
    color: var(--black);
}

@keyframes bounce {
    0% { transform: scale(1); }
    30% { transform: scale(1.4); }
    60% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.cart-count-bounce {
    animation: bounce 0.4s ease;
}


/** ASISTENTE IA **/

.chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--green);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.chat-icon {
    width: 20px;
    height: 20px;
    filter: invert(1);
}

.chat-box {
    position: fixed;
    font-family: "Kanit";
    font-size: 1.5rem;
    bottom: 90px;
    right: 20px;
    width: 85vw;
    max-height: 500px;
    background: #ece5dd;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease;
    z-index: 999;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.chat-header {
    background-color: #075e54;
    color: white;
    padding: 16px;
    font-weight: bold;
    font-size: 14px;
    font-family: "Skranji";
}

.chat-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    font-size: 1.3rem;
}

.chat-input {
    display: flex;
    border-top: 1px solid #ccc;
    background-color: var(--crem);
}

.chat-input input {
    flex: 1;
    border: none;
    padding: 13px;
    font-size: 10px;
}

.chat-input button {
    background-color: var(--green);
    color: white;
    border: none;
    padding: 10px 13px;
    cursor: pointer;
}

.chat-options button {
    width: 85%;
    padding: 12px;
    margin: 8px 0;
    border: none;
    background-color: #dcf8c6;
    border-left: 5px solid var(--green);
    text-align: left;
    font-size: 11px;
    cursor: pointer;
    font-family: "Winky";
    font-size: 1.2rem;
}

.chat-options button:hover {
    background-color: #cdebb5;
}

.input-group {
    margin-top: 10px;
}

.input-group input {
    width: 90%;
    margin-bottom: 10px;
    padding: 10px;
    font-size: 11px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.input-group button {
    background-color: var(--green);
    color: white;
    border: none;
    padding: 8px;
    font-size: 12px;
    width: 90%;
    cursor: pointer;
    border-radius: 6px;
}

.producto-wrapper {
    position: relative;
    margin: 10px 0;
    max-width: 100%;
    padding-right: 50px;
    overflow: hidden;
}

.boton-carrito-flotante {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background-color: var(--eerie-black);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}
