/* TOP BAR */
.aq-topbar {
  background: #b28c42;
  color: #fff;
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  padding: 6px 0;
}

.aq-topbar-inner {
  text-align: center;
}

.topbar-mobile { display: none; }

@media (max-width: 768px) {
  .topbar-desktop { display: none; }
  .topbar-mobile { display: inline; }
}

/* LOGO */
.aq-logo {
  font-family: 'Arsenal', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #552121;
  text-decoration: none;
}

/* DESKTOP NAV */
.aq-header {
  background: #fff;
  padding: 29px 0;
}

.aq-menu {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;            
  justify-content: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  white-space: nowrap;           
}

.aq-menu a {
  font-size: 16px;
  font-weight: 600;
  color: #552121;
  text-decoration: none;
}

/* BADGES */
.has-badge {
  padding-top: 4px;
}

.aq-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  background: #b28c42;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  pointer-events: none;
}

/* ICONS */
.aq-icons a,
.aq-mobile-icons a {
  font-size: 20px;
  color: #552121;
  margin-left: 14px;
}


/* MOBILE HEADER */
.aq-mobile-header {
  background: #fff;
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
}

/* MOBILE OFFERS */
.aq-mobile-offers {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  width: 100%;
}

/* OFFER BUTTONS */
.aq-mobile-offers a {
  flex: 1;
  display: block;
  background: linear-gradient(
    45deg,
    rgba(166, 109, 48, 1),
    rgba(255, 229, 142, 1) 50%,
    rgba(224, 176, 87, 1) 100%
  );
  color: #000;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 4px;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  line-height: 1.2;
  white-space: normal;
}

/* ================= MOBILE OFFER FIX ================= */
@media (max-width: 767px) {

  body {
    overflow-x: hidden; /* stop layout breaking */
  }

  .aq-mobile-header {
    height: auto;
    overflow: visible;
  }

  .aq-mobile-offers {
    display: flex;
    width: 100%;
    margin-top: 8px;
  }

  .aq-mobile-offers a {
    flex: 1 1 0;
    min-width: 0;
    font-size: 13px;
    padding: 8px 4px;
    text-align: center;
  }

}



/* ================= HERO SLIDER ================= */

/* ================= HERO SLIDER ================= */
.hero-slider {
  position: relative;
}

/* Slide images using background */
.hero-slider .slide-img {
  width: 100%;
  height: 0;
  padding-bottom: 55%; /* Desktop default aspect ratio */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Desktop */
@media (min-width: 992px) {
  .hero-slider .slide-img {
    padding-bottom: 45%; /* Adjust as needed for desktop */
  }
}

/* Tablet */
@media (max-width: 991px) and (min-width: 576px) {
  .hero-slider .slide-img {
    padding-bottom: 65%; /* Taller on tablet */
  }
}

/* Mobile */
@media (max-width: 575px) {
  .hero-slider .slide-img {
    padding-bottom:125%; /* Very tall on mobile */
  }
}

/* Carousel indicators (dots) */
.hero-slider .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

/* Arrow colors */
.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
  filter: invert(1);
}
/* ================= FEATURES SECTION ================= */
.features-section {
  background: #f7f4ef;
}

.feature-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 8px;
}

.feature-icon img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  margin-bottom: 8px;
}

.feature-text {
  font-family: 'Urbanist', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #552121;
}
/* ================= FEATURES SECTION ================= */
.features-section {
  background: #f7f4ef;
  padding: 20px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: transparent;
}

.feature-item img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.feature-item span {
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #552121;
  white-space: nowrap;
}

/* ================= MOBILE SCROLL ================= */
@media (max-width: 767px) {

  .features-scroll {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .features-scroll::-webkit-scrollbar {
    display: none;
  }

  .features-scroll .col-8 {
    flex: 0 0 auto;
  }

}
/* =============== SHOP BY CATEGORY =============== */
.shop-category-section {
  background: #fff;
}

.section-title {
  font-family: 'Arsenal', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #552121;
}

.cat-card {
  background: #ffffff;
  border-radius: 8px;
  text-align: center;
  padding: 12px;
  cursor: pointer;
  transition: 0.3s ease;
}

.cat-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
}

.cat-card span {
  display: block;
  font-family: 'Urbanist', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #552121;
  margin-top: 8px;
}

