.btn-logout{
    border: 0px;
    background-color: inherit;
    text-align: center;
    margin-left: 10px;
    color: var(--bs-dropdown-link-color);
}

.gradient-hero { 
    background: radial-gradient(#3d02b1, #5af9f3);
    color: #fff; 
    padding: 5rem 0; 
    margin-top: -20px;
} 

.gradient-hero h1 { 
    font-size: 3rem; 
    font-weight: bold; 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); 
} 

.myb{
    border-radius: 20px;
}

.gradient-hero p { 
    font-size: 1.2rem; 
    margin-bottom: 2rem; 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); 
} 

@keyframes pulse { 
    0% { 
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7); 
    } 

    70% { 
        box-shadow: 0 0 0 10px rgba(0, 123, 255, 0); 
    } 

    100% { 
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0); 
    } 
} 

.btn-pulse { 
    animation: pulse 1.5s infinite; 
}
.bi-exclamation-circle-fill {
            display: inline-block;
            line-height: 1;
}
@keyframes pulse-animation {
            0% { transform: scale(1); opacity: 0.8; }
            50% { transform: scale(1.1); opacity: 1; }
            100% { transform: scale(1); opacity: 0.8; }
        }

        .pulse-icon {
            display: inline-block;
            animation: pulse-animation 2s infinite ease-in-out;
            color: #a30937;
        }

        .error-wrapper {
            min-height: 70vh; /* Высота блока */
            display: flex;
            align-items: center;
            justify-content: center;
}

.profile-container {
    max-width: 500px;
    margin: 50px auto;
    background: #000000;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    padding-bottom: 20px;
    overflow: hidden;
}


    /* ФОТО: Здесь мы жестко фиксируем размер */
.profile-pic {
    width: 120px !important;  /* Фиксированная ширина */
    height: 120px !important; /* Фиксированная высота */
    object-fit: cover;        /* Обрезает края, не искажая пропорции */
    border-radius: 50%;
    border: 4px solid white;
    margin-top: -60px;        /* Наезжает на синий фон */
    background-color: white;
}

.info-section {
    padding: 15px;
}



.btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(110%);
}
body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

/* ===== PRODUCTOS DESTACADOS ===== */



.product-card {
    display: flex;
}

    /* Tarjeta */
.product-card-inner {
    border-radius: 16px;
    padding: 22px;
    text-align: center;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform .35s ease, box-shadow .35s ease;
}
.product-card-inner a.link{
    color: #03045e;
    text-decoration: none;
}
.product-card-inner a.link:hover{
    color: #00afb9;
    text-decoration: underline;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #ff416c, #ff4b2b); /* Красивый красный градиент */
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 75, 43, 0.3);
    transition: transform 0.2s;
    cursor: default;
}

.rating-badge i {
    margin-right: 8px; /* Отступ между сердечком и текстом */
}

.rating-badge:hover {
    transform: scale(1.05); /* Легкое увеличение при наведении */
}


    /* CONTENEDOR CUADRADO */
.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    /* 🔥 cuadrado perfecto */
    background: #000000;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 18px;
}

.product-image:hover img {
    background: #ffffff;
}

    /* IMAGEN AJUSTADA */
.product-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: transform .4s ease;
}
/* Hover premium */
.product-card-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

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

    /* Texto */
.product-card-inner h5 {
    font-weight: 600;
    margin-bottom: 6px;
}

.product-card-inner .price {
    font-weight: 700;
    margin-bottom: 14px;
}

    /* ===== ANIMACIONES SCROLL ===== */

.reveal-item {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal-item.active {
    opacity: 1;
    transform: translateY(0);
}