/* ===== ESTILOS GENERALES ===== */
body {
    background-color: white;
}

/* ===== NAVBAR ===== */
.main-navbar {
    background-color: #5869fc;
}

.navbar-brand {
    color: white !important;
}

.navbar-text {
    color: white;
}

.nav-link {
    color: white !important;
}

.navbar-categories {
    background-color: #5869fc;
    border-radius: 10px;
}

/* ===== LOGO ===== */
.logo-container {
    padding: 5px;
}

.logo-img {
    max-width: 400px;
    width: 100%;
}

/* ===== BOTONES ===== */
.btn-presupuesto {
    background-color: #28a745;
    border-color: #28a745;
    color: white;
}

.btn-primary-custom {
    background-color: #5869fc;
    border-color: #5869fc;
    color: white;
}

.btn-primary-custom:hover {
    background-color: #4654d8;
    border-color: #4654d8;
}

/* ===== PRODUCTOS ===== */
.products-container {
    max-width: 1200px;
    margin: auto;

    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;   /* clave: alinea todas por arriba */
    justify-content: space-between; /* o center, space-around, etc. */
    gap: 15px; 
}

.product-card {
    width: 160px !important;
    min-height: 315px !important;
    height: auto !important;
    display: flex;
    flex-direction: column;
}

.product-card .view {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #f8f9fa;
}

.product-image {
    max-width: 100%;
    max-height: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
}


.product-body {
    padding-top: 0.25rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-title {
    margin-bottom: 0.3rem;
    line-height: 1;
    font-size: 15px;
}

.product-description {
    line-height: 1.2;
    font-size: 12px;
    flex: 1;
}

.product-card .btn-primary-custom {
    margin-top: auto;
    margin-bottom: 7px;
}

/* ===== MODAL ===== */
.modal-header-custom {
    background-color: #5869fc;
    color: white;
}

.modal-header-custom .close {
    color: white;
}

.modal-product-img {
    max-width: 150px;
    max-height: 150px;
}

.modal-product-title {
    font-weight: bold;
}

.modal-product-description {
    color: #6c757d;
    font-size: 0.875rem;
}

/* ===== FOOTER ===== */
.main-footer {
    background-color: lightgray;
}

/* ===== NUEVA VERSIÓN DE CATEGORÍAS ===== */
.categories-grid {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 12px;
    padding: 15px 0;
}

/* Mostrar grid en desktop */
@media (min-width: 768px) {
    .categories-grid.d-none.d-md-block {
        display: grid !important;
    }
}

.category-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 15px 10px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 95px;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(88, 105, 252, 0.2);
    border-color: #5869fc;
    text-decoration: none;
    color: #5869fc;
}

.category-card.active {
    background: #5869fc;
    color: white;
    border-color: #5869fc;
}

.category-card.active:hover {
    background: #4654d8;
    border-color: #4654d8;
}

.category-icon {
    font-size: 1.0rem;
    margin-bottom: 8px;
    opacity: 0.8;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    opacity: 1;
}

.category-card.active .category-icon {
    color: white;
    opacity: 1;
}

.category-name {
    font-weight: 500;
    font-size: 0.85rem;
    line-height: 1.2;
    display: block;
}

.category-count {
    font-size: 0.7rem;
    opacity: 0.7;
    margin-top: 3px;
    display: block;
}

/* Efecto hover con gradiente */
.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(88, 105, 252, 0.1), transparent);
    transition: left 0.5s;
}

.category-card:hover::before {
    left: 100%;
}

/* ===== MOBILE CATEGORIES MODAL STYLES ===== */
.mobile-categories-trigger {
    padding: 15px 0;
    text-align: center;
}

.btn-mobile-categories {
    background: white;
    border: 2px solid #5869fc;
    color: #5869fc;
    border-radius: 25px;
    padding: 12px 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(88, 105, 252, 0.1);
}

.btn-mobile-categories:hover,
.btn-mobile-categories:focus {
    background: #5869fc;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(88, 105, 252, 0.3);
}

.btn-mobile-categories:active {
    transform: translateY(0);
}

