:root {
  --main-blue: #1a3d69;
  --main-pink: #ed466d;
  --main-yellow: #f0c14b;
  --main-gray: #fafafa;
  --main-dark: #1c2733;
  --accent-orange: #f26a00;
  --text-main: #222;
  --text-muted: #7a7a7a;
  --border: #d8dee4;
  --radius: 14px;
  --box-shadow: 0 2px 15px 0 #dbe4ef59;
  --box-shadow-hover: 0 8px 32px 0 #b4b8e69c;
  --primary-gradient: linear-gradient(135deg, #13547A 0%, #ED4253 60%, #ED4253 100%);
  --secondary-gradient: linear-gradient(135deg, #ED4253 0%, #13547A 100%);
  --shadow-light: 0 4px 15px rgba(19, 84, 122, 0.1);
  --shadow-hover: 0 8px 25px rgba(237, 66, 83, 0.2);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --success-color: #10b981;
  --error-color: #ef4444;
  --text-muted: #6b7280;
  --star-filled: #f6c343;
  --star-empty: #d1d5db;
  --bg-grey: #f8f9fa;
}

/* ============================================= */
/* BASE & TYPOGRAPHY */
/* ============================================= */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: var(--main-gray);
  font-family: 'ProximaNovaRegular', 'Inter', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin: 12px 0 14px;
  letter-spacing: 0.02em;
}

h1 {
  font-size: 32px;
  text-transform: uppercase !important;
}

h2 {
  font-size: 28px;
  text-transform: uppercase !important;
}

h3 {
  font-size: 24px;
  text-transform: uppercase !important;
}

a {
  color: var(--main-blue);
  text-decoration: none;
  transition: color 0.25s;
}

a:hover,
a:focus {
  color: var(--main-pink);
  outline: none;
}

.breadcrumb {
  display: none !important;
}

.text-center {
  text-align: center !important;
}

.text-end {
  text-align: right !important;
}

.text-start {
  text-align: left !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

.shadow-sm {
  box-shadow: var(--box-shadow);
}

.rounded {
  border-radius: var(--radius) !important;
}

small,
.small {
  font-size: 14px;
  color: var(--text-muted);
}

[id^="account"],
[id^="checkout"],
[id^="product"],
[id^="shipping"],
[id^="information"] {
  padding-left: 3%;
  padding-right: 5%;
  padding-top: 1%;
}
.header-search-btn i { font-size: 1.35rem; line-height: 1; }
/* ============================================= */
/* HEADER & DESKTOP MENU */
/* ============================================= */
.custom-header {
  background: linear-gradient(135deg, #e0e7ff 0%, #c3dafe 100%) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
  position: sticky;
  top: 0;
  z-index: 102;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 2vw !important;
}

#logo img {
  max-width: 152px;
  height: auto;
  transition: max-width 0.2s;
}

@media (max-width: 992px) {
  #logo img {
    max-width: 130px;
  }
}

@media (max-width: 767px) {
  #logo img {
    max-width: 120px;
  }
}

.main-desktop-menu {
  background: linear-gradient(92deg, #1a3d69 60%, #ed466d 100%);
  padding: 0;
  margin: 0 !important;
}

.menu-shell {
  padding: 0 2vw;
}

.menu-primary-links {
  padding-left: 10px;
}

.main-desktop-menu .navbar-nav {
  display: flex !important;
  gap: 1.7em;
}

.main-desktop-menu .nav-link {
  color: white !important;
  font-weight: 700;
  padding: 0.65em 1.1em !important;
  border-radius: 28px;
}

.nav-social-icons {
  align-items: center;
}

.nav-social-icons i {
  font-size: 1rem;
  line-height: 1;
}

/* ============================================= */
/* HAMBURGER – NOW 100% VISIBLE & BEAUTIFUL */
/* ============================================= */
.navbar-toggler {
  display: none !important;
  /* Hidden on desktop */
  border: none;
  background: transparent;
  padding: 8px 10px;
  border-radius: 50%;
  transition: all 0.3s;
}

.navbar-toggler:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

/* Custom 3-line icon in your brand pink color */
.navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ed466d' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  width: 28px;
  height: 28px;
}

/* Show hamburger only on mobile */
@media (max-width: 991.98px) {
  .navbar-toggler {
    display: block !important;
  }

  .main-desktop-menu {
    display: none !important;
  }
}

/* ============================================= */
/* ICONS & CART BADGE */
/* ============================================= */
.icon-list {
  display: flex;
  gap: 17px;
  align-items: center;
}

.header-icon {
  color: var(--main-blue);
  font-size: 24px;
  cursor: pointer;
  padding: 0.15em 0.2em;
  border-radius: 50%;
  transition: all 0.2s;
}

