/* Brown theme color */
:root {
  --brown: #795548;
  --brown-light: #bcaaa4;
  --yellow: #fdfad5;
}

.neon-pulse {
  background: inherit;
  border: 1px solid inherit;
  animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(0, 242, 254, 0.2), 
                0 0 10px rgba(0, 242, 254, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.6), 
                0 0 35px rgba(4facfe, 0.4);
    transform: scale(1.01); /* Subtle breathing scale */
  }
}

/* Section transitions */
.page-section {
  display: none;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1);
  will-change: opacity;
}
.page-section.active {
  display: block;
  opacity: 1;
  animation: fadeInUp 1s;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px);}
  to { opacity: 1; transform: translateY(0);}
}
/* Navbar highlight */
.nav-link.active {
  font-weight: bold;
  color: var(--brown) !important;
  border-bottom: 2px solid var(--brown);
}
.logo{
  width: 50px;
  height: auto;
}

/* Hero section */
.home-img{
  width: 100%;
  max-height: 600px;
  object-fit:scale-down;
  display: block;

  /* max-width: 1200px; */
  /* border-radius: 15px ; */
}

.hero {
  background: linear-gradient(120deg, #efebe9 0%, #fdfad5 100%);
  border-radius: 1rem;
  /* padding: 1.5rem 0.8rem; */
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  text-align: center;
  /* margin-bottom: 2rem; */
}
.product-card {
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}
.contact-form input, .contact-form textarea {
  border-radius: 0.5rem;
}
.lead{
    text-align: center;
}
.footer {
  margin-top: 1rem;
  padding: 1.5rem 0 0.5rem 0;
  background: #f8f9fa;
  text-align: center;
  border-radius: 1rem 1rem 0 0;
  font-size: 0.95rem;
  color: #888;
}

.rounded-box{
  background-color: #fdfad5;
}

/* Brown button */
.btn-yellow {
  background-color: var(--brown);
  border-color: var(--brown);
  color: var(--yellow);
}
.btn-yellow:hover, .btn-yellow:focus, .btn-yellow::after {
  background-color: var(--yellow);
  border-color: var(--yellow);
  color: var(--brown);
}

/* Brown button */
.btn-brown {
  background-color: var(--yellow);
  border-color: var(--yellow);
  color: var(--brown);
}
 .btn-brown:focus, .btn-brown::after {
  background-color: var(--brown);
  border-color: var(--brown);
  color: var(--brown);
}

.product{
  width:100%;
  margin-left: 0;
}
.product .card{
    height:100%;
}
.card{
  border: 1px solid lightyellow;
}
.product .card{
    height:100%;
    cursor:pointer;
    transition:.2s;
}

.product .card:hover{
    transform:translateY(-2px);
}

.cust-width{
  width: 130px !important;
}

.product-image-wrap{
    height:180px;
    padding:10px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.product-image-wrap img{
    max-width:100%;
    max-height:100%;
    object-fit:contain;
}


.product-image-wrap{
    height:180px;           /* same height for all images */
    padding:10px;           /* space around image */
    display:flex;
    align-items:center;     /* vertical center */
    justify-content:center; /* horizontal center */
    background:#fff;
}

.product-image-wrap img{
    max-width:100%;
    max-height:100%;
    width:auto;
    height:auto;
    object-fit:contain;     /* fit without stretching */
    display:block;
}

/* Container hides the overflowing content */
.scroll-container {
  overflow: hidden;
  width: 100%;
  display: flex;
  background-color: var(--brown) !important;
  background: #f4f4f4;
  padding: 10px 0;
}

/* Track holds both sets side by side */
.scroll-track {
  display: flex;
  width: max-content;
  animation: scrollLeft 10s linear infinite;
}

/* Individual item sets */
.scroll-items {
  display: flex;
  /* gap: 20px; */
  /* padding-right: 20px; Must match gap to maintain continuous layout spacing */
}

/* Styling for single items */
.item {
  width: 150px;
  height: 80px;
  background: #333;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border-radius: 8px;
}

/* --- THE HOVER PAUSE CONTROLLER --- */
.scroll-container:hover .scroll-track {
  animation-play-state: paused;
}

/* Animation moving items seamlessly leftward */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.best-sellers{
  background-color: var(--brown);
}

/* Brown icon/text utility */
.text-brown {
  color: var(--brown) !important;
}
.text-yellow{
  color: var(--yellow);
}

/* Light golden brown for navbar */
.navbar,
.navbar .navbar-collapse {
  background: #fdfad5 !important; /* light golden brown */
}

/* Remove default toggler icon styles */
.custom-toggler {
  border: none;
  padding: 0;
}

/* Optional: adjust vertical alignment if needed */
.custom-toggler img {
  display: block;
}

.toggler-icon{
    width: 55px;
}

/* Optional: style nav menu dropdowns if any */
.navbar-nav .nav-link {
  background: transparent;
}


.all-prdcts-img{
  max-width: 100%;
  height: auto;
  max-height: 550px;
}

/* For mobile devices */
@media (max-width: 767px) {
  .all-prdcts-img {
    max-width: 100%;
    height: 400px;
  }
}
.custom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    padding-top: 80px;
    background: rgba(0,0,0,0.6);
}

#modalProductName{
  text-align: center;
}

.custom-modal-content {
    background: #fff;
    width: 90%;
    max-width: 600px;
    margin: 5% auto;
    padding: 20px;
    border-radius: 8px;
    position: relative;
}

.custom-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
}
