.ecommerce {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    scroll-margin-top: 70px;
    margin: 0px 55px 10px 20px;
    margin-bottom: 6rem;
}

.ecommerce .titulo {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
    padding-left: 3rem;
}

.ecommerce-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    width: fit-content;
}

.ecommerce-badge i {
    font-size: 0.8rem;
    color: #4fc3f7;
}

.ecommerce-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.08;
    color: #ffffff;
    margin-bottom: 1.2rem;
}

.ecommerce-title .highlight-blue {
    background: linear-gradient(135deg, #1a73e8, #4fc3f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ecommerce-title .highlight-dark {
    color: #ffffff;
}

.ecommerce-title .highlight-purple {
    background: linear-gradient(135deg, #8645f7, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ecommerce-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 2rem;
    max-width: 90%;
}

.ecommerce-description strong {
    color: #1a73e8;
}

.ecommerce-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem 1.5rem;
    margin-bottom: 2rem;
}

.ecommerce-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 500;
}

.ecommerce-feature i {
    width: 28px;
    height: 28px;
    background: #e8f0fe;
    color: #1a73e8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.ecommerce-feature:hover i {
    background: #1a73e8;
    color: white;
    transform: scale(1.05);
}

.ecommerce-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #1a1a2e;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.ecommerce-cta:hover {
    background: #2d2d44;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 26, 46, 0.25);
}

.ecommerce-cta i {
    transition: transform 0.3s ease;
}

.ecommerce-cta:hover i {
    transform: translateX(4px);
}


/*======================================================
    VISTA
======================================================*/
.ecommerce .vista {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;

}

.e-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.e-container {
    max-width: 700px;
    height: 700px;
    width: 100%;
    background: #fff;
    border-radius: 24px;
    padding: 2rem 1.2rem 0.8rem;
    box-shadow: 10px 20px 38px rgba(92, 92, 92, 0.479);
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.e-header {
    background: #ffffff;
    padding: 0.5rem 1.5rem;
    border-bottom: 1px solid #f0f2f5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.e-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: #1a1a2e;
    text-decoration: none;
}

.e-logo i {
    font-size: 1.4rem;
    color: #1a73e8;
}

.e-header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.e-header-search {
    display: flex;
    align-items: center;
    background: #f5f7fa;
    border-radius: 30px;
    padding: 0.4rem 1rem;
    gap: 0.5rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.e-header-search:focus-within {
    border-color: #1a73e8;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.08);
}

.e-header-search i {
    font-size: 0.8rem;
    color: #6f7b8e;
}

.e-header-search input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
    color: #0b1a33;
    width: 120px;
}

.e-header-search input::placeholder {
    color: #b3c0d2;
}

.e-header-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: #4d5a6e;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 1rem;
}

.e-header-btn:hover {
    background: #f5f7fa;
    color: #1a1a2e;
}

.e-header-btn .cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #ea4335;
    color: white;
    font-size: 0.55rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.e-nav {
    gap: 0.4rem;
    padding: 0.6rem 1.5rem;
    border-bottom: 1px solid #f0f2f5;
    overflow-x: auto;
    flex-shrink: 0;
    scrollbar-width: none;
}

.e-nav::-webkit-scrollbar {
    display: none;
}

.e-nav-item {
    font-size: 0.7rem;
    font-weight: 500;
    color: #6f7b8e;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    cursor: default;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 1px solid transparent;
}

.e-nav-item:hover {
    color: #1a1a2e;
    background: #f5f7fa;
}

.e-nav-item.active {
    color: #1a73e8;
    background: #e8f0fe;
    border-color: #d2e3fc;
}

.e-main {
    flex: 1;
    padding: 1.2rem 1.5rem 1.5rem;
    overflow: hidden;
    position: relative;
    min-height: 440px;
}

.product-carousel {
    width: 100%;
    height: 100%;
    position: relative;
    min-height: 400px;
}

.product-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: scale(0.95) translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    padding: 0.2rem;
}

.product-slide.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: all;
}

.product-slide.exit {
    opacity: 0;
    transform: scale(0.9) translateY(-30px);
}

/* Estilos para la tarjeta de producto */
.e-product-card {
    width: 380px;
    height: 460px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    position: relative;
}

.e-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.e-product-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 13px;
}