.header-icon:hover {
  color: #ed466d;
  background: #fff4f7;
}

.header-search-toggle {
  background: transparent;
  border: 0;
  padding: 0;
  line-height: 1;
}

.desktop-search-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  width: min(760px, 94%);
  background: #ffffff;
  border: 1px solid #dbe4f3;
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(14, 38, 66, 0.22);
  padding: 16px 18px 14px;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.desktop-search-panel.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.desktop-search-panel .header-search-form {
  max-width: 100%;
  border: 1px solid #d7dfed;
  border-radius: 10px;
  box-shadow: none;
  overflow: hidden;
}

.desktop-search-panel .header-search-input {
  padding: 11px 14px;
  font-size: 0.98rem;
}

.desktop-search-panel .header-search-input:focus {
  outline: none;
}

.desktop-search-panel .header-search-btn {
  border-radius: 0;
  min-width: 48px;
}

.desktop-search-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 28px;
  height: 28px;
  border: 1px solid #d7dfed;
  border-radius: 50%;
  background: #f6f9ff;
  color: #1a3d69;
  font-size: 19px;
  font-weight: 600;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.desktop-search-close:hover {
  background: #1a3d69;
  color: #ffffff;
  border-color: #1a3d69;
}

.menu-search-toggle {
  border: 0;
  background: transparent;
  padding: 0.25rem 0.4rem !important;
}

.icon-list a,
.menu-search-toggle {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-icon .badge {
  position: absolute;
  top: -8px;
  right: -13px;
  background: #ed466d;
  color: #fff;
  border-radius: 8px;
  padding: 3px 9px;
  font-size: 12px;
  min-width: 22px;
  height: 22px;
  font-weight: 700;
  box-shadow: 0 1px 5px #ed466d23;
}

/* Styling for Shopping Cart Icon with Gradient Background */
.fa-shopping-cart {
  background: linear-gradient(92deg, #13547A 0%, #13547A 60%, #ED4253 60%, #ED4253 100%);
  color: #fff;
  border-radius: 22%;
  padding: 3px;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.fa-shopping-cart:hover {
  transform: scale(1.1);
}

/* If applied to a cart button or badge, add this */
.cart-icon-container .fa-shopping-cart,
.btn-cart .fa-shopping-cart {
  background: linear-gradient(92deg, #13547A 0%, #13547A 60%, #ED4253 60%, #ED4253 100%);
  color: #fff;
  border-radius: 50%;
  padding: 6px;
}

/* ============================================= */
/* SEARCH BAR */
/* ============================================= */
/*.header-search-form {
  display: flex;
  max-width: 27%;
  background: #fff;
  border-radius: 34px;
  border: 1.6px solid #e3e6ec;
  box-shadow: 0 4px 24px rgba(27, 75, 123, 0.11);
  overflow: hidden;
}*/
.header-search-form {
  display: flex;
  max-width: 30%;
  background: #fff;
  border-radius: 34px;
  border: 1.6px solid #e3e6ec;
  box-shadow: 0 4px 24px rgba(27, 75, 123, 0.11);
  overflow: hidden;
}
.header-search-input {
  flex: 1;
  border: none;
  padding: 8px 30px;
  font-size: 1.09rem;
}

.header-search-btn {
  /*background: linear-gradient(92deg, var(--main-blue) 63%, var(--main-pink) 100%);*/
  color: #fff;
  border: none;
  padding: 0 14px;
  border-radius: 0 34px 34px 0;
}

/* ============================================= */
/* MOBILE MENU – ALREADY WORKING PERFECTLY */
/* ============================================= */
#mobile-menu-panel {
  position: fixed;
  top: 0;
  left: -100%;
  width: 357px;
  height: 100vh;
  background: #ffffff;
  transition: left 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 1050;
  overflow-y: auto;
  box-shadow: 8px 0 30px rgba(0, 0, 0, 0.25);
  padding-top: 70px;
}

#mobile-menu-panel.open {
  left: 0;
}

.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1040;
}

.menu-overlay.open {
  display: block;
}

.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 38px;
  color: #333;
  cursor: pointer;
  z-index: 10;
  font-weight: 100;
}

/* Main menu items */
#mobile-navbar-menu .navbar-nav {
  padding: 0 15px;
}

#mobile-navbar-menu .nav-link {
  display: block !important;
  width: 100%;
  padding: 16px 20px !important;
  color: #1a1a1a !important;
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid #eee;
}

/* Dropdown arrow */
#mobile-navbar-menu .dropdown-toggle::after {
  float: right;
  content: "▼";
  font-size: 17px;
  margin-top: 3px;
  margin-right: 2px;
  color: #ed466d;
  transition: transform 0.3s ease;
}

#mobile-navbar-menu .dropdown.show .dropdown-toggle::after {
  transform: rotate(180deg);
}

