body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  margin: 0;
}

/* ===========================
   FIXED HEADER STYLES
=========================== */
.topbar {
      background-color: #8B4513;
      color: #fff;
      font-size: 14px;
      height: 34px;
      z-index: 1032;
    }

    /* ------------------ NAVBAR ------------------ */
    .navbar {
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }

    .navbar.scrolled {
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

    .navbar-brand span:first-child {
      color: #8B4513;
    }

    .navbar-brand span:last-child {
      color: #333;
    }

    /* Nav links */
    .navbar-nav .nav-link {
      color: #333;
      font-weight: 700;
      letter-spacing: 0.5px;
      padding: 10px 12px;
      position: relative;
      transition: color 0.3s ease;
    }
    .nav-item{
      padding-left: 10px;
      padding-right: 10px;
    }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: #8B4513;
    }



  
    /* Dropdowns */
    .dropdown-menu {
      border-radius: 10px;
      border: none;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      background-color: #8B4513;
      color:white;
      margin-top: 10px;
      animation: dropdownFade 0.25s ease;
    }

    @keyframes dropdownFade {
      from {opacity: 0; transform: translateY(5px);}
      to {opacity: 1; transform: translateY(0);}
    }

    .dropdown-item:hover {
      background-color: #8B4513;
      color: white;
    }
    .dropdown-item {
      color: white;
    }

    /* Icons */
    .nav-icons a {
      color: #333;
      margin-left: 16px;
      font-size: 18px;
      transition: all 0.3s ease;
      position: relative;
    }

    .nav-icons a:hover {
      color: #8B4513;
      transform: translateY(-2px);
    }

    .icon-badge {
      position: absolute;
      top: -5px;
      right: -8px;
      background-color: #8B4513;
      color: #fff;
      font-size: 10px;
      border-radius: 50%;
      padding: 2px 5px;
    }

  .social-icon {
    width: 32px;
    height: 32px;
    background-color: #8B4513;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .social-icon:hover {
    background-color: white;
    transform: scale(1.1);
  }
  .divider {
    width: 2px;
    height: 30px;
    background-color: #8B4513;
  }
  .brand-text {
    color: white;
  }
    .fixed-top-custom {
      top: 34px; /* height of topbar */
    }

    /* Make mobile toggle more stylish */
    .navbar-toggler {
      border: none;
    }

    .navbar-toggler:focus {
      box-shadow: none;
    }

    .navbar-toggler-icon {
      background-image: none;
    }

    .navbar-toggler i {
      color: #333;
      font-size: 22px;
    }/* ===== Carousel ===== */
#home-carousel {
  margin-top: 0px; /* matches your fixed header height */
}

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

.carousel-caption {
  bottom: 80px;
}

.carousel-caption h2 {
  font-size: 2.5rem;
  color: #3e2723;
}

.carousel-caption p {
  font-size: 1.2rem;
}

.carousel-indicators [data-bs-target] {
  background-color: #8B4513; /* light brown indicators */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #8B4513; /* light brown arrows */
  border-radius: 50%;
  padding: 10px;
}

@media (max-width: 768px) {
  .carousel-item img {
    height: 300px;
  }
  .carousel-caption {
    bottom: 40px;
  }
  .carousel-caption h2 {
    font-size: 1.5rem;
  }
  .carousel-caption p {
    font-size: 1rem;
  }
}
/* Spacer below fixed header */
.header-spacer {
  height: 125px; /* default desktop height */
}

@media (max-width: 1200px) {
  .header-spacer {
    height: 140px; /* slightly smaller for laptops/tablets */
  }
}

@media (max-width: 992px) {
  .header-spacer {
    height: 130px; /* for tablets */
  }
}

@media (max-width: 768px) {
  .header-spacer {
    height: 130px; /* for mobiles */
  }
}

@media (max-width: 576px) {
  .header-spacer {
    height: 120px; /* small mobile */
  }
}
.banner-section {
  background-color: #f8f8f8;
}

.banner-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #8B4513;
}

.banner-square {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff; /* optional: remove if you don’t want white bg */
}