/* Sección de imagen */
.e-product-image {
    position: relative;
    width: 100%;
    height: 210px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    overflow: hidden;
    flex-shrink: 0;
}

.image-emoji {
    font-size: 52px;
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.image-bg-circle {
    position: absolute;
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    top: -30px;
    right: -30px;
}

.image-bg-circle-2 {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 50%;
    bottom: -20px;
    left: -20px;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ff4757;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 3;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
}

/* Información del producto */
.e-product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.e-product-category {
    font-size: 11px;
    font-weight: 600;
    color: #6c7a89;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.e-product-name {
    font-size: 16px;
    font-weight: 700;
    color: #2d3436;
    margin: 0;
    line-height: 1.2;
}

.e-product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.stars {
    color: #f9ca24;
    font-size: 13px;
    letter-spacing: 1px;
}

.reviews {
    font-size: 12px;
    color: #a0a8b0;
}

.e-product-desc {
    font-size: 12px;
    color: #636e72;
    margin: 2px 0 4px 0;
    line-height: 1.3;
}

/* Precio */
.e-product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 4px 0 8px 0;
}

.current {
    font-size: 20px;
    font-weight: 800;
    color: #2d3436;
}

.old {
    font-size: 14px;
    color: #b2bec3;
    text-decoration: line-through;
}

.discount {
    font-size: 12px;
    font-weight: 700;
    color: #00b894;
    background: #e0f7f1;
    padding: 2px 10px;
    border-radius: 12px;
    margin-left: 2px;
}