.current-category {
    margin-top: 8px;
    text-align: center;
}

/* Modal Styles */
.categories-modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    padding: 20px 0;
}

.modal-category-item {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.modal-category-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(88, 105, 252, 0.2);
    border-color: #5869fc;
    text-decoration: none;
    color: #5869fc;
}

.modal-category-item.active {
    background: #5869fc;
    color: white;
    border-color: #5869fc;
    box-shadow: 0 4px 15px rgba(88, 105, 252, 0.3);
}

.modal-category-item.active:hover {
    background: #4654d8;
    border-color: #4654d8;
    color: white;
}

.modal-category-icon {
    font-size: 2rem;
    margin-bottom: 8px;
    opacity: 0.9;
}

.modal-category-item.active .modal-category-icon {
    color: white;
    opacity: 1;
}

.modal-category-name {
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.2;
    word-break: break-word;
}

.modal-category-check {
    position: absolute;
    top: 8px;
    right: 8px;
    color: white;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.2);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive para modal */
@media (max-width: 576px) {
    .categories-modal-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 12px;
        padding: 15px 0;
    }
    
    .modal-category-item {
        padding: 15px 10px;
        min-height: 90px;
    }
    
    .modal-category-icon {
        font-size: 1.5rem;
    }
    
    .modal-category-name {
        font-size: 0.8rem;
    }
}

/* Responsive para categorías desktop */
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        gap: 8px;
    }
    
    .category-card {
        padding: 12px 8px;
        min-height: 85px;
    }
    
    .category-icon {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }
    
    .category-name {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(75px, 1fr));
        gap: 6px;
    }
    
    .category-card {
        padding: 10px 6px;
        min-height: 80px;
    }
    
    .category-icon {
        font-size: 1.2rem;
    }
    
    .category-name {
        font-size: 0.75rem;
    }
}

/* ===== CONTENEDORES ===== */
.container-presupuesto {
    padding: 1rem;
    display: block;
    width: 100%;
    margin-bottom: 1rem;
}

/* ===== PRESUPUESTO Y CARRITO WRAPPER ===== */
.presupuesto-carrito-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

/* ===== CART BUTTON STYLES ===== */
.btn-cart {
    background: #5869fc;
    border: 2px solid #5869fc;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(88, 105, 252, 0.3);
}

.btn-cart:hover {
    background: #4654d8;
    border-color: #4654d8;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 105, 252, 0.4);
}

.btn-cart:active {
    transform: translateY(0) scale(0.95);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* ===== MOBILE BUTTON STYLES ===== */
.btn-presupuesto-mobile {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-presupuesto-mobile:active {
    transform: scale(0.98);
    box-shadow: 0 2px 10px rgba(40, 167, 69, 0.3);
}

.btn-presupuesto-link {
    text-decoration: none;
    flex: 1;
}

/* ===== CART MODAL STYLES ===== */
.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.3s ease;
}

.cart-item:hover {
    background-color: #f8f9fa;
}

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

.cart-item-image {
    flex: 0 0 60px;
}

.cart-item-image img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.2;
}

.cart-item-description {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.2;
}

.cart-item-quantity {
    flex: 0 0 auto;
}

.quantity-controls-cart {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 4px;
}

.btn-qty-cart {
    background: #5869fc;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.btn-qty-cart:hover {
    background: #4654d8;
    transform: scale(1.1);
}

.btn-qty-minus {
    background: #dc3545 !important;
}

.btn-qty-minus:hover {
    background: #c82333 !important;
}

.qty-display {
    font-weight: 600;
    min-width: 25px;
    text-align: center;
    color: #333;
}

.cart-item-actions {
    flex: 0 0 auto;
}

.cart-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

