﻿
.carousel-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;

}

.carousel,
.carousel-inner,
.carousel-item {
    border-radius: 0;
}

.custom-caption {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    padding: 20px 30px;
    left: 10%;
    right: 10%;
    bottom: 20%;

}

.custom-caption h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 10px;

}

.custom-caption p {
    font-size: 1.2rem;
    color: orange;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);

}

.text-shadow{
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);

}

@media (max-width: 768px) {
    .custom-caption {
        padding: 10px 15px;
        bottom: 10%;

    }

    .custom-caption h1 {
        font-size: 1.2rem;
    }

    .custom-caption p {
        font-size: 0.8rem;
    }
}

.producto-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .producto-card img {
        height: 200px;
        object-fit: cover;
    }

    .producto-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

.precio {
    color: mediumseagreen;
    font-weight: bold;
    font-size: 1.2rem;
}

.Nombre {
    color: lightgray;
    font-weight: bold;
}

.logo-link {
    text-decoration: none;
    color: black;
}

.logo-img {
    height: 220px;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-img hover {
    transform: scale(1.05);
}

.topbar {
    height: 100px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    background-color: midnightblue;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.carrito-link{
    background-color: #111;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
}

.carrito-link:hover {
    background-color: #ff6600;
    color: white;
}