:root {
  --primary-color: #0d5c92; /* Deep Blue from logo */
  --secondary-color: #72b23a; /* Vibrant Green from logo */
  --accent-color: #e3f2fd;
  --text-color: #333;
  --light-text: #666;
  --white: #ffffff;
  --background: #f8f9fa;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --border-radius: 12px;
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --glass: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
}

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

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes pulse-soft {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.4);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(0, 86, 179, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 86, 179, 0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--background);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.top-bar {
  background: var(--primary-color);
  color: var(--white);
  padding: 10px 0;
  font-size: 13px;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 1001;
  display: flex;
}

.top-bar-content {
  display: inline-block;
  animation: marquee 25s linear infinite;
  padding-right: 50px;
}

.top-bar-content span {
  display: inline-block;
  padding-right: 50px;
}

.section {
  padding: 30px 0 40px;
}

.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

.logo img {
  height: 80px;
  object-fit: contain;
}

.nav-menu ul {
  display: flex;
  gap: 25px;
}

.nav-link {
  font-weight: 500;
  font-size: 15px;
}

.nav-link:hover {
  color: var(--primary-color);
}

.search-bar {
  display: flex;
  background: #f1f3f4;
  padding: 8px 15px;
  border-radius: 25px;
  width: 300px;
}

.search-bar input {
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  margin-left: 10px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-icon,
.user-icon {
  font-size: 20px;
  cursor: pointer;
  position: relative;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--secondary-color);
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 50%;
}