/* ===== TOAST CONFIRMATION STYLES ===== */
.toast-confirmation {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    z-index: 9999;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.toast-confirmation.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.toast-content i {
    font-size: 1.1rem;
}

/* ===== RESPONSIVE CART STYLES ===== */
@media (max-width: 768px) {
    .presupuesto-carrito-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-cart {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        align-self: flex-end;
    }
    
    .cart-badge {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
        top: -6px;
        right: -6px;
    }
    
    .cart-item {
        gap: 10px;
        padding: 12px;
    }
    
    .cart-item-image img {
        width: 50px;
        height: 50px;
    }
    
    .cart-item-name {
        font-size: 0.85rem;
    }
    
    .cart-item-description {
        font-size: 0.75rem;
    }
    
    .btn-qty-cart {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .cart-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .cart-actions .btn {
        width: 100%;
    }
    
    .toast-confirmation {
        top: 10px;
        right: 10px;
        left: 10px;
        padding: 10px 15px;
    }
}

/* ===== CART ALERT STYLES ===== */
#alertaCarritoAntiguo {
    border-left: 4px solid #ffc107;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
}

#alertaCarritoAntiguo .fas.fa-exclamation-triangle {
    color: #856404;
    font-size: 1.5rem;
}

#alertaCarritoAntiguo .btn {
    font-size: 0.85rem;
    padding: 4px 12px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

#alertaCarritoAntiguo .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

#alertaCarritoAntiguo .btn-outline-warning:hover {
    background: #ffc107;
    border-color: #ffc107;
    color: #212529;
}

/* Animación de entrada para la alerta */
@keyframes slideInAlert {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#alertaCarritoAntiguo.show {
    animation: slideInAlert 0.5s ease-out;
}

@media (max-width: 768px) {
    .container-presupuesto {
        padding: 0.5rem 1rem;
        margin-bottom: .8rem;
    }
}

/* ===== QUANTITY CONTROLS STYLES ===== */
.quantity-controls-universal {
    width: 100%;
}

.quantity-controls-mobile {
    width: 100%;
}

.quantity-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 8px;
    margin: 0 auto;
    max-width: 200px;
}

.btn-quantity {
    background: #5869fc;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(88, 105, 252, 0.3);
}

.btn-quantity:hover {
    background: #4654d8;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(88, 105, 252, 0.4);
}

.btn-quantity:active {
    transform: scale(0.95);
}

