/*--------------------------------------------------------------
  TABLE OF CONTENTS
  1. Variables
  2. Base Typography
  3. Utilities (Toast, Buttons, Spacing)
  4. Site Structure
  5. Components (Banner, Carousel, Product, Blog, Cart)
  6. Responsive
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1. VARIABLES
--------------------------------------------------------------*/
:root {
  /* Theme Colors */
  --accent-color: #ffc43f;
  --dark-color: #222222;
  --light-dark-color: #727272;
  --light-color: #ffffff;
  --grey-color: #dbdbdb;
  --light-grey-color: #fafafa;
  --primary-color: #6995b1;
  --light-primary-color: #eef1f3;

  /* Fonts */
  --body-font: "Open Sans", sans-serif;
  --heading-font: "Nunito", sans-serif;

  /* Bootstrap Overrides */
  --bs-link-color: #333;
  --bs-link-hover-color: #000;
  --bs-body-font-family: var(--body-font);
  --bs-body-font-size: 1rem;
  --bs-body-color: #747474;
  --bs-primary: var(--accent-color);
  --bs-primary-rgb: 255, 196, 63;
  --bs-success: #a3be4c;
  --bs-success-rgb: 163, 190, 76;
  --bs-border-color: #f7f7f7;
  --bs-secondary-rgb: 230, 243, 251;
  --bs-danger-rgb: 220, 53, 69;
  --bs-warning-rgb: 220, 53, 69;
  --bs-info-rgb: 230, 243, 250;
}

/*--------------------------------------------------------------
2. BASE TYPOGRAPHY
--------------------------------------------------------------*/
body {
  font-family: var(--body-font);
  letter-spacing: 0.03em;
  line-height: 2;
}

h1,h2,h3,h4,h5,h6,
.display-1,.display-2,.display-3,.display-4,.display-5,.display-6 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--dark-color);
}