.banner-square img {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover; /* fills the box completely */
  transition: transform 0.3s, box-shadow 0.3s;
}

.banner-square img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(93, 64, 55, 0.2);
}


.why-choose {
      text-align: center;
      padding: 50px 15px;
    }
    .why-choose h2 {
      font-weight: bold;
      margin-bottom: 15px;
    }
    .why-choose p {
      max-width: 700px;
      margin: 0 auto 40px;
      color: #333;
      font-size: 15px;
    }
    .feature-box {
      border: 1px solid #000;
      padding: 25px 15px;
      text-align: center;
      transition: 0.3s ease;
    }
    .feature-box:hover {
      background-color: #f9f9f9;
    }
    .feature-box i {
      font-size: 35px;
      color: #000;
      margin-bottom: 10px;
    }
    .feature-box h6 {
      font-weight: bold;
      margin-top: 10px;
    }

    /* Top Selling Banner */
    .top-selling-banner {
      background-color: #8B4513;
      color: white;
      padding: 50px 30px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
    }
    .top-selling-banner h1 {
      font-size: 48px;
      font-weight: 800;
    }
    .top-selling-banner h3 {
      background: white;
      color: #8B4513;
      display: inline-block;
      padding: 10px 20px;
      font-weight: bold;
      border-radius: 5px;
    }
    .top-selling-banner .btn {
      background-color: black;
      color: white;
      padding: 12px 25px;
      font-weight: bold;
      border-radius: 0;
      margin-top: 15px;
    }
    .top-selling-banner img {
      max-width: 100%;
      height: auto;
    }

    @media (max-width: 768px) {
      .top-selling-banner {
        text-align: center;
      }
      .top-selling-banner h1 {
        font-size: 36px;
      }
      .top-selling-banner img {
        margin-top: 30px;
      }
    }
.banner-square2 img {
  width: 100%;
  height: 300px; /* Desktop height */
  object-fit: cover; /* Ensures image covers the area without distortion */
}

/* Height for smaller screens (mobile/tablet) */
@media (max-width: 768px) {
  .banner-square2 img {
    height: 250px;
  }
}
.bg-primary{
  background-color: #8B4513!important;
}
/*----- breadcrumb style css start -----*/
.breadcrumb-area.breadcrumb-img {
  padding: 60px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 767.98px) {
  .breadcrumb-area.breadcrumb-img {
    padding: 40px 0;
  }
}

.breadcrumb-wrap {
  text-align: center;
}
.breadcrumb-wrap .breadcrumb-title {
  color: #fff;
  padding-bottom: 10px;
}
@media only screen and (max-width: 575.98px) {
  .breadcrumb-wrap .breadcrumb-title {
    font-size: 20px;
  }
}
.breadcrumb-wrap .breadcrumb {
  background: transparent;
  margin-bottom: 0;
  padding: 0;
}
.breadcrumb-wrap .breadcrumb .breadcrumb-item a {
  color: #fff;
  line-height: 1;
}
.breadcrumb-wrap .breadcrumb .breadcrumb-item a:hover {
  color: #8B4513;
}
.breadcrumb-wrap .breadcrumb .breadcrumb-item:before {
  color: #fff;
  content: "/";
  font-size: 12px;
  margin: 0 5px;
}
.breadcrumb-wrap .breadcrumb .breadcrumb-item:first-child::before {
  display: none;
}
.breadcrumb-wrap .breadcrumb .breadcrumb-item.active {
  color: #fff;
}

