@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');

body {
    background-color: #121212;
    color: #ffffff;
    font-family: 'Archivo Black', sans-serif;
}

.hero-main {
    background-color: #121212;
    margin-top: 0 !important;
    padding: 0 20px;
}

.hero-bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* Tres columnas iguales */
    grid-template-rows: 300px 300px;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-item {
    position: relative;
    height: 300px;
    filter: grayscale(30%);
    overflow: hidden;
    border: 4px solid #FFB800;
}

.bento-item:hover img {
    filter: grayscale(0%);
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bento-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    padding: 15px;
text-transform: uppercase;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    text-align: center;
}

.bento-wide {
    grid-column: span 2;
    height: 100% !important; /* Forza el alto total */
    grid-row: 1 / 3;
}

.elegant-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #121212;
}

.elegant-text {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 20px;
}

.elegant-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #FFB800;
    color: #121212;
    text-decoration: none;
    font-size: 18px;
    border: none;
}

.featured-products-section {
    padding: 40px 20px;
    background-color: #121212;
}

.section-title {
    font-size: 32px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
}

.product-card {
    background-color: #1a1a1a;
    border: 4px solid #FFB800;
    overflow: hidden;
    border: 2px solid #333; 
    transition: border-color 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    border-color: #FFB800;
}
.product-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #FFB800;
    color: #121212;
    padding: 5px 10px;
    font-weight: bold;
}

.product-info {
    padding: 20px;
    color: #ffffff;
}

.product-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.product-price-container {
    margin-top: auto;
}

.current-price {
    font-size: 20px;
    color: #FFB800;
}

.original-price {
    font-size: 16px;
    color: #888;
    text-decoration: line-through;
}

.view-all-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #FFB800;
    color: #121212;
    text-decoration: none;
    font-size: 18px;
    border: none;
    margin-top: 20px;
}

.carousel-container {
    overflow-x: auto;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    gap: 20px;
}

.carousel-slide {
    flex: 0 0 auto;
    width: 300px;
}

.carousel-nav {
    position: absolute;
    top: 125px;
    z-index: 10;
    transform: translateY(-50%);
    background-color: #FFB800;
    color: #121212;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.carousel-nav.prev {
    left: -20px;
}

.carousel-nav.next {
    right: -20px;
}

.carousel-wrapper {
    position: relative;
}

@media (max-width: 768px) {
    .hero-main {
        margin-top: 140px;
    }
    .hero-bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .bento-wide {
        grid-column: span 1;
        grid-row: auto;
        height: 300px !important;
    }
    
    .carousel-slide {
        width: 250px;
    }
}