/* Hero Section - Desktop Redesign */
.hero.full-banner {
  position: relative;
  width: 100%;
  min-height: 600px;
  background: url("images/desktop_hero_banner_v2.png") no-repeat center right;
  background-size: cover;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.hero-full-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.hero-content-wrapper {
  width: 55%;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content h1 .highlight {
  color: var(--primary-color);
}

.hero-content p {
  font-size: 18px;
  color: #444;
  margin-bottom: 30px;
  max-width: 500px;
  line-height: 1.6;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary.btn-icon {
  background: var(--primary-color);
  color: white;
}

.btn-outline.btn-icon {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

/* Hero Timer Box */
.hero-timer-box {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  display: inline-block;
  margin-top: 20px;
  border: none;
}

.timer-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: #555;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-left: 2px;
}

.desktop-timer {
  display: flex;
  align-items: center;
  gap: 0;
  background: #ff4757;
  padding: 4px 10px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(255, 71, 87, 0.15);
}

.timer-segment {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2px 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  margin: 2px;
  min-width: 42px;
}

.timer-unit {
  font-size: 16px;
  font-weight: 800;
  color: #003366;
  line-height: 1;
}

.timer-sub {
  font-size: 7px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  margin-top: 2px;
}

.timer-sep {
  font-size: 16px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 1px;
}

/* Hero Trust Badges */
.hero-trust-badges {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-badge i {
  color: #ff9800;
  font-size: 18px;
}

.trust-badge span {
  font-size: 13px;
  font-weight: 600;
  color: #555;
}

.btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 12px;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background: #004494;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--accent-color);
}

.mobile-hero-banners {
  display: none;
  width: 100%;
  overflow: hidden;
}

.mobile-hero-banners .banner-carousel {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 15px;
}

.mobile-hero-banners .banner-carousel::-webkit-scrollbar {
  display: none;
}

.mobile-hero-banners .banner-item {
  min-width: 100%;
  flex-shrink: 0;
  min-height: 180px;
  background: #f0f0f0;
}

.mobile-hero-banners .banner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image img.desktop-hero-img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  animation: float 6s ease-in-out infinite;
}

.glass-card {
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
}

/* Section Common */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 10px;
}

.section-title {
  text-align: left;
  margin-bottom: 0;
}

.view-all {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.view-all:hover {
  text-decoration: underline;
}

.section-title h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.section-title p {
  color: var(--light-text);
}

/* Product Carousel */
.product-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 0 40px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.product-carousel::-webkit-scrollbar {
  display: none;
}

.product-card {
  min-width: 220px;
  background: var(--white);
  padding: 12px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid #eee;
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-img-wrapper {
  position: relative;
  width: 100%;
  height: 180px;
  margin-bottom: 12px;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.discount-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #72b23a;
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 0 8px 0 8px;
  z-index: 2;
}

.add-btn {
  position: absolute;
  bottom: 5px;
  right: 5px;
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.add-btn:hover {
  background: #004494;
  transform: scale(1.05);
}

.product-info h3 {
  font-size: 14px;
  margin-bottom: 8px;
  height: 20px;
  overflow: hidden;
  color: #444;
  line-height: 1.2;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.price {
  font-weight: 700;
  color: #000;
  font-size: 16px;
  margin-bottom: 0;
}

.original-price {
  text-decoration: line-through;
  color: #888;
  font-size: 12px;
}

.free-shipping-tag {
  color: #72b23a;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.free-shipping-tag i {
  font-size: 14px;
}

/* Remove old add-to-cart style since we moved to add-btn on image */
.add-to-cart {
  display: none;
}

/* Banner Carousel */
.banner-carousel {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.banner-carousel::-webkit-scrollbar {
  display: none;
}

.banner-item {
  min-width: 600px;
  height: 220px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.banner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 600px) {
  .banner-item {
    min-width: 300px;
    height: 150px;
  }
}

/* Brands Section */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
}

.brand-card {
  background: white;
  padding: 0;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  text-align: center;
  border: none;
  overflow: hidden;
}

.brand-card img {
  width: 100%;
  height: 120px;
  background: #f5f5f5;
  margin: 0;
  padding: 0;
}

.brand-card span {
  font-size: 13px;
  color: var(--text-color);
  font-weight: 600;
  padding: 12px;
  width: 100%;
  background: white;
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Product Action Buttons (Desktop) */
.product-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.btn-cart,
.btn-buy {
  flex: 1;
  padding: 10px 12px;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-cart {
  background: #f5f5f5;
  color: #333;
  border: 1px solid #ddd;
}

.btn-cart:hover {
  background: #e8e8e8;
  border-color: #ccc;
}

.btn-buy {
  background: var(--primary-color);
  color: white;
}

.btn-buy:hover {
  background: #004494;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.btn-cart i {
  font-size: 12px;
}

/* Creative Banner */
.creative-banner {
  background: linear-gradient(135deg, var(--primary-color), #00b4db);
  color: var(--white);
  padding: 60px 0;
  border-radius: 20px;
  text-align: center;
  margin: 20px 0;
}

.creative-banner h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

/* How It Works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.step-item {
  padding: 20px;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
}

.step-item h4 {
  margin-bottom: 10px;
}

/* Testimonials */
.testimonials-header {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px !important;
  flex-wrap: wrap;
  gap: 20px;
}

.rating-summary-box {
  background: white;
  padding: 15px 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid #edf2f7;
}

.rating-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-right: 20px;
  border-right: 2px solid #edf2f7;
}

.rating-value {
  font-size: 28px;
  font-weight: 800;
  color: #1a202c;
  line-height: 1;
  margin-bottom: 5px;
}

.rating-info .stars {
  color: #fbbf24;
  font-size: 14px;
  display: flex;
  gap: 2px;
}

.review-count-wrapper {
  display: flex;
  flex-direction: column;
}

.count-number {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.2;
}

.count-label {
  font-size: 13px;
  color: #718096;
  font-weight: 500;
}

@media (max-width: 768px) {
  .testimonials-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.customer-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.customer-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.customer-details h5 {
  font-size: 16px;
}

.rating {
  color: #ffc107;
  margin-bottom: 10px;
}

/* Instagram Gallery */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding: 10px 0;
}

@media (min-width: 992px) {
  .insta-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
  }
}

.insta-item {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  cursor: pointer;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: block;
}

.insta-item::after {
  content: "\f16d"; /* Instagram Icon */
  font-family: "Font Awesome 6 Brands";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  color: white;
  font-size: 32px;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 2;
}

.insta-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(46, 60, 126, 0.6); /* Brand primary color overlay */
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1;
}

.insta-item:hover img {
  transform: scale(1.15);
}

.insta-item:hover::before,
.insta-item:hover::after {
  opacity: 1;
}

.insta-item:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

/* Footer */
footer {
  background: var(--primary-color);
  color: white;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo img {
  height: 80px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1); /* Makes logo white */
}

.footer-col h4 {
  color: white;
  margin-bottom: 25px;
  font-size: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--secondary-color);
}

.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: white;
  padding-left: 8px;
}

.footer-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.85); /* Text color for non-link items */
  line-height: 1.6;
}

.footer-col ul li i {
  color: var(--secondary-color);
  font-size: 18px;
  margin-top: 4px; /* Align icon with the first line of text */
  min-width: 20px;
  text-align: center;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: white;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons a:hover {
  background: var(--secondary-color);
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.6);
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 600px) {
  .main-header {
    padding: 10px 15px;
    flex-wrap: nowrap;
    gap: 0;
    justify-content: space-between !important;
  }

  .logo {
    order: 1;
    flex: 0 0 auto;
  }

  .logo img {
    height: 65px; /* Highlight logo */
    transition: transform 0.3s;
  }

  .nav-menu {
    display: none;
  }

  /* Hide Search Bar Input */
  .search-bar {
    display: none !important;
  }

  /* Header Actions: Search Icon + Cart */
  .header-actions {
    order: 2;
    gap: 15px;
    flex-shrink: 0;
    margin-right: 0;
    display: flex;
    align-items: center;
  }

  .mobile-search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    font-size: 20px;
    color: var(--primary-color);
    cursor: pointer;
  }

  /* Hide User Icon */
  .user-icon {
    display: none !important;
  }

  .cart-icon {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }

  .cart-count {
    top: -3px;
    right: -3px;
  }

  .mobile-toggle {
    display: none !important; /* Hide hamburger menu */
  }

  /* Fix Header Stability */
  header {
    width: 100% !important;
    max-width: 100vw;
    left: 0;
    margin: 0;
  }

  /* Prevent header shrinking on scroll */
  .scrolled .main-header {
    padding: 10px 15px !important;
  }

  /* Mobile Hero Banners - Full Width */
  .mobile-hero-banners {
    display: block !important;
    width: 100vw;
    margin-left: calc(-50vw + 50%);

    position: relative;
  }

  .mobile-hero-banners img {
    width: 100%;
    display: block;
    height: auto;
    aspect-ratio: 2 / 1;
    object-fit: cover;
    min-height: 200px;
  }

  /* Creative Stats Bar - Transparent Floating Overlay */
  .mobile-hero-banners .mobile-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: transparent;
    z-index: 10;
  }

  .mobile-hero-banners .order-count {
    font-size: 14px;
    font-weight: 700;
    color: #d32f2f;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }

  .mobile-hero-banners .order-count i {
    font-size: 16px;
    animation: pulse-soft 1.5s infinite;
  }

  .mobile-hero-banners .mobile-timer {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 700;
  }

  .mobile-hero-banners .mobile-timer .timer-unit {
    background: rgba(46, 60, 126, 0.95);
    color: white;
    padding: 6px 8px;
    border-radius: 6px;
    min-width: 28px;
    text-align: center;
    font-size: 13px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }

  .desktop-hero-img {
    display: none !important;
  }

  /* Reduce spacing between header and cards */
  #products .section-header {
    margin-bottom: 15px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  #products .section-title {
    margin-bottom: 0;
  }

  #products .section-title h2 {
    font-size: 18px;
    margin: 0;
  }

  #products .view-all {
    font-size: 13px;
    white-space: nowrap;
  }

  /* Product Card Redesign for Mobile */
  .product-card {
    width: 160px !important;
    padding: 0 !important;
  }

  .product-img-wrapper {
    padding: 0 !important;
    margin: 0 !important;
    background: #f8f9fa;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 15px;
  }

  .discount-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 5;
  }

  .add-btn {
    display: none !important;
  }

  .product-info {
    padding: 8px 10px !important;
  }

  .product-info h3 {
    font-size: 13px !important;
    margin-bottom: 6px !important;
    line-height: 1.3;
    height: 20px;
  }

  .price-row {
    margin-bottom: 4px !important;
  }

  .price {
    font-size: 15px !important;
  }

  .original-price {
    font-size: 12px !important;
  }

  .free-shipping-tag {
    font-size: 10px !important;
    padding: 3px 6px !important;
    margin-bottom: 8px !important;
  }

  /* Product Action Buttons */
  .product-actions {
    display: flex;
    gap: 6px;
    margin-top: 8px;
  }

  .btn-cart,
  .btn-buy {
    flex: 1;
    padding: 7px 8px;
    border: none;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }

  .btn-cart {
    background: #f0f0f0;
    color: #333;
    border: 1px solid #ddd;
  }

  .btn-cart:active {
    background: #e0e0e0;
  }

  .btn-buy {
    background: var(--primary-color);
    color: white;
  }

  .btn-buy:active {
    background: #004494;
  }

  .btn-cart i {
    font-size: 10px;
  }

  /* Reduce section spacing */
  .section {
    padding: 20px 0 !important;
  }

  #products {
    padding-bottom: 0px !important;
  }

  /* Brands Section - 3 per row */
  .brands-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
  }

  .brand-card {
    background: white !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    padding: 0 !important;
    height: auto !important;
  }

  .brand-card img {
    width: 100% !important;
    height: 100px !important;

    padding: 0 !important;
    margin: 0 !important;
    background: #f5f5f5;
  }

  .brand-card:nth-child(1) img {
    background: #f5f5f5;
  }
  .brand-card:nth-child(2) img {
    background: #f5f5f5;
  }
  .brand-card:nth-child(3) img {
    background: #f5f5f5;
  }
  .brand-card:nth-child(4) img {
    background: #f5f5f5;
  }
  .brand-card:nth-child(5) img {
    background: #f5f5f5;
  }
  .brand-card:nth-child(6) img {
    background: #f5f5f5;
  }
  .brand-card:nth-child(7) img {
    background: #f5f5f5;
  }
  .brand-card:nth-child(8) img {
    background: #f5f5f5;
  }

  .brand-card span {
    display: block !important;
    padding: 10px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-align: center !important;
    color: #333 !important;
    background: white !important;
  }

  /* Testimonials Horizontal Scroll */
  .testimonials-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 15px !important;
    padding-bottom: 15px !important;
    scrollbar-width: thin !important;
  }

  .testimonials-grid::-webkit-scrollbar {
    height: 6px;
  }

  .testimonials-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }

  .testimonials-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
  }

  .testimonial-card {
    min-width: 280px !important;
    max-width: 280px !important;
    scroll-snap-align: start !important;
    flex-shrink: 0 !important;
  }
}