/*----- breadcrumb style css end -----*/
/*------ pagination area style start ------*/
.paginatoin-area {
  margin-top: 30px;
  padding: 20px;
  border: 1px solid #e5e5e5;
}
.paginatoin-area .pagination-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.paginatoin-area .pagination-box li {
  margin-right: 5px;
  display: inline-block;
}
.paginatoin-area .pagination-box li:last-child {
  margin-right: 0;
}
.paginatoin-area .pagination-box li a {
  color: #222222;
  height: 36px;
  width: 36px;
  font-size: 14px;
  display: inline-block;
  text-align: center;
  line-height: 36px;
  background-color: #f5f5f5;
  border-radius: 50%;
}
.paginatoin-area .pagination-box li a i {
  font-size: 18px;
  line-height: 36px;
}
.paginatoin-area .pagination-box li a:hover {
  color: #fff;
  border-color: #8B4513;
  background-color: #8B4513;
}
.paginatoin-area .pagination-box li.active a {
  color: #fff;
  background-color: #8B4513;
}
.paginatoin-area.shadow-bg {
  background-color: #fff;
  border: none;
  -webkit-box-shadow: 0 0 10px 0 rgba(195, 195, 195, 0.6);
          box-shadow: 0 0 10px 0 rgba(195, 195, 195, 0.6);
}

/*------ pagination area style end ------*/
.search_icon{
  width: 32px;
      height: 29px;
      background-color: #8B4513;
      color: white;
      cursor: pointer;
      transition: background-color 0.3s ease;
}
 .footer-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    display: block;
    padding: 3px 0;
    transition: all 0.3s ease;
  }
  .footer-link:hover {
    color: #fff;
    text-decoration: underline;
    transform: translateX(4px);
  }
  footer h6 {
    letter-spacing: 0.5px;
  }
/* === Brown Theme for Size Chart === */
.size-chart-box {
  background: linear-gradient(145deg, #f3e3d3, #e0c9a6);
  border: 2px solid #c49a6c;
  color: #4e2c0a;
  transition: all 0.3s ease;
}

.size-chart-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(100, 60, 20, 0.15);
}

/* Header */
.size-chart-header {
  border-color: #b17c46 !important;
}

.size-chart-header i {
  color: #7b4b19;
}

.size-chart-header h5 {
  color: #4e2c0a;
}

/* Description */
.size-chart-desc {
  color: #5a4633;
}

/* Table */
.size-chart-table {
  background-color: #fff8f1;
  border-color: #d2a76e;
}

.size-chart-table thead {
  background-color: #c49a6c;
  color: #fff;
}

.size-chart-table th,
.size-chart-table td {
  border-color: #d2a76e !important;
}

/* Tip text */
.size-chart-tip {
  color: #6a4b2f;
}

/* Decorative accent */
.size-chart-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: #c49a6c;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0.2;
  border-top-right-radius: 6px;
}

 /* General layout for quantity + size row */
.product-options-row {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px 15px;
  background-color: #faf8f5;
}

/* Option titles */
.option-title {
  font-weight: 600;
  color: #3b2b1e;
}

/* Quantity box styling */
.quantity-box .pro-qty input {
  width: 50px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 4px 6px;
}

/* Size dropdown */
.size-box select {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 4px 8px;
  background-color: #fff;
  color: #333;
}

/* Button styles */
.btn-cart2 {
  background: linear-gradient(90deg, #8b5e3c, #b17c46);
  color: #fff !important;
  font-weight: 600;
  border-radius: 8px;
  padding: 8px 18px;
  transition: all 0.3s ease;
}

.btn-cart2:hover {
  background: linear-gradient(90deg, #a76a3d, #c49354);
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .product-options-row {
    flex-direction: column;
    gap: 10px;
  }

  .d-flex.gap-3.mt-2 {
    flex-direction: column;
  }
}
.single-review {
  background-color: #fffdf9;
  border: 1px solid #e0c9a6;
  border-radius: 8px;
}

.reviewer-name {
  font-weight: 600;
  color: #4e2c0a;
}

.review-rating span {
  color: #c49a6c;
  font-size: 16px;
}

.review-text {
  color: #5a4633;
}
#productRating .star i {
  font-size: 20px;
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s ease;
}

#productRating .star.selected i,
#productRating .star.hovered i {
  color: #c49a6c; /* gold/brown */
}

.banner-slider .slick-prev,
.banner-slider .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.3);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
}

.banner-slider .slick-prev {
  left: 15px;  /* left side */
}

.banner-slider .slick-next {
  right: 15px; /* right side */
}

.banner-slider .slick-prev i,
.banner-slider .slick-next i {
  font-size: 20px;
}