/* Submenu – Critical fix */
#mobile-navbar-menu .dropdown.show>.dropdown-menu {
  display: block !important;
  position: static !important;
  float: none;
  width: 100%;
  margin: 12px 0 8px 15px !important;
  padding: 12px 18px;
  background: #f8f9fa;
  border-radius: 14px;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Shop By Concern – Multi-column */
#mobile-navbar-menu .dropdown.show .dropdown-inner {
  display: flex !important;
  flex-wrap: wrap;
  gap: 20px;
  padding: 8px 0 !important;
}

#mobile-navbar-menu .dropdown.show .dropdown-inner ul {
  flex: 1 1 110px;
  margin: 0;
  padding: 0;
  list-style: none;
}

#mobile-navbar-menu .dropdown.show .dropdown-inner a {
  display: block;
  padding: 9px 0;
  color: #333;
  font-size: 15px;
  font-weight: 500;
}

#mobile-navbar-menu .dropdown.show .dropdown-inner a:hover {
  color: #ed466d;
  text-decoration: underline;
}

/* Regular dropdown items */
#mobile-navbar-menu .dropdown-item {
  padding: 11px 25px;
  color: #444;
  border-bottom: 1px solid #eee;
}

#mobile-navbar-menu .dropdown-item:last-child {
  border-bottom: none;
}

/* PREVENT BOOTSTRAP COLLAPSE FROM INTERFERING */
#mobile-navbar-menu .navbar-collapse {
  display: none !important;
  /* We don't use Bootstrap collapse at all */
}

/* When mobile panel is open → force our menu visible */
#mobile-menu-panel.open .navbar-collapse,
#mobile-menu-panel.open .navbar-nav {
  display: block !important;
}

/* ============================================= */
/* WHATSAPP FLOAT BUTTON */
/* ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

/* ============================================= */
/* REST OF YOUR STYLES (100% untouched) */
/* ============================================= */
.product-thumb .image {
  aspect-ratio: 4/5;
}

.card.product-hover:hover {
  transform: translateY(-5px) scale(1.019);
}

.cart-container {
  background: #fff;
  border-radius: 18px;
  padding: 26px 18px;
}

footer {
  background: var(--main-dark);
  color: #fff;
  text-align: center;
  padding: 30px 0;
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(98deg, #1a3d697a 0%, #ed466d41 98%);
  border-radius: 7px;
}

#column-left .list-group a[href*="haircare"]:not([href*="shampoos"]):not([href*="conditioners"]):not([href*="masks"]):not([href*="treatments"]):not([href*="styling"]):not([href*="tools"]),
#column-left .list-group a[href*="concern"],
#column-left .list-group a[href*="shop"]:not([href*="haircare"]) {
  display: none !important;
}

.mb_2 {
  margin-bottom: 2rem !important;
}

@media (max-width: 767.98px) {
  .grey_bgcol {
    padding: 1.6em 0 1.1em 0;
  }

  .grey_bgcol h2 {
    font-weight: 700;
    font-size: 1.25rem;
  }

  .grey_bgcol h2::after {
    width: 42px;
    height: 3px;
  }
}

/* Fancy Cart Styling */
.cart-wrapper {
  max-width: 1000px;
  margin: 40px auto;
}