/* Hover effect */
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* MOBILE SWIPE */
@media (max-width: 767px) {
  .cat-scroll {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .cat-scroll::-webkit-scrollbar {
    display: none;
  }
  .cat-scroll .col-6 {
    flex: 0 0 auto;
  }
}
/* ================= BEST SELLERS ================= */
.best-sellers-section {
  background: #552121;
  padding: 60px 0;
}

.best-title {
  font-family: 'Arsenal', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
}

/* Arrows */
.arrow-btn {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin-left: 10px;
  transition: 0.3s;
}

.arrow-btn:hover {
  background: #fff;
  color: #552121;
}

/* Product Card */
.product-card {
  background: #fff;
  border-radius: 10px;
  padding: 14px;
  text-align: center;
  height: 100%;
}

.product-card img {
  width: 100%;
  border-radius: 8px;
}

.product-card h6 {
  font-family: 'Urbanist', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-top: 10px;
  color: #552121;
}

.product-card p {
  font-weight: 600;
  color: #552121;
  margin-bottom: 10px;
}

/* Gradient Button */
.add-cart-btn {
  width: 100%;
  padding: 8px 0;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  color: #552121;
  background: linear-gradient(
    45deg,
    rgba(166, 109, 48, 1),
    rgba(255, 229, 142, 1) 50%,
    rgba(224, 176, 87, 1) 100%
  );
}

/* ================= MOBILE SCROLL ================= */
@media (max-width: 767px) {
  .best-scroll {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .best-scroll::-webkit-scrollbar {
    display: none;
  }

  .best-scroll .col-8 {
    flex: 0 0 auto;
  }

  .best-title {
    font-size: 24px;
  }
}


/* ================= VIDEO SECTION ================= */
.video-section {
  padding: 40px 0;
  background: #fff;
}

.video-box {
  width: 100%;
  height: 420px; /* DESKTOP HEIGHT */
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}

.video-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

/* ================= MOBILE SCROLL ================= */
@media (max-width: 767px) {

  .video-scroll {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .video-scroll::-webkit-scrollbar {
    display: none;
  }

  .video-scroll .col-9 {
    flex: 0 0 auto;
  }

  .video-box {
    height: 320px; /* MOBILE HEIGHT (TALL LIKE ADILQADRI) */
  }
}
/* ================= TWO IMAGE SECTION ================= */
.two-image-section {
  padding: 40px 0;
  background: #fff;
}

/* DESKTOP */
.image-scroll {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1320px;
  margin: auto;
}

.image-item {
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
}

.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.image-item:hover img {
  transform: scale(1.05);
}

/* ================= MOBILE SCROLL ================= */
@media (max-width: 768px) {

  .image-scroll {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 0 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .image-scroll::-webkit-scrollbar {
    display: none;
  }

  .image-item {
    min-width: 85%;
    height: 260px;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}
.combo-wrap {
  padding: 40px 0;
  font-family: 'Urbanist', sans-serif;
}

/* =============== COMBO OFFERS SECTION =============== */
.combo-offers-section {
  padding: 40px 0;
  font-family: 'Urbanist', sans-serif;
}

/* LEFT SIDE */
.combo-left-inner {
  text-align: center;
}

.combo-left-inner h2 {
  font-size: 28px;
  font-weight: 700;
  color: #552121;
  margin-bottom: 6px;
  font-family: 'Arsenal', sans-serif;
}

.combo-left-inner a {
  font-size: 15px;
  color: #552121;
  text-decoration: none;
  font-weight: 500;
}

/* RIGHT SCROLL */
.combo-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.combo-scroll::-webkit-scrollbar {
  display: none;
}

/* PRODUCT CARD */
.combo-card {
  min-width: 260px;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 12px;
  scroll-snap-align: start;
  background: #fff;
}

.combo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}

/* RATING */
.rating {
  font-size: 13px;
  margin: 8px 0;
}

.rating span {
  color: #666;
}

/* TITLE */
.combo-card h4 {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 8px;
  color: #000;
}

/* PRICE */
.price {
  font-size: 14px;
}

.sale {
  font-weight: 600;
}

.regular {
  text-decoration: line-through;
  color: #999;
  margin-left: 6px;
}

.off {
  color: #c62828;
  margin-left: 6px;
  font-size: 13px;
}

/* EMI */
.emi {
  font-size: 13px;
  color: #444;
}

.emi a {
  text-decoration: none;
  color: #552121;
}

/* ADD TO CART BUTTON */
.cart-btn {
  margin-top: 10px;
  width: 100%;
  padding: 10px;
  border-radius: 25px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(
    45deg,
    rgba(166, 109, 48, 1),
    rgba(255, 229, 142, 1) 50%,
    rgba(224, 176, 87, 1) 100%
  );
  color: #000;
}

/* RESPONSIVE BEHAVIOR */
@media (max-width: 991px) {
  .combo-left-inner {
    margin-bottom: 16px;
  }
}
 /* ================= SINGLE IMAGE SECTION ================= */
.single-image-section {
  padding: 40px 0;
}

.single-image-box {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.single-image-box img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* On larger screens we can make the image a bit taller */
@media (min-width: 992px) {
  .single-image-box img {
    /* height: 380px;  */
  }
}

/* On small screens give a bit more height */
@media (max-width: 767px) {
  .single-image-box img {
    height: 240px;
  }
}

/* ================= MEET THE FOUNDER ================= */
.founder-section {
  padding: 60px 0;
  background-color: #f7f4ef;
}

.founder-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.founder-text h2 {
  font-family: 'Arsenal', sans-serif;
  font-size: 32px;
  color: #552121;
  margin-bottom: 20px;
}

.founder-text p {
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  color: #552121;
  margin-bottom: 15px;
  line-height: 1.6;
}

.btn-founder {
  padding: 12px 30px;
  background: linear-gradient(45deg, rgba(166,109,48,1), rgba(255,229,142,1) 50%, rgba(224,176,87,1) 100%);
  color: #552121;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .founder-section {
    text-align: center;
  }

  .founder-text {
    margin-top: 30px;
  }
}
.trust-section {
  padding: 50px 0;
  background-color: #2d0a06;
}

.trust-section .section-title {
  font-family: 'Arsenal', sans-serif;
  font-size: 36px;
  color: #fff;
  margin-bottom: 40px;
}

.trust-item img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 15px;
}

.trust-item p {
  font-family: 'Urbanist', sans-serif;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .trust-item img {
    width: 100px;
    height: 100px;
  }

  .trust-item p {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .trust-item img {
    width: 90px;
    height: 90px;
  }

  .trust-item p {
    font-size: 13px;
  }
}
.news-section {
  background-color: #f7f4ef;
  padding: 50px 0;
}

.news-section .section-title {
  font-family: 'Arsenal', sans-serif;
  font-size: 36px;
  color: #552121;
  margin-bottom: 30px;
  text-align: center;
}

.news-scroll {
  overflow-x: auto;
  display: flex;
  gap: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.news-scroll::-webkit-scrollbar {
  display: none; /* hide scrollbar */
}

.news-item {
  scroll-snap-align: start;
  flex: 0 0 48%; /* show 2 items in mobile view */
  /* border-radius: 12px; */
}

.news-item img {
  /* width: 100%;
  height: 200px; */
  object-fit: cover;
  /* border-radius: 12px; */
  transition: transform 0.3s;
}

.news-item img:hover {
  transform: scale(1.05);
}

/* Tablet and Desktop adjustments */
@media (min-width: 768px) {
  .news-item {
    flex: 0 0 24%; /* 4 images in a row on desktop */
  }

  .news-item img {
    /* height: 200px; */
  }
}

.footer-section {
  background-color: #552121;
  color: #fff;
  font-family: 'Urbanist', sans-serif;
}

.footer-section h5 {
  font-family: 'Arsenal', sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-section p,
.footer-section li {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  cursor: pointer;
}

.footer-links li .badge {
  font-size: 10px;
  vertical-align: middle;
}

.footer-section input.form-control {
  border-radius: 0;
}

.footer-section .btn {
  border-radius: 0;
  font-weight: 600;
}

.footer-bottom p {
  font-size: 13px;
  margin: 0;
}

/* Responsive */
@media (max-width: 767px) {
  .footer-section .row > div {
    text-align: center;
  }

  .footer-section form.d-flex {
    flex-direction: column;
    gap: 10px;
  }

  .footer-section input.form-control {
    width: 100%;
  }
}