.btn-quantity-minus {
    background: #dc3545;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.btn-quantity-minus:hover {
    background: #c82333;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}

.quantity-display {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 12px 20px;
    margin: 0 15px;
    min-width: 60px;
    text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
    color: #333;
    transition: all 0.3s ease;
}

.quantity-display input.quantity-input {
    border: none;
    background: transparent;
    text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
    color: #333;
    width: 100%;
    padding: 0;
    margin: 0;
    outline: none;
    -moz-appearance: textfield;
}

.quantity-display input.quantity-input::-webkit-outer-spin-button,
.quantity-display input.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-display input.quantity-input:focus {
    color: #5869fc;
}

.quick-quantity-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-quick-qty {
    background: white;
    border: 2px solid #e9ecef;
    color: #666;
    border-radius: 20px;
    padding: 8px 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 45px;
    text-align: center;
}

.btn-quick-qty:hover {
    border-color: #5869fc;
    color: #5869fc;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(88, 105, 252, 0.2);
}

.btn-quick-qty.active {
    background: #5869fc;
    border-color: #5869fc;
    color: white;
    box-shadow: 0 2px 8px rgba(88, 105, 252, 0.3);
}

.btn-quick-qty:active {
    transform: scale(0.95);
}

/* Responsive para controles de cantidad */
@media (min-width: 768px) {
    .quantity-wrapper {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .btn-quantity {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .quantity-display {
        padding: 15px 25px;
        margin: 0 20px;
        min-width: 70px;
        font-size: 1.3rem;
    }
    
    .quick-quantity-buttons {
        justify-content: center;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .btn-quick-qty {
        padding: 10px 18px;
        font-size: 1rem;
        min-width: 50px;
    }
}

@media (max-width: 480px) {
    .quantity-wrapper {
        max-width: 180px;
    }
    
    .btn-quantity {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .quantity-display {
        padding: 10px 15px;
        margin: 0 10px;
        min-width: 50px;
        font-size: 1.1rem;
    }
    
    .btn-quick-qty {
        padding: 6px 12px;
        font-size: 0.9rem;
        min-width: 40px;
    }
}

.section-products {
    margin-top: 2rem;
    margin-bottom: 2rem;
    clear: both;
}

/* ===== SEARCH SECTION STYLES ===== */
.search-section {
    margin: 5px 0 20px 0;
    padding: 0 15px;
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
}

.search-wrapper {
    background: white;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.search-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 20px;
    color: #5869fc;
    font-size: 1.2rem;
    pointer-events: none;
    z-index: 1;
}

.search-input {
    width: 100%;
    border: 2px solid transparent;
    border-radius: 30px;
    padding: 15px 50px 15px 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.search-input:focus {
    outline: none;
    border-color: #5869fc;
    background: white;
    box-shadow: 0 0 0 3px rgba(88, 105, 252, 0.1);
}

.btn-clear-search {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: #dc3545;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px 10px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.btn-clear-search:hover {
    opacity: 1;
    transform: scale(1.1);
}

.search-results-info {
    padding: 10px 20px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    font-size: 0.9rem;
    color: #666;
}

.search-results-info span {
    font-weight: 500;
}

/* Search Highlight */
.product-card.search-match {
    animation: highlightCard 0.5s ease;
}

.product-card.search-hidden {
    display: none !important;
}

@keyframes highlightCard {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 4px 20px rgba(88, 105, 252, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
}

/* Mobile Search Styles */
@media (max-width: 768px) {
    .search-section {
        margin: 5px 0 15px 0;
        padding: 0 10px;
    }
    
    .search-wrapper {
        border-radius: 25px;
    }
    
    .search-input {
        padding: 12px 45px;
        font-size: 0.95rem;
    }
    
    .search-icon {
        left: 15px;
        font-size: 1.1rem;
    }
    
    .btn-clear-search {
        right: 10px;
        font-size: 1.1rem;
    }
    
    .search-results-info {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .search-input {
        padding: 10px 40px;
        font-size: 0.9rem;
    }
    
    .search-icon {
        left: 12px;
        font-size: 1rem;
    }
    
    .btn-clear-search {
        right: 8px;
        font-size: 1rem;
        padding: 3px 8px;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .navbar-text {
        display: none;
    }
    
    .product-card {
        width: 140px !important;
        min-height: 320px !important;
        height: auto !important;
        display: flex;
        flex-direction: column;
    }
    
    .logo-img {
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .product-card {
        width: 140px !important;
        min-height: 310px !important;
        height: auto !important;
        display: flex;
        flex-direction: column;
    }
    
    .product-title {
        font-size: 13px;
    }
    
    .product-description {
        font-size: 11px;
    }
}


/* ===== ALINEAR CARDS EN PRODUCTOS ===== */
.products-container ul.list-inline {
    display: flex;          /* convierte el UL en flexbox */
    flex-wrap: wrap;        /* permite que las cards bajen de fila */
    justify-content: center;
    align-items: flex-start;/* todas las cards arrancan alineadas por arriba */
    gap: 15px;              /* espacio pareja entre cards */
    padding: 0;             /* quita padding por defecto */
    margin: 0;              /* quita márgenes por defecto */
    list-style: none;       /* quita bullets si quedaran */
}

.products-container ul.list-inline li {
    display: flex;          /* para centrar o ajustar su contenido si hace falta */
    align-items: flex-start;
    vertical-align: top;    /* en caso de que vuelva a inline-block */
    margin: 0;              /* eliminamos márgenes redundantes */
}

/* conservamos la altura fija de la card para que no varíe */
.product-card {
    width: 160px !important;
    min-height: 345px !important;
    height: auto !important;
    display: flex;
    flex-direction: column;
}

/* Asegurar que el body del producto tenga espacio para el botón de video */
.product-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: visible !important;
}

/* ===== BOTÓN DE VIDEO ===== */
.btn-video {
    background-color: #ff0000;
    border-color: #ff0000;
    color: white;
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-video:hover {
    background-color: #cc0000;
    border-color: #cc0000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.3);
}

.btn-video i {
    margin-right: 5px;
}