/* Acciones */
.e-product-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.e-product-btn {
    flex: 1;
    background: #2d3436;
    color: white;
    border: none;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.e-product-btn i {
    font-size: 14px;
}

.e-product-btn:hover {
    background: #1a1e20;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(45, 52, 54, 0.25);
}

.e-product-btn-outline {
    width: 44px;
    height: 44px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #636e72;
    font-size: 16px;
}

.e-product-btn-outline:hover {
    background: #ff4757;
    border-color: #ff4757;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.25);
}

.e-product-btn-outline i {
    transition: transform 0.3s ease;
}

.e-product-btn-outline:hover i {
    transform: scale(1.1);
}

/* Ajuste para iconos de Font Awesome si se usan */
.fas, .far {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.e-product-image.img-1 { background: linear-gradient(135deg, #1a73e8, #4fc3f7); }
.e-product-image.img-2 { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.e-product-image.img-3 { background: linear-gradient(135deg, #ea4335, #f6685d); }
.e-product-image.img-4 { background: linear-gradient(135deg, #34a853, #66bb6a); }
.e-product-image.img-5 { background: linear-gradient(135deg, #fbbc05, #fdd835); }
.e-product-image.img-6 { background: linear-gradient(135deg, #00bcd4, #4dd0e1); }


.e-product-image .product-badge.hot {
    background: linear-gradient(135deg, #ea4335, #f6685d);
    color: white;
}

.e-product-image .product-badge.new {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    color: white;
}

.e-product-image .product-badge.offer {
    background: linear-gradient(135deg, #34a853, #66bb6a);
    color: white;
}

.e-product-image .product-badge.popular {
    background: linear-gradient(135deg, #fbbc05, #fdd835);
    color: #1a1a2e;
}

.carousel-controls-e {
    position: absolute;
    top: 10rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30rem;
    z-index: 5;
}

.carousel-control-e {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #eef2f8;
    color: #0b1a33;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.7rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(8px);
}

.carousel-control-e:hover {
    background: #ffffff;
    border-color: #1a1a2e;
    color: #1a1a2e;
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.carousel-control-e:active {
    transform: scale(0.95);
}

.e-footer {
    padding: 0.6rem 1.5rem 0.8rem;
    border-top: 1px solid #f0f2f5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    background: #fafbff;
    border-radius: 0 0 24px 24px;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.e-footer-indicators {
    display: flex;
    gap: 0.4rem;
}

.e-footer-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dce3ed;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    position: relative;
}

.e-footer-dot:hover {
    background: #b3c0d2;
    transform: scale(1.15);
}

.e-footer-dot.active {
    background: #1a1a2e;
    width: 28px;
    border-radius: 4px;
}

.e-footer-dot.active::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 6px;
    border: 2px solid rgba(26, 26, 46, 0.15);
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

.e-footer-info {
    font-size: 0.55rem;
    color: #b3c0d2;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.e-footer-info span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.e-footer-info i {
    font-size: 0.6rem;
    color: #6f7b8e;
}

/* ==========================================
   RESPONSIVE - ECOMMERCE SECTION
   ========================================== */

/* Tablet */
@media (max-width: 1024px) {
    .ecommerce {
        grid-template-columns: 1fr 1fr;
        margin: 0px 20px 10px 20px;
        gap: 20px;
    }

    .ecommerce .titulo {
        padding-left: 2rem;
        padding-right: 1rem;
    }

    .ecommerce-title {
        font-size: 2.6rem;
    }

    .ecommerce-description {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .ecommerce-features {
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem 1rem;
    }

    .ecommerce-feature {
        font-size: 0.8rem;
    }

    .ecommerce-feature i {
        width: 24px;
        height: 24px;
        font-size: 0.6rem;
    }

    .ecommerce-cta {
        font-size: 0.8rem;
        padding: 0.6rem 1.6rem;
    }

    .ecommerce .vista {
        padding: 15px;
    }

    .e-container {
        height: 600px;
        max-width: 100%;
        padding: 1.5rem 1rem 0.6rem;
        border-radius: 20px;
    }

    .e-header {
        padding: 0.4rem 1.2rem;
    }

    .e-logo {
        font-size: 1rem;
    }

    .e-logo i {
        font-size: 1.2rem;
    }

    .e-header-search input {
        width: 90px;
        font-size: 0.7rem;
    }

    .e-header-btn {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }

    .e-header-btn .cart-count {
        width: 18px;
        height: 18px;
        font-size: 0.5rem;
    }

    .e-nav {
        padding: 0.4rem 1.2rem;
    }

    .e-nav-item {
        font-size: 0.65rem;
        padding: 0.2rem 0.8rem;
    }

    .e-main {
        padding: 1rem 1.2rem 1.2rem;
        min-height: 360px;
    }

    .product-carousel {
        min-height: 340px;
    }

    .e-product-card {
        width: 320px;
        height: 400px;
        border-radius: 16px;
    }

    .e-product-card-inner {
        padding: 11px;
    }

    .e-product-image {
        height: 180px;
        border-radius: 12px;
    }

    .image-emoji {
        font-size: 44px;
    }

    .image-bg-circle {
        width: 110px;
        height: 110px;
    }

    .image-bg-circle-2 {
        width: 80px;
        height: 80px;
    }

    .product-badge {
        font-size: 10px;
        padding: 3px 10px;
    }

    .e-product-name {
        font-size: 14px;
    }

    .e-product-category {
        font-size: 10px;
    }

    .e-product-desc {
        font-size: 11px;
    }

    .e-product-price .current {
        font-size: 18px;
    }

    .e-product-price .old {
        font-size: 12px;
    }

    .e-product-price .discount {
        font-size: 11px;
        padding: 2px 8px;
    }

    .e-product-btn {
        font-size: 12px;
        padding: 8px 12px;
    }

    .e-product-btn-outline {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .carousel-control-e {
        width: 50px;
        height: 50px;
        font-size: 0.6rem;
    }

    .carousel-controls-e {
        gap: 20rem;
        top: 8rem;
    }

    .e-footer {
        padding: 0.5rem 1.2rem 0.6rem;
    }

    .e-footer-dot {
        width: 8px;
        height: 8px;
    }

    .e-footer-dot.active {
        width: 22px;
    }

    .e-footer-info {
        font-size: 0.5rem;
        gap: 0.8rem;
    }
}

/* Móvil */
@media (max-width: 768px) {
    .ecommerce {
        display: flex;
        flex-direction: column;
        margin: 0px 10px 10px 10px;
        gap: 15px;
    }

    .ecommerce .titulo {
        padding: 1.5rem 1.5rem;
        padding-left: 1.5rem;
        order: 1;
        width: 100%;
    }

    .ecommerce .vista {
        order: 2;
        width: 100%;
        padding: 10px;
        min-height: 500px;
    }

    .ecommerce-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.8rem;
    }

    .ecommerce-badge i {
        font-size: 0.7rem;
    }

    .ecommerce-title {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }

    .ecommerce-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }

    .ecommerce-features {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem 0.8rem;
        margin-bottom: 1.5rem;
    }

    .ecommerce-feature {
        font-size: 0.75rem;
        gap: 0.4rem;
    }

    .ecommerce-feature i {
        width: 22px;
        height: 22px;
        font-size: 0.55rem;
        border-radius: 6px;
    }

    .ecommerce-cta {
        font-size: 0.75rem;
        padding: 0.5rem 1.4rem;
        gap: 0.4rem;
    }

    .ecommerce-cta i {
        font-size: 0.8rem;
    }

    .e-container {
        height: 520px;
        max-width: 100%;
        padding: 1rem 0.8rem 0.5rem;
        border-radius: 16px;
        box-shadow: 5px 10px 25px rgba(92, 92, 92, 0.3);
    }

    .e-header {
        padding: 0.3rem 0.8rem;
        flex-wrap: wrap;
        gap: 0.4rem;
    }

    .e-logo {
        font-size: 0.85rem;
        gap: 0.4rem;
    }

    .e-logo i {
        font-size: 1rem;
    }

    .e-header-actions {
        gap: 0.5rem;
    }

    .e-header-search {
        padding: 0.3rem 0.6rem;
    }

    .e-header-search input {
        width: 70px;
        font-size: 0.65rem;
    }

    .e-header-search i {
        font-size: 0.7rem;
    }

    .e-header-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .e-header-btn .cart-count {
        width: 16px;
        height: 16px;
        font-size: 0.45rem;
        top: -4px;
        right: -4px;
    }

    .e-nav {
        padding: 0.3rem 0.8rem;
        gap: 0.2rem;
    }

    .e-nav-item {
        font-size: 0.55rem;
        padding: 0.15rem 0.6rem;
    }

    .e-main {
        padding: 0.8rem 0.8rem 1rem;
        min-height: 300px;
    }

    .product-carousel {
        min-height: 280px;
    }

    .e-product-card {
        width: 260px;
        height: 340px;
        border-radius: 14px;
    }

    .e-product-card-inner {
        padding: 9px;
    }

    .e-product-image {
        height: 150px;
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .image-emoji {
        font-size: 36px;
    }

    .image-bg-circle {
        width: 90px;
        height: 90px;
        top: -20px;
        right: -20px;
    }

    .image-bg-circle-2 {
        width: 60px;
        height: 60px;
        bottom: -15px;
        left: -15px;
    }

    .product-badge {
        font-size: 9px;
        padding: 2px 8px;
        top: 8px;
        left: 8px;
    }

    .e-product-category {
        font-size: 9px;
    }

    .e-product-name {
        font-size: 13px;
    }

    .e-product-rating .stars {
        font-size: 11px;
    }

    .e-product-rating .reviews {
        font-size: 10px;
    }

    .e-product-desc {
        font-size: 10px;
        margin: 1px 0 3px 0;
    }

    .e-product-price {
        margin: 2px 0 6px 0;
    }

    .e-product-price .current {
        font-size: 16px;
    }

    .e-product-price .old {
        font-size: 11px;
    }

    .e-product-price .discount {
        font-size: 10px;
        padding: 1px 7px;
    }

    .e-product-btn {
        font-size: 11px;
        padding: 7px 10px;
        border-radius: 10px;
        gap: 5px;
    }

    .e-product-btn i {
        font-size: 12px;
    }

    .e-product-btn-outline {
        width: 34px;
        height: 34px;
        font-size: 12px;
        border-radius: 10px;
    }

    .carousel-control-e {
        width: 40px;
        height: 40px;
        font-size: 0.5rem;
        border-width: 1px;
    }

    .carousel-controls-e {
        gap: 18rem;
        top: 6rem;
    }

    .e-footer {
        padding: 0.4rem 0.8rem 0.5rem;
        border-radius: 0 0 16px 16px;
        gap: 0.3rem;
    }

    .e-footer-indicators {
        gap: 0.3rem;
    }

    .e-footer-dot {
        width: 7px;
        height: 7px;
    }

    .e-footer-dot.active {
        width: 18px;
        border-radius: 3px;
    }

    .e-footer-dot.active::after {
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        border-width: 1.5px;
    }

    .e-footer-info {
        font-size: 0.45rem;
        gap: 0.5rem;
    }

    .e-footer-info i {
        font-size: 0.5rem;
    }
}

/* Móvil pequeño */
@media (max-width: 480px) {
    .ecommerce {
        margin: 0px 5px 10px 5px;
        gap: 10px;
    }

    .ecommerce .titulo {
        padding: 1rem 0.8rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .ecommerce-badge {
        font-size: 0.55rem;
        padding: 0.2rem 0.6rem;
        gap: 0.3rem;
        margin-bottom: 0.6rem;
    }

    .ecommerce-badge i {
        font-size: 0.6rem;
    }

    .ecommerce-title {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }

    .ecommerce-description {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .ecommerce-features {
        grid-template-columns: 1fr;
        gap: 0.4rem;
        margin-bottom: 1rem;
    }

    .ecommerce-feature {
        font-size: 0.7rem;
        gap: 0.3rem;
    }

    .ecommerce-feature i {
        width: 20px;
        height: 20px;
        font-size: 0.5rem;
        border-radius: 5px;
    }

    .ecommerce-cta {
        font-size: 0.7rem;
        padding: 0.4rem 1.2rem;
        gap: 0.3rem;
        border-radius: 40px;
    }

    .ecommerce-cta i {
        font-size: 0.7rem;
    }

    .ecommerce .vista {
        padding: 5px;
        min-height: 440px;
    }

    .e-container {
        height: 460px;
        padding: 0.6rem 0.5rem 0.4rem;
        border-radius: 12px;
        box-shadow: 3px 6px 15px rgba(92, 92, 92, 0.25);
    }

    .e-header {
        padding: 0.2rem 0.5rem;
        gap: 0.3rem;
    }

    .e-logo {
        font-size: 0.7rem;
        gap: 0.3rem;
    }

    .e-logo i {
        font-size: 0.85rem;
    }

    .e-header-actions {
        gap: 0.3rem;
    }

    .e-header-search {
        padding: 0.2rem 0.4rem;
        border-radius: 20px;
    }

    .e-header-search input {
        width: 50px;
        font-size: 0.55rem;
    }

    .e-header-search i {
        font-size: 0.6rem;
    }

    .e-header-btn {
        width: 26px;
        height: 26px;
        font-size: 0.65rem;
    }

    .e-header-btn .cart-count {
        width: 14px;
        height: 14px;
        font-size: 0.4rem;
        top: -5px;
        right: -5px;
    }

    .e-nav {
        padding: 0.2rem 0.5rem;
        gap: 0.15rem;
    }

    .e-nav-item {
        font-size: 0.45rem;
        padding: 0.1rem 0.4rem;
        border-radius: 12px;
    }

    .e-main {
        padding: 0.5rem 0.5rem 0.6rem;
        min-height: 260px;
    }

    .product-carousel {
        min-height: 240px;
    }

    .e-product-card {
        width: 220px;
        height: 290px;
        border-radius: 12px;
    }

    .e-product-card-inner {
        padding: 7px;
    }

    .e-product-image {
        height: 120px;
        border-radius: 8px;
        margin-bottom: 8px;
    }

    .image-emoji {
        font-size: 30px;
    }

    .image-bg-circle {
        width: 70px;
        height: 70px;
        top: -15px;
        right: -15px;
    }

    .image-bg-circle-2 {
        width: 50px;
        height: 50px;
        bottom: -10px;
        left: -10px;
    }

    .product-badge {
        font-size: 7px;
        padding: 1px 6px;
        top: 6px;
        left: 6px;
        border-radius: 12px;
    }

    .e-product-category {
        font-size: 8px;
    }

    .e-product-name {
        font-size: 11px;
    }

    .e-product-rating .stars {
        font-size: 9px;
        letter-spacing: 0.5px;
    }

    .e-product-rating .reviews {
        font-size: 8px;
    }

    .e-product-desc {
        font-size: 8px;
        margin: 1px 0 2px 0;
    }

    .e-product-price {
        margin: 1px 0 4px 0;
    }

    .e-product-price .current {
        font-size: 14px;
    }

    .e-product-price .old {
        font-size: 9px;
    }

    .e-product-price .discount {
        font-size: 8px;
        padding: 1px 5px;
        border-radius: 8px;
    }

    .e-product-btn {
        font-size: 9px;
        padding: 5px 8px;
        border-radius: 8px;
        gap: 4px;
    }

    .e-product-btn i {
        font-size: 10px;
    }

    .e-product-btn-outline {
        width: 28px;
        height: 28px;
        font-size: 10px;
        border-radius: 8px;
        border-width: 1.5px;
    }

    .carousel-control-e {
        width: 32px;
        height: 32px;
        font-size: 0.45rem;
        border-width: 1px;
        box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
    }

    .carousel-controls-e {
        gap: 16rem;
        top: 8rem;
    }

    .e-footer {
        padding: 0.3rem 0.5rem 0.4rem;
        border-radius: 0 0 12px 12px;
        gap: 0.2rem;
    }

    .e-footer-indicators {
        gap: 0.2rem;
    }

    .e-footer-dot {
        width: 6px;
        height: 6px;
    }

    .e-footer-dot.active {
        width: 14px;
        border-radius: 3px;
    }

    .e-footer-dot.active::after {
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        border-width: 1px;
    }

    @keyframes pulse-dot {
        0%, 100% { transform: scale(1); opacity: 1; }
        50% { transform: scale(1.1); opacity: 0.5; }
    }

    .e-footer-info {
        font-size: 0.4rem;
        gap: 0.3rem;
    }

    .e-footer-info i {
        font-size: 0.4rem;
    }

    .e-footer-info span {
        gap: 0.15rem;
    }
}

/* Móvil muy pequeño */
@media (max-width: 360px) {
    .ecommerce-title {
        font-size: 1.5rem;
    }

    .ecommerce .vista {
        min-height: 380px;
    }

    .e-container {
        height: 400px;
        padding: 0.4rem 0.3rem 0.3rem;
        border-radius: 10px;
    }

    .e-header {
        padding: 0.15rem 0.3rem;
    }

    .e-logo {
        font-size: 0.6rem;
    }

    .e-logo i {
        font-size: 0.7rem;
    }

    .e-header-search input {
        width: 35px;
        font-size: 0.45rem;
    }

    .e-header-search {
        padding: 0.15rem 0.3rem;
    }

    .e-header-btn {
        width: 22px;
        height: 22px;
        font-size: 0.55rem;
    }

    .e-header-btn .cart-count {
        width: 12px;
        height: 12px;
        font-size: 0.35rem;
    }

    .e-nav-item {
        font-size: 0.4rem;
        padding: 0.05rem 0.3rem;
    }

    .e-main {
        padding: 0.3rem 0.3rem 0.4rem;
        min-height: 220px;
    }

    .product-carousel {
        min-height: 200px;
    }

    .e-product-card {
        width: 180px;
        height: 240px;
        border-radius: 10px;
    }

    .e-product-card-inner {
        padding: 5px;
    }

    .e-product-image {
        height: 100px;
        border-radius: 6px;
        margin-bottom: 6px;
    }

    .image-emoji {
        font-size: 24px;
    }

    .image-bg-circle {
        width: 55px;
        height: 55px;
    }

    .image-bg-circle-2 {
        width: 40px;
        height: 40px;
    }

    .product-badge {
        font-size: 6px;
        padding: 1px 4px;
        top: 4px;
        left: 4px;
    }

    .e-product-name {
        font-size: 9px;
    }

    .e-product-category {
        font-size: 7px;
    }

    .e-product-rating .stars {
        font-size: 7px;
    }

    .e-product-rating .reviews {
        font-size: 7px;
    }

    .e-product-desc {
        font-size: 7px;
    }

    .e-product-price .current {
        font-size: 12px;
    }

    .e-product-price .old {
        font-size: 8px;
    }

    .e-product-price .discount {
        font-size: 7px;
        padding: 1px 4px;
    }

    .e-product-btn {
        font-size: 8px;
        padding: 4px 6px;
        border-radius: 6px;
        gap: 3px;
    }

    .e-product-btn i {
        font-size: 8px;
    }

    .e-product-btn-outline {
        width: 24px;
        height: 24px;
        font-size: 8px;
        border-radius: 6px;
    }

    .carousel-control-e {
        width: 26px;
        height: 26px;
        font-size: 0.4rem;
    }

    .carousel-controls-e {
        gap: 13rem;
        top: 6rem;
    }

    .e-footer {
        padding: 0.2rem 0.3rem 0.3rem;
    }

    .e-footer-dot {
        width: 5px;
        height: 5px;
    }

    .e-footer-dot.active {
        width: 12px;
    }

    .e-footer-info {
        font-size: 0.35rem;
        gap: 0.2rem;
    }

    .e-footer-info i {
        font-size: 0.35rem;
    }
}