.text-gradient {
  background: linear-gradient(92deg, #1a3d69, #ed466d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-pink {
  color: #ed466d !important;
}

.cart-item-modern {
  background: linear-gradient(120deg, #fdfbfb 0%, #f9f9fd 100%);
  transition: all 0.3s;
}

.cart-item-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(237, 70, 109, 0.15) !important;
}

.btn-remove-modern {
  background: rgba(255, 255, 255, 0.8);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.btn-remove-modern:hover {
  background: #ff6b6b;
  color: white !important;
  transform: scale(1.1);
}

.quantity-control button {
  width: 40px;
  height: 44px;
}

.input-qty[readonly] {
  background: transparent;
}

.cart-totals-modern {
  border: 2px dashed #e9ecef;
}

@media (max-width: 768px) {
  .cart-item-modern {
    flex-direction: column;
    text-align: center;
  }

  .item-thumb {
    margin-bottom: 1rem;
  }

  .quantity-control {
    justify-content: center;
  }
}

/* ============================================= */
/* PRODUCT CARD & SKIN BADGE */
/* ============================================= */
.skin-type-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  background: linear-gradient(135deg, #1a3d69 0%, #3a5d89 50%, #1a3d69 100%);
  color: #fff;
  padding: 0.5rem 0.8rem;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: 'Outfit', 'Segoe UI', sans-serif;
  box-shadow:
    0 10px 20px -5px rgba(26, 61, 105, 0.4),
    inset 0 1px 1px rgba(255, 255, 255, 0.4);
  z-index: 5;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.3;
  text-align: center;
  max-width: calc(100% - 20px);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

/* Glossy Shine Overlay */
.skin-type-badge::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: linear-gradient(45deg,
      transparent 45%,
      rgba(255, 255, 255, 0.15) 50%,
      transparent 55%);
  transition: all 0.6s;
  pointer-events: none;
}

.product-card:hover .skin-type-badge {
  background: linear-gradient(135deg, #ed466d 0%, #ff6b8b 50%, #ed466d 100%);
  transform: translateY(-5px) scale(1.05);
  box-shadow:
    0 15px 30px -8px rgba(237, 70, 109, 0.5),
    inset 0 1px 1px rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.3);
}

.product-card:hover .skin-type-badge::before {
  top: -50%;
  left: -50%;
}

/* Product Detail Page Tagline Badge */
.product-tagline-badge {
  display: inline-block;
  background: linear-gradient(90deg, #f8f9fa 0%, #ffffff 100%);
  color: #ed466d;
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.product-tagline-badge:hover {
  transform: translateX(5px);
  background: #ed466d;
  color: #fff;
  border-color: #ed466d;
}



@media (max-width: 768px) {
  .skin-type-badge {
    top: 6px;
    left: 6px;
    right: 6px;
    padding: 0.3rem 0.5rem;
    font-size: 0.6rem;
    max-width: calc(100% - 12px);
  }

  .product-card:hover .skin-type-badge {
    transform: translateY(-1px) scale(1.02);
  }
}

@media (max-width: 576px) {
  .skin-type-badge {
    top: 5px;
    left: 5px;
    right: 5px;
    padding: 0.25rem 0.4rem;
    font-size: 0.55rem;
    letter-spacing: 0.2px;
    max-width: calc(100% - 10px);
  }
}

.product-card {
  background-color: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.1),
    0 4px 12px rgba(0, 123, 255, 0.08);
  border-color: #007bff;
}

.product-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
  overflow: hidden;
  padding: 1rem;
  position: relative;
}

.product-thumb {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card:hover .product-thumb {
  transform: scale(1.03);
}

.card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-family: 'Segoe UI', -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.card-title a:hover {
  color: #007bff;
}

.price {
  margin-bottom: 1rem;
  font-family: 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
}

.price-new {
  color: #007bff;
}

.price-old {
  color: #6c757d;
  font-size: 0.95rem;
  margin-right: 0.5rem;
}

.price[data-discount]:before {
  content: attr(data-discount);
  position: absolute;
  top: -15px;
  right: 0;
  background-color: #ffc107;
  color: #212529;
  padding: 0.15rem 0.3rem;
  border-radius: 10px;
  font-size: 0.70rem;
  font-weight: 800;
}

.btn-group {
  gap: 0.15rem;
}

.btn {
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s ease;
  background-color:#1a3d69;
  color: white !important;
    font-weight: 1000;
}

.add-to-cart-btn {
  flex: 2;
}

.add-to-cart-btn:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: scale(1.02);
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.buy-now-btn {
  background-color: #dc3545;
  border-color: #dc3545;
  flex: 1;
}

.buy-now-btn:hover {
  background-color: #c82333;
  box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.wishlist-btn,
.compare-btn {
  background-color: transparent;
  border-color: #dee2e6;
  color: #6c757d;
  flex: 0.5;
}

.wishlist-btn:hover,
.compare-btn:hover {
  background-color: #f8f9fa;
  border-color: #007bff;
  color: #007bff;
  box-shadow: 0 2px 4px rgba(0, 123, 255, 0.2);
}

@media (max-width: 575px) {
  .product-image-container {
    height: 160px;
  }

  .card-body {
    padding: 1rem;
  }

  .btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
  }
}

.add-to-cart-btn:disabled,
.buy-now-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* ============================================= */
/* DROPDOWN MENU (COLUMN-2) */
/* ============================================= */
.dropdown-menu.dropdown-column-2 {
  min-width: 500px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
  border: none;
  border-radius: 20px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.5);
  padding: 15px;
  margin-top: 5px;
  overflow: visible;
  position: absolute;
  z-index: 1060;
  display: none;
}

.nav-item.dropdown:hover .dropdown-menu.dropdown-column-2,
.dropdown-menu.dropdown-column-2.show {
  display: block !important;
  opacity: 1;
  visibility: visible;
  animation: slideInColumns 0.4s ease-out;
}

.nav-item.dropdown {
  position: relative;
}

.nav-item.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 20px;
  width: 20px;
  height: 10px;
  background: transparent;
  z-index: 1059;
}

.nav-item.dropdown:hover::after {
  background: rgba(255, 255, 255, 0.01);
}

.dropdown-inner.d-flex {
  display: flex !important;
  gap: 15px;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  pointer-events: auto;
}

.dropdown-inner .list-unstyled {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  min-height: 200px;
  pointer-events: auto;
}

.dropdown-inner .list-unstyled.mb-0 {
  margin-bottom: 0 !important;
}

.dropdown-menu.dropdown-column-2 .dropdown-item {
  display: block;
  color: #4a5568 !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 12px !important;
  margin-bottom: 8px;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(59, 130, 246, 0.1);
  text-decoration: none;
  overflow: hidden;
  white-space: normal;
  line-height: 1.4;
  cursor: pointer;
  user-select: none;
  pointer-events: auto;
}

.dropdown-menu.dropdown-column-2 .dropdown-item:focus,
.dropdown-menu.dropdown-column-2 .dropdown-item:active {
  outline: none;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}

.dropdown-menu.dropdown-column-2 .dropdown-item::before {
  content: '✦';
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: #3b82f6;
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.dropdown-menu.dropdown-column-2 .dropdown-item:hover::before {
  opacity: 1;
}

.dropdown-menu.dropdown-column-2 .dropdown-item:hover {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6) !important;
  color: #fff !important;
  transform: translateX(5px) scale(1.02);
  box-shadow:
    0 8px 25px rgba(59, 130, 246, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  z-index: 1070;
}

.dropdown-inner .list-unstyled li:last-child .dropdown-item {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .dropdown-menu.dropdown-column-2 {
    min-width: auto;
    padding: 10px;
    margin-top: 0;
    position: static;
  }

  .nav-item.dropdown:hover .dropdown-menu.dropdown-column-2 {
    display: block !important;
  }

  .dropdown-inner.d-flex {
    flex-direction: column;
    gap: 10px;
  }

  .dropdown-inner .list-unstyled {
    min-height: auto;
  }

  .dropdown-menu.dropdown-column-2 .dropdown-item {
    padding: 6px 10px !important;
    white-space: nowrap;
    margin-bottom: 6px;
  }

  .dropdown-menu.dropdown-column-2 .dropdown-item:hover {
    transform: none;
    scale: 1.02;
  }
}

@keyframes slideInColumns {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-menu.dropdown-column-2:hover {
  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.6);
}

.nav-item.dropdown.show .dropdown-menu.dropdown-column-2,
.nav-item.dropdown:hover .dropdown-menu.dropdown-column-2 {
  display: block !important;
}

/* ============================================= */
/* BUTTONS */
/* ============================================= */
/*.btn-primary {*/
/*  --bs-btn-color: #fff;*/
/*  --bs-btn-bg: #fff;*/
/*}*/

/* ============================================= */
/* REVIEW FORM */
/* ============================================= */
#form-review {
  /* max-width: 800px;*/
  margin: 0 auto;
  padding: 40px 30px;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  position: relative;
  overflow: hidden;
}

#form-review::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

#review {
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
}