/* Default Desktop Styles for new element */
.mobile-hero-banners {
  display: none;
}

.mobile-search-icon {
  display: none;
}

.scrolled .main-header {
  padding: 5px 0;
}

.mobile-toggle {
  display: none;
}

/* Sidebar Mobile */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100%;
  background: var(--white);
  z-index: 2001;
  transition: var(--transition);
  padding: 30px;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-sidebar.active {
  left: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.close-sidebar {
  font-size: 24px;
  cursor: pointer;
  color: var(--primary-color);
}

.sidebar-links li {
  margin-bottom: 20px;
}

.sidebar-links a {
  font-size: 18px;
  font-weight: 600;
  display: block;
  color: var(--primary-color);
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .section-title h2 {
    font-size: 24px;
  }
  .cta-group {
    justify-content: center;
  }
  .hero-content h1 {
    font-size: 36px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero {
    background: var(--white);
    padding: 0px 0;
    overflow: hidden;
    min-height: 0px;
  }
}

@media (max-width: 600px) {
  body {
    padding-bottom: 60px; /* Space for bottom nav */
  }

  .mobile-bottom-nav {
    display: flex !important;
    transition: transform 0.3s ease;
  }

  /* Hide bottom nav when footer is reached */
  .mobile-bottom-nav.hide-bottom-nav {
    transform: translateY(100%);
  }

  .section {
    padding: 30px 0;
  }

  .section-header {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 15px;
  }

  .section-title h2 {
    font-size: 18px;
  }

  .view-all {
    font-size: 12px;
  }

  .hero-content {
    display: none !important;
  }

  .desktop-hero-img {
    display: none !important;
  }

  .hero-image {
    margin-top: 0;
    width: 100%;
  }

  .mobile-hero-banners {
    display: block !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 30px;
    text-align: left;
  }

  .footer-col {
    padding-right: 20px;
  }

  .insta-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px;
    padding: 0;
    overflow-x: visible !important;
  }

  .insta-item {
    min-width: unset !important;
    width: 100% !important;
    aspect-ratio: 1 !important;
    border-radius: 8px;
  }

  .insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
/* Enquiry Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 3000;
  backdrop-filter: blur(5px);
}

.popup-modal {
  background: var(--white);
  width: 90%;
  max-width: 550px;
  border-radius: 20px;
  padding: 30px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  animation: popupFadeIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.popup-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

@media (max-width: 480px) {
  .popup-modal {
    padding: 20px;
    width: 95%;
  }

  .popup-form .form-row {
    grid-template-columns: 1fr 1fr; /* Keep 2 columns on mobile */
    gap: 10px;
  }

  .popup-header {
    margin-bottom: 15px;
  }

  .popup-header h2 {
    font-size: 20px;
  }

  .popup-form input,
  .popup-form select {
    padding: 10px;
    font-size: 12px; /* Smaller font for mobile */
  }
}

