/* ==========================================================
   IMMI E-Commerce - Complete Frontend Stylesheet
   All colors use CSS vars (populated from admin Site Colors)
   ========================================================== */

:root {
  --teal: #00B5AD;
  --dark: #111111;
  --red: #e74c3c;
  --gray: #666666;
  --border: #eeeeee;
  --shadow: 0 2px 8px rgba(0,0,0,0.07);
  --shadow-hover: 0 8px 24px rgba(0,0,0,0.12);
}

* { box-sizing: border-box; }

/* ==============================
   GLOBAL CONTAINER
   ============================== */
.immi-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 80px;
  box-sizing: border-box;
}

.immi-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  padding-top: 60px;
  background: var(--body-bg, #ffffff);
  color: var(--body-text, #1a1a1a);
}

a { text-decoration: none; }
img { max-width: 100%; }

/* ==============================
   1. NAVBAR
   ============================== */
.immi-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--navbar-bg, #111111);
  z-index: 9999;
  box-shadow: 0px -10px 35px -9px rgba(0, 0, 0, 0.70);
}

.immi-navbar .logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--navbar-text, #fff);
  text-decoration: none;
  letter-spacing: 1px;
}

.immi-navbar .nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0px 0px 0px 23px;
}

.immi-navbar .nav-links a {
  color: var(--navbar-text, #fff);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  text-transform: capitalize;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}

.immi-navbar .nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--navbar-active, var(--teal));
  transition: width 0.3s;
}

.immi-navbar .nav-links a:hover::after,
.immi-navbar .nav-links a.active::after {
  width: 100%;
}

.immi-navbar .nav-links a:hover,
.immi-navbar .nav-links a.active {
  color: var(--navbar-active, var(--teal));
}

.immi-navbar .nav-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.immi-navbar .nav-icons a {
  color: var(--navbar-text, #fff);
  font-size: 16px;
  text-decoration: none;
  transition: color 0.2s;
}

.immi-navbar .nav-icons a:hover { color: var(--navbar-active, var(--teal)); }

.immi-navbar .cart-icon-wrap {
  position: relative;
}

.immi-navbar .cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 50px;
  min-width: 18px;
  text-align: center;
  line-height: 1.3;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--navbar-text, #fff);
  font-size: 22px;
  cursor: pointer;
}

.search-toggle-desktop { display: inline; }

.nav-auth-item { display: none; }

.immi-navbar .nav-links hr {
  display: none;
}

.mobile-search { display: none; }

/* Profile Dropdown */
.profile-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.profile-trigger {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}