#review .pagination {
  justify-content: center;
  margin-top: 20px;
}

#review .pagination a {
  color: #13547A;
  padding: 8px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  text-decoration: none;
  transition: var(--transition);
  margin: 0 4px;
}

#review .pagination a:hover,
#review .pagination a.active {
  background: var(--primary-gradient);
  color: #fff;
  box-shadow: var(--shadow-hover);
}

#alert .alert {
  border: none;
  border-radius: var(--border-radius);
  padding: 15px 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-light);
  position: relative;
  animation: slideInAlert 0.4s ease-out;
  backdrop-filter: blur(10px);
}

#alert .alert-success {
  background: linear-gradient(135deg, #10b981, #34d399);
  color: #fff;
}

#alert .alert-danger {
  background: linear-gradient(135deg, #ef4444, #f87171);
  color: #fff;
}

#alert .alert .close {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  opacity: 1;
  transition: var(--transition);
}

#alert .alert .close:hover {
  opacity: 1;
  transform: scale(1.1);
}

@keyframes slideInAlert {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#form-review h2 {
  text-align: center;
  color: #1f2937;
  margin-bottom: 30px;
  font-weight: 600;
  position: relative;
}

#form-review h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-gradient);
  margin: 10px auto 0;
  border-radius: 2px;
}

#form-review .mb-3 {
  margin-bottom: 20px !important;
}

#form-review .form-label {
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
  display: block;
  font-size: 0.95rem;
}

#form-review .form-control,
#form-review textarea.form-control {
  border: 2px solid #e5e7eb;
  border-radius: var(--border-radius);
  padding: 12px 16px;
  font-size: 1rem;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

#form-review .form-control:focus,
#form-review textarea.form-control:focus {
  border-color: #13547A;
  box-shadow: 0 0 0 3px rgba(19, 84, 122, 0.1), inset 0 1px 2px rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
  background: #fff;
}

