:root {
    --pludog-red: #BF2324;
    --pludog-red-dark: #8B1A1B;
    --pludog-red-light: #E34F50;
}

/* Modos de color */
[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-muted: #6c757d;
    --card-bg: #ffffff;
    --card-shadow: rgba(0,0,0,0.08);
    --navbar-bg: #BF2324;
    --navbar-text: #ffffff;
    --footer-bg: #1a1a1a;
    --footer-text: #ffffff;
    --border-color: #dee2e6;
    --hero-overlay: rgba(0,0,0,0.4);
}

[data-theme="dark"] {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #adb5bd;
    --card-bg: #2d2d2d;
    --card-shadow: rgba(0,0,0,0.3);
    --navbar-bg: #8B1A1B;
    --navbar-text: #ffffff;
    --footer-bg: #0a0a0a;
    --footer-text: #ffffff;
    --border-color: #404040;
    --hero-overlay: rgba(0,0,0,0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    overflow-x: hidden;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ============================================
   LOGO FLOTANTE - ALINEADO A LA IZQUIERDA, SOBRESALE SOLO HACIA ABAJO
   ============================================ */
.logo-float {
    position: absolute;
    top: 0;
    left: 20px;
    z-index: 1050;
    padding-top: -5px; /* Controla cuánto espacio hay arriba */
    padding-bottom: 0;
    transition: all 0.3s ease;
}

.main-logo {
    height: 150px; /* ← AQUÍ SE MANEJA EL TAMAÑO DEL LOGO */
    width: auto;
    transition: all 0.3s ease;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.main-logo:hover {
    transform: scale(1.02);
}

/* ============================================
   BARRA DE NAVEGACIÓN - CON FONDO ROJO
   ============================================ */
.main-navbar {
    background-color: var(--navbar-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding-top: 15px;
    padding-bottom: 15px;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Contenedor principal de la barra - ahora el menú se va a la derecha */
.navbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    flex-wrap: nowrap;
}

/* Wrapper para el menú y acciones - los agrupa a la derecha */
.nav-menu-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    flex: 1;
}

/* Menú Desktop */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2px; /* ← ESTA ES LA LÍNEA QUE CONTROLA LA SEPARACIÓN ENTRE ITEMS */
    flex-wrap: nowrap;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--navbar-text) !important;
    font-weight: 500;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1rem;
    border-radius: 50px;
    white-space: nowrap;
}

.nav-link:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 3px;
}

.nav-link:hover::after {
    width: 60%;
}

/* Acciones de la derecha */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Selector Ciudad */
.city-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    padding: 8px 16px;
    border-radius: 50px;
    color: var(--navbar-text);
    transition: all 0.3s ease;
    cursor: pointer;
}

.city-selector:hover {
    background: rgba(255,255,255,0.25);
}

.city-selector i {
    font-size: 0.9rem;
}

.city-select {
    background: transparent;
    border: none;
    color: var(--navbar-text);
    font-weight: 500;
    cursor: pointer;
    outline: none;
    font-size: 0.85rem;
}

.city-select option {
    background-color: var(--pludog-red);
    color: white;
}

/* Botón Modo Oscuro/Claro */
.theme-btn {
    background: rgba(255,255,255,0.15);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--navbar-text);
    font-size: 1.1rem;
}

.theme-btn:hover {
    background: rgba(255,255,255,0.25);
    transform: rotate(15deg);
}

/* Botón Carrito */
.cart-btn {
    position: relative;
    background: rgba(255,255,255,0.15);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navbar-text);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.cart-btn:hover {
    background: rgba(255,255,255,0.25);
    color: var(--navbar-text);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ffc107;
    color: #000;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: bold;
    min-width: 18px;
    text-align: center;
}

/* Usuario Dropdown */
.user-btn {
    background: rgba(255,255,255,0.15);
    border: none;
    padding: 8px 18px;
    border-radius: 50px;
    color: var(--navbar-text);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.85rem;
}

.user-btn:hover {
    background: rgba(255,255,255,0.25);
}

.user-btn i {
    font-size: 1rem;
}

/* Botones de Autenticación */
.auth-buttons {
    display: flex;
    gap: 10px;
}

.btn-login, .btn-register {
    padding: 8px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    white-space: nowrap;
}

.btn-login {
    background: transparent;
    border: 1px solid var(--navbar-text);
    color: var(--navbar-text);
}

.btn-login:hover {
    background: var(--navbar-text);
    color: var(--pludog-red);
}

.btn-register {
    background: var(--navbar-text);
    color: var(--pludog-red);
    border: 1px solid var(--navbar-text);
}

.btn-register:hover {
    background: transparent;
    color: var(--navbar-text);
}