.profile-trigger:hover { color: var(--navbar-active, var(--teal)); }

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  width: 200px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  padding: 8px 12px;
  z-index: 9999;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.immi-navbar .dropdown-menu .dropdown-link {
  display: block;
  padding: 10px 20px;
  margin: 8px 0;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  background: var(--dropdown-btn-bg, #00A693);
  color: var(--dropdown-btn-text, #fff);
  text-align: center;
}

.immi-navbar .dropdown-menu .dropdown-link:hover {
  background: var(--dropdown-btn-hover-bg, #009B94);
  color: var(--dropdown-btn-hover-text, #fff);
}

.dropdown-divider {
  border-top: 1px solid #eeeeee;
  margin: 4px 0;
}

.dropdown-logout-form {
  margin: 0;
  padding: 0;
}

.immi-navbar .dropdown-menu .dropdown-logout {
  width: 100%;
  text-align: center;
  background: var(--dropdown-btn-bg, #00A693);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--dropdown-btn-text, #fff);
  padding: 10px 20px;
  margin: 8px 0;
  transition: all 0.2s;
}

.immi-navbar .dropdown-menu .dropdown-logout:hover {
  background: var(--dropdown-btn-hover-bg, #009B94);
  color: var(--dropdown-btn-hover-text, #fff);
}

.dropdown-btn {
  display: block;
  text-align: center;
  padding: 10px 20px;
  margin: 8px 0;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.immi-navbar .dropdown-menu .dropdown-btn-primary,
.immi-navbar .nav-links .dropdown-btn-primary {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}

.immi-navbar .dropdown-menu .dropdown-btn-primary:hover,
.immi-navbar .nav-links .dropdown-btn-primary:hover {
  background: var(--teal);
  color: #fff;
}

.immi-navbar .dropdown-menu .dropdown-btn-secondary,
.immi-navbar .nav-links .dropdown-btn-secondary {
  background: var(--teal);
  color: #fff;
  border: 1.5px solid var(--teal);
}

.immi-navbar .dropdown-menu .dropdown-btn-secondary:hover,
.immi-navbar .nav-links .dropdown-btn-secondary:hover {
  background: #068b85;
  color: #fff;
}

@media (max-width: 768px) {
  .immi-navbar .nav-links {
    background: var(--navbar-bg, #111111);
  }
}

@media (max-width: 480px) {
  .immi-navbar {
    padding: 0 12px;
  }
}

/* ==============================
   2. HERO SECTION
   ============================== */
.hero-section {
  background: var(--hero-bg, var(--teal));
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero-section .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 600px;
  position: relative;
}

.hero-section .carousel-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

.hero-section .hero-slide {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 600px;
  position: relative;
  z-index: 2;
}

.hero-section .hero-text {
  max-width: 55%;
}

.hero-section .hero-text h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--hero-heading, #fff);
  margin: 0 0 16px;
  line-height: 1.2;
}

.hero-section .hero-text p {
  color: var(--hero-text, #fff);
  font-size: 16px;
  margin: 0 0 24px;
  line-height: 1.6;
  opacity: 0.9;
}

.hero-section .hero-text .btn-hero {
  display: inline-block;
  background: var(--hero-btn-bg, #fff);
  color: var(--hero-btn-text, #1a1a1a);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.hero-section .hero-text .btn-hero:hover { opacity: 0.9; }

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
  z-index: 5;
}

.hero-section .carousel-indicators {
  z-index: 5;
}

.hero-section .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent;
  opacity: 1;
}

.hero-section .carousel-indicators button.active {
  background: #fff;
  border-color: #fff;
}

/* ==============================
   3. BEST SELLERS
   ============================== */
.best-sellers {
  padding: 60px 0;
  background: var(--body-card-bg, #fff);
  width: 100%;
}

.best-sellers .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.best-sellers .badge-pill {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.best-sellers .section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--body-heading, #1a1a1a);
  margin: 12px 0 0;
}

.best-sellers .products-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.best-sellers .products-row .prod-card-wrap {
  width: auto;
}

.best-sellers .view-all-wrap {
  text-align: center;
  margin-top: 32px;
}

.best-sellers .btn-view-all {
  display: inline-block;
  padding: 10px 36px;
  border: 2px solid #ddd;
  border-radius: 50px;
  color: #555;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}

.best-sellers .btn-view-all:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* Product Card */
.prod-card-wrap {
  width: 220px;
  display: flex;
}

.prod-card {
  background: var(--body-card-bg, #fff);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 15px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.prod-card:hover {
  box-shadow: var(--shadow-hover);
  transform: scale(1.02);
}

.prod-card .discount-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 2;
}

.prod-card .prod-img-wrap {
  text-align: center;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.prod-card .prod-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--body-heading, #1a1a1a);
  margin-top: 10px;
  margin-bottom: 4px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.prod-card .prod-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--teal);
  margin: 0;
}

.prod-card .prod-old-price {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
  margin-left: 6px;
  font-weight: 400;
}

.prod-card .prod-off {
  font-size: 11px;
  color: var(--red);
  font-weight: 600;
  margin-left: 4px;
}

.prod-card .prod-actions {
  display: flex;
  gap: 6px;
  margin-top: auto;
  padding-top: 10px;
}

.prod-card .prod-actions .btn {
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  flex: 1;
  text-decoration: none;
  border: none;
  transition: background 0.2s, color 0.2s;
}

.prod-card .prod-actions .btn-outline {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}

.prod-card .prod-actions .btn-outline:hover { background: var(--teal); color: #fff; }

.prod-card .prod-actions .btn-solid {
  background: var(--teal);
  color: #fff;
}

.prod-card .prod-actions .btn-solid:hover { opacity: 0.9; }

/* ==============================
   4. SHOP BY CATEGORY
   ============================== */
.shop-category {
  padding: 60px 0;
  background: var(--body-card-bg, #fff);
}

.shop-category .section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--body-heading, #1a1a1a);
  text-align: center;
  margin: 0 0 40px;
}

.shop-category .category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.shop-category .category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s;
}

.shop-category .category-item:hover {
  transform: scale(1.03);
}

.shop-category .category-img-wrap {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: box-shadow 0.3s;
}

.shop-category .category-item:hover .category-img-wrap {
  box-shadow: var(--shadow-hover);
}

.shop-category .category-img-wrap img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
}

.shop-category .category-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--body-heading, #1a1a1a);
  margin-top: 12px;
  text-align: center;
}

/* ==============================
   5. CYBER MONDAY PROMO BANNER
   ============================== */
.promo-banner {
  position: relative;
  width: 100%;
  height: 480px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

.promo-content {
  position: relative;
  z-index: 2;
  padding-left: 80px;
  max-width: 460px;
}

.promo-title {
  font-size: 72px;
  font-weight: 900;
  color: var(--promo-title-color, #ffffff);
  line-height: 1.1;
  margin: 0;
}

.promo-subtitle {
  font-size: 15px;
  color: var(--promo-subtitle-color, #ffffff);
  margin-top: 16px;
  max-width: 340px;
  line-height: 1.6;
  opacity: 0.9;
}

.promo-btn {
  display: inline-block;
  margin-top: 28px;
  background: var(--promo-btn-bg, #ffffff);
  color: var(--promo-btn-text, #000000);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.promo-btn:hover {
  background: #e0e0e0;
  transform: scale(1.03);
}

.promo-discount {
  position: absolute;
  z-index: 3;
  left: 55%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Courier New', monospace;
  font-size: 52px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  text-align: center;
}

/* ==============================
   6. WHY SHOP WITH US
   ============================== */
.why-shop {
  padding: 60px 0;
  background: var(--body-card-bg, #fff);
}

.why-shop .section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--body-heading, #1a1a1a);
  text-align: center;
  margin: 0 0 40px;
}

.why-shop .feature-box {
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 30px 20px;
  transition: box-shadow 0.3s;
  height: 100%;
}

.why-shop .feature-box:hover {
  box-shadow: var(--shadow);
}

.why-shop .feature-box i {
  font-size: 36px;
  color: var(--teal);
}

.why-shop .feature-box h6 {
  font-size: 14px;
  font-weight: 700;
  color: var(--body-heading, #1a1a1a);
  margin: 12px 0 0;
}

/* ==============================
   7. TESTIMONIALS
   ============================== */
.testimonials {
  padding: 60px 0;
  background: #f9f9f9;
}

.testimonials .section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--body-heading, #1a1a1a);
  text-align: center;
  margin: 0 0 40px;
}

.testimonials .reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonials .review-card {
  background: var(--body-card-bg, #fff);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.testimonials .review-stars {
  color: #FFD700;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.testimonials .review-text {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.testimonials .review-author {
  font-weight: 700;
  font-size: 14px;
  color: var(--body-heading, #1a1a1a);
  margin-top: 14px;
}

/* ==============================
   8. FOOTER (NEW DESIGN)
   ============================== */
.immi-footer-new {
  background: #0a3d35;
  color: #fff;
  padding: 60px 0 0;
  font-family: inherit;
}

.footer-top-new {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

/* Column 1: Brand */
.footer-col-brand .footer-logo {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}

.footer-col-brand .footer-tagline {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  line-height: 1.7;
  margin: 16px 0 0;
  white-space: pre-line;
}

.footer-socials-new {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 2px solid #fff;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s;
}

.footer-social-icon:hover {
  background: #fff;
  color: #0a3d35;
}

/* Columns 2 & 3: Quick Links */
.footer-col-links .footer-heading {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 20px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 8px;
}

.footer-links-list li a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  line-height: 2.2;
  display: inline-block;
  transition: all 0.2s;
}

.footer-links-list li a:hover {
  opacity: 0.75;
  padding-left: 4px;
}

/* Column 4: Pay With Card */
.footer-col-pay {
  display: flex;
  justify-content: flex-end;
}

.pay-card {
  background: #fff;
  border-radius: 10px;
  padding: 24px 28px;
  max-width: 280px;
  width: 100%;
}

.pay-heading {
  color: #0a3d35;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  border-bottom: 2px solid #0a3d35;
  padding-bottom: 12px;
  margin: 0 0 16px;
}

.payment-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.payment-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

/* Footer Bottom */
.footer-bottom-new {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 50px;
  padding: 20px 0;
}

.footer-bottom-new p {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  margin: 0;
  text-align: center;
}

/* ==============================
   SEARCH BAR
   ============================== */
.search-bar {
  background: var(--body-card-bg, #fff);
  border-bottom: 1px solid var(--border);
  padding: 10px 80px;
  display: none;
}

.search-bar .search-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
}

.search-bar .search-form input {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid #ddd;
  border-radius: 6px 0 0 6px;
  font-size: 14px;
  outline: none;
}

.search-bar .search-form button {
  padding: 10px 20px;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
}

.mobile-search {
  padding: 8px 0;
}

.mobile-search .immi-container { display: flex; }

.mobile-search form {
  display: flex;
  width: 100%;
}

.mobile-search input {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid #ddd;
  border-right: none;
  border-radius: 6px 0 0 6px;
  font-size: 16px;
  outline: none;
  background: #fff;
  color: #333;
}

.mobile-search input::placeholder { color: #999; }

.mobile-search button {
  padding: 10px 20px;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  font-size: 16px;
}

/* ==============================
   UTILITY CLASSES
   ============================== */
.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 0.5px;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover { background: var(--teal); color: #fff; }

.btn-solid {
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 0.5px;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-solid:hover { background: #068b85; color: #fff; }

.btn-teal {
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-teal:hover { background: #068b85; color: #fff; }
.btn-teal:active,
.btn-teal:focus,
.btn-teal:focus-visible { background: #068b85; color: #fff; outline: none; box-shadow: 0 0 0 3px rgba(0, 181, 173, 0.3); }

.btn-teal-outline {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-teal-outline:hover { opacity: 0.8; }

.bg-teal { background: var(--teal); }

.btn-messenger:hover { background: #0d6efd; border-color: #0d6efd; color: #fff; }

/* ==============================
   PRODUCT PAGE RESPONSIVE
   ============================== */
.thumb-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,0,0,0.85);
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  pointer-events: none;
}

@media (max-width: 768px) {
  .thumb-img { width: 50px !important; height: 50px !important; }
  .thumb-video { width: 50px !important; height: 50px !important; }
  #thumbGallery { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
}

@media (max-width: 480px) {
  .main-image img { max-height: 250px !important; }
  .breadcrumb { font-size: 12px; }
  #productTabs .nav-link { font-size: 13px; padding: 8px 12px; }
}

/* ==============================
   SEARCH PAGE RESPONSIVE
   ============================== */
@media (max-width: 1023px) {
  .search-page .row.g-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .search-page .row.g-3 > * { width: auto !important; max-width: 100% !important; flex: unset !important; }
}

@media (max-width: 768px) {
  .search-page .row.g-3 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

@media (max-width: 479px) {
  .search-page .row.g-3 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ==============================
   RESPONSIVE — TABLET (≤1023px)
   ============================== */
@media (max-width: 1023px) {
  .immi-container { padding: 0 40px; }
  .testimonials .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-section .hero-text h1 { font-size: 36px; }

  .best-sellers .products-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top-new {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 24px;
  }
  .footer-top-new > * {
    margin-bottom: 0;
  }
  .footer-col-brand {
    grid-column: 1;
    grid-row: 1;
  }
  .footer-col-links:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  .footer-col-links:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
  }
  .footer-col-pay {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: stretch;
  }
  .pay-card {
    max-width: 100%;
  }
}

/* ==============================
   RESPONSIVE — SMALL TABLET (≤899px)
   ============================== */
@media (max-width: 899px) {
  .prod-card-wrap { width: auto; }
  .prod-card .prod-img-wrap { height: 160px; }
  .prod-card .prod-img-wrap img { max-height: 160px; }
}

/* ==============================
   RESPONSIVE — TABLET & MOBILE (≤1023px)
   ============================== */
@media (max-width: 1023px) {
  .nav-toggle { display: block; }
  .search-toggle-desktop { display: none; }
  .profile-dropdown { display: none; }
  .nav-auth-item { display: block; }
  .immi-navbar .nav-links hr { display: block; }
  .mobile-search { display: block; }

  .immi-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }

  .immi-navbar-inner .nav-icons {
    margin-left: auto;
  }

  .immi-navbar .nav-links {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    width: 100%;
    height: calc(100vh - 56px);
    overflow-y: auto;
    background: var(--navbar-bg, #111111);
    flex-direction: column;
    gap: 0px;
    z-index: 9998;
    align-items: flex-start;
  }

  .immi-navbar .nav-links.open { display: flex; }

  .immi-navbar .nav-links li {
    width: 100%;
  }

  .immi-navbar .nav-links li a:not(.btn-outline):not(.btn-solid) {
    display: inline-block;
    padding: 10px 0;
    font-size: 14px;
  }

  .immi-navbar .nav-links li a:not(.btn-outline):not(.btn-solid)::after {
    left: 0;
    width: 0;
  }

  .immi-navbar .nav-links li a:not(.btn-outline):not(.btn-solid):hover::after,
  .immi-navbar .nav-links li a:not(.btn-outline):not(.btn-solid).active::after {
    width: 100%;
  }

  .immi-navbar .nav-links .nav-auth-item form {
    margin: 0;
  }

  .immi-navbar .nav-links .nav-auth-item form button {
    background: none;
    border: none;
    color: var(--navbar-text, #fff);
    font: inherit;
    cursor: pointer;
    padding: 10px 0;
    font-size: 14px;
  }

  .hero-section .carousel-item,
  .hero-section .hero-slide {
    min-height: 400px;
  }

  .hero-section .hero-slide {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .hero-section .hero-text {
    max-width: 100%;
  }

  .hero-section .hero-text h1 { font-size: 28px; }
  .hero-section .hero-text p { font-size: 14px; }
  .hero-section .hero-text .btn-hero { font-size: 14px; padding: 10px 24px; }

  .promo-banner {
    height: auto;
    min-height: 350px;
    flex-direction: column;
    padding: 60px 24px;
    text-align: center;
  }

  .promo-content {
    padding-left: 0;
    max-width: 100%;
  }

  .promo-title {
    font-size: 36px;
  }

  .promo-subtitle {
    font-size: 14px;
    max-width: 100%;
  }

  .promo-btn {
    font-size: 14px;
    padding: 12px 28px;
  }

  .promo-discount {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    font-size: 28px;
    margin-top: 20px;
  }

  .best-sellers { padding-top: 40px; padding-bottom: 40px; }
  .best-sellers .section-title { font-size: 22px; }
  .best-sellers .products-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-category { padding-top: 40px; padding-bottom: 40px; }
  .shop-category .section-title { font-size: 22px; }
  .shop-category .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .shop-category .category-img-wrap {
    width: 130px;
    height: 130px;
    padding: 14px;
  }
  .shop-category .category-img-wrap img {
    width: 95px;
    height: 95px;
  }
  .shop-category .category-label { font-size: 13px; }

  .testimonials { padding-top: 40px; padding-bottom: 40px; }
  .testimonials .section-title { font-size: 22px; }
  .testimonials .reviews-grid {
    grid-template-columns: 1fr;
  }

  .why-shop { padding-top: 40px; padding-bottom: 40px; }
  .why-shop .section-title { font-size: 22px; }
  .why-shop .feature-box {
    padding: 20px 12px;
  }
  .why-shop .feature-box i { font-size: 28px; }
  .why-shop .feature-box h6 { font-size: 12px; }

  .prod-card-wrap { width: auto; }
  .prod-card .prod-img-wrap { height: 160px; }
  .prod-card .prod-img-wrap img { max-height: 160px; }
  .prod-card .prod-name { font-size: 12px; }
  .prod-card .prod-price { font-size: 14px; }
  .prod-card .prod-actions .btn { font-size: 10px; padding: 5px 8px; }

  .hero-section .hero-text { text-align: center; }

  .search-bar { padding: 10px 16px; }

  .immi-footer-new { padding: 40px 0 0; }

  .footer-top-new {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
  }

  .footer-top-new > * {
    margin-bottom: 0;
  }

  .footer-col-brand {
    grid-column: 1;
    grid-row: 1;
  }

  .footer-col-links:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .footer-col-links:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
  }

  .footer-col-pay {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: stretch;
  }

  .footer-bottom-new p {
    text-align: center;
    font-size: 13px;
  }
}

/* ==============================
   RESPONSIVE — MOBILE (≤768px)
   ============================== */
@media (max-width: 768px) {
  .immi-container { max-width: 100%; padding: 0 16px; }
}

/* ==============================
   RESPONSIVE — SMALL MOBILE (≤479px)
   ============================== */
@media (max-width: 479px) {
  .immi-container { max-width: 100%; padding: 0 12px; }
  .mobile-search { padding: 8px 12px; }
  .immi-navbar .logo { font-size: 20px; }
  .immi-navbar .nav-icons { gap: 12px; }

  .hero-section .carousel-item,
  .hero-section .hero-slide {
    min-height: 320px;
  }
  .hero-section .hero-text h1 { font-size: 24px; }
  .hero-section .hero-text p { font-size: 13px; }

  .best-sellers .section-title { font-size: 20px; }
  .best-sellers .products-row { gap: 10px; }

  .shop-category .section-title { font-size: 20px; }
  .shop-category .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .shop-category .category-img-wrap {
    width: 110px;
    height: 110px;
    padding: 12px;
  }
  .shop-category .category-img-wrap img {
    width: 80px;
    height: 80px;
  }
  .shop-category .category-label { font-size: 12px; }

  .promo-title { font-size: 28px; }
  .promo-subtitle { font-size: 13px; }
  .promo-btn { font-size: 13px; padding: 10px 24px; }
  .promo-discount { font-size: 22px; }

  .why-shop .section-title { font-size: 20px; }
  .why-shop .feature-box {
    padding: 16px 10px;
  }
  .why-shop .feature-box i { font-size: 24px; }
  .why-shop .feature-box h6 { font-size: 11px; }

  .testimonials .section-title { font-size: 20px; }

  .immi-footer-new { padding: 32px 0 0; }

  .footer-top-new {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 12px;
  }

  .footer-top-new > * {
    margin-bottom: 0;
  }

  .footer-col-brand {
    grid-column: 1;
    grid-row: 1;
  }

  .footer-col-links:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .footer-col-links:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
  }

  .footer-col-pay {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: stretch;
  }

  .footer-bottom-new p {
    text-align: center;
    font-size: 12px;
  }
  .footer-col-brand .footer-logo { font-size: 28px; }
  .footer-col-brand .footer-tagline { font-size: 12px; }
  .footer-col-links .footer-heading { font-size: 15px; margin-bottom: 12px; }
  .footer-links-list li a { font-size: 13px; line-height: 1.8; }
  .pay-card { padding: 16px; }
  .pay-heading { font-size: 16px; }
  .payment-logo-img { height: 28px; }
  .footer-bottom-new { margin-top: 30px; }
  .footer-bottom-new p { font-size: 12px; text-align: center; }

  .prod-card { padding: 10px; }
  .prod-card .prod-img-wrap { height: 130px; }
  .prod-card .prod-img-wrap img { max-height: 130px; }
  .prod-card .prod-name { font-size: 11px; }
  .prod-card .prod-price { font-size: 13px; }
  .prod-card .prod-actions { flex-direction: column; gap: 4px; }
  .prod-card .prod-actions .btn { font-size: 11px; padding: 6px 10px; }
}

/* ==============================
   RESPONSIVE — MEDIUM LARGE (1200px–1399px)
   ============================== */
@media (max-width: 1399px) {
  .hero-section .hero-text h1 { font-size: 40px; }
  .hero-section .hero-text p { font-size: 15px; }
  .promo-content { padding-left: 40px; }
  .footer-top-new { gap: 24px; }
}

/* ==============================
   RESPONSIVE — LARGE SCREEN (≥1400px)
   ============================== */
@media (min-width: 1400px) {
  .hero-section .hero-text h1 { font-size: 56px; }
  .hero-section .hero-text p { font-size: 18px; }

  .best-sellers { padding: 80px 0; }
  .best-sellers .section-title { font-size: 32px; }

  .shop-category { padding: 80px 0; }
  .shop-category .section-title { font-size: 32px; }
  .shop-category .category-grid { gap: 32px; }
  .shop-category .category-img-wrap {
    width: 200px;
    height: 200px;
    padding: 20px;
  }
  .shop-category .category-img-wrap img {
    width: 150px;
    height: 150px;
  }
  .shop-category .category-label { font-size: 16px; }

  .promo-content { padding-left: 120px; max-width: 520px; }
  .promo-title { font-size: 84px; }
  .promo-subtitle { font-size: 17px; max-width: 380px; }

  .why-shop { padding: 80px 0; }
  .why-shop .section-title { font-size: 32px; }
  .why-shop .feature-box { padding: 36px 24px; }
  .why-shop .feature-box i { font-size: 42px; }
  .why-shop .feature-box h6 { font-size: 16px; }

  .testimonials { padding: 80px 0; }
  .testimonials .section-title { font-size: 32px; }

  .immi-footer-new { padding: 70px 0 0; }
  .footer-top-new { gap: 50px; }

  .prod-card-wrap { width: auto; }
  .prod-card .prod-img-wrap { height: 200px; }
  .prod-card .prod-img-wrap img { max-height: 200px; }
  .prod-card .prod-name { font-size: 14px; }
  .prod-card .prod-price { font-size: 17px; }
  .prod-card .prod-actions .btn { font-size: 13px; padding: 8px 12px; }
}

@media (min-width: 1800px) {
  .best-sellers { padding: 80px 0; }
  .shop-category { padding: 80px 0; }
  .why-shop { padding: 80px 0; }
  .testimonials { padding: 80px 0; }
  .immi-footer-new { padding: 70px 0 0; }
}