#form-review .form-control::placeholder,
#form-review textarea.form-control::placeholder {
  color: var(--text-muted);
  opacity: 1;
}

.cke {
  border-radius: var(--border-radius) !important;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  margin-top: 8px;
}

.cke_top {
  background: var(--primary-gradient) !important;
  border-radius: var(--border-radius) var(--border-radius) 0 0 !important;
}

.cke_bottom {
  background: #f9fafb !important;
  border-radius: 0 0 var(--border-radius) var(--border-radius) !important;
}

.cke_contents {
  background: #fff !important;
  border: none !important;
}

#form-review #review_image {
  border: 2px dashed #d1d5db;
  background: rgba(19, 84, 122, 0.05);
  transition: var(--transition);
}

#form-review #review_image:hover,
#form-review #review_image:focus {
  border-color: #13547A;
  background: rgba(19, 84, 122, 0.1);
  box-shadow: 0 0 0 3px rgba(19, 84, 122, 0.05);
}

#form-review .row.mb-3.required {
  margin-bottom: 20px !important;
  text-align: center;
}

#form-review .form-label[for="input-rating"] {
  margin-bottom: 15px;
}

#input-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

#input-rating .form-check-input {
  display: none;
}

#input-rating label {
  margin: 0;
  cursor: pointer;
  position: relative;
  padding: 0 5px;
}

#input-rating input[type="radio"]+label::before {
  content: '★';
  font-size: 1.8rem;
  color: #d1d5db;
  transition: var(--transition);
  display: block;
  text-shadow: none;
}

#input-rating input[type="radio"]:checked+label::before {
  color: #ED4253;
  text-shadow: 0 0 5px rgba(237, 66, 83, 0.5);
  animation: starGlow 0.3s ease;
}

#input-rating input[type="radio"]:hover+label::before {
  color: #13547A;
  transform: scale(1.1);
}

@keyframes starGlow {
  0% {
    transform: scale(0.8);
  }

  100% {
    transform: scale(1);
  }
}

#form-review .captcha {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: var(--border-radius);
  padding: 10px;
  text-align: center;
}

#form-review .text-end .btn-primary {
  background: var(--primary-gradient);
  border: none;
  border-radius: var(--border-radius);
  padding: 12px 30px;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  transition: var(--transition);
  box-shadow: var(--shadow-light);
  position: relative;
  overflow: hidden;
}

#form-review .text-end .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

#form-review .text-end .btn-primary:hover::before {
  left: 100%;
}

#form-review .text-end .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

#form-review .text-end .btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

#form-review .text-end .btn-primary.loading::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

#form-review .text_login {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  border-radius: var(--border-radius);
  color: var(--text-muted);
  font-style: italic;
}

.invalid-feedback {
  display: block !important;
  color: var(--error-color);
  font-size: 0.875rem;
  margin-top: 5px;
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-5px);
  }

  75% {
    transform: translateX(5px);
  }
}

@media (max-width: 768px) {
  #form-review {
    padding: 20px 15px;
    margin: 10px;
  }

  #input-rating {
    flex-wrap: wrap;
    gap: 5px;
  }

  #input-rating input[type="radio"]+label::before {
    font-size: 1.5rem;
  }

  #form-review .text-end .btn-primary {
    width: 100%;
    padding: 14px;
  }
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loading-overlay.show {
  display: flex;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* ============================================= */
/* REVIEWS LIST */
/* ============================================= */
.alert.alert-danger {
  border: none;
  border-radius: var(--border-radius);
  padding: 15px 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-light);
  position: relative;
  animation: slideInAlert 0.4s ease-out;
  backdrop-filter: blur(10px);
  background: linear-gradient(135deg, var(--error-color), #f87171);
  color: #fff;
}

.alert .fa-exclamation-circle {
  margin-right: 8px;
  font-size: 1.1rem;
}

.alert .close {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  opacity: 1;
  transition: var(--transition);
  border: none;
  background: none;
  padding: 0 5px;
  border-radius: 50%;
}

.alert .close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.text-center.text_no_results {
  padding: 40px 20px;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border-radius: var(--border-radius);
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
  margin: 20px 0;
}

.table {
  margin-bottom: 30px;
  background: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  border: none;
  transition: var(--transition);
}

.table:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.table-striped tbody tr:nth-of-type(odd) {
  background: rgba(19, 84, 122, 0.02);
}

.table th,
.table td {
  padding: 20px !important;
  border: none;
  vertical-align: top;
}

.table .text-end {
  text-align: right;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.table tr:first-child td:first-child {
  font-weight: 600;
  font-size: 1.1rem;
  color: #1f2937;
  position: relative;
}

.table tr:first-child td:first-child::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--primary-gradient);
  border-radius: 50%;
  margin-left: 10px;
  vertical-align: middle;
}