/* Hamburguesa (solo móvil) - ahora a la derecha */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
}

.hamburger-btn span {
    width: 100%;
    height: 3px;
    background-color: var(--navbar-text);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Menú Móvil */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--navbar-bg);
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
    display: block;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu li {
    margin-bottom: 15px;
}

.mobile-nav-link {
    color: var(--navbar-text);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(255,255,255,0.15);
}

/* ============================================
   RESPONSIVE - Ajustes para móvil
   ============================================ */
@media (max-width: 1200px) {
    .nav-link {
        padding: 8px 14px;
        font-size: 0.9rem;
    }
    
    .nav-menu-wrapper {
        gap: 20px;
    }
    
    .city-selector {
        padding: 6px 12px;
    }
    
    .city-select {
        font-size: 0.75rem;
        width: 90px;
    }
    
    .btn-login, .btn-register {
        padding: 6px 16px;
        font-size: 0.75rem;
    }
    
    .user-btn {
        padding: 6px 14px;
        font-size: 0.75rem;
    }
    
    .user-btn span {
        display: none;
    }
    
    .theme-btn, .cart-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .logo-float {
        position: absolute;
        top: 0;
        left: 10px;
        padding-top: 12px;
    }
    
    .main-logo {
        height: 50px;
    }
    
    .nav-menu-wrapper {
        display: none;
    }
    
    .hamburger-btn {
        display: flex;
    }
    
    .navbar-wrapper {
        justify-content: space-between;
        width: 100%;
    }
    
    .nav-actions {
        gap: 8px;
        display: flex;
    }
    
    .city-selector {
        padding: 5px 10px;
    }
    
    .city-select {
        width: 80px;
        font-size: 0.7rem;
    }
    
    .city-selector i {
        font-size: 0.8rem;
    }
    
    .theme-btn, .cart-btn {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }
    
    .btn-login, .btn-register {
        padding: 5px 12px;
        font-size: 0.7rem;
    }
    
    .user-btn span {
        display: none;
    }
    
    .user-btn {
        padding: 5px 10px;
    }
    
    .mobile-menu {
        top: 115px;
    }
    
    .carousel-item {
        height: 70vh;
        min-height: 500px;
    }
    
    .carousel-caption h1 {
        font-size: 2rem !important;
    }
    
    .carousel-caption .lead {
        font-size: 1rem;
    }
    
    .search-box {
        max-width: 100%;
    }
    
    .search-box input {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .category-image {
        height: 150px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .benefit-card {
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .main-logo {
        height: 45px;
    }
    
    .logo-float {
        padding-top: 8px;
    }
    
    .navbar-wrapper {
        gap: 12px;
    }
    
    .city-selector {
        padding: 4px 10px;
    }
    
    .city-select {
        width: 75px;
        font-size: 0.65rem;
    }
    
    .theme-btn, .cart-btn {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .btn-login, .btn-register {
        padding: 4px 10px;
        font-size: 0.65rem;
    }
    
    .user-btn {
        padding: 4px 10px;
    }
    
    .mobile-menu {
        top: 105px;
    }
}

@media (max-width: 576px) {
    .main-logo {
        height: 40px;
    }
    
    .logo-float {
        padding-top: 6px;
    }
    
    .navbar-wrapper {
        gap: 10px;
    }
    
    .city-selector {
        padding: 4px 8px;
    }
    
    .city-select {
        width: 70px;
        font-size: 0.6rem;
    }
    
    .city-selector i {
        font-size: 0.7rem;
    }
    
    .theme-btn, .cart-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .btn-login, .btn-register {
        padding: 4px 8px;
        font-size: 0.6rem;
    }
    
    .mobile-menu {
        top: 92px;
    }
    
    .carousel-item {
        height: 60vh;
        min-height: 400px;
    }
    
    .carousel-caption h1 {
        font-size: 1.5rem !important;
    }
    
    .carousel-caption .lead {
        font-size: 0.9rem;
    }
    
    .product-card {
        margin-bottom: 20px;
    }
    
    .offer-card {
        margin-bottom: 15px;
    }
    
    .search-box .btn-danger {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

/* ============================================
   SLIDER DE BANNER
   ============================================ */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-item {
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.slide-overlay {
    display: none;
}

.carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.carousel-caption {
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: var(--hero-overlay);
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: left;
}

.carousel-caption .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.carousel-caption h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.carousel-caption .lead {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    font-weight: 500;
}

/* Controles del carousel */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.hero-slider:hover .carousel-control-prev,
.hero-slider:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--pludog-red);
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Indicadores del carousel */
.carousel-indicators {
    bottom: 30px;
    z-index: 3;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: white;
    opacity: 0.5;
}

.carousel-indicators button.active {
    opacity: 1;
    background-color: var(--pludog-red);
    transform: scale(1.2);
}

/* ============================================
   BENEFITS / BANNERS
   ============================================ */
.benefits-section {
    padding: 60px 0;
}

.benefit-card {
    background: var(--card-bg);
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--card-shadow);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(191,35,36,0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: rgba(191,35,36,0.1);
    border-radius: 50%;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: var(--pludog-red);
}

.benefit-card:hover .benefit-icon i {
    color: white !important;
}

.benefit-card h5 {
    margin-top: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ============================================
   CATEGORÍAS
   ============================================ */
.categories-section {
    padding: 60px 0;
}

.section-header {
    margin-bottom: 40px;
}

.section-header h2 {
    font-weight: 700;
    color: var(--text-primary);
}

.section-header p {
    color: var(--text-muted);
}

.category-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--card-shadow);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--card-shadow);
}

.category-image {
    overflow: hidden;
    height: 200px;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-info {
    padding: 15px;
    text-align: center;
}

.category-info h5 {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.category-info small {
    color: var(--text-muted);
}

/* ============================================
   PRODUCTOS
   ============================================ */
.products-section {
    padding: 60px 0;
}

.product-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--card-shadow);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--card-shadow);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--pludog-red);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 15px;
    text-align: center;
    transition: bottom 0.3s ease;
}

.product-card:hover .product-overlay {
    bottom: 0;
}

.product-info {
    padding: 15px;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.product-description {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.current-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--pludog-red);
}

.old-price {
    font-size: 0.8rem;
    text-decoration: line-through;
    color: var(--text-muted);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffc107;
}

.product-rating span {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* ============================================
   OFERTAS ESPECIALES
   ============================================ */
.offers-section {
    padding: 60px 0;
}

.offer-card {
    background: var(--card-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px var(--card-shadow);
}

.offer-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(191,35,36,0.2);
}

.offer-img {
    border-radius: 10px;
    object-fit: cover;
}

.offer-info h6 {
    font-weight: 600;
    color: var(--text-primary);
}

/* ============================================
   APP DOWNLOAD SECTION
   ============================================ */
.app-section {
    background: linear-gradient(135deg, var(--pludog-red) 0%, var(--pludog-red-dark) 100%);
    padding: 60px 0;
}

.app-section h2,
.app-section p {
    color: white !important;
}

.app-section .btn-dark {
    background-color: #1a1a1a;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.app-section .btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ============================================
   SEARCH BOX
   ============================================ */
.search-box {
    max-width: 500px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.search-box input {
    padding: 12px 0;
}

.search-box input:focus {
    box-shadow: none;
    outline: none;
}

.search-box .btn-danger {
    padding: 10px 30px;
    font-weight: 600;
}

/* ============================================
   ANIMACIONES
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

.product-card,
.category-card,
.benefit-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}

.animate__delay-1s {
    animation-delay: 0.3s;
}

.animate__delay-2s {
    animation-delay: 0.6s;
}

/* ============================================
   BOTONES GENERALES
   ============================================ */
.btn-danger {
    background-color: var(--pludog-red);
    border-color: var(--pludog-red);
    transition: all 0.3s ease;
}

.btn-danger:hover,
.btn-danger:focus {
    background-color: var(--pludog-red-dark);
    border-color: var(--pludog-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(191,35,36,0.3);
}

.text-danger {
    color: var(--pludog-red) !important;
}

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

.bg-light {
    background-color: var(--bg-secondary) !important;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-logo {
    filter: brightness(0) invert(1);
}

.footer .footer-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer h5 {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
}

.footer ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer ul li a:hover {
    color: var(--pludog-red);
    padding-left: 5px;
}

.footer ul li i {
    color: var(--pludog-red);
    width: 25px;
}

.footer .copyright {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.footer hr {
    background-color: rgba(255,255,255,0.1);
}

.social-links a {
    color: #ffffff;
    background: rgba(255,255,255,0.1);
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--pludog-red);
    transform: translateY(-3px);
    color: white;
}

/* ============================================
   SWEETALERT PERSONALIZADO
   ============================================ */
.swal2-popup {
    font-family: 'Poppins', sans-serif;
}

.swal2-confirm {
    background-color: var(--pludog-red) !important;
}

/* ============================================
   LOADING SPINNER
   ============================================ */
.spinner-border {
    color: var(--pludog-red);
}

/* ============================================
   EFECTOS PARALLAX Y EXTRAS
   ============================================ */
.carousel-item img {
    transform: scale(1.05);
    transition: transform 6s ease;
}

.carousel-item.active img {
    transform: scale(1);
}

.carousel-caption .btn-danger {
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.carousel-caption .btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}