.featured-slider {
  position: relative;
  padding: 0 60px; /* arrows ke liye space */
}

/* Nav container */
.featured-slider .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  z-index: 10;
  pointer-events: none;
}

/* Arrow buttons */
.featured-slider .owl-nav button {
  pointer-events: all;
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(6px);
  border: 1px solid #eee !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  width: 48px;
  height: 48px;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

/* Hover effect */
.featured-slider .owl-nav button:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(255, 126, 95, 0.4);
}

/* Arrow icon */
.featured-slider .owl-nav button span {
  font-size: 24px;
  color: #ff7e5f;
  line-height: 1;
}

/* Position thoda andar */
.featured-slider .owl-prev {
  margin-left: -20px;
}

.featured-slider .owl-next {
  margin-right: -20px;
}
/* Click / focus pe jo black border aata hai usko hatao */
.featured-slider .owl-nav button:focus,
.featured-slider .owl-nav button:active,
.featured-slider .owl-nav button:focus-visible {
  outline: none !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15); /* same shadow rahe */
  border: 1px solid #eee !important;
}
.shop_section:has(.featured-slider:empty) {
  display: none;
}
#loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999; /* Make sure it stays on top */
    text-align: center;
}


/* ===================== SHOP SECTION STYLES ===================== */
.premium-shop {
  background: #fafafa;
}

.shop-heading {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 40px;
  color: #333;
}

/* ===================== FILTER BAR ===================== */
.filter-bar {
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.filter-btn {
  border-radius: 30px;
  padding: 9px 22px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: #000;
  background: #f9f9f9;
}

.clear-btn {
  border-radius: 30px;
  padding: 9px 22px;
  background: #000;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.clear-btn:hover {
  background: #333;
  color: #fff;
}

/* SEARCH BOX */
.search-wrapper {
  width: 220px;
}

.search-input {
  border-radius: 30px;
  padding: 20px 18px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: all 0.3s ease;
}

.search-input:focus {
  box-shadow: none;
  border-color: #000;
}

/* ===================== PRODUCT GRID ===================== */
.product-row {
  margin-left: -10px;
  margin-right: -10px;
}

.product-row > .product-item {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 25px;
}

/* ===================== PRODUCT CARD ===================== */
.product-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px 15px;
  border: 1px solid #eee;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.07);
}

/* ===================== PRODUCT IMAGE ===================== */
.product-img {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  overflow: hidden;
}

.product-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.product-img img:hover {
  transform: scale(1.1);
}

/* ===================== PRODUCT INFO ===================== */
.product-title {
  font-size: 15px;
  font-weight: 400;
  color: #555;
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-price-wrap {
  margin-top: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.product-price {
  font-weight: 600;
  color: #111;
  font-size: 15px;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 13px;
}

.discount-badge {
  background-color: #f8c500; /* golden accent */
  color: #111;
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

/* ===================== DROPDOWN STYLING ===================== */
.dropdown-menu {
  border-radius: 14px;
  padding: 8px 0;
  border: 1px solid #eee;
}

.dropdown-item {
  font-size: 14px;
  padding: 8px 18px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.dropdown-item:hover {
  background-color: #f2f2f2;
  color: #000;
}

.dropdown-item.active-item {
  background-color: #f2f2f2;
  color: #000 !important;
  border-radius: 8px;
}

/* ===================== NO PRODUCT ===================== */
.no-product p {
  color: #666;
  font-size: 15px;
  margin-top: 10px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1200px) {
  .product-item.col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (max-width: 992px) {
  .product-item.col-md-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}

@media (max-width: 768px) {
  .product-item.col-md-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .product-img {
    height: 160px;
  }

  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-bar .dropdown,
  .filter-bar .search-wrapper,
  .filter-bar .clear-btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .product-item.col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .product-img {
    height: 200px;
  }
}

/* Remove default arrows */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

/* Quantity Styling */
.quantity-wrapper {
    margin-bottom: 20px;
}

.quantity-wrapper label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
}

.quantity-box {
    display: inline-flex;
    align-items: center;
    border: 1px solid #d4af37;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
}

.quantity-box input {
    width: 50px;
    text-align: center;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 600;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #e89c8c;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.qty-btn:hover {
    background: #ef8973e0;
}
.qty-btn:focus,
.qty-btn:active {
    outline: none;
    box-shadow: none;
}

.quantity-box input:focus {
    outline: none;
    box-shadow: none;
}

/* ===== New Hero Slider ===== */

.hero_slider_wrap {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.hero_slide_item {
  position: relative;
  height: 100vh;
}

.hero_slide_img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/* Dark Overlay */
.hero_slide_item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero_content_box {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 2;
  max-width: 600px;
  animation: fadeUp 1s ease forwards;
}

.hero_title {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero_text {
  font-size: 18px;
  margin-bottom: 25px;
}

.hero_btn {
  display: inline-block;
  padding: 12px 30px;
  background: #fd9c6b;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.hero_btn:hover {
  background: #fd9c6b;
  color: #fff;
}

/* Smooth Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

/* Remove arrow background */
.carousel-control-prev,
.carousel-control-next {
  width: 6%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 35px;
  height: 35px;
  background-size: 60% 60%;
}