.review-text {
  line-height: 1.6;
  color: #374151;
  margin: 15px 0;
  font-size: 1rem;
  display: block !important;
  visibility: visible !important;
}

.review-text p {
  margin-bottom: 15px;
}

.review-text img {
  max-width: 200px;
  height: auto;
  margin: 15px 0;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  border: 2px solid rgba(19, 84, 122, 0.1);
}

.review-text img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.rating {
  display: flex;
  justify-content: flex-start;
  gap: 2px;
  margin-top: 15px;
}

.rating .fa-stack {
  position: relative;
  color: transparent;
  transition: var(--transition);
  cursor: default;
}

.rating .fa-solid.fa-star {
  color: var(--star-filled);
  text-shadow: 0 0 5px rgba(237, 66, 83, 0.5);
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
}

.rating .fa-regular.fa-star {
  color: var(--star-empty);
  z-index: 1;
}

/* Force review stars to yellow */
.stars-solid i,
.stars-mini i,
.foxtale-stars i {
  color: var(--star-filled) !important;
}

.rating:hover .fa-stack {
  transform: scale(1.1);
}

.text-end .pagination {
  justify-content: flex-end;
  margin-top: 20px;
}

/* Product editorial tabs + love cards responsiveness */
.foxtale-tab-switcher {
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .foxtale-editorial-main-title {
    font-size: 1.55rem !important;
    line-height: 1.25;
  }

  .btn-ft-tab {
    padding: 8px 14px;
    font-size: 0.9rem;
  }

  .love-card {
    padding: 22px !important;
  }

  .love-card h4 {
    font-size: 1.05rem;
  }

  .love-card p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .foxtale-tab-switcher {
    gap: 8px !important;
    justify-content: flex-start !important;
  }

  .btn-ft-tab {
    width: 100%;
    text-align: left;
  }
}

/* Shop By Concern carousel responsiveness */
@media (max-width: 768px) {
  #category-slider-mobile .carousel-caption h4 {
    font-size: 1rem;
  }

  #category-slider-mobile .carousel-caption p {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  #category-slider-mobile img {
    height: 240px !important;
  }
}

.pagination .page-link {
  color: #13547A;
  padding: 10px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 25px;
  text-decoration: none;
  transition: var(--transition);
  margin: 0 4px;
  font-weight: 500;
}

.pagination .page-link:hover,
.pagination .page-item.active .page-link {
  background: var(--primary-gradient);
  color: #fff;
  box-shadow: var(--shadow-light);
  border-color: var(--primary-gradient);
  transform: translateY(-1px);
}

.pagination .page-item.disabled .page-link {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .table {
    margin-bottom: 20px;
  }

  .table th,
  .table td {
    padding: 15px !important;
  }

  .review-text img {
    max-width: 100%;
  }

  .rating {
    justify-content: center;
  }

  .text-end {
    text-align: center !important;
  }

  .pagination {
    justify-content: center !important;
  }
}

.reviews-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

/* ============================================= */
/* RELATED PRODUCTS */
/* ============================================= */
.related-products-section {
  /*max-width: 1200px;*/
  margin: 0 auto;
  padding: 0 15px;
}

.grey_bgcol {
  background: linear-gradient(145deg, var(--bg-grey) 0%, #f1f3f4 100%);
  margin-bottom: 30px !important;
  padding: 25px 0 !important;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.grey_bgcol::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.grey_bgcol>div {
  text-align: center;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

.grey_bgcol h2 {
  font-size: 2.05rem;
  font-weight: 800;
  color: #1a3d69;
  letter-spacing: 0.026em;
  margin: 0;
  text-shadow: 0 2px 0 #fff, 0 1.5px 8px #e0eaf850;
  line-height: 1.18;
  transition: color 0.24s;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
}

.grey_bgcol h2::after {
  content: '';
  display: block;
  margin: 10px auto 0;
  width: 54px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ed466d 40%, #1a3d69 100%);
  box-shadow: 0 4px 10px #d0eafd55;
}

.row.row-cols-1.row-cols-sm-2.row-cols-md-3.row-cols-xl-4 {
  --bs-gutter-x: 1.5rem;
  margin-bottom: 40px;
}

.row.row-cols-1.row-cols-sm-2.row-cols-md-3.row-cols-xl-4 .col {
  display: flex;
}

.col .product-item,
.col [class*="product"] {
  width: 100%;
  background: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.col .product-item:hover,
.col [class*="product"]:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.col .product-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  z-index: 1;
}

.col .product-item:hover::before {
  transform: scaleX(1);
}

.col .product-image-container,
.col .image {
  flex-shrink: 0;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(19, 84, 122, 0.02);
  overflow: hidden;
  position: relative;
}

.col .product-thumb,
.col img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.col .product-item:hover .product-thumb,
.col .product-item:hover img {
  transform: scale(1.05);
}

.col .card-body {
  padding: 18px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.col .card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 8px;
  line-height: 1.3;
}

.col .card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.col .card-title a:hover {
  color: var(--main-blue);
}

.col .price {
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--main-blue);
}

.col .price-old {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-right: 8px;
}

.col .price-new {
  color: var(--main-pink);
}

.col .btn-group {
  margin-top: auto;
  gap: 3px;
}

.col .btn {
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 12px;
  transition: all 0.2s ease;
  flex: 1;
}

.col .add-to-cart-btn {
  background: var(--primary-gradient);
  border: none;
  color: #fff;
}

.col .add-to-cart-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-light);
  color: #fff;
}