@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #888;
  transition: var(--transition);
}

.close-popup:hover {
  color: var(--primary-color);
}

.popup-header {
  text-align: center;
  margin-bottom: 25px;
}

.popup-header h2 {
  color: var(--primary-color);
  font-size: 24px;
  margin-bottom: 10px;
}

.popup-header p {
  color: var(--light-text);
  font-size: 14px;
}

.popup-form .form-group {
  margin-bottom: 15px;
}

.popup-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #555;
}

.popup-form input,
.popup-form select,
.popup-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

.popup-form input:focus,
.popup-form select:focus,
.popup-form textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.submit-popup-btn {
  width: 100%;
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  margin-top: 10px;
  cursor: pointer;
  transition: var(--transition);
}

/* Enhanced Deals Section */
.deal-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ff4757;
  color: white;
  padding: 8px 15px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(255, 71, 87, 0.3);
}

.timer-label {
  font-size: 12px;
  text-transform: uppercase;
}

.timer-unit {
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
  min-width: 25px;
  text-align: center;
}

.banner-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.banner-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.banner-nav:hover {
  background: var(--primary-color);
  color: white;
}

.banner-nav.prev {
  left: -20px;
}
.banner-nav.next {
  right: -20px;
}

.banner-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--primary-color);
  width: 25px;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .banner-nav {
    display: none;
  }
  .deal-timer {
    padding: 6px 12px;
    font-size: 11px;
    margin-top: 10px;
  }
  .timer-label {
    font-size: 10px;
  }
  .timer-unit {
    padding: 2px 5px;
    min-width: 22px;
    font-size: 11px;
  }
}

