/* ===== PREMIUM HERO CAROUSEL STYLES ===== */
.premium-hero-carousel {
  position: relative;
  width: 100%;
  height: 95vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
  background: #000;
  top: 0;
}
.hero-slides-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
}
.slide-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slide-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(90deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%); */
}
.overlay-dark {
  /* background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%); */
}
.overlay-gradient {
  /* background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, transparent 100%); */
}
.overlay-pink {
  /* background: linear-gradient(135deg, rgba(200,100,120,0.6) 0%, rgba(180,80,100,0.4) 100%); */
}

/* Slide Content Positioning */
.slide-content {
  position: absolute;
  z-index: 10;
  color: #fff;
  padding: 40px;
}
.slide-content-right {
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
}
.slide-content-left {
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
}
.slide-content-center {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

/* Text Styles */
.slide-tag {
  display: block;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-style: italic;
  color: rgba(255,255,255,0.9);
}
.slide-tag-white {
  display: block;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 3px;
  margin-bottom: 15px;
  color: #fff;
  text-transform: uppercase;
}
.slide-tag-gold {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 20px;
  color: #d4af37;
  text-transform: uppercase;
  border: 1px solid #d4af37;
  padding: 8px 20px;
}
.slide-title {
  font-size: 52px;
  font-weight: 300;
  letter-spacing: 4px;
  margin-bottom: 25px;
  line-height: 1.1;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}
.slide-title-large {
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 20px;
  line-height: 1;
  text-shadow: 3px 3px 20px rgba(0,0,0,0.4);
}
.slide-title-elegant {
  font-size: 60px;
  font-weight: 200;
  letter-spacing: 8px;
  margin-bottom: 10px;
  line-height: 1.1;
  text-transform: uppercase;
}
.slide-title-sub {
  font-size: 120px;
  font-weight: 100;
  letter-spacing: 20px;
  margin-bottom: 20px;
  line-height: 1;
  color: rgba(255,255,255,0.3);
}
.slide-title-mega {
  font-size: 90px;
  font-weight: 900;
  letter-spacing: 5px;
  margin-bottom: 30px;
  line-height: 1;
  text-shadow: 4px 4px 30px rgba(0,0,0,0.5);
  animation: pulse 2s infinite;
}
.slide-subtitle {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 30px;
  line-height: 1.6;
  text-transform: uppercase;
}
.slide-desc {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 30px;
  opacity: 0.9;
}
.slide-terms {
  font-size: 11px;
  letter-spacing: 1px;
  margin-top: 30px;
  opacity: 0.7;
}

/* Buttons */
.slide-btn {
  display: inline-block;
  padding: 15px 40px;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.slide-btn:hover {
  background: #fff;
  color: #000;
}
.slide-btn-white {
  display: inline-block;
  padding: 15px 50px;
  background: #fff;
  border: none;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  margin: 0 10px;
  transition: all 0.3s ease;
}
.slide-btn-white:hover {
  background: #000;
  color: #fff;
}
.slide-btn-gold {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #d4af37 0%, #f0d060 100%);
  border: none;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.slide-btn-gold:hover {
  background: linear-gradient(135deg, #f0d060 0%, #d4af37 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212,175,55,0.4);
}
.slide-btn-pulse {
  display: inline-block;
  padding: 18px 50px;
  background: #F15B22;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 50px;
  animation: btnPulse 2s infinite;
  transition: all 0.3s ease;
}
.slide-btn-pulse:hover {
  background: #fff;
  color: #F15B22;
  animation: none;
}
.slide-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Countdown */
.sale-countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
.countdown-item {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 20px 25px;
  border-radius: 10px;
  min-width: 90px;
}
.countdown-item span {
  display: block;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}
.countdown-item small {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 5px;
  opacity: 0.8;
}

/* Navigation Arrows */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  border-radius: 50%;
}
.hero-nav:hover {
  background: #fff;
  color: #000;
}
.hero-prev { left: 30px; }
.hero-next { right: 30px; }

/* Dots Navigation */
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}
.hero-dot {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-dot:hover {
  background: rgba(255,255,255,0.7);
}
.hero-dot.active {
  background: #fff;
  width: 35px;
  border-radius: 6px;
}

/* Animations */
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(241, 91, 34, 0.7); }
  50% { box-shadow: 0 0 0 20px rgba(241, 91, 34, 0); }
}

/* Responsive - Tablet */
@media (max-width: 991px) {
  .premium-hero-carousel {
    height: 80vh;
    min-height: 500px;
    max-height: 700px;
  }
  .slide-title { font-size: 40px; }
  .slide-title-large { font-size: 50px; }
  .slide-title-elegant { font-size: 45px; }
  .slide-title-sub { font-size: 80px; }
  .slide-title-mega { font-size: 60px; }
  .slide-subtitle { font-size: 16px; }
  .slide-content { padding: 30px; }
  .slide-content-right { right: 5%; }
  .slide-content-left { left: 5%; }
  .hero-nav { width: 50px; height: 50px; }
  .hero-prev { left: 15px; }
  .hero-next { right: 15px; }
}

/* Responsive - Mobile */
@media (max-width: 767px) {
  .premium-hero-carousel {
    height: 90vh;
    min-height: 600px;
    max-height: none;
  }
  .slide-content {
    padding: 20px;
    width: 90%;
    max-width: 400px;
  }
  .slide-content-right,
  .slide-content-left {
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  .slide-content-center {
    padding: 15px;
  }
  .slide-tag { font-size: 14px; }
  .slide-tag-white { font-size: 12px; }
  .slide-tag-gold { font-size: 11px; padding: 6px 15px; }
  .slide-title { font-size: 32px; letter-spacing: 1px; margin-bottom: 15px; }
  .slide-title-large { font-size: 36px; letter-spacing: 0; }
  .slide-title-elegant { font-size: 32px; letter-spacing: 2px; }
  .slide-title-sub { font-size: 60px; letter-spacing: 6px; }
  .slide-title-mega { font-size: 48px; }
  .slide-subtitle { font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
  .slide-desc { font-size: 14px; margin-bottom: 20px; }
  .slide-terms { font-size: 11px; margin-top: 10px; }
  .slide-btn,
  .slide-btn-white,
  .slide-btn-gold,
  .slide-btn-pulse {
    padding: 12px 25px;
    font-size: 12px;
  }
  .slide-btns {
    flex-direction: column;
    gap: 10px;
  }
  .slide-btns .slide-btn-white {
    margin: 0;
  }
  .sale-countdown {
    gap: 10px;
  }
  .countdown-item {
    padding: 12px 15px;
    min-width: 70px;
  }
  .countdown-item span { font-size: 28px; }
  .countdown-item small { font-size: 10px; }
  .hero-nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .hero-prev { left: 10px; }
  .hero-next { right: 10px; }
  .hero-dots { bottom: 20px; }
  .hero-dot { width: 10px; height: 10px; }
  .hero-dot.active { width: 28px; }
}

/* ===== BANK OFFER CAROUSEL STYLES ===== */
.bank-offer-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 20px 0;
  margin: 0;
  overflow: hidden;
  position: relative;
}
.bank-offer-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.bank-offer-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.bank-offer-icon {
  background: linear-gradient(135deg, #F15B22 0%, #ff7e47 100%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(241, 91, 34, 0.4);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(241, 91, 34, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(241, 91, 34, 0); }
  100% { box-shadow: 0 0 0 0 rgba(241, 91, 34, 0); }
}
.bank-offer-icon i {
  font-size: 28px;
  color: #fff;
}
.bank-offer-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 0;
}

/* Bank Tabs Styling */
.bank-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.bank-tab {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.bank-tab:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}
.bank-tab.active {
  background: linear-gradient(135deg, #F15B22 0%, #ff7e47 100%);
  border-color: #F15B22;
  box-shadow: 0 4px 15px rgba(241, 91, 34, 0.4);
}

/* Bank Offers Container */
.bank-offers-container {
  position: relative;
  min-height: 70px;
}
.bank-offer-item {
  display: none;
  animation: fadeInUp 0.4s ease;
}
.bank-offer-item.active {
  display: block;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.bank-offer-item .offer-highlight {
  background: #F15B22;
  color: #fff;
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 8px;
}
.bank-offer-item h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px 0;
  line-height: 1.4;
}
.bank-offer-item h3 .discount {
  color: #4ade80;
  font-weight: 700;
}
.bank-offer-item p {
  color: #a0aec0;
  font-size: 13px;
  margin: 0;
}
.bank-offer-item p strong {
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.15);
  padding: 2px 8px;
  border-radius: 3px;
}

.bank-offer-cta {
  flex-shrink: 0;
}
.offer-btn {
  background: linear-gradient(135deg, #F15B22 0%, #ff7e47 100%);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(241, 91, 34, 0.3);
}
.offer-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(241, 91, 34, 0.4);
  color: #fff;
}

/* ===== OUR STORES SECTION STYLES ===== */
.our-stores-section {
  background: #fff;
  padding: 50px 0;
  position: relative;
}
.stores-header {
  margin-bottom: 35px;
}
.stores-subtitle {
  color: #1a1a2e;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.stores-title {
  color: #1a1a2e;
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}
.stores-carousel-wrapper {
  position: relative;
  padding: 0 50px;
}
.stores-carousel {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 15px 5px 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.stores-carousel::-webkit-scrollbar {
  display: none;
}
.store-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.store-item:hover {
  transform: translateY(-8px);
}
.store-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: 3px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, 
              linear-gradient(135deg, #F15B22, #ff7e47, #fbbf24) border-box;
  transition: all 0.4s ease;
}
.store-item:hover .store-image {
  box-shadow: 0 12px 35px rgba(241, 91, 34, 0.3);
  transform: scale(1.05);
}
.store-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.store-item:hover .store-image img {
  transform: scale(1.15);
}
.store-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(241, 91, 34, 0.2), rgba(255, 126, 71, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.store-item:hover .store-overlay {
  opacity: 1;
}
.store-name {
  margin-top: 15px;
  color: #1a1a2e;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: color 0.3s ease;
}
.store-item:hover .store-name {
  color: #F15B22;
}

/* Navigation Arrows */
.stores-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}
.stores-nav:hover {
  background: linear-gradient(135deg, #F15B22, #ff7e47);
  color: #fff;
  box-shadow: 0 6px 20px rgba(241, 91, 34, 0.4);
}
.stores-nav i {
  font-size: 16px;
  color: #1a1a2e;
  transition: color 0.3s ease;
}
.stores-nav:hover i {
  color: #fff;
}
.stores-prev {
  left: 0;
}
.stores-next {
  right: 0;
}

/* Stores Section Responsive */
@media (max-width: 991px) {
  .stores-title {
    font-size: 24px;
  }
  .store-image {
    width: 100px;
    height: 100px;
  }
  .stores-carousel {
    gap: 20px;
  }
  .stores-carousel-wrapper {
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  .our-stores-section {
    padding: 35px 0;
  }
  .stores-header {
    text-align: center;
    margin-bottom: 25px;
  }
  .stores-title {
    font-size: 20px;
  }
  .store-image {
    width: 85px;
    height: 85px;
  }
  .store-name {
    font-size: 12px;
    margin-top: 10px;
  }
  .stores-carousel {
    gap: 15px;
    padding: 10px 5px 15px;
  }
  .stores-carousel-wrapper {
    padding: 0 35px;
  }
  .stores-nav {
    width: 35px;
    height: 35px;
  }
  .stores-nav i {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .store-image {
    width: 70px;
    height: 70px;
    border-width: 2px;
  }
  .store-name {
    font-size: 11px;
  }
  .stores-carousel {
    gap: 12px;
  }
}

/* ===== BESTSELLERS SECTION STYLES ===== */
.bestsellers-section {
  background: #f9f9f9;
  padding: 50px 0;
}
.bestsellers-header {
  margin-bottom: 25px;
}
.bestsellers-title {
  color: #1a1a2e;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px 0;
}
.bestsellers-underline {
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #F15B22, #ff7e47);
  border-radius: 2px;
}
.bestsellers-banner {
  display: flex;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.bestsellers-left {
  flex: 0 0 40%;
  background: linear-gradient(135deg, #fef3e9 0%, #ffe4cc 50%, #ffd4b3 100%);
  padding: 50px 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.bestsellers-bg-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  font-size: 60px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03);
  letter-spacing: 5px;
  line-height: 1.2;
  padding: 20px;
  pointer-events: none;
  overflow: hidden;
}
.bestsellers-bg-text::before,
.bestsellers-bg-text::after {
  content: 'BESTSELLERS';
}
.bestsellers-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.bestsellers-tag {
  background: #c45a20;
  color: #fff;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 25px;
}
.bestsellers-offer {
  color: #1a1a2e;
  font-size: 32px;
  font-weight: 400;
  margin: 0 0 15px 0;
  line-height: 1.1;
}
.bestsellers-offer .offer-percent {
  font-size: 72px;
  font-weight: 900;
  display: block;
  margin-top: 5px;
  letter-spacing: -2px;
}
.bestsellers-cta {
  color: #333;
  font-size: 18px;
  margin: 0 0 25px 0;
  font-style: italic;
}
.bestsellers-btn {
  background: linear-gradient(135deg, #F15B22, #ff7e47);
  color: #fff;
  padding: 14px 35px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(241, 91, 34, 0.3);
}
.bestsellers-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(241, 91, 34, 0.4);
  color: #fff;
}

/* Right Side - Product Grid */
.bestsellers-right {
  flex: 0 0 60%;
  display: flex;
  padding: 15px;
  gap: 10px;
}
.featured-model {
  flex: 0 0 35%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.featured-model .model-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.featured-model .model-img.active {
  position: relative;
  opacity: 1;
}
.product-grid {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.grid-row {
  display: flex;
  gap: 8px;
  flex: 1;
}
.grid-item {
  flex: 1;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.grid-item .grid-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.grid-item .grid-img.active {
  opacity: 1;
}
.grid-item:hover {
  transform: scale(1.03);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  z-index: 2;
}
.grid-item::after {
  content: '';
  display: block;
  padding-bottom: 100%;
}

/* Bestsellers Responsive */
@media (max-width: 991px) {
  .bestsellers-banner {
    flex-direction: column;
  }
  .bestsellers-left {
    flex: none;
    padding: 40px 30px;
  }
  .bestsellers-offer .offer-percent {
    font-size: 56px;
  }
  .bestsellers-right {
    flex: none;
    padding: 15px;
  }
  .featured-model {
    flex: 0 0 40%;
  }
}
@media (max-width: 767px) {
  .bestsellers-section {
    padding: 35px 0;
  }
  .bestsellers-left {
    padding: 30px 20px;
  }
  .bestsellers-tag {
    font-size: 11px;
    padding: 6px 15px;
  }
  .bestsellers-offer {
    font-size: 24px;
  }
  .bestsellers-offer .offer-percent {
    font-size: 42px;
  }
  .bestsellers-cta {
    font-size: 15px;
  }
  .bestsellers-bg-text {
    font-size: 40px;
  }
  .bestsellers-right {
    flex-direction: column;
  }
  .featured-model {
    flex: none;
    height: 250px;
  }
  .grid-row {
    gap: 5px;
  }
  .product-grid {
    gap: 5px;
  }
}
@media (max-width: 480px) {
  .bestsellers-offer .offer-percent {
    font-size: 36px;
  }
  .featured-model {
    height: 200px;
  }
}

/* ===== SHOP BY BRANDS SECTION STYLES ===== */
.brands-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.brands-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(241, 91, 34, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.brands-header {
  text-align: center;
  margin-bottom: 60px;
}
.brands-title {
  color: #1a1a2e;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 12px 0;
  position: relative;
  display: inline-block;
}
.brands-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #F15B22, #ff7e47);
  border-radius: 2px;
}
.brands-subtitle {
  color: #666;
  font-size: 16px;
  margin: 20px 0 0 0;
}

/* Brands Carousel Layout */
.brands-grid {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 50px 10px 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.brands-grid::-webkit-scrollbar {
  display: none;
}

.brand-card {
  position: relative;
  flex: 0 0 220px;
  height: 200px;
  border-radius: 16px;
  overflow: visible;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 35px;
}
.brand-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
.brand-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  transition: transform 0.5s ease;
}
.brand-card:hover .brand-bg {
  transform: scale(1.05);
}
/* Individual brand colors */
.brand-card-1 .brand-bg { background: linear-gradient(135deg, #111 0%, #333 100%); }
.brand-card-2 .brand-bg { background: linear-gradient(135deg, #000 0%, #1a1a1a 100%); }
.brand-card-3 .brand-bg { background: linear-gradient(135deg, #c8102e 0%, #e32636 100%); }
.brand-card-4 .brand-bg { background: linear-gradient(135deg, #c41230 0%, #8b0000 100%); }
.brand-card-5 .brand-bg { background: linear-gradient(135deg, #000 0%, #2c2c2c 100%); }
.brand-card-6 .brand-bg { background: linear-gradient(135deg, #e50010 0%, #cc0000 100%); }

.brand-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 50px 20px 20px;
}

/* Logo half inside half outside */
.brand-logo {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 10;
  overflow: hidden;
}
.brand-logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 50%;
}
.brand-card:hover .brand-logo {
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}
.brand-letter {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  font-family: 'Georgia', serif;
}
.brand-name {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin: 15px 0 5px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.brand-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  margin: 0 0 15px 0;
  font-style: italic;
}
.brand-cta {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.brand-card:hover .brand-cta {
  opacity: 1;
  transform: translateY(0);
}
.brand-cta i {
  transition: transform 0.3s ease;
}
.brand-card:hover .brand-cta i {
  transform: translateX(5px);
}
.brand-offer {
  position: absolute;
  top: 45px;
  right: 45px;
  background: linear-gradient(135deg, #F15B22, #ff7e47);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(241, 91, 34, 0.4);
}
.brands-more {
  text-align: center;
  margin-top: 40px;
}
.view-all-brands {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1a1a2e;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 35px;
  border: 2px solid #1a1a2e;
  border-radius: 30px;
  transition: all 0.3s ease;
}
.view-all-brands:hover {
  background: #1a1a2e;
  color: #fff;
}
.view-all-brands i {
  transition: transform 0.3s ease;
}
.view-all-brands:hover i {
  transform: translateX(5px);
}

/* Brands Section Responsive */
@media (max-width: 991px) {
  .brands-grid {
    gap: 25px;
    padding: 50px 10px 15px;
  }
  .brand-card {
    flex: 0 0 200px;
    height: 180px;
  }
  .brands-title {
    font-size: 28px;
  }
  .brand-logo {
    width: 70px;
    height: 70px;
    top: -35px;
  }
  .brand-letter {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .brands-section {
    padding: 45px 0;
  }
  .brands-header {
    margin-bottom: 50px;
  }
  .brands-title {
    font-size: 24px;
  }
  .brands-subtitle {
    font-size: 14px;
  }
  .brands-grid {
    gap: 20px;
    padding: 45px 10px 15px;
  }
  .brand-card {
    flex: 0 0 180px;
    height: 170px;
    margin-top: 30px;
  }
  .brand-logo {
    width: 60px;
    height: 60px;
    top: -30px;
    border-width: 3px;
  }
  .brand-letter {
    font-size: 24px;
  }
  .brand-name {
    font-size: 16px;
    margin-top: 20px;
  }
  .brand-offer {
    font-size: 10px;
    padding: 2px 10px;
    top: 35px;
    right: 30px;
  }
  .brand-content {
    padding: 40px 15px 15px;
  }
}
@media (max-width: 480px) {
  .brand-card {
    flex: 0 0 160px;
    height: 160px;
  }
  .brand-cta {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Bank offer responsive */
@media (max-width: 991px) {
  .bank-offer-wrapper {
    justify-content: center;
    text-align: center;
  }
  .bank-offer-content {
    align-items: center;
  }
  .bank-tabs {
    justify-content: center;
  }
  .bank-offer-item {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .bank-offer-banner {
    padding: 15px 0;
  }
  .bank-offer-icon {
    width: 50px;
    height: 50px;
  }
  .bank-offer-icon i {
    font-size: 22px;
  }
  .bank-offer-text h3 {
    font-size: 14px;
  }
  .bank-offer-text p {
    font-size: 11px;
  }
  .bank-logo {
    padding: 5px 10px;
    font-size: 10px;
  }
  .offer-btn {
    padding: 10px 20px;
    font-size: 12px;
  }
}

/* Normal desktop :992px. */
@media (min-width: 992px) and (max-width: 1169px) {
    
.mega-menu {
  left: -170px;
}
.mega-menu3 {
  left: -280px;
}
.add-cart {
  margin-bottom: 50px;
}
.up-banner {
  margin-top: 30px;
}
.slider-content-4 {
  padding: 60px 30px;
}
.main-menu nav ul li a {
  padding: 24px 16px;
}
.banner-5 {
  margin-bottom: 24px;
}
.mega-menu-5 {
  left: -253px !important;
}
.mega5-1 {
  left: -160px !important;
}
.single-procuct-view .simpleLens-thumbnails-container {
  margin: 40px 82px;
}
.blog-meta span.date-type {
  font-size: 12px;
}
.footer-icons a {
  margin: 0 1px;
}
.footer-top-text ul li {
  font-size: 13px;
  padding: 5px 0 4px;
}
.footer-top-text ul li i {
  margin-right: 3px;
}
    
 
}


/* Tablet desktop :768px. */
@media (min-width: 768px) and (max-width: 991px) {
    
.search-option {
  width: 232px;
}    
.search-option input {
  width: 180px;
}
.cart-item-title a.cart-top {
  width: 232px;
}
.cart-content {
  left: -16px;
}
.cart-content-2 {
  margin-right: -33px;
}
.mega-menu {
  width: 700px;
  left: -130px;
}
.mega-menu span {
  padding: 10px 21px 15px;
}
.mega-menu3 {
  left: -240px;
}
.mega-menu3 span {
  padding: 10px 15px 15px;
}
.service-mar {
  margin-bottom: 30px;
}
.footer-top-text ul li {
  padding: 6px 0 5px;
  font-size: 13px;
}
.footer-top-text ul li i {
  margin-right: 6px;
}
.footer-top-text p {
  font-size: 13px;
  margin-bottom: 12px;
}
.footer-icons a {
  margin: 12px 1px 10px;
}
.add-cart {
  margin-bottom: 60px;
}
.up-come-carousel .product-content .product-name {
  padding: 0;
}
.upcoming-product {
  bottom: 84px;
}
    
/*** Home Version 2 **/
.banner-2 {
  margin-bottom: 14px;
}

.footer-middle-menu nav ul li a {
  margin-right: 14px;
}
    
.mega-menu-5 {
  left: -230px !important;
}
.mega5-1 {
  left: -135px !important;
}
.logo-5 {
  margin-top: 0px;
  text-align: center;
}
.header-right {
  text-align: center;
}
.banner-5{
  margin-bottom: 18px;
}
.header-right-link a.main-search {
  float: none;
}
.cart-item .cart-item-title-5 {
  right: 260px;
}
.search-option-5 {
  right: 150px;
}
.sorter .sort-by select {
  width: 90px;
} 
.toolbar .sorter {
  width: 43%;
}
.post-information .entry-meta {
  padding: 0 10px;
}
.single-procuct-view .simpleLens-thumbnails-container {
  margin: 40px 67px;
}
.features-accordion {
  margin-bottom: 40px;
}
    
    
}

/* small mobile :320px. */
@media (max-width: 767px) {
.container {width:100%}

/* Slider full width and text visible on mobile */
.slider-area {
  width: 100%;
  overflow: hidden;
}
.slider-area .bend,
.slider-area .bend.niceties,
.slider-area .bend.niceties.preview-2 {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
.slider-area .nivoSlider {
  width: 100% !important;
  max-width: 100% !important;
}
.slider-area .nivoSlider img,
.slider-area .nivo-main-image {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  object-fit: cover;
}
.slider-area .container {
  width: 100%;
  max-width: 100%;
  padding: 0 15px;
}
.slider-direction {
  padding: 0 !important;
  width: 100% !important;
}
.slider-direction .container {
  width: 100% !important;
  padding: 0 10px !important;
}
.slider-direction .row {
  margin: 0 !important;
}
.slider-content {
  display: block !important;
  padding: 15px 10px;
  text-align: center;
}
.slider-content .title1 {
  font-size: 18px !important;
  margin-bottom: 8px;
  line-height: 1.3;
}
.slider-content .title2 {
  font-size: 14px !important;
  margin-bottom: 8px;
  line-height: 1.3;
}
.slider-content .title3 {
  font-size: 11px !important;
  line-height: 1.4;
  margin-bottom: 12px;
  padding: 0 5px;
}
.slider-content .title3 br {
  display: none;
}
.slider-content .ready-btn {
  padding: 8px 18px;
  font-size: 11px;
}
.nivo-directionNav {
  display: none;
}
.nivo-controlNav {
  padding: 8px 0;
}
.layer-1-1, .layer-1-2, .layer-1-3, .layer-1-4 {
  margin-bottom: 5px !important;
}

.header-middle-area {
  padding: 10px 0;
}
.header-right-link .search-option {
  float: none;
  margin-left: 0;
}
.search-option button.button {
  float: none;
  padding: 0 17px;
}
.single-banner {
  margin-bottom: 30px;
}
.banner-carousel.owl-theme .owl-controls .owl-buttons div,.indicator-key.owl-theme .owl-controls .owl-buttons div {
  display: none;
}
.features-tab .nav-tabs li a {
  margin: 0 5px;
}
.features-tab .nav > li > a {
  padding: 10px;
}
.tab-content {
  margin-top: 30px;
}
.New-product-des {
  margin-bottom: 30px;
}
.subscribe-box,.subscribe-box input{
  width: 100%;
}
.subscribe-box button {
  float: none;
  margin-top: 30px;
}
.up-come-carousel{
  margin-bottom: 30px;
}
.up-banner {
  margin-bottom: 0 !important;
}
.single-blog {
  margin-bottom: 30px;
}
.service-mar {
  margin-bottom: 30px;
}
.footer-top-menu {
  margin-bottom: 30px;
}
.footer-middle-menu {
  text-align: center;
}
.footer-middle-menu nav ul li {
  margin-bottom: 10px;
}
.payment-system {
  text-align: center;
}

/** Home version 2 **/
.logo-2 {
  text-align: center;
}
.logo-2 a {
  padding: 0px;
}
.cart-2 {
  padding: 30px 0 0;
}
.search-option-2 {
  margin: 30px 0 0px;
}
.banner-content h3 {
  font-size: 20px;
}
.new-product-item {
  margin-top: 10px;
}
.banner-sys-carousel.owl-theme .owl-controls .owl-pagination {
  bottom: 30px;
}
.header-middle {
  padding: 0;
}
.logo-4 a {
  padding: 0;
}
.search-4 {
  margin: 30px 0;
}
.news-latter-4 {
  padding: 90px 10px;
}
.header-bootom-5 {
  padding: 0px 0;
}
.header-right-5 {
  padding: 0 50px 50px !important;
}
.cart-content-5 {
  margin-right: -59px;
}
.search-option-5 {
  margin-right: 10px;
  bottom: -28px;
}
/** Blog Page **/
	
.blog-post-img a {
  width: 100%;
}
.blog-post-content {
  float: none;
  padding-left: 0;
  padding-top: 20px;
  width: 100%;
}
.toolbar .sorter {
  float: none;
  text-align: center;
  width: 100%;
}
.sorter .sort-by {
  float: none;
  margin-bottom: 20px;
}
.sorter .sort-by select {
  width: 115px;
}
.toolbar .pager-list {
  float: none;
  width: 100%;
}
.pager-list .limiter {
  float: none;
  text-align: center;
}
.post-thumbnail img {
  margin-top: 40px;
}
.left-sidebar {
  margin-bottom: 30px;
}
.author-description h2 {
  font-size: 14px;
}
.author-avatar {
  padding-right: 10px;
  width: 13%;
}
.sharing-icon {
  float: none;
}
.post-information .entry-meta {
  padding: 0 5px;
}
.post-information h2 {
  font-size: 20px;
}
.tab-bar .tab-bar-inner {
  float: none;
  margin-bottom: 10px;
  text-align: center;
}
.buttons-cart a {
  margin-top: 10px;
  padding: 8px 4px;
}
.button-cart-right {
  text-align: center;
}
.btn-cart-shop {
  margin-left: 24px;
}
.single-procuct-view .simpleLens-thumbnails-container {
  margin: 40px 28px;
}
.cart .add-to-cart button {
  margin-left: 0;
  margin-top: 15px;
}
.sin-items {
  margin-bottom: 30px;
}
.related-product .single-product {
  margin-bottom: 30px;
}
.sin-rating ul {
  margin-bottom: 10px;
}
.features-accordion {
  margin-bottom: 30px;
}
h2.section-title {
  font-size: 23px;
}
.single-member {
  margin-bottom: 30px;
  width: 100%;
}
.shop-list-product {
  margin-left: 0;
}
	

}

/* Large Mobile :480px. */
@media only screen and (min-width: 480px) and (max-width: 767px) {
.container {width:auto}
.cart-item-title > a i {
  float: left;
}
.cart-item {
  text-align: center;
}
.cart-content {
  left: 76px;
}
.cart-content-2 {
  right: 75px;
}
.price-box span {
  margin: 0 2px;
}
.price-box .old-price {
  font-size: 12px;
}
.header-right-link .search-option {
  float: none;
  margin-left: 17%;
}
.features-tab .nav-tabs {
  float: none;
  text-align: center;
}
.indicator-key.owl-theme .owl-controls .owl-buttons div {
  display: none;
}
.footer-top-text ul li {
  display: block;
}
.banner-content h3 {
  font-size: 20px;
}
.up-banner {
  margin-top: 30px;
}
.single-blog-img a img {
  width: 100%;
}
.add-cart {
  margin-bottom: 40px;
}
.header-right-5 {
  padding: 0 130px 50px !important;
}
.search-option-5 {
  margin-right: 90px;
}
.sharing-icon {
  float: right;
}
.btn-cart-shop {
  margin-left: 30%;
}
.single-procuct-view .simpleLens-thumbnails-container {
  margin: 40px 106px;
}
.product-description-tab.custom-tab .nav > li > a {
  font-weight: 700;
  margin-right: 11px;
}
.cart .add-to-cart button {
  margin-left: 20px;
  margin-top: 0;
}
.single-member img {
  width: 100%;
}
    
    
}

/* ===== CUSTOM MOBILE MENU STYLES (No MeanMenu) ===== */

/* Hide custom mobile menu elements on desktop */
@media (min-width: 992px) {
  .mobile-menu-toggle,
  .mobile-toggle-col,
  .custom-mobile-nav,
  .mobile-menu-overlay {
    display: none !important;
  }
}

/* Show mobile menu toggle button on tablet/mobile */
@media (max-width: 991px) {
  .main-menu,
  .header-right {
    display: none !important;
  }

  /* Header row flex layout for logo + hamburger */
  .header-row {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
  }
  .header-row > div:first-child {
    flex: 0 0 auto;
  }
  .mobile-toggle-col {
    display: block !important;
    text-align: right;
  }

  /* Mobile Menu Toggle Button */
  .mobile-menu-toggle {
    display: inline-block;
    background: black;
    border: none;
    padding: 12px;
    cursor: pointer;
    z-index: 10001;
    position: relative;
    margin-top: 10px;
    border-radius: 4px;
  }
  .mobile-menu-toggle .bar {
    display: block;
    width: 28px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
  }
  /* Hide hamburger when menu is open */
  body.menu-open .mobile-menu-toggle {
    display: none !important;
  }

  /* Close button inside mobile nav */
  .custom-mobile-nav::before {
    content: '✕';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F15B22;
    border-radius: 4px;
    z-index: 10002;
  }

  /* Mobile Menu Overlay */
  .mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
  }
  body.menu-open .mobile-menu-overlay {
    display: block;
  }

  /* Custom Mobile Navigation */
  .custom-mobile-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: #222;
    z-index: 9999;
    overflow-y: auto;
    transition: right 0.3s ease;
    padding-top: 20px;
  }
  .custom-mobile-nav.open {
    right: 0;
  }

  /* Mobile Nav List */
  .mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    padding-top: 38px;
  }
  .mobile-nav-list > li {
    border-bottom: 1px solid #333;
    position: relative;
  }
  .mobile-nav-list > li > a {
    display: block;
    padding: 15px 20px;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .mobile-nav-list > li > a:hover {
    background: #333;
    color: #F15B22;
  }

  /* Submenu Toggle Button */
  .submenu-toggle {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    background: #333;
    border-left: 1px solid #444;
    transition: all 0.3s ease;
  }
  .submenu-toggle:hover {
    background: #F15B22;
  }
  .has-submenu.submenu-open > .submenu-toggle {
    background: #F15B22;
  }
  /* Change + to - when submenu is open */
  .has-submenu.submenu-open > .submenu-toggle {
    font-size: 0;
  }
  .has-submenu.submenu-open > .submenu-toggle::after {
    content: '−';
    font-size: 24px;
  }

  /* Submenu */
  .mobile-nav-list ul {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    background: #1a1a1a;
  }
  .mobile-nav-list ul li {
    border-bottom: 1px solid #2a2a2a;
  }
  .mobile-nav-list ul li:last-child {
    border-bottom: none;
  }
  .mobile-nav-list ul li a {
    display: block;
    padding: 12px 20px 12px 35px;
    color: #ccc;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .mobile-nav-list ul li a:hover {
    background: #2a2a2a;
    color: #F15B22;
  }

  /* Body scroll lock when menu is open */
  body.menu-open {
    overflow: hidden;
  }
}

/* Extra small mobile devices: 320px and below */
@media (max-width: 400px) {
  .slider-area {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    overflow: hidden;
  }
  .slider-area .nivoSlider,
  .slider-area .bend,
  .slider-area .slides {
    width: 100% !important;
  }
  .slider-area .nivoSlider img,
  .slider-area .nivo-main-image {
    width: 100% !important;
    height: auto !important;
    min-height: 200px;
    object-fit: cover;
  }
  .slider-content {
    padding: 10px 5px;
  }
  .slider-content .title1 {
    font-size: 16px !important;
    margin-bottom: 5px;
  }
  .slider-content .title2 {
    font-size: 12px !important;
    margin-bottom: 5px;
  }
  .slider-content .title3 {
    font-size: 10px !important;
    margin-bottom: 10px;
    padding: 0 2px;
  }
  .slider-content .ready-btn {
    padding: 6px 14px;
    font-size: 10px;
  }
  .layer-1-1, .layer-1-2, .layer-1-3, .layer-1-4 {
    margin-bottom: 3px !important;
  }
}

/* ===== CUSTOMER REVIEWS WITH PHOTOS - FLIPKART/AMAZON STYLE ===== */

/* Reviews Summary Section */
.reviews-summary {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 30px;
}
.rating-overview {
  text-align: center;
  padding: 20px 0;
}
.rating-big {
  font-size: 48px;
  font-weight: 700;
  color: #388e3c;
  line-height: 1;
}
.rating-stars-big {
  margin: 10px 0;
}
.rating-stars-big i {
  color: #ffc107;
  font-size: 18px;
}
.rating-count {
  color: #666;
  font-size: 13px;
  margin: 0;
}

/* Rating Bars */
.rating-bars {
  padding: 10px 0;
}
.rating-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.star-label {
  min-width: 35px;
  font-size: 13px;
  color: #666;
}
.star-label i {
  color: #ffc107;
  font-size: 11px;
}
.bar-wrapper {
  flex: 1;
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #388e3c, #4caf50);
  border-radius: 4px;
  transition: width 0.5s ease;
}
.bar-count {
  min-width: 30px;
  font-size: 12px;
  color: #666;
  text-align: right;
}

/* Review Photos Preview */
.review-photos-preview {
  padding: 15px 0;
}
.review-photos-preview h4 {
  font-size: 15px;
  margin-bottom: 15px;
  color: #333;
}
.review-photos-preview h4 span {
  color: #666;
  font-weight: 400;
}
.photos-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.review-photo-thumb {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}
.review-photo-thumb:hover {
  border-color: #F15B22;
  transform: scale(1.05);
}
.review-photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.view-all-photos {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  color: #333;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.view-all-photos:hover {
  background: #F15B22;
  color: #fff;
}

/* Customer Reviews List */
.customer-reviews-list {
  margin-bottom: 40px;
}
.reviews-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}

/* Individual Review Item */
.review-item {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  transition: box-shadow 0.3s ease;
}
.review-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}
.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 40px;
  height: 40px;
  background: #3498db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}
.reviewer-details {
  display: flex;
  flex-direction: column;
}
.reviewer-name {
  font-weight: 600;
  color: #333;
  font-size: 14px;
}
.verified-badge {
  font-size: 12px;
  color: #388e3c;
}
.verified-badge i {
  margin-right: 3px;
}
.review-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 4px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.rating-badge i {
  font-size: 11px;
}
.rating-5, .rating-4 {
  background: #388e3c;
}
.rating-3 {
  background: #ffc107;
  color: #333;
}
.rating-2, .rating-1 {
  background: #e74c3c;
}
.review-title {
  font-weight: 600;
  color: #333;
  font-size: 14px;
}
.review-text {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Review Images */
.review-images {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
.review-img-thumb {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #e0e0e0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.review-img-thumb:hover {
  border-color: #F15B22;
  transform: scale(1.05);
}
.review-img-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Review Footer */
.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
  flex-wrap: wrap;
  gap: 10px;
}
.review-date {
  font-size: 12px;
  color: #888;
}
.review-date i {
  margin-right: 5px;
}
.review-helpful {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-helpful span {
  font-size: 12px;
  color: #666;
}
.helpful-btn {
  background: #f5f5f5;
  border: 1px solid #ddd;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 12px;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
}
.helpful-btn:hover {
  background: #F15B22;
  color: #fff;
  border-color: #F15B22;
}
.helpful-btn i {
  margin-right: 5px;
}

/* Load More Reviews */
.load-more-reviews {
  text-align: center;
  margin-top: 20px;
}
.load-more-reviews .btn {
  padding: 10px 30px;
  border-radius: 25px;
}

/* Write Review Section */
.write-review-section {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  margin-top: 30px;
}
.write-review-section h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #333;
}
.review-form .form-group {
  margin-bottom: 20px;
}
.review-form label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  display: block;
}
.review-form label span {
  color: #e74c3c;
}
.review-form label small {
  font-weight: 400;
  color: #888;
}
.review-form .form-control {
  border-radius: 6px;
  border: 1px solid #ddd;
  padding: 12px 15px;
  transition: border-color 0.3s ease;
}
.review-form .form-control:focus {
  border-color: #F15B22;
  box-shadow: 0 0 0 2px rgba(241, 91, 34, 0.1);
}

/* Star Rating Input */
.star-rating-input {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 5px;
}
.star-rating-input input {
  display: none;
}
.star-rating-input label {
  cursor: pointer;
  font-size: 28px;
  color: #ddd;
  transition: color 0.2s ease;
  margin: 0;
}
.star-rating-input label:hover,
.star-rating-input label:hover ~ label,
.star-rating-input input:checked ~ label {
  color: #ffc107;
}

/* Photo Upload Area */
.photo-upload-area {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.upload-box {
  width: 100px;
  height: 100px;
  border: 2px dashed #ccc;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fff;
}
.upload-box:hover {
  border-color: #F15B22;
  background: #fff5f0;
}
.upload-box i {
  font-size: 28px;
  color: #888;
  margin-bottom: 5px;
}
.upload-box span {
  font-size: 12px;
  color: #666;
}
.uploaded-photos-preview {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.uploaded-photos-preview .preview-img {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
}
.uploaded-photos-preview .preview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.uploaded-photos-preview .preview-img .remove-img {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
}
.upload-hint {
  width: 100%;
  font-size: 12px;
  color: #888;
  margin-top: 10px;
}
.upload-hint i {
  margin-right: 5px;
  color: #F15B22;
}
.submit-review-btn {
  background: #F15B22;
  border: none;
  padding: 12px 35px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.submit-review-btn:hover {
  background: #d94c18;
  transform: translateY(-2px);
}

/* Customer Photos Gallery Tab */
.all-customer-photos h4 {
  font-size: 18px;
  margin-bottom: 20px;
}
.all-customer-photos h4 span {
  color: #666;
  font-weight: 400;
}
.photos-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 15px;
}
.gallery-photo {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #e8e8e8;
  transition: all 0.3s ease;
}
.gallery-photo:hover {
  border-color: #F15B22;
  transform: scale(1.03);
}
.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile Responsive for Reviews */
@media (max-width: 767px) {
  .reviews-summary {
    padding: 15px;
  }
  .rating-overview {
    margin-bottom: 20px;
  }
  .rating-big {
    font-size: 40px;
  }
  .review-header {
    flex-direction: column;
  }
  .review-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .write-review-section {
    padding: 20px 15px;
  }
  .star-rating-input label {
    font-size: 24px;
  }
  .photos-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .review-img-thumb {
    width: 60px;
    height: 60px;
  }
}

/* ===== ADDITIONAL HERO CAROUSEL FIXES ===== */
/* Large tablets and small laptops */
@media (min-width: 768px) and (max-width: 1024px) {
  .premium-hero-carousel {
    height: 85vh;
    min-height: 550px;
  }
  .slide-content {
    padding: 25px;
  }
  .slide-title { font-size: 45px; }
  .slide-title-large { font-size: 55px; }
  .slide-title-elegant { font-size: 50px; }
}

/* Small devices */
@media (max-width: 480px) {
  .premium-hero-carousel {
    height: 85vh;
    min-height: 550px;
  }
  .slide-content {
    padding: 15px;
    width: 95%;
  }
  .slide-title { font-size: 28px; }
  .slide-title-large { font-size: 32px; }
  .slide-title-elegant { font-size: 28px; }
  .slide-title-sub { font-size: 45px; letter-spacing: 2px; }
  .slide-title-mega { font-size: 40px; }
  .hero-nav {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}

/* Very small devices */
@media (max-width: 360px) {
  .slide-title { font-size: 24px; }
  .slide-title-large { font-size: 28px; }
  .slide-title-elegant { font-size: 24px; }
  .slide-title-sub { font-size: 36px; }
  .slide-title-mega { font-size: 32px; }
  .slide-btn,
  .slide-btn-white,
  .slide-btn-gold,
  .slide-btn-pulse {
    padding: 10px 20px;
    font-size: 11px;
  }
}

/* Short viewport height fixes */
@media (max-height: 600px) {
  .premium-hero-carousel {
    height: 100vh;
    min-height: 500px;
  }
  .slide-content {
    padding: 15px;
  }
  .slide-title { font-size: 36px; margin-bottom: 10px; }
  .slide-title-large { font-size: 42px; margin-bottom: 10px; }
  .slide-title-sub { font-size: 48px; margin-bottom: 5px; }
  .slide-subtitle { font-size: 12px; margin-bottom: 15px; }
  .sale-countdown { margin-bottom: 20px; }
}

/* Ensure proper display on all orientations */
@media screen and (orientation: landscape) and (max-height: 500px) {
  .premium-hero-carousel {
    height: 100vh;
    min-height: 400px;
  }
  .slide-content {
    padding: 10px;
  }
  .slide-title { font-size: 28px; }
  .slide-title-large { font-size: 32px; }
  .slide-title-sub { font-size: 36px; }
}

@media (min-width: 991px ) and (max-width: 992px) {
  .custom-mobile-nav
  {
    display: none !important;
  }
  .mobile-menu-toggle
  {
    display: none !important;
  }
  .enhanced-search-container
  {
    display: none !important;
  }
  .header-right
  {
    display: none !important;
  }
}