.col .buy-now-btn {
  background: var(--main-pink);
  border: none;
  color: #fff;
}

.col .buy-now-btn:hover {
  background: #e03e60;
  transform: translateY(-1px);
  box-shadow: var(--shadow-light);
}

.col .wishlist-btn,
.col .compare-btn {
  background: #e03e60;
  border: 1px solid var(--border);
  color: var(--text-muted);
 
}

.col .wishlist-btn:hover,
.col .compare-btn:hover {
  background: #e03e60;
  color: var(--main-blue);
  border-color: var(--main-blue);
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .grey_bgcol {
    padding: 20px 0 !important;
  }

  .grey_bgcol h2 {
    font-size: 1.4rem;
  }

  .grey_bgcol h2::after {
    width: 42px;
    height: 3px;
  }

  .col .product-image-container,
  .col .image {
    height: 180px;
  }

  .row.row-cols-1.row-cols-sm-2.row-cols-md-3.row-cols-xl-4 {
    --bs-gutter-x: 1rem;
  }

  .col .btn-group {
    flex-direction: column;
  }

  .col .btn {
    flex: none;
  }
}

@media (min-width: 1200px) {
  .row.row-cols-1.row-cols-sm-2.row-cols-md-3.row-cols-xl-4 {
    --bs-gutter-x: 2rem;
  }
}

/* No Products State */
.related-products-section:empty::after {
  content: attr(data-no-products, "No related products found.");
  display: block;
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border-radius: var(--border-radius);
  color: var(--text-muted);
  font-style: italic;
  margin: 20px 0;
}

/* Star Rating in Review Form */
#input-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.star-label {
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.star-icon {
  color: var(--star-empty);
  font-size: 1.5rem;
  margin: 0;
}

.star-label:hover .star-icon,
.star-label input:checked~.star-icon {
  color: var(--star-filled) !important;
  text-shadow: 0 0 5px rgba(237, 66, 83, 0.5);
}

.star-label input:checked~.star-icon {
  animation: starGlow 0.3s ease;
}

@keyframes starGlow {
  0% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

/* Hover chain effect */
.star-label:hover~.star-label .star-icon {
  color: var(--star-empty) !important;
}

/* Responsive */
@media (max-width: 768px) {
  #input-rating {
    gap: 0.5rem;
  }

  .star-icon {
    font-size: 1.25rem;
  }
}

/* Product Rating Stars */
.product-rating-stars {
  display: flex;
  align-items: center;
}

.product-rating-stars i {
  font-size: 1.1rem;
  color: var(--star-empty);
  transition: color 0.2s ease;
}

.product-rating-stars i.fa-solid {
  color: var(--star-filled) !important;
  text-shadow: 0 0 3px rgba(237, 66, 83, 0.3);
}

.product-rating-stars:hover i {
  color: var(--star-filled) !important;
}

/* Responsive */
@media (max-width: 768px) {
  .product-rating-stars i {
    font-size: 1rem;
  }
}

/* Product Rating Stars - Horizontal with Glowing Effects */
.product-rating-stars {
  display: flex !important;
  /* Force horizontal */
  align-items: center;
  gap: 0.25rem;
  /* Consistent space between stars */
  font-size: 1.2rem;
}

.product-rating-stars i {
  color: var(--star-empty, #dee2e6);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

/* Filled stars glow */
.product-rating-stars .fa-solid.fa-star {
  color: #ffc107 !important;
  text-shadow:
    0 0 8px rgba(255, 193, 7, 0.6),
    0 0 16px rgba(255, 193, 7, 0.4);
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

/* Hover glow on stars */
.product-rating-stars:hover .fa-solid.fa-star {
  text-shadow:
    0 0 12px rgba(255, 193, 7, 0.8),
    0 0 24px rgba(255, 193, 7, 0.5);
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .product-rating-stars {
    font-size: 1rem;
    gap: 0.125rem;
  }
}