@media (max-width: 600px) {
  body {
    padding-bottom: 0;
  }

  #deals .section-header {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  #deals .section-title {
    flex: 1;
  }

  #deals .section-title h2 {
    font-size: 16px;
    margin-bottom: 4px;
  }

  #deals .section-title p {
    font-size: 11px;
  }

  #deals .deal-timer {
    flex-shrink: 0;
    padding: 5px 10px;
    font-size: 10px;
  }
}

.submit-popup-btn:hover {
  background: #004494;
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .popup-modal {
    padding: 20px;
  }
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2000;
  justify-content: space-around;
  padding: 10px 0 12px;
  border-top: 1px solid #eee;
}

.mobile-bottom-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #666;
  font-size: 11px;
  font-weight: 500;
  transition: var(--transition);
  padding: 4px 8px;
}

.mobile-bottom-nav .nav-item i {
  font-size: 22px;
  margin-bottom: 4px;
}

.mobile-bottom-nav .nav-item.active {
  color: var(--primary-color);
}

.mobile-bottom-nav .nav-item:active {
  color: var(--primary-color);
}

/* Carousel Nav Arrows */
.carousel-wrapper {
  position: relative;
  padding: 0;
}

@media (max-width: 768px) {
  .carousel-wrapper {
    padding: 0 15px;
  }
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 100;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 16px;
}

