:root {
            --primary-cyan: #297593;
            --dark-navy: #1e2b3c;
            --danger-red: #297593;
            --footer-bg: #297593;
            --success-color: #2ecc71;
            --danger-color: #e74c3c;
        }
        label .text-danger {
    margin-left: 2px;
}

    .list-profile-menu .list-group-item {
        padding: 1.2rem 1.5rem;
        transition: all 0.3s;
        color: #64748b;
        font-weight: 500;
        display: flex;
        align-items: center;
    }
    .list-profile-menu .list-group-item.active {
        background-color: #f8fafc !important;
        color: #00cae3 !important;
        border-left: 4px solid #00cae3 !important;
    }
    .icon-menu { width: 18px; margin-right: 12px; }
    .animate-fade { animation: fadeIn 0.4s ease-in-out; }
    @keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

        .main-card {
        height: fit-content; /* Obliga a la tarjeta a solo ocupar el espacio de su contenido */
    }

        /* Evita que en pantallas pequeñas (celulares) intente ser sticky */
    @media (max-width: 991px) {
        .sticky-top {
            position: relative !important;
            top: 0 !important;
            margin-top: 20px;
        }
    }

            /* --- ESTILOS PARA EL NUEVO DISEÑO DE YAPE --- */
.yape-container {
    background-color: #7b1fa2; /* Color morado de Yape */
    color: white;
    padding: 20px;
    border-radius: 0 0 4px 4px; /* Redondear solo abajo */
    text-align: center;
}

.yape-instruction {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.yape-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

/* En pantallas más grandes, poner QR y datos lado a lado */
@media (min-width: 768px) {
    .yape-details {
        flex-direction: row;
        justify-content: space-around;
        align-items: flex-start;
    }
}

.qr-section, .company-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr-placeholder-new {
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    width: 180px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.qr-placeholder-new img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* ESTO ES CLAVE: Muestra el QR completo sin cortarlo */
}

.btn-pay-yape {
    background-color: #00cba9; /* Color verde azulado de Yape */
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.yape-titular {
    font-size: 0.85rem;
}

.company-info {
    text-align: center;
}

.yape-logo-container {
    background-color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.yape-logo-container i {
    color: #7b1fa2 !important; /* Icono morado */
}

.company-name {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 5px;
}

.company-ruc {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.yape-celular-label {
    font-size: 0.9rem;
}

.yape-celular-num {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.whatsapp-note {
    font-size: 0.8rem;
    margin-top: 20px;
    color: #e0e0e0;
}

        /* Ajustes para los inputs del registro */
.form-control.bg-light {
    background-color: #f8f9fa !important;
    color: #495057;
}

.price-tag { font-size: 2.5rem; font-weight: 700; color: #1a1a1a; }
        .btn-buy { background: #000; color: #fff; border-radius: 10px; padding: 15px; font-weight: 600; transition: 0.3s; border: none; }
        .btn-buy:hover { background: #333; transform: translateY(-2px); color: #fff; }
        .feature-icon { width: 40px; height: 40px; background: #f0fdf4; color: #16a34a; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 15px; }
        .gallery-thumb { cursor: pointer; border: 2px solid transparent; transition: 0.2s; border-radius: 8px; }
        .gallery-thumb:hover, .gallery-thumb.active { border-color: #4f46e5; opacity: 1 !important; }

.form-control.bg-light:focus {
    background-color: #fff !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 188, 212, 0.1);
    border: 1px solid var(--primary-cyan);
}

        /* Badge de eliminación sobre la imagen */
.badge-danger {
    background-color: #f34770;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* Botón de proceder a la compra */
.btn-info {
    background-color: #00bcd4;
    border: none;
    border-radius: 4px;
}

        body {
            font-family: 'Rubik', sans-serif;
            background-color: #f8f9fa;
        }

        .bg-success { background-color: var(--success-color) !important; }
        .bg-danger { background-color: var(--danger-color) !important; }

        /* Estilo del Toast idéntico a tu imagen */
        .toast {
            min-width: 350px;
            border: none;
            border-radius: 8px;
            opacity: 1 !important;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        .toast-header {
            padding: 1rem;
            border: none;
        }
        .toast-body {
            padding: 1.5rem 1rem;
            background: #fff;
            color: #444;
        }

                /* Estilo para el banner del Breadcrumb */
.shop-banner {
    background-color: #1e2b3c; /* Azul marino de C/CONNECT */
    background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png'); /* Opcional: patrón sutil */
    height: 120px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">"; /* Cambiamos la barra / por el signo > de tu imagen */
    color: rgba(255,255,255,0.5);
}

.breadcrumb-item a {
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-item a:hover {
    opacity: 1 !important;
    color: var(--primary-cyan) !important;
}

        /* --- NAVBAR --- */
        .navbar-main {
            background: #fff;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }
        .logo { font-size: 30px; font-weight: 700; color: #000 !important; text-decoration: none; }
        .logo span { color: var(--primary-cyan); }
        .nav-link { color: var(--dark-navy) !important; font-weight: 500; margin: 0 10px; }
        .nav-link.updates { color: var(--danger-red) !important; }

        /* --- CARD CON EFECTO HOVER --- */
        .product-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid #eee;
            transition: 0.3s;
            margin-bottom: 30px;
        }
.card-img-wrap {
  height: 200px;
  background: #f0f2f5;
  position: relative;
  overflow: hidden;
  border-top-left-radius: .5rem;
  border-top-right-radius: .5rem;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
        
        /* Capa de botones (Overlay) */
        .card-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(27, 156, 196, 0.7); /* Fondo cyan translúcido */
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            opacity: 0; /* Oculto por defecto */
            transition: 0.4s ease;
        }
        .product-card:hover .card-overlay {
            opacity: 1; /* Aparece al pasar el mouse */
        }
        .btn-action {
            background: white;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-cyan);
            transition: 0.2s;
            cursor: pointer;
        }
        .btn-action:hover {
            background: var(--dark-navy);
            color: white;
            transform: scale(1.1);
        }

        .card-body-custom { padding: 20px; }
        .price-label {
            background: #e0faff;
            color: var(--primary-cyan);
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 4px;
        }

        /* --- FOOTER RESPONSIVE --- */
        .footer-cyan {
            background-color: var(--footer-bg);
            color: white;
            padding: 60px 0;
        }
        .footer-cyan h3 { font-size: 32px; font-weight: 800; }
        .footer-cyan h5 { font-weight: 700; margin-bottom: 20px; }
        .footer-cyan a { color: white; display: block; margin-bottom: 10px; text-decoration: none; opacity: 0.9; }
        .footer-cyan a:hover { opacity: 1; text-decoration: underline; }

        .newsletter-box { display: flex; border-radius: 5px; overflow: hidden; }
        .newsletter-input { border: none; padding: 10px; flex: 1; outline: none; }
        .newsletter-btn { background: #0088a5; color: white; border: none; padding: 10px 20px; font-weight: 600; }

        .footer-black { background: #000; color: #777; padding: 20px 0; font-size: 13px; }