:root {
    --color-primary: #8d6e63; /* Marrón cálido */
    --color-secondary: #d7ccc8; /* Beige suave */
    --color-bg: #fffbf0; /* Blanco crema */
}

body.bg-light-warm {
    background-color: var(--color-bg);
    font-family: 'Helvetica Neue', sans-serif;
    color: #4e342e;
}

h1, h2, h3, .navbar-brand {
    font-family: 'Georgia', serif; /* Toque clásico */
    color: var(--color-primary);
}


.btn-brown {
    background-color: var(--color-primary);
    color: white;
    border: none;
}
.btn-brown:hover {
    background-color: #6d4c41;
    color: white;
}
.btn-outline-brown {
    border-color: var(--color-primary);
    color: var(--color-primary);
}
.btn-outline-brown:hover {
    background-color: var(--color-primary);
    color: white;
}

.carousel-img-fit {
    height: 400px;
    object-fit: cover;
}

.product-card {
    transition: transform 0.3s;
    background: white;
}
.product-card:hover {
    transform: translateY(-5px);
}
.product-card img {
    height: 450px;
    object-fit: cover;
}

.section-title {
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-secondary);
}

.section-subtitle {
    display: block;
    text-align: center;
    position: relative;
    padding-top: 15px;
    margin-top: 25px;
    color: var(--color-primary);
}
.section-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-secondary);
}

/* Info Features Section */
.featured-products {
    justify-content: center;
}
.info-features {
    max-width: calc(100% - 2rem);
    margin-top: 4rem;
    background-color: var(--color-secondary);
    border-radius: 20px;
}
.bg-amber-100-50 {
    background-color: rgba(255, 193, 7, 0.1); /* Ámbar claro con opacidad */
}
.info-feature-item {
    margin-bottom: 1.5rem;
}

.info-feature-icon {
    font-size: 3rem;
    line-height: 1;
    color: var(--color-primary);
}

/* Carousel Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1) grayscale(100) brightness(0.8);
    width: 2.5rem;
    height: 2.5rem;
    background-color: #4e342e;
    border-radius: 5px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    .navbar-brand img {
        height: 60px;
    }        
    .history-section img {
        width: 50% !important;
    }
}

@media (max-width: 650px) {
    
    .history-section img {
        width: 100% !important;
    }
}

/* Dropdown menu styles */
.dropdown-menu {
    background-color: #faf7f2;
    border: 1px solid var(--color-secondary);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.dropdown-item {
    color: var(--color-primary);
    font-weight: 500;
    transition: all 0.3s ease;
}
.dropdown-item:hover {
    background-color: var(--color-secondary);
    color: #6d4c41;
}
.dropdown-item.active {
    background-color: var(--color-primary);
    color: white;
}
.navbar-nav .nav-link.dropdown-toggle:after {
    content: '';
}
.navbar-nav .dropdown-toggle::after {
    border-top: 0.25em solid var(--color-primary);
    border-right: 0.25em solid transparent;
    border-bottom: 0;
    border-left: 0.25em solid transparent;
}
.navbar-nav .dropdown-toggle:hover::after {
    border-top-color: #6d4c41;
}

/* product detail */
.product-detail__contact-btn {
    margin-top: 20px;
}