.carousel-nav:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-50%) scale(1.1);
  border-color: var(--primary-color);
}

.carousel-nav.prev {
  left: -20px;
}

.carousel-nav.next {
  right: -20px;
}

/* Hide navigation on smaller screens handled at bottom */

@media (max-width: 600px) {
  .carousel-wrapper {
    padding: 0;
    margin: 0;
  }

  .carousel-nav {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 36px;
  }
  .hero-content-wrapper {
    width: 65%;
  }
}

@media (max-width: 768px) {
  .hero.full-banner {
    background: white !important;
    background-image: none !important;
    min-height: auto;
  }

  .hero-content-wrapper {
    width: 100%;
  }
  .hero-content h1 {
    font-size: 28px;
    text-align: center;
  }
  .hero-content p {
    font-size: 14px;
    text-align: center;
    margin: 0 auto 30px;
  }
  .cta-group {
    justify-content: center;
  }
  .hero-timer-box,
  .hero-trust-badges {
    display: none !important;
  }
  .hero-image.mobile-only {
    display: block !important;
  }
  .hero-image.mobile-only img {
    width: 100%;
    height: auto;
  }
}

/* Floating Action Buttons */
.floating-actions {
  position: fixed;
  bottom: 80px; /* Above mobile bottom nav */
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 2500;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  text-decoration: none;
}

.whatsapp-float {
  background: #25d366;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  background: #128c7e;
  transform: scale(1.1) rotate(10deg);
}

