:root {
    --primary-color: #018ec0;
    --primary-color-dark: #01709a;
    --secondary-color: #7ea8bd;
    --secondary-color-dark: #5d8597;
    --accent-color: #3a9abe;
    --accent-color-dark: #2b7994;
    --muted-color: #5c6f79;
    --light-color: #bbd6e3;
    --soft-light-color: rgba(186, 214, 227, 0.4);
    --background-color: #fcfdfd;
    --surface-color: #ffffff;
    --border-color: #d4e4ed;
    --shadow-color: rgba(18, 46, 58, 0.08);
    --text-color: #122b36;
    --text-color-light: #2a4450;
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover,
a:focus {
    color: var(--accent-color);
}

section[id] {
    scroll-margin-top: 96px;
}

.offcanvas {
    z-index: 1052;
}

.bg-primary-light {
    background: linear-gradient(180deg, rgba(1, 142, 192, 0.08) 0%, rgba(123, 166, 189, 0.2) 100%);
}

.bg-surface {
    background-color: var(--surface-color);
}

.carousel-hero-img {
    max-height: 500px;
    object-fit: cover;
    border-radius: 16px;
}

.text-primary-custom {
    color: var(--primary-color) !important;
}

.text-secondary-custom {
    color: var(--secondary-color) !important;
}

.text-muted-custom {
    color: var(--muted-color);
}

.btn-primary-custom,
.btn-secondary,
.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary-custom:hover,
.btn-primary-custom:focus,
.btn-secondary:hover,
.btn-primary:hover,
.btn-primary:focus,
.btn-secondary:focus {
    background: var(--primary-color-dark);
    border-color: var(--primary-color-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(1, 142, 192, 0.25);
}

.btn-secondary-custom {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-secondary-custom:hover,
.btn-secondary-custom:focus {
    background: var(--secondary-color-dark);
    border-color: var(--secondary-color-dark);
    box-shadow: 0 8px 18px rgba(126, 168, 189, 0.25);
    transform: translateY(-2px);
}

.btn-outline-custom {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.btn-outline-custom:hover,
.btn-outline-custom:focus {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(1, 142, 192, 0.25);
}

.map-iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 18px 32px rgba(18, 43, 54, 0.1);
}

.badge-custom {
    background-color: var(--light-color);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.card-custom,
.card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 18px 35px var(--shadow-color);
    overflow: hidden;
}

.card-custom .card-header,
.card .card-header {
    background: transparent;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
}

.form-control,
.form-select {
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 0.65rem 0.95rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(1, 142, 192, 0.2);
}

/* -------------------------------------------------------------------------- */
/* Header & Navigation                                                         */
/* -------------------------------------------------------------------------- */

.header-container {
    position: sticky;
    top: 0;
    background: rgba(252, 253, 253, 0.98);
    backdrop-filter: blur(12px);
    z-index: 1050;
    border-bottom: 1px solid rgba(212, 228, 237, 0.7);
    box-shadow: 0 12px 24px rgba(18, 43, 54, 0.08);
}

.header-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
}

.logo-container {
    display: flex;
    justify-content: center;
}

.img-header {
    width: 130px;
    height: auto;
}

.nav-cart-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.navbar {
    flex-grow: 1;
}

.navbar-light .navbar-nav .nav-link,
.navbar .nav-link {
    color: var(--text-color);
    font-weight: 500;
    border-radius: 12px;
    padding: 0.5rem 0.85rem;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus,
.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar-light .navbar-nav .nav-link.active {
    background: rgba(1, 142, 192, 0.12);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.nav-icon {
    color: var(--primary-color);
    margin-right: 0.35rem;
}

@media (min-width: 992px) {
    .header-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
    }

    .logo-container {
        padding: 0;
    }

    .nav-cart-container {
        padding: 0;
    }
}

@media (max-width: 991.98px) {
    .header-content {
        padding-bottom: 1.5rem;
    }

    .navbar-collapse {
        margin-top: 1rem;
    }

    .navbar-nav {
        gap: 0.5rem;
    }
}

/* -------------------------------------------------------------------------- */
/* Hero                                                                        */
/* -------------------------------------------------------------------------- */

#hero {
    position: relative;
    background: var(--background-color);
    color: var(--text-color);
    padding: 5rem 0 6rem;
    overflow: hidden;
}

.hero-top-strip {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 14px;
    background: var(--accent-color);
}

.hero-layout {
    position: relative;
    z-index: 1;
}

.hero-image-wrapper {
    background: linear-gradient(160deg, rgba(58, 154, 190, 0.12), rgba(1, 142, 192, 0.18));
    border-radius: 28px;
    padding: 1.5rem;
    box-shadow: 0 28px 60px rgba(18, 43, 54, 0.12);
}

.hero-illustration {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.hero-copy {
    color: #0f4052;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #3a8abe;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 700;
    color: #0b4a63;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-color-light);
    max-width: 500px;
}

.hero-actions .btn {
    min-width: 190px;
}

.btn-hero-primary {
    background-color: #3a8abe;
    border-color: #3a8abe;
    color: #fcfdfd;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-hero-primary:hover,
.btn-hero-primary:focus {
    background-color: #2f7aa9;
    border-color: #2f7aa9;
    color: #fcfdfd;
    box-shadow: 0 14px 24px rgba(58, 154, 190, 0.25);
    transform: translateY(-2px);
}

.btn-hero-outline {
    background-color: transparent;
    border: 2px solid #3a8abe;
    color: #3a8abe;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.btn-hero-outline:hover,
.btn-hero-outline:focus {
    background-color: rgba(58, 154, 190, 0.1);
    color: #2f7aa9;
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(58, 154, 190, 0.2);
}

@media (max-width: 991.98px) {
    .hero-image-wrapper {
        margin-bottom: 2rem;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }
}

/* -------------------------------------------------------------------------- */
/* Cards & Sections                                                            */
/* -------------------------------------------------------------------------- */

.categoria-card {
    border-radius: 18px;
    padding: 2rem 1rem;
    background: linear-gradient(160deg, rgba(1, 142, 192, 0.08), rgba(187, 214, 227, 0.35));
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.categoria-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 30px rgba(18, 43, 54, 0.12);
}

.icono img,
.categoria-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.producto-card {
    height: 500px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(18, 43, 54, 0.18);
}

.img-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.card-img-producto {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.5s ease;
}

.producto-card:hover .card-img-producto {
    transform: scale(1.08);
}

.card-img-overlay {
    background: linear-gradient(to top, rgba(9, 32, 43, 0.8), rgba(9, 32, 43, 0.4) 40%, rgba(9, 32, 43, 0));
    padding: 2rem;
}

.card-index-title {
    font-size: 1.6rem;
    font-weight: 600;
}

.card-index-text {
    font-size: 1rem;
    color: #f1f8fb;
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.product-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 28px rgba(18, 43, 54, 0.18);
}

.testimonial-carousel .carousel-item {
    min-height: 200px;
}

.form-container {
    max-width: 480px;
    margin: 0 auto;
}

.fragrance-toggle {
    color: var(--primary-color);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.fragrance-toggle:hover {
    color: var(--accent-color);
}

.fragrance-list {
    list-style: none;
    padding-left: 1.25rem;
    margin-top: 0.5rem;
    display: none;
}

.fragrance-list.open {
    display: block;
}

.login-required-card {
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 18px 32px rgba(18, 43, 54, 0.12);
}

.login-required-icon {
    font-size: 3rem;
}

.empty-cart-icon {
    font-size: 3rem;
    color: var(--secondary-color);
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #fff;
}

.auth-container {
    border: none;
    border-radius: 16px;
    box-shadow: 0 18px 32px rgba(18, 43, 54, 0.12);
}

#resendBtn:disabled,
#resendEmailBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* -------------------------------------------------------------------------- */
/* Footer                                                                     */
/* -------------------------------------------------------------------------- */

footer {
    background: linear-gradient(180deg, rgba(1, 142, 192, 0.08) 0%, rgba(187, 214, 227, 0.18) 100%);
    padding: 3rem 0;
    font-size: 0.95rem;
}

footer h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

footer ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer a {
    color: var(--muted-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color);
}

.social-icons a {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--primary-color);
}

.social-icons a:hover {
    color: var(--accent-color);
}

.newsletter-form .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.newsletter-form .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Estilos para la línea de tiempo */
.timeline {
    position: relative;
    padding: 0;
    list-style: none;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    margin-left: -1px;
    background-color: var(--primary-color);
}

.timeline>li {
    position: relative;
    margin-bottom: 50px;
}

.timeline>li:before,
.timeline>li:after {
    content: " ";
    display: table;
}

.timeline>li:after {
    clear: both;
}

.timeline>li>.timeline-panel {
    float: left;
    position: relative;
    width: 46%;
    padding: 20px;
    border: 1px solid #d4d4d4;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
}

.timeline>li>.timeline-badge {
    color: #fff;
    width: 50px;
    height: 50px;
    font-size: 1.4em;
    text-align: center;
    position: absolute;
    top: 16px;
    /* Ajusta según sea necesario */
    left: 50%;
    margin-left: -25px;
    background-color: var(--primary-color);
    z-index: 100;
    border-radius: 50%;
    display: flex;
    /* Usa Flexbox */
    justify-content: center;
    /* Centra horizontalmente */
    align-items: center;
    /* Centra verticalmente */
}

.timeline>li.timeline-inverted>.timeline-panel {
    float: right;
}

.timeline>li.timeline-inverted>.timeline-panel:before {
    border-left-width: 0;
    border-right-width: 15px;
    left: -15px;
    right: auto;
}

.timeline>li.timeline-inverted>.timeline-panel:after {
    border-left-width: 0;
    border-right-width: 14px;
    left: -14px;
    right: auto;
}


.sticky-sidebar {
    position: sticky;
    top: 100px;
    height: calc(100vh - 40px);
    overflow-y: auto;
}

.pagination .page-item.active .page-link {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.pagination .page-link {
    color: var(--secondary-color);
}

.pagination .page-link:hover {
    color: #fff;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.product-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.quick-view-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .quick-view-btn {
    opacity: 1;
}

.nav-link {
    color: var(--primary-color);
}

.nav-link:hover {
    color: #fff;
    background-color: var(--secondary-color);
}

.cantidad {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 1.2rem;
    font-weight: bold;
}

.fragrance-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
}

.fragrance-item:last-child {
    border-bottom: none;
}

.product-gall {
    position: relative;
}

.gall-main-image {
    width: 100%;
    height: auto;
}

.gall-thumbnails {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.gall-thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin: 0 5px;
    cursor: pointer;
    border: 2px solid transparent;
}

.gall-thumbnail.active {
    border-color: var(--secondary-color);
}

.gall-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    font-size: 2rem;
    padding: 10px;
    cursor: pointer;
}

.gall-nav.prev {
    left: 10px;
}

.gall-nav.next {
    right: 10px;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    overflow: hidden;
}

.quantity-btn {
    background-color: #f8f9fa;
    border: none;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    cursor: pointer;
}

.quantity-btn:hover {
    background-color: #e9ecef;
}




.product-count {
    margin-top: 15px;
}

.product-count .qtyminus,
.product-count .qtyplus {
    width: 34px;
    height: 34px;
    cursor: pointer;
    display: flex;
    /* Aplica flexbox dentro de los botones */
    justify-content: center;
    /* Centra horizontalmente */
    align-items: center;
    /* Centra verticalmente */
    font-size: 19px;
    border: none;
    /* Asegura que no haya bordes extra */
}

.product-count .qtyminus {
    border-radius: 3px 0 0 3px;
}

.product-count .qtyplus {
    border-radius: 0 3px 3px 0;
}

.product-count .qty {
    width: 60px;
    text-align: center;
}



.hidden {
    display: none;
}


/* From Uiverse.io by vinodjangid07 */
.button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    border: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 0px 4px rgba(0, 0, 0, 0.253);
    cursor: pointer;
    transition-duration: 0.3s;
    overflow: hidden;
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.svgIcon {
    width: 12px;
    transition-duration: 0.3s;
}

.svgIcon path {
    fill: white;
}

.button:hover {
    width: 140px;
    border-radius: 50px;
    transition-duration: 0.3s;
    background-color: var(--secondary-color);
    align-items: center;
}

.button:hover .svgIcon {
    /* width: 20px; */
    transition-duration: 0.3s;
    transform: translateY(-200%);
}

.button::before {
    position: absolute;
    bottom: -20px;
    content: "Volver al inicio";
    color: white;
    /* transition-duration: .3s; */
    font-size: 0px;
}

.button:hover::before {
    font-size: 13px;
    opacity: 1;
    bottom: unset;
    /* transform: translateY(-30px); */
    transition-duration: 0.3s;
}



.card {
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.card-img-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover .card-img-overlay {
    opacity: 1;
}

.card-index-title,
.card-index-text {
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.card:hover .card-index-title,
.card:hover .card-index-text,
.card:hover {
    transform: translateY(0);
    opacity: 1;
}


.product-card-destacado {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.product-card-destacado img {
    transition: transform 0.3s ease;
}

.product-card-destacado:hover img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-destacado:hover .product-overlay {
    opacity: 1;
}

.product-name {
    color: white;
    font-size: 1.2rem;
    text-align: center;
    padding: 10px;
}

.user-info-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.user-info-item {
    margin-bottom: 15px;
}

.user-info-label {
    font-weight: bold;
    color: var(--secondary-color);
}

.user-info-value {
    color: #333;
}


.carousel-item {
    position: relative;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

#ofertasCarousel {
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-inner img {
    width: 100%;
    height: auto;
}




.modal-confirm .modal-content {
    padding: 20px;
    border-radius: 5px;
    border: none;
}

.modal-confirm .modal-header {
    border-bottom: none;
    position: relative;
}

.modal-confirm h4 {
    text-align: center;
    font-size: 26px;
    margin: 30px 0 -15px;
}

.modal-confirm .form-control,
.modal-confirm .btn {
    min-height: 40px;
    border-radius: 3px;
}

.modal-confirm .close {
    position: absolute;
    top: -5px;
    right: -5px;
}

.modal-confirm .modal-footer {
    border: none;
    text-align: center;
    border-radius: 5px;
    font-size: 13px;
}

.modal-confirm .icon-box {
    color: #fff;
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: -70px;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    z-index: 9;
    background: var(--secondary-color);
    padding: 15px;
    text-align: center;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}

.modal-confirm .icon-box i {
    font-size: 58px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.modal-confirm.modal-dialog {
    margin-top: 80px;
}

.modal-confirm .btn {
    color: #fff;
    border-radius: 4px;
    background: var(--secondary-color);
    text-decoration: none;
    transition: all 0.4s;
    line-height: normal;
    border: none;
}

.modal-confirm .btn:hover {
    background: var(--secondary-color);
    opacity: 0.8;
}

.modal-confirm .btn-cancel:hover {
    background: #dc3545 !important;
}

.modal-confirm .btn-confirm:hover {
    background: #28a745 !important;
}

.trigger-btn {
    display: inline-block;
    margin: 100px auto;
}

.card-catalogo {
    height: 100%;
    /* Para que todas las tarjetas ocupen el mismo espacio vertical */
    display: flex;
    flex-direction: column;
}

.img-container {
    width: 100%;
    height: 350px;
    /* Ajusta la altura deseada */
    overflow: hidden;
}

.card-body {
    flex-grow: 1;
    /* Permite que el cuerpo crezca y tome el espacio necesario */
}

.card-title {
    font-size: 1rem;
    /* Ajusta el tamaño de fuente si es necesario */
    min-height: 40px;
    /* Asegura que el título ocupe espacio fijo */
}

.card-footer {
    background-color: #f8f9fa;
}

.auth-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 400px;
    width: 100%;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.icon-circle i {
    font-size: 2.5rem;
    color: white;
}


.wrapper {
    position: fixed;
    /* Asegura que la posición sea fija en la ventana */
    bottom: 50px;
    /* Espaciado desde la parte inferior */
    right: 10px;
    /* Espaciado desde la parte derecha */
    list-style: none;
    height: 120px;
    width: auto;
    padding-top: 40px;
    font-family: "Poppins", sans-serif;
    justify-content: center;
    z-index: 1000;
    /* Asegura que esté por encima de otros elementos */
}

.wrapper .icon {
    position: relative;
    border: solid;
    border-color: #25d366;

    border-radius: 50%;
    margin: 10px;
    width: 50px;
    height: 50px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background: #fff;
    color: #fff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #fff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .whatsapp:hover,
.wrapper .whatsapp:hover .tooltip,
.wrapper .whatsapp:hover .tooltip::before {
    background: #25d366;
    color: #fff;
}

.checkout_steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout_step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.checkout_step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
    color: white;
}

.checkout_step.active .checkout_step-icon {
    background-color: var(--secondary-color);
    color: white;
}

.checkout_step-arrow {
    font-size: 24px;
    color: black;
}

.checkout_step-text {
    color: var(--primary-color);
    font-size: 14px;
}

.checkout_step.active .checkout_step-text {
    color: var(--secondary-color);
    font-weight: bold;
}