:root {
  --blanco: #FFFFFF;
  --negro: #000000;
  --marron: #3A1A11;
  --chocolate: #622C1C;
  --crema: #E0CFBA;
}
/* General Body Styles */
/* Contenedor: NO scroll horizontal en ningún dispositivo */
.belt{
  width: 100%;
  overflow: hidden;            /* clave */
  position: relative;
  touch-action: pan-y;         /* evita gestos horizontales raros en iOS */
}

/* Track: una sola fila, sin gaps, ancho “según contenido” */
.belt__track{
  display: flex;
  flex-wrap: nowrap;
  gap: 0;                      /* sin huecos */
  width: max-content;
  will-change: transform;
  animation: belt-move 60s linear infinite;
}

/* Todas mismas alto, ancho el que toque */
.belt__track img{
  height: clamp(140px, 100vw, 700px);
  width: auto;
  display: block;
  flex: 0 0 auto;
  object-fit: cover;
}

/* .belt:hover .belt__track{ animation-play-state: paused; } */

/* Animación: mueve exactamente “medio track” (porque lo duplicas) */
@keyframes belt-move{
  from { transform: translate3d(0,0,0); }
  to   { transform: translate3d(-50%,0,0); }
}

/* Accesibilidad: respeta reduced motion */
@media (prefers-reduced-motion: reduce){
  .belt__track{ animation: none; }
}
body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--negro); /* Dark brown for general text */
    background-color: var(--blanco); /* Light beige for sections */
}
p, a {
    font-size:18px;
}
.material-icons.placing {
    top: 6px;
    position: relative;
}
/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    color: var(--negro);
    text-transform: uppercase;
}
#cta-heading {
    color: var(--blanco);
}
.cta-section-top {
    background-color: var(--crema);
    color: var(--marron);
    text-align:center;
}
.cta-section-top h2 {
    color: var(--marron);
    font-weight: 400;
    letter-spacing: 2px;
}
.cta-section-top a {
    padding-top: 6px;
}
.cta-minitext {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-self: flex-start;
}
.cta-section-top hr {
    width: 60px;
    margin-top: 12px;
    margin-right: 20px;
    margin-left: 20px;
    color: var(--marron);
    border-top: 2px solid var(--marron);
    opacity: 1;
}
.cta-minitext p {
    text-transform: uppercase;
    font-size: 18px;
    font-family: 'Inter';
    font-weight: 400;
    letter-spacing: 2px;

}
.section-title {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing:2px;
}

/* Navbar */
.navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
    background-color: rgba(56, 36, 30, 0.9);
    backdrop-filter: blur(6px);
}

.navbar-brand {
    color: var(--blanco) !important; /* Light beige for brand text */
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.navbar-brand .logo {
    height: 130px;
    margin-right: 10px;
    fill: var(--blanco); /* Light beige for SVG icon */
}

.navbar-brand small {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 1px;
    font-weight: 300;
    margin-top: 2px;
}

.navbar-nav .nav-link {
    color: var(--blanco) !important; /* Light beige for nav links */
    font-weight: 400;
    margin: 0 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--blanco) !important; /* White on hover/active */
}

.navbar-toggler {
    border-color: rgba(240, 230, 215, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28240, 230, 215, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    background-image: url('/img/background.png');
    background-size: cover;
    background-position: center center;
    min-height: 80vh;
    color: var(--blanco); /* Light beige text on hero */
    display: flex;
    align-items: flex-start; /* Align menu to top */
    justify-content: center;
    padding-top: 100px; /* Offset for fixed navbar */
}

/* Products Section */
.products-section {
    background-color: var(--blanco);
}

.products-section .row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

.product-card {
    border: none;
    background-color: transparent;
    padding: 30px;
    filter: drop-shadow(0px 6px 26px #00000069);
}

.product-image-wrapper {
    width: 100%;
    height:300px;
    overflow: hidden;
}

.product-image-wrapper .product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.product-card-body {
    padding: 1.5rem 1.25rem 2rem;
    text-align: left;
    background-color: var(--blanco);
}
.product-card-body .price {
    color: grey;
    font-size: 13px;
    margin-top: -8px;
    margin-bottom: 0;
    font-weight:500;
    text-transform:uppercase;
}
.product-card .product-title {
    font-weight: 600;
    font-size: 18px;
}

.product-card .product-description {
    margin-top: 1rem;
    margin-bottom: 3rem;
}
.product-card .product-img {
    border-radius: 0;
}

/* Featured Product Mid Sections */
.featured-product-mid-1,
.bestseller-section,
.featured-product-mid-2 {
    background-color: var(--blanco);
}

.bestseller-img {
    object-fit: cover;
    height: 600px; /* Adjust height as needed */
}

/* Call to Action Section */
.cta-section {
    background-image: url('/img/productos/background_order.webp'); /* Placeholder CTA image */
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    position: relative;
    color: var(--blanco);
}
.cta-section p {
    font-size:22px;
}
.cta-section h2 {
    font-weight: 400;
    letter-spacing: 2px;
    font-size: 2.5rem;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.38); /* Dark overlay */
}

.cta-section > .container {
    position: relative;
    z-index: 1;
}

.iturbe-btn-dark {
    border-color: var(--negro);
    color: var(--negro);
    padding: 0.75rem 2rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.iturbe-btn-dark:hover {
    background-color: var(--negro);
    color: var(--blanco);
}

.iturbe-btn-light {
    border-color: var(--blanco);
    color: var(--blanco);
    padding: 0.75rem 2rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.iturbe-btn-light:hover {
    background-color: var(--blanco);
    color: var(--negro);
}

/* Footer */
footer {
    color: var(--negro);
}
.footer-section {
    background-color: var(--blanco);
    color: var(--negro);
    padding: 3rem 0;
    font-weight: 300;
}

.footer-section h5 {
    color: var(--blanco);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section address {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-section address a {
    color: var(--blanco);
    text-decoration: none;
}

.footer-section address a:hover {
    text-decoration: underline;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--blanco);
    color: var(--blanco);
    border-radius: 50%;
    font-size: 1.2rem;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--blanco);
    color: var(--negro);
}

#footer-bottom {
    background-color: var(--marron);
    border-top: 1px solid rgba(240, 230, 215, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: rgba(240, 230, 215, 0.7);
}

#footer-bottom p {
    margin-bottom: 0;
}

#footer-bottom .left {
    margin-top:-15px;
    float:left;
    font-weight: 300;
    font-size: 16px;
}
#footer-bottom .right {
    margin-top:-15px;
    float:right;
    font-weight: 300;
    font-size: 16px;
}
/* Custom Carousel Controls */
.carousel-control-prev-icon, .carousel-control-next-icon {
    background-image: none;
    width: 2rem;
    height: 2rem;
    background-size: 100% 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
}

.carousel-control-prev-icon::after {
    content: '\276E'; /* Left angle bracket */
    font-family: 'Material Icons'; /* Or any font with the desired icon */
    color: var(--blanco);
    font-size: 1.5rem;
}

.carousel-control-next-icon::after {
    content: '\276F'; /* Right angle bracket */
    font-family: 'Material Icons'; /* Or any font with the desired icon */
    color: var(--blanco);
    font-size: 1.5rem;
}

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