/*--------------------------------------------------------------
3. UTILITIES
--------------------------------------------------------------*/
.error-accent { background: var(--accent-color) !important; color: #000 !important; }
.error-dark-custom { background: #dc3545 !important; color: #fff !important; }
.error-primary-custom { background: var(--primary-color) !important; color: #fff !important; }
.error-grey { background: var(--grey-color) !important; color: #000 !important; }
.error-light-dark { background: var(--light-dark-color) !important; color: #fff !important; }

.btn-primary { --bs-btn-bg: var(--accent-color); --bs-btn-hover-bg: #f7a422; }
.btn-outline-primary { --bs-btn-color: var(--accent-color); --bs-btn-hover-bg: var(--accent-color); --bs-btn-hover-color:#fff; }
.btn-outline-light { --bs-btn-color: #747474; --bs-btn-hover-bg: #efefef; }
.btn-warning { --bs-btn-bg: #fcf7eb; --bs-btn-hover-bg: #ffecbe; }
.btn-success { --bs-btn-bg: #9de3c2; --bs-btn-hover-bg:#eef5e4; }
.btn-danger { --bs-btn-bg: #ecc9af; --bs-btn-hover-bg: #ffeada; }

/*--------------------------------------------------------------
4. SITE STRUCTURE
--------------------------------------------------------------*/
.preloader-wrapper {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  z-index: 111;
  flex-direction: column;
  gap: 1rem;
}
.loader { display: flex; gap: 0.6rem; }
.loader div {
  width: 25px;
  height: 25px;
  background: var(--accent-color, #f9a825);
  border-radius: 50%;
  animation: bounce 0.6s infinite alternate;
}
.loader div:nth-child(2) { animation-delay: 0.2s; }
.loader div:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce {
  from { transform: translateY(0); opacity: 0.6; }
  to   { transform: translateY(-10px); opacity: 1; }
}
.loader-text {
  font-size: 2.5rem;
  font-weight: bold;
  color: rgba(0,0,0,0.08);
  text-transform: uppercase;
  letter-spacing: 4px;
  position: absolute;
  bottom: 20%;
  user-select: none;
  pointer-events: none;
}

/*--------------------------------------------------------------
5. COMPONENTS
--------------------------------------------------------------*/

/* Swiper Navigation Arrows */
.swiper-button-prev,
.swiper-button-next {
  color: #fff;
  background: rgba(0,0,0,0.4);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease, transform 0.2s ease;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--accent-color);
  transform: scale(1.1);
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 18px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }
}

/* Product Card */
.product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  padding: 15px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}
.product-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 10px;
}
.product-title {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin: 6px 0;
  min-height: 40px;
}
.product-rating { font-size: 13px; color: #777; margin-bottom: 6px; }
.product-price { font-size: 16px; font-weight: bold; color: #e67e22; margin: 6px 0; }
.product-actions { display: flex; justify-content: center; gap: 8px; }

/* Quantity */
.product-qty .input-group { max-width: 140px; }
.product-qty .btn {
  width: 28px; height: 28px;
  padding: 0; display: flex;
  align-items: center; justify-content: center;
  border-radius: 4px !important;
  font-size: 14px;
  transition: all 0.2s ease;
}
.product-qty input {
  width: 40px; text-align: center;
  font-weight: 600; font-size: 14px;
  padding: 0; margin: 0;
}

/* Actions */
.product-actions .btn {
  width: 40px; height: 40px;
  border-radius: 50% !important;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
}
.product-actions .btn:hover { transform: scale(1.1); }

/* Brand Watermark on Product */
.product-card .image-wrapper { position: relative; overflow: hidden; }
.product-card .image-wrapper img.product-img { position: relative; z-index: 1; }
.product-card .brand-watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0.20;
  pointer-events: none;
}
.product-card .brand-watermark img {
  max-width: 80%;
  max-height: 60%;
  object-fit: contain;
  filter: grayscale(100%);
}
.product-card:hover .brand-watermark { opacity: 0.14; }

/*--------------------------------------------------------------
5B. DOUBLE RANGE SLIDER (PRICE FILTER)
--------------------------------------------------------------*/
.price-slider-wrapper {
  position: relative;
  height: 40px;
  margin-bottom: 6px;
  padding: 10px 0;
}
.price-slider-wrapper input[type="range"] {
  position: absolute;
  top: 0; left: 0; right: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  background: transparent;
  -webkit-appearance: none;
}
.price-slider-wrapper input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  pointer-events: auto;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent-color);
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
  cursor: pointer;
  margin-top: -6px;
  z-index: 4;
}
.price-slider-wrapper input[type="range"]::-moz-range-thumb {
  pointer-events: auto;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent-color);
  cursor: pointer;
  z-index: 4;
}
.price-slider-wrapper::before {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 6px;
  background: #e9e9e9;
  border-radius: 3px;
  transform: translateY(-50%);
  z-index: 1;
}
.price-slider-wrapper .slider-track {
  position: absolute;
  top: 50%;
  height: 6px;
  background: var(--accent-color);
  border-radius: 3px;
  transform: translateY(-50%);
  z-index: 2;
  left: 0%; width: 0%;
}
.price-slider-wrapper input[type="range"]:focus::-webkit-slider-thumb,
.price-slider-wrapper input[type="range"]:active::-webkit-slider-thumb {
  box-shadow: 0 0 0 6px rgba(255,196,63,0.12);
}

@media (max-width: 576px) {
  .price-slider-wrapper { height: 44px; }
  .price-slider-wrapper input[type="range"]::-webkit-slider-thumb {
    width: 18px; height: 18px; margin-top: -7px;
  }
}

/*--------------------------------------------------------------
6. RESPONSIVE
--------------------------------------------------------------*/
@media screen and (max-width:991px) {
  .image-float { margin:0; }
  .offcanvas-body .nav-item { font-weight:700; border-bottom:1px solid #d1d1d1; }
  .dropdown-menu { padding:0; border:none; font-size:0.9em; }
}

/* Policy Section */
.policy-section {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 18px 22px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.policy-section:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.policy-section h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.policy-section ul, 
.policy-section ol {
  margin: 0;
  padding-left: 18px;
}

/* Sticky Back to Shop Button */
.back-to-shop {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 5000;
}
.back-to-shop .btn {
  border-radius: 50px;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}
.back-to-shop .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}
.back-to-shop .btn .btn-text { display: inline; }

/* Mobile FAB */
@media (max-width: 576px) {
  .back-to-shop { bottom: 100px; right: 15px; }
  .back-to-shop .btn {
    border-radius: 50%;
    width: 56px;
    height: 56px;
    padding: 0;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseFab 1.6s infinite;
  }
  .back-to-shop .btn .btn-text { display: none; }
}
@keyframes pulseFab {
  0% { box-shadow: 0 0 0 0 rgba(255,196,63,0.6); }
  70% { box-shadow: 0 0 0 12px rgba(255,196,63,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,196,63,0); }
}

/* Features Section */
.features-section .feature-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.features-section .feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
.features-section .icon-box {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--accent-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}
.features-section .feature-card:hover .icon-box {
  background: #f7a422;
  transform: scale(1.1);
}


/* Recommended Products */
.recommended-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0 40px;
}

.recommended-scroll {
  overflow-x: auto;
  display: flex;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}
.recommended-scroll::-webkit-scrollbar { display: none; }

.recommended-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  min-width: 200px;
  max-width: 220px;
  flex: 0 0 auto;
  text-align: center;
  padding: 12px;
  transition: transform 0.3s ease;
}
.recommended-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.5);
}
.recommended-card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
}
.recommended-card h6 {
  font-size: 14px;
  font-weight: 600;
  min-height: 36px;
}

/* Scroll buttons */
.scroll-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  cursor: pointer;
}
.scroll-btn.left { left: 0; }
.scroll-btn.right { right: 0; }
.scroll-btn:hover { background: var(--accent-color); }

/* Mobile tweaks */
@media (max-width: 576px) {
  .recommended-wrapper { padding: 0 20px; }
  .recommended-card { min-width: 160px; }
  /* .banner-ad {} */
}

/* Search Bar Styling */
#search-form input,
#mobile-search-form input {
  font-size: 0.95rem;
  padding-left: 8px;
}