.banner-slider .banner-square1 img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}
.ratings i {
  color: goldenrod;
}
/* Make dots horizontal */
.banner-slider .slick-dots {
  display: flex !important;
  justify-content: center; /* center horizontally */
  gap: 8px;                /* space between dots */
  bottom: 30px;            /* optional spacing from slider */
  padding: 0;
  margin: 0;
  list-style: none;
}

.banner-slider .slick-dots li {
  display: inline-block;   /* ensure li are inline */
  margin: 0;
}

.banner-slider .slick-dots li button {
  text-indent: -9999px;    /* hide numbers */
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
  opacity: 0.7;
  border: none;
  padding: 0;
}

.banner-slider .slick-dots li.slick-active button {
  background: white;
  opacity: 1;
}



/* Optional: adjust spacing below slider */
.banner-slider .slick-dots {
  bottom: 15px;
}


.hero-slider-content [data-aos] {
  will-change: transform, opacity;
  backface-visibility: hidden;
}
/* ===============================
   CONTACT SECTION (Modern White)
   =============================== */
.contact-section {
  padding: 80px 0;
  background: #f8f9fc;
  display: flex;
  justify-content: center;
}

.contact-container {
  width: 90%;
  max-width: 1300px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

@media (min-width: 992px) {
  .contact-container {
    grid-template-columns: 2fr 1fr;
  }
}

/* =====================================
   FORM CARD
   ===================================== */
.contact-form {
  background: #ffffff;
  padding: 45px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid #ececec;
}

.contact-form h3 {
  font-size: 30px;
  font-weight: 700;
  color: #1e1e27;
  margin-bottom: 30px;
}

/* =====================================
   2 COLUMN INPUT GROUP
   ===================================== */
.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 22px;
}

@media (max-width: 768px) {
  .input-row {
    grid-template-columns: 1fr;
  }
}

/* =====================================
   Inputs
   ===================================== */
.input-single label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  color: #333;
}

.input-single input,
.input-single textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 12px;
  border: 1px solid #d8d8d8;
  background: #fafafa;
  font-size: 15px;
  transition: 0.3s ease;
}

.input-single input:focus,
.input-single textarea:focus {
  background: #fff;
  border-color: #8B4513;
  box-shadow: 0 0 0 2px rgba(139, 82, 17, 0.15);
  outline: none;
}

/* =====================================
   Send Button
   ===================================== */
.btn-contact {
  margin-top: 20px;
  width: 100%;
  padding: 15px;
  background: #8B4513;
  color: #fff;
  font-size: 17px;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-contact:hover {
  background: #8B4513;
}

/* =====================================
   RIGHT SIDE CARDS
   ===================================== */
.more-help h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1e1e27;
}

.more-help__content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.help-card {
  padding: 22px;
  border-radius: 15px;
  background: #ffffff;
  border: 1px solid #ededed;
  box-shadow: 0 5px 20px rgba(0,0,0,0.07);
  display: flex;
  gap: 20px;
  align-items: center;
  transition: 0.3s ease;
}

.help-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.10);
}

.help-icon {
  width: 50px;
  height: 50px;
  background: #8B4513;
  color: #fff;
  border-radius: 12px;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.help-title {
  font-size: 18px;
  margin-bottom: 4px;
  font-weight: 600;
}

.help-text a,
.help-text p {
  color: #444;
  font-size: 15px;
  text-decoration: none;
}
.banner-square3 {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.banner-square3 img {
  width: 100%;
  height: 300px;
  display: block;
  border-radius: 10px;
}

/* TEXT OVERLAY */
.banner-text {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 35px;
  font-weight: 700;
  text-align: center;
  width: 90%;             /* 👈 prevents left/right cutting */
  max-width: 300px;       /* 👈 keeps text in a good box */
  padding: 0 10px;        /* 👈 avoids touching edges */
  text-shadow: 0px 4px 12px rgba(0,0,0,0.7);
  pointer-events: none;
}

/* OPTIONAL: Hover effect */
.banner-square3:hover img {
  filter: brightness(70%);
  transform: scale(1.05);
  transition: 0.4s ease;
}
