/* General Body & Typography */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8; /* Light background for the shop */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Dancing Script', cursive; /* A more elegant font for headings */
    color: #7a4a2b; /* A warm brown */
}

/* Navbar Customization */
.navbar {
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    background-color: #fffaf0 !important; /* Creamy white background */
}

.navbar-brand {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    color: #9b5a30 !important; /* Darker brown for brand */
    font-weight: 700;
}

.navbar-brand img {
    width: 100px;
    padding: 10px;
}

.nav-link {
    color: #6a4128 !important; /* Brown for nav links */
    font-weight: 500;
    margin-right: 15px;
    transition: color 0.3s ease-in-out;
}

.nav-link:hover, .nav-link.active {
    color: #d18d4d !important; /* Lighter brown/orange on hover/active */
    transform: translateY(-2px); /* Slight lift on hover */
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('../img/icon/pastel1.png') no-repeat center center/cover;
    height: 85vh; /* Adjust height as needed */
    color: white;
    position: relative;
    overflow: hidden; /* Ensure no overflow from animations */
}

.hero-section h1 {
    font-size: 7.5rem;
    color: #ffe0b2; /* Lighter cream/peach for hero text */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-section p.lead {
    font-size: 1.5rem;
    font-weight: 300;
}

.hero-section .btn-primary {
    background-color: #d18d4d; /* Warm orange/brown */
    border-color: #d18d4d;
    padding: 12px 30px;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.hero-section .btn-primary:hover {
    background-color: #b77943;
    border-color: #b77943;
    transform: scale(1.05);
}

/* Section Titles */
.section-title {
    font-size: 3rem;
    color: #7a4a2b;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #d18d4d;
    border-radius: 2px;
}

/* Product Cards */
.product-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.product-card img {
    height: 300px; /* Fixed height for consistent image display */
    object-fit: cover;
    border-bottom: 1px solid #f0f0f0;
}

.product-card .card-body {
    padding: 1.5rem;
}

.product-card .card-title {
    font-size: 1.7rem;
    margin-bottom: 0.75rem;
    color: #7a4a2b;
}

.product-card .card-text {
    font-size: 0.95rem;
    color: #666;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 600;
    color: #d18d4d;
    margin-top: 1rem;
}

.add-to-cart-btn {
    background-color: #9b5a30; /* Darker brown for action buttons */
    border-color: #9b5a30;
    transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
    font-size: 1.05rem;
    padding: 8px 20px;
    border-radius: 25px;
}

.add-to-cart-btn:hover {
    background-color: #7a4a2b;
    border-color: #7a4a2b;
    transform: scale(1.02);
}

/* Forms */
.form-control:focus {
    border-color: #d18d4d;
    box-shadow: 0 0 0 0.25rem rgba(209, 141, 77, 0.25);
}

/* Footer */
footer {
    background-color: #3b2a20 !important; /* Very dark brown */
    color: #f0f0f0;
}

footer a {
    color: #f0f0f0;
    transition: color 0.3s ease-in-out;
}

footer a:hover {
    color: #d18d4d;
}

/* Responsive adjustments (Bootstrap handles most, but for custom elements) */
@media (min-width: 991.99px) {
    .navbar-brand {
        font-size: 1.8rem;
    }
    .hero-section h1 {
        font-size: 3rem;
    }
    .hero-section p.lead {
        font-size: 1.2rem;
    }
    
    .square_pic{
        width: 100%;
    }
    
}

@media (max-width: 991.98px) {
    .navbar-brand {
        font-size: 1.8rem;
    }
    .hero-section h1 {
        font-size: 3rem;
    }
    .hero-section p.lead {
        font-size: 1.2rem;
    }
    
    .square_pic{
        width: 32%;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        height: 60vh;
    }
    .hero-section h1 {
        font-size: 3.5rem;
    }
    .hero-section p.lead {
        font-size: 1rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .product-card img {
        height: 300px;
    }
    
    .square_pic{
        width: 80vw;
    }
}

.whats_icon {
    position: fixed;
    bottom: 20px;
    width: 60px;
    right: 20px;
    cursor: pointer;
    opacity: 70%;
}

.whats_icon:hover {
    width: 65px;
    opacity: 100%;
}

.posts{
	margin:10px;
}

.testimonial-groupST > .row {
  overflow-x: auto;
  padding: 20px 20px 0px 20px;
}

.flex-nowrapST::-webkit-scrollbar-track {
  background: transparent;        /* color of the tracking area */
}

.flex-nowrapST::-webkit-scrollbar-thumb {
  background-color: #e40515b3;    /* color of the scroll thumb */
  border-radius: 20px;       /* roundness of the scroll thumb */
  border: 3px solid white;  /* creates padding around scroll thumb */
}

.flex-nowrapST {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; 
}

.btn-outline-candy{
    color: #951335;
    border-color: #dc3545;
}

.badge-candy{
    color: #fff;
    background-color: #951335;
}

.delClass {
    font-size: smaller;
    color: #1968ad;
    position: absolute;
    right: 25px;
    margin-top: -15px;
}

.delClass:hover{
    font-size: smaller;
    color: #e30613;
    cursor: pointer;
}

.loslink {
    color: #007bff;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.loslink:hover {
    color: #ffc800;
}

#msgvalida, #pswvalida {
    color: red;
    font-size: 12px;
}

.active_us {
    font-weight: bold;
}

.div_cat {
    height: 40px;
    width: 100%;
    font-size: 18px;
    padding-left: 5px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    cursor: pointer;
}

.div_cat:hover {
    color: #d18d4d;
}

.comment_head, .comment_head h3{
    background: #343a40;
    color: white;
    text-align: center;
    padding: 0;
}

.title_cat, .title_cat h3 {
    padding-top: .05rem;
    background: #343a40;
    color: white;
    margin-left: 15px;
    margin-top: .05rem;
}

#btnInstall {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: none;
  align-items: center;
  gap: 12px;
  
  /* Efecto Cristal */
  /*background: rgba(255, 255, 255, 0.15); /* Transparente */
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(12px); /* Desenfoque del fondo */
  -webkit-backdrop-filter: blur(12px); /* Para Safari */
  border: 1px solid rgba(255, 255, 255, 0.2);
  
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 16px; /* Bordes algo menos redondos */
  
  font-family: system-ui, sans-serif;
  font-weight: 500;
  font-size: 15px;
  
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  transition: transform 0.2s ease;
}

#btnInstall:active {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(-50%) scale(0.98);
}

@media (max-width: 991px) {
  #btnInstall{
    display: flex; /* Se hace visible solo en móvil */
  }
}


@media (display-mode: fullscreen), (display-mode: standalone) {
  #btnInstall {
    display: none !important;
  }
}

.cintillo_store_new{
    font-weight: bold;
    background: #04aa6d;
    color: white;
    padding: 0px 3px 0px 3px;
    position: absolute;
    margin-top: 0px;
    text-align: center;
    width:100%;
}

.precio_dscto{
    font-size: 15px;
    color: #878787;
    text-decoration: line-through;
    margin-left: 4px;
}