.scroll-top-btn {
  background: var(--primary-color);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: #004494;
  transform: scale(1.1);
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Adjust position if mobile bottom nav is hidden at desktop */
@media (min-width: 769px) {
  .floating-actions {
    bottom: 30px;
  }
}

/* Products Page Layout */
.products-section {
  padding: 30px 0 60px;
  background: #f1f3f6;
}

.products-list {
  padding-top: 10px; /* Space for floating tags */
}

.products-layout {
  display: flex;
  gap: 15px;
}

/* Sidebar Filters */
.filter-sidebar {
  width: 280px;
  flex-shrink: 0;
  background: white;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
  align-self: flex-start;
  position: sticky;
  top: 80px;
}

.sidebar-block {
  padding-bottom: 20px;
}

.sidebar-title {
  padding: 15px;
  font-size: 18px;
  font-weight: 700;
  border-bottom: 1px solid #f0f0f0;
}

.filter-group {
  padding: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.filter-header {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #212121;
  cursor: pointer;
}

.filter-header i {
  font-size: 12px;
  color: #999;
  transition: transform 0.3s;
}

.filter-header.collapsed i {
  transform: rotate(180deg);
}

.filter-list {
  list-style: none;
  padding: 0;
}

.filter-list li {
  font-size: 14px;
  color: #212121;
  margin-bottom: 8px;
  cursor: pointer;
}

.filter-list li i {
  font-size: 10px;
  margin-right: 8px;
}

.filter-list li.indent {
  padding-left: 15px;
  color: #666;
}

.filter-list li.active-child {
  font-weight: 700;
  color: #000;
  padding-left: 30px;
}

/* Price Range */
.price-range {
  margin-top: 10px;
}

.price-input {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-input select {
  flex: 1;
  padding: 8px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 13px;
  color: #212121;
  outline: none;
  background: white;
  cursor: pointer;
}

.price-input select:focus {
  border-color: var(--primary-color);
}

.price-input span {
  font-size: 12px;
  color: #878787;
}

.filter-search {
  position: relative;
  margin-bottom: 15px;
}

.filter-search i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #878787;
  font-size: 12px;
}

.filter-search input {
  width: 100%;
  border: none;
  border-bottom: 2px solid #e0e0e0;
  padding: 5px 5px 5px 20px;
  font-size: 14px;
  outline: none;
}

/* Checkbox Styling */
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 14px;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: white;
  border: 2px solid #c2c2c2;
  border-radius: 2px;
}

.checkbox-container:hover input ~ .checkmark {
  border-color: var(--primary-color);
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 5px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Products Main Section */
.products-main {
  flex-grow: 1;
  background: white;
  padding: 15px;
}

.listing-header {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.breadcrumbs {
  font-size: 12px;
  color: #878787;
  margin-bottom: 8px;
}

.results-count {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.results-count span {
  color: #878787;
  font-weight: 400;
}

.sort-options {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 14px;
}

.sort-label {
  font-weight: 700;
}

.sort-tab {
  cursor: pointer;
  color: #212121;
  padding-bottom: 5px;
}

.sort-tab.active {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  font-weight: 700;
}

/* Horizontal Product Card */
.horizontal-card {
  display: grid;
  grid-template-columns: 200px 1fr 240px;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  transition: all 0.3s;
}

.horizontal-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
  z-index: 2;
}

.card-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.card-left img {
  max-width: 100%;
  height: 180px;
  object-fit: contain;
}

.compare-checkbox {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.wishlist-icon {
  position: absolute;
  background: white;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  color: #c2c2c2;
  font-size: 14px;
  cursor: pointer;
  z-index: 15;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card .wishlist-icon {
  top: 38px;
  right: 10px;
}

.horizontal-card .wishlist-icon {
  top: 10px;
  right: 10px;
}

.wishlist-icon:hover {
  box-shadow: 0 5px 15px rgba(255, 67, 67, 0.2);
}

.wishlist-icon i {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wishlist-icon:hover i {
  color: #ff4343;
  transform: scale(1.2);
  font-weight: 900; /* Solid heart on hover */
}

.card-center {
  display: flex;
  flex-direction: column;
}

.brand-tag {
  font-size: 12px;
  color: #878787;
  margin-bottom: 5px;
}

.product-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 10px;
  cursor: pointer;
}

.product-title:hover {
  color: var(--primary-color);
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.rating-badge {
  background: #388e3c;
  color: white;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
}

.rating-count {
  font-size: 14px;
  color: #878787;
}

.product-specs {
  list-style: none;
  padding: 0;
}

.product-specs li {
  font-size: 14px;
  color: #212121;
  margin-bottom: 5px;
  position: relative;
  padding-left: 15px;
}

.product-specs li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c2c2c2;
}

.card-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.final-price {
  font-size: 25px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.assured-img {
  height: 20px;
}

.price-discount {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 5px;
}

.old-price {
  text-decoration: line-through;
  color: #878787;
  font-size: 14px;
}

.percent {
  color: #388e3c;
  font-weight: 700;
  font-size: 13px;
}

.hot-deal-tag {
  display: inline-block;
  color: #388e3c;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 5px;
}

.bank-offer {
  font-size: 13px;
  color: #212121;
}

.product-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 15px;
}

.btn-cart-wide,
.btn-buy-wide {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-cart-wide {
  background: #f5f5f5;
  color: #333;
  border: 1px solid #ddd;
}

.btn-cart-wide:hover {
  background: #e8e8e8;
}

.btn-buy-wide {
  background: var(--primary-color);
  color: white;
}

.btn-buy-wide:hover {
  background: #1e2a5a;
}

/* Page Banner */
.page-banner {
  background: white;
  padding: 10px 0;
}

.page-banner img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.mobile-banner {
  display: none;
}

/* Mobile Sort/Filter Bar */
.mobile-filter-bar {
  display: none;
  position: sticky;
  top: 60px; /* Below main header */
  background: white;
  z-index: 100;
  border-bottom: 1px solid #eee;
  height: 48px;
}

.filter-action {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.filter-action:first-child {
  border-right: 1px solid #eee;
}

/* Mobile Filter Overlay */
.mobile-filter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 3100;
  display: none;
  flex-direction: column;
}

.mobile-filter-overlay.active {
  display: flex;
}

.filter-panel-header {
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  gap: 20px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.filter-panel-header h3 {
  font-size: 18px;
}

.filter-panel-body {
  flex-grow: 1;
  display: flex;
}

.filter-tabs {
  width: 120px;
  background: #f0f0f0;
  display: flex;
  flex-direction: column;
}

.filter-tab {
  padding: 15px 10px;
  font-size: 13px;
  color: #212121;
  border-bottom: 1px solid #e0e0e0;
}

.filter-tab.active {
  background: white;
  font-weight: 700;
  color: var(--primary-color);
}

.filter-content {
  flex-grow: 1;
  padding: 15px;
}

.popular-label {
  font-size: 12px;
  color: #878787;
  margin: 15px 0;
}

.option-list {
  list-style: none;
}

.option-list li {
  margin-bottom: 15px;
}

.check-box {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.check-box input {
  width: 18px;
  height: 18px;
}

.filter-panel-footer {
  padding: 10px 15px;
  display: flex;
  gap: 15px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.btn-clear {
  flex: 1;
  background: white;
  border: 1px solid #e0e0e0;
  padding: 12px;
  font-weight: 700;
}

.btn-apply {
  flex: 1;
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 12px;
  font-weight: 700;
}

/* Mobile Responsive Adjustments */
@media (max-width: 991px) {
  .filter-sidebar {
    display: none;
  }
  .products-layout {
    gap: 0;
  }
  .listing-header {
    display: none;
  }
}

@media (max-width: 600px) {
  /* Mobile core listing resets - Product card overrides moved to product.css */
  .products-section {
    padding: 0;
  }
}

/* Refined Card Elements */
.choice-tag {
  position: absolute;
  top: -8px;
  left: -8px;
  background: #26a541;
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.discount-badge-horizontal {
  position: absolute;
  top: 40px;
  left: -8px;
  background: #ffc107;
  color: #000;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 9;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sponsored-tag {
  font-size: 11px;
  color: #878787;
  margin-bottom: 5px;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.rating-badge.badge-green {
  background: #388e3c;
}

.price-row-mobile {
  display: none; /* Only for mobile */
}

.tags-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.hot-deal,
.bank-offer {
  font-size: 12px;
  font-weight: 700;
  padding: 2px 0;
}

.hot-deal {
  color: #388e3c;
}

.bank-offer {
  color: #212121;
}

.spec-labels {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 15px;
}

.spec-labels span {
  font-size: 14px;
  color: #212121;
  position: relative;
  padding-left: 15px;
}

.spec-labels span::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c2c2c2;
}

.service-tag {
  font-size: 13px;
  color: #878787;
  margin-top: auto;
}

.mobile-btn-container {
  display: none;
}

/* Mobile Adjustments for refined layout */
@media (max-width: 600px) {
  .products-list {
    display: block;
    padding: 0;
  }

  .card-left {
    width: 100%;
    margin-bottom: 10px;
  }

  .card-left img {
    height: 120px;
  }

  .card-center {
    width: 100%;
  }

  .product-title {
    font-size: 13px;
    height: 38px;
    margin-bottom: 8px;
  }

  .price-row-mobile {
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
  }

  .price-row-mobile .final-price {
    font-size: 16px;
    font-weight: 700;
  }

  .price-discount {
    font-size: 11px;
  }

  .tags-row,
  .spec-labels,
  .service-tag,
  .card-right {
    display: none !important;
  }

  /* Show buttons in one row on mobile */
  .mobile-btn-container {
    display: flex !important;
    gap: 5px;
    margin-top: 10px;
    width: 100%;
  }

  .mobile-btn-container button {
    flex: 1;
    padding: 6px 2px;
    font-size: 9px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
  }

  .mobile-btn-cart {
    background: var(--primary-color);
    color: white;
  }

  .mobile-btn-buy {
    background: #fb641b;
    color: white;
  }
}