#search-form button i,
#mobile-search-form button i {
  font-size: 1.2rem;
}

#search-form,
#mobile-search-form {
  transition: all 0.3s ease;
}

#search-form:focus-within,
#mobile-search-form:focus-within {
  box-shadow: 0 0 6px rgba(0, 123, 255, 0.3);
}

/* Desktop search width & centering */
#search-form {
  max-width: 600px;
  margin: 0 auto;
}

/* Mobile search spacing inside offcanvas */
#mobile-search-form {
  margin-bottom: 12px;
}

/* ---------- Mobile slide-in search ---------- */
.mobile-search{
  position:fixed; top:10px; left:12px; right:12px;
  transform:translateX(-110%);
  transition:transform .25s ease;
  z-index: 2000;
}
.mobile-search.show{ transform:translateX(0); }
.mobile-search-form{
  background:#ffffff;
  border-radius:999px;
  padding:10px 12px;
  display:flex; align-items:center; gap:8px;
}
.mobile-search-form input{
  border:0; background:transparent; box-shadow:none; height:44px;
}
.mobile-search-form .btn{ border:0; }

/* Style the hamburger button only for mobile */
/* Force navbar toggler to always have border on mobile */
@media (max-width: 991px) {
  .navbar-toggler {
    border: 1px solid #ccc !important;
    border-radius: 6px;
    padding: 6px 10px;
    background-color: #fff; /* keeps visible on white */
  }

  /* Icon inside (hamburger lines) */
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3e%3cpath stroke='%23222' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3e%3c/svg%3e");
  }

  /* On hover/focus */
  .navbar-toggler:hover,
  .navbar-toggler:focus {
    border-color: var(--accent-color);
    background-color: #fff;
  }
  .navbar-toggler:hover .navbar-toggler-icon,
  .navbar-toggler:focus .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3e%3cpath stroke='%23f7a422' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3e%3c/svg%3e");
  }
}

.preloader-wrapper {
  transition: opacity 0.4s ease;
}

/* ===============================
   HEADER & LOGO (CLEAN VERSION)
   =============================== */

/* Header row - ensures alignment */
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 6px 0;
}

/* Logo wrapper */
.site-header .navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
}

/* Unified logo size */
.site-header .logo-img {
  max-height: 48px;   /* consistent across desktop */
  height: auto;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Search box */
.header-search {
  max-width: 780px;
  background: #f8f9fa;
  border-radius: 999px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0,0,0,.04);
}
.header-search input {
  border: 0;
  background: transparent;
  box-shadow: none;
  height: 42px;
  padding-left: 2px;
}
.header-search .btn {
  border: 0;
  color: #333;
}

/* Header icons (cart, profile, wishlist, etc.) */
.site-header .icon-btn {
  background: #f8f9fa;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #333;
  transition: all 0.2s ease;
}
.site-header .icon-btn:hover {
  background: var(--accent-color);
  color: #fff;
}
.site-header .cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  font-size: 0.65rem;
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .site-header .logo-img {
    max-height: 38px;  /* smaller logo for tablet/mobile */
  }
  .header-row {
    min-height: 60px;
  }
}
@media (max-width: 576px) {
  .site-header .logo-img {
    max-height: 34px;  /* even smaller for phones */
  }
}


/* as mine banner css below */
/* ===============================
   HERO SECTION + SLIDER + SIDE BANNERS (ENHANCED)
   =============================== */

.hero-section {
  position: relative;
  z-index: 1;
}

.hero-section .banner-blocks {
  margin: 0;
}

/* Left big hero column */
.hero-section .col-lg-8 {
  display: flex;
  flex-direction: column;
}

/* Right stacked banners */
.hero-section .col-lg-4 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

/* Main big hero block */
.hero-section .banner-ad.large {
  flex: 1;
  min-height: 480px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: #eef1f3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* Swiper slides */
.hero-section .banner-ad.large .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* Content */
.hero-section .banner-ad.large .banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}

.hero-section .banner-ad.large .content-wrapper {
  flex: 0 0 55%;
  max-width: 55%;
}

.hero-section .banner-ad.large .img-wrapper {
  flex: 0 0 40%;
  max-width: 40%;
  text-align: center;
}

.hero-section .banner-ad.large .img-wrapper img {
  max-height: 400px;
  width: 100%;
  object-fit: contain;
  animation: floaty 3s ease-in-out infinite;
}

/* Float animation */
@keyframes floaty {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* Text styling */
.hero-section .banner-ad.large .categories {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-section .banner-ad.large h3.display-4 {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, #222, #555);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-section .banner-ad.large p.lead {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Swiper pagination dots */
.hero-section .banner-ad.large .swiper-pagination {
  bottom: 20px !important;
}
.hero-section .banner-ad.large .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
  width: 14px;
  height: 14px;
  transition: all 0.3s ease;
}
.hero-section .banner-ad.large .swiper-pagination-bullet-active {
  background: var(--accent-color);
  transform: scale(1.2);
  opacity: 1;
}

/* Swiper arrows */
.hero-section .banner-ad.large .swiper-button-prev,
.hero-section .banner-ad.large .swiper-button-next {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(0,0,0,0.1);
  color: #222;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease, transform 0.2s ease;
}
.hero-section .banner-ad.large .swiper-button-prev:hover,
.hero-section .banner-ad.large .swiper-button-next:hover {
  background: var(--accent-color);
  color: #fff;
  transform: scale(1.1);
}
.hero-section .banner-ad.large .swiper-button-prev::after,
.hero-section .banner-ad.large .swiper-button-next::after {
  font-size: 18px;
  font-weight: bold;
}

/* ===============================
   SIDE BANNERS
   =============================== */
.hero-section .col-lg-4 .banner-ad {
  position: relative;
  flex: 1 1 auto;
  border-radius: 14px;
  min-height: 220px;
  background-size: contain !important;
  background-position: right bottom !important;
  background-repeat: no-repeat !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-section .col-lg-4 .banner-ad:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
}

/* Gradient overlay for better text contrast */
.hero-section .col-lg-4 .banner-ad::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(0,0,0,0.55), rgba(0,0,0,0.15));
  z-index: 1;
  border-radius: inherit;
}

.hero-section .col-lg-4 .content-wrapper {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-section .col-lg-4 .banner-title {
  font-size: 1.4rem;
  font-weight: 700;
}

.hero-section .col-lg-4 .categories.sale {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
}

/* Buttons inside banners */
.hero-section .col-lg-4 .btn {
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 0.85rem;
  background: var(--accent-color);
  color: #000;
  font-weight: 600;
  transition: all 0.3s ease;
}
.hero-section .col-lg-4 .btn:hover {
  background: #fff;
  color: var(--accent-color);
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991px) {
  .hero-section .banner-ad.large {
    min-height: unset;
    padding: 40px 20px;
    text-align: center;
  }
  .hero-section .banner-ad.large .banner-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .hero-section .banner-ad.large .content-wrapper,
  .hero-section .banner-ad.large .img-wrapper {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .hero-section .banner-ad.large .img-wrapper img {
    max-height: 220px;
  }
}

@media (max-width: 576px) {
  .hero-section .banner-ad.large h3.display-4 {
    font-size: 1.5rem;
  }
  .hero-section .banner-ad.large p.lead {
    font-size: 0.9rem;
  }
  .hero-section .col-lg-4 .banner-ad {
    min-height: 180px;
  }
}

/* Quantity input group */
/* Wrap row (qty + cart button) */
.cart-controls {
  display: flex;
  gap: 10px;
  width: 100%;
}

/* Quantity control box */
.product-qty {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  /* border: 1px solid #ddd; */
  /* border-radius: 8px; */
  padding: 2px;
  min-width: 120px;
  height: 42px; /* matches Add-to-Cart button */
}

/* Buttons inside qty */
.product-qty button {
  width: 32px;
  height: 32px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-radius: 6px !important;
}

/* Input in middle */
.product-qty input {
  flex: 1;
  height: 32px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  border: none;
  background: transparent;
  box-shadow: none;
}

/* Add to Cart button */
.addtocartbtn {
  min-width: 140px; /* or 160px */
  text-align: center;
  height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--accent-color);
  color: #fff;
  white-space: nowrap; /* prevent breaking */
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: all 0.25s ease;
}

.addtocartbtn:hover {
  background: #f7a422;
  transform: translateY(-2px);
}

