/* ============================================
   CHHINGU SPARE PARTS - Complete Stylesheet
   Motorcycle & Scooter Spare Parts E-commerce
   ============================================ */

/* -----------------------------------------
   0. FONTS & IMPORTS
   ----------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* -----------------------------------------
   1. RESET & BASE STYLES
   ----------------------------------------- */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #333;
  background-color: #f8f9fa;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: #FF5A00;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: inherit;
  background: none;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

::selection {
  background: #FFD400;
  color: #111;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 4rem 0;
}

.section-sm {
  padding: 2rem 0;
}

/* -----------------------------------------
   2. TYPOGRAPHY
   ----------------------------------------- */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: #111;
  margin-bottom: 0.5rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: #555;
}

p:last-child {
  margin-bottom: 0;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.section-title h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 0.75rem;
}

.section-title p {
  color: #777;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #FFD400, #FF5A00);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.text-primary { color: #FF5A00 !important; }
.text-secondary { color: #111 !important; }
.text-accent { color: #FFD400 !important; }
.text-white { color: #fff !important; }
.text-muted { color: #777 !important; }
.text-success { color: #28a745 !important; }
.text-danger { color: #dc3545 !important; }
.text-warning { color: #ffc107 !important; }

.bg-primary { background-color: #FF5A00 !important; }
.bg-secondary { background-color: #111 !important; }
.bg-accent { background-color: #FFD400 !important; }
.bg-light { background-color: #f8f9fa !important; }
.bg-dark { background-color: #222 !important; }
.bg-white { background-color: #fff !important; }

/* -----------------------------------------
   3. HEADER
   ----------------------------------------- */

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.header-top {
  background: #111;
  color: #fff;
  padding: 0.4rem 0;
  font-size: 0.8rem;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-top-left,
.header-top-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-top a {
  color: #aaa;
  font-size: 0.8rem;
  transition: color 0.3s;
}

.header-top a:hover {
  color: #FFD400;
}

.header-main {
  padding: 0.75rem 0;
  position: relative;
  z-index: 2;
}

.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.header-logo img {
  height: 45px;
  width: auto;
}

.header-logo h1 {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0;
  color: #111;
}

.header-logo span {
  color: #FF5A00;
}

.header-search {
  flex: 1;
  max-width: 500px;
  position: relative;
}

.header-search .search-bar {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 50px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.header-search .search-bar:focus-within {
  border-color: #FF5A00;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 90, 0, 0.1);
}

.header-search select {
  background: none;
  border: none;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  color: #555;
  border-right: 1px solid #ddd;
  cursor: pointer;
  min-width: 100px;
  max-width: 160px;
  flex-shrink: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-search input {
  flex: 1;
  padding: 0.65rem 1rem;
  background: none;
  font-size: 0.9rem;
  color: #333;
  min-width: 0;
}

.header-search input::placeholder {
  color: #aaa;
}

.header-search button {
  background: #FF5A00;
  color: #fff;
  padding: 0.65rem 1.25rem;
  font-size: 1rem;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header-search button:hover {
  background: #e04e00;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}

.header-action-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #333;
  font-size: 1.15rem;
  transition: all 0.3s;
}

.header-action-btn:hover {
  background: #f5f5f5;
  color: #FF5A00;
}

.header-action-btn .badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: #FF5A00;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-nav {
  background: #fff;
  border-top: 1px solid #eee;
  z-index: 1;
}

.header-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.85rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: #FF5A00;
}

.nav-menu > li > a i {
  font-size: 0.75rem;
}

.mega-menu,
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  border-radius: 0 0 8px 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  min-width: 220px;
}

.nav-menu > li:hover > .mega-menu,
.nav-menu > li:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 0.7rem 1.25rem;
  font-size: 0.85rem;
  color: #555;
  transition: all 0.3s;
  border-bottom: 1px solid #f5f5f5;
}

.dropdown-menu li a:hover {
  background: #fff8f0;
  color: #FF5A00;
  padding-left: 1.5rem;
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.mega-menu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 2rem;
  width: 800px;
  max-width: 90vw;
}

.mega-menu-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mega-menu-col a {
  display: block;
  padding: 0.35rem 0;
  font-size: 0.85rem;
  color: #666;
  transition: color 0.3s;
}

.mega-menu-col a:hover {
  color: #FF5A00;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: #111;
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: -100%;
  width: 320px;
  height: 100%;
  background: #fff;
  z-index: 2000;
  padding: 1.5rem;
  overflow-y: auto;
  transition: left 0.35s ease;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.15);
}

.mobile-menu.open {
  left: 0;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  opacity: 0;
  transition: opacity 0.35s;
}

.mobile-menu-overlay.open {
  display: block;
  opacity: 1;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
  margin-bottom: 1.5rem;
}

.mobile-menu-header h3 {
  font-size: 1.2rem;
  margin: 0;
}

.mobile-menu-close {
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}

.mobile-menu-close:hover {
  background: #f5f5f5;
  color: #FF5A00;
}

.mobile-nav li {
  border-bottom: 1px solid #f5f5f5;
}

.mobile-nav li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  font-size: 0.95rem;
  color: #333;
  font-weight: 500;
}

.mobile-nav li a:hover {
  color: #FF5A00;
}

.mobile-nav .sub-menu {
  display: none;
  padding-left: 1rem;
}

.mobile-nav .sub-menu.open {
  display: block;
}

.mobile-nav .sub-menu li a {
  font-size: 0.85rem;
  padding: 0.55rem 0;
  font-weight: 400;
  color: #666;
}

/* -----------------------------------------
   4. FOOTER
   ----------------------------------------- */

.footer {
  background: #111;
  color: #aaa;
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #222;
}

.footer-about .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-about .footer-logo h2 {
  font-size: 1.3rem;
  color: #fff;
  margin: 0;
}

.footer-about .footer-logo span {
  color: #FF5A00;
}

.footer-about p {
  color: #888;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #222;
  color: #aaa;
  font-size: 1rem;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: #FF5A00;
  color: #fff;
  transform: translateY(-3px);
}

.footer h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links li a {
  color: #888;
  font-size: 0.85rem;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links li a:hover {
  color: #FFD400;
  padding-left: 5px;
}

.footer-links li a i {
  font-size: 0.6rem;
  color: #FF5A00;
}

.footer-newsletter p {
  color: #888;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.footer-newsletter form {
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid #333;
}

.footer-newsletter input {
  flex: 1;
  padding: 0.7rem 1rem;
  background: none;
  color: #fff;
  font-size: 0.85rem;
}

.footer-newsletter input::placeholder {
  color: #666;
}

.footer-newsletter button {
  background: #FF5A00;
  color: #fff;
  padding: 0.7rem 1.25rem;
  font-size: 1rem;
  transition: background 0.3s;
}

.footer-newsletter button:hover {
  background: #e04e00;
}

.footer-contact li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: #888;
}

.footer-contact li i {
  color: #FF5A00;
  margin-top: 4px;
  font-size: 1rem;
  width: 16px;
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: #666;
  font-size: 0.8rem;
  margin: 0;
}

.footer-payment {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.footer-payment img {
  height: 30px;
  border-radius: 4px;
  background: #fff;
  padding: 2px 6px;
}

.footer-payment i {
  font-size: 1.8rem;
  color: #555;
}

/* -----------------------------------------
   5. HERO SECTION
   ----------------------------------------- */

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: #111;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 2rem 0;
}

.hero-subtitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #FFD400;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  padding: 0.35rem 1rem;
  border: 1px solid rgba(255, 212, 0, 0.3);
  border-radius: 50px;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-content h1 span {
  color: #FFD400;
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  line-height: 1.8;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-search-box {
  display: flex;
  background: #fff;
  border-radius: 60px;
  overflow: hidden;
  max-width: 580px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.hero-search-box select {
  padding: 1rem 1.25rem;
  background: none;
  color: #555;
  border: none;
  border-right: 1px solid #eee;
  cursor: pointer;
  font-size: 0.9rem;
  max-width: 160px;
  min-width: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-search-box input {
  flex: 1;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  color: #333;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-search-box input::placeholder {
  color: #aaa;
}

.hero-search-box button {
  background: #FF5A00;
  color: #fff;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.hero-search-box button:hover {
  background: #e04e00;
}

.hero-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}

.hero-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: all 0.3s;
}

.hero-indicators button.active {
  background: #FFD400;
  width: 32px;
  border-radius: 6px;
}

.hero-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 3;
  pointer-events: none;
}

.hero-arrows button {
  pointer-events: auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
  margin: 0 1rem;
}

.hero-arrows button:hover {
  background: #FF5A00;
}

/* -----------------------------------------
   6. PRODUCT CARDS
   ----------------------------------------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.product-card-image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #fafafa, #f0f0f0);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
}

.product-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.02) 0%, transparent 50%);
  pointer-events: none;
}

.product-card-image img {
  max-height: 170px;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.5s ease, box-shadow 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.06));
}

.product-card:hover .product-card-image img {
  transform: scale(1.12);
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.12));
}

.product-card-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.product-card-actions {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s;
}

.product-card:hover .product-card-actions {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 767px) {
  .product-card-actions {
    opacity: 1;
    transform: translateX(0);
  }
}

.product-card-actions button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: #555;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.product-card-actions button:hover {
  background: #FF5A00;
  color: #fff;
}

.product-card-actions button.active {
  background: #FF5A00;
  color: #fff;
}

.product-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-category {
  font-size: 0.75rem;
  color: #FF5A00;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.35rem;
}

.product-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  transition: color 0.3s;
}

.product-card-title:hover {
  color: #FF5A00;
}

.product-card-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.6rem;
}

.product-card-rating .stars {
  display: flex;
  gap: 0.1rem;
  color: #FFD400;
  font-size: 0.8rem;
}

.product-card-rating span {
  font-size: 0.75rem;
  color: #999;
}

.product-card-price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  margin-bottom: 0.75rem;
}

.product-card-price .current {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111;
}

.product-card-price .original {
  font-size: 0.85rem;
  color: #aaa;
  text-decoration: line-through;
}

.product-card-price .discount {
  font-size: 0.7rem;
  font-weight: 600;
  color: #fff;
  background: #dc3545;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

.product-card-footer {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
}

.product-card-footer .btn {
  flex: 1;
  padding: 0.55rem;
  font-size: 0.8rem;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
}

.product-card-footer .btn-add-cart {
  background: #FF5A00;
  color: #fff;
  transition: all 0.3s;
}

.product-card-footer .btn-add-cart:hover {
  background: #e04e00;
}

.product-card-footer .btn-add-cart:disabled {
  background: #999;
  cursor: not-allowed;
  opacity: 0.7;
}

.product-card-footer .btn-add-cart:disabled:hover {
  background: #999;
}

/* -----------------------------------------
   7. BUTTONS
   ----------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.3s;
}

.btn:hover::after {
  transform: translateX(0);
}

.btn-primary {
  background: #FF5A00;
  color: #fff;
  border-color: #FF5A00;
}

.btn-primary:hover {
  background: #e04e00;
  border-color: #e04e00;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 90, 0, 0.3);
}

.btn-secondary {
  background: #111;
  color: #fff;
  border-color: #111;
}

.btn-secondary:hover {
  background: #000;
  border-color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-accent {
  background: #FFD400;
  color: #111;
  border-color: #FFD400;
}

.btn-accent:hover {
  background: #e6bf00;
  border-color: #e6bf00;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 212, 0, 0.3);
}

.btn-outline {
  background: transparent;
  color: #FF5A00;
  border-color: #FF5A00;
}

.btn-outline:hover {
  background: #FF5A00;
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-secondary {
  background: transparent;
  color: #111;
  border-color: #111;
}

.btn-outline-secondary:hover {
  background: #111;
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
  background: #fff;
  color: #111;
  border-color: #fff;
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  border-radius: 6px;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 10px;
}

.btn-block {
  width: 100%;
}

.btn:disabled,
.btn.disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  font-size: 1rem;
}

/* -----------------------------------------
   8. FORMS
   ----------------------------------------- */

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.4rem;
}

.form-label .required {
  color: #dc3545;
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  color: #333;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s;
}

.form-control:hover {
  border-color: #ccc;
}

.form-control:focus {
  border-color: #FF5A00;
  box-shadow: 0 0 0 4px rgba(255, 90, 0, 0.1);
  outline: none;
}

.form-control::placeholder {
  color: #bbb;
}

.form-control.error {
  border-color: #dc3545;
}

.form-control.error:focus {
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

.form-control.success {
  border-color: #28a745;
}

.form-control.success:focus {
  box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.1);
}

.form-error {
  font-size: 0.78rem;
  color: #dc3545;
  margin-top: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.form-success {
  font-size: 0.78rem;
  color: #28a745;
  margin-top: 0.3rem;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23555' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  margin-bottom: 0.5rem;
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #FF5A00;
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
}

.form-check label {
  font-size: 0.88rem;
  color: #555;
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* -----------------------------------------
   9. BADGES
   ----------------------------------------- */

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.6rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  line-height: 1;
}

.badge-hot {
  background: #FF5A00;
  color: #fff;
}

.badge-sale {
  background: #dc3545;
  color: #fff;
}

.badge-new {
  background: #28a745;
  color: #fff;
}

.badge-oos {
  background: #6c757d;
  color: #fff;
}

.badge-best {
  background: #FFD400;
  color: #111;
}

/* -----------------------------------------
   10. SEARCH BAR
   ----------------------------------------- */

.search-bar-wrapper {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.search-bar-wrapper .search-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 60px;
  overflow: hidden;
  border: 2px solid #e0e0e0;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.search-bar-wrapper .search-bar:focus-within {
  border-color: #FF5A00;
  box-shadow: 0 4px 25px rgba(255, 90, 0, 0.15);
}

.search-bar-wrapper select {
  padding: 0.75rem 1rem;
  min-width: 120px;
  background: #fafafa;
  border: none;
  border-right: 1px solid #eee;
  color: #555;
  font-size: 0.85rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath fill='%23555' d='M5 7L0 2h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
}

.search-bar-wrapper input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  background: none;
  font-size: 0.9rem;
  color: #333;
  min-width: 0;
}

.search-bar-wrapper input::placeholder {
  color: #aaa;
}

.search-bar-wrapper button {
  background: #FF5A00;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.search-bar-wrapper button:hover {
  background: #e04e00;
}

/* -----------------------------------------
   11. FILTERS
   ----------------------------------------- */

.filter-sidebar {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  overflow: hidden;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  border-bottom: 1px solid #f0f0f0;
}

.filter-header h3 {
  font-size: 1.1rem;
  margin: 0;
  font-weight: 700;
}

.filter-clear {
  font-size: 0.8rem;
  color: #FF5A00;
  cursor: pointer;
  font-weight: 500;
  transition: color 0.3s;
}

.filter-clear:hover {
  color: #e04e00;
}

.filter-section {
  padding: 1.25rem;
  border-bottom: 1px solid #f0f0f0;
}

.filter-section:last-child {
  border-bottom: none;
}

.filter-section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.75rem;
}

.filter-section-title i {
  font-size: 0.75rem;
  color: #aaa;
  transition: transform 0.3s;
}

.filter-section-title.active i {
  transform: rotate(180deg);
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.filter-options .form-check {
  margin-bottom: 0;
}

.filter-options .form-check label {
  font-size: 0.85rem;
  color: #555;
}

.filter-options .form-check label span {
  color: #aaa;
  margin-left: 0.25rem;
}

/* Price Range Slider */
.price-range {
  padding-top: 0.5rem;
}

.price-range-slider {
  position: relative;
  height: 6px;
  background: #e0e0e0;
  border-radius: 3px;
  margin: 1.5rem 0;
}

.price-range-slider .range-fill {
  position: absolute;
  height: 100%;
  background: #FF5A00;
  border-radius: 3px;
  left: 0%;
  right: 0%;
}

.price-range-slider input[type="range"] {
  position: absolute;
  width: 100%;
  height: 6px;
  top: 0;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}

.price-range-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #FF5A00;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.price-range-values {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
}

/* -----------------------------------------
   11.5. BRAND CAROUSEL
   ----------------------------------------- */

.brand-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-track-wrapper {
  overflow-x: auto;
  flex: 1;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.brand-track-wrapper::-webkit-scrollbar {
  display: none;
}

.brand-track {
  display: flex;
  gap: 1rem;
}

.brand-card {
  flex-shrink: 0;
  width: 140px;
  padding: 1.5rem 0.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  text-decoration: none;
  transition: all 0.3s;
}

.brand-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.brand-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  color: #111;
}

.brand-card h5 {
  margin: 0;
  font-size: 0.95rem;
  color: #111;
  font-weight: 600;
}

/* -----------------------------------------
   11.6. TESTIMONIAL CAROUSEL
   ----------------------------------------- */

.testimonial-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-track-wrapper {
  overflow-x: auto;
  flex: 1;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  padding: 0.5rem 0;
}

.testimonial-track-wrapper::-webkit-scrollbar {
  display: none;
}

.testimonial-track {
  display: flex;
  gap: 1.5rem;
}

.testimonial-slide {
  flex-shrink: 0;
  width: 380px;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid #f0f0f0;
  height: 100%;
  transition: all 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-user img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: #f5f5f5;
  flex-shrink: 0;
}

.testimonial-user h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #111;
}

.testimonial-stars {
  color: #FFD400;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.testimonial-card p {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.7;
  font-style: italic;
  margin: 0;
}

@media (max-width: 767px) {
  .testimonial-slide {
    width: 300px;
  }
  .testimonial-track {
    gap: 1rem;
  }
}

/* -----------------------------------------
   11.7. HOT DEALS CAROUSEL
   ----------------------------------------- */

.hot-deals-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 550px;
  margin: 0 auto;
}

.carousel-track-wrapper {
  overflow: hidden;
  flex: 1;
  border-radius: 12px;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
}

.carousel-slide .product-card {
  margin: 0;
}

.carousel-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #eee;
  background: #fff;
  color: #333;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.carousel-btn:hover {
  background: #FF5A00;
  border-color: #FF5A00;
  color: #fff;
}

.carousel-dots {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.2s;
}

.carousel-dot.active {
  background: #FF5A00;
  transform: scale(1.2);
}

/* -----------------------------------------
   11.7. LATEST PRODUCTS PAGINATION
   ----------------------------------------- */

.page-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  margin: 0 3px;
  border: 2px solid #e0e0e0;
  background: #fff;
  color: #555;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}

.page-btn:hover {
  border-color: #FF5A00;
  color: #FF5A00;
}

.page-btn.active {
  background: #FF5A00;
  border-color: #FF5A00;
  color: #fff;
}

.page-btn.page-next {
  border-color: #FF5A00;
  color: #FF5A00;
}

.page-btn.page-next:hover {
  background: #FF5A00;
  color: #fff;
}

/* -----------------------------------------
   12. PAGINATION
   ----------------------------------------- */

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 2rem 0;
}

.pagination ul {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination li {
  display: flex;
}

.pagination li.disabled .page-link {
  opacity: 0.4;
  pointer-events: none;
}

.pagination .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.5rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #555;
  background: #fff;
  border: 1px solid #e0e0e0;
  transition: all 0.3s;
  text-decoration: none;
  line-height: 1;
}

.pagination .page-link:hover {
  border-color: #FF5A00;
  color: #FF5A00;
  background: #fff;
}

.pagination li.active .page-link {
  background: #FF5A00;
  color: #fff;
  border-color: #FF5A00;
}

.pagination li.active .page-link:hover {
  background: #e55000;
  color: #fff;
  border-color: #e55000;
}

.pagination .page-link svg,
.pagination .page-link i {
  font-size: 0.9rem;
}

/* -----------------------------------------
   13. MODAL
   ----------------------------------------- */

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 5000;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}

.modal-overlay.open {
  display: flex;
  opacity: 1;
}

.modal {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.35s ease;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
}

.modal-lg {
  max-width: 800px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
  border-radius: 16px 16px 0 0;
}

.modal-header h3 {
  font-size: 1.15rem;
  margin: 0;
  font-weight: 700;
}

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #666;
  cursor: pointer;
  transition: all 0.3s;
}

.modal-close:hover {
  background: #f5f5f5;
  color: #FF5A00;
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid #f0f0f0;
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  position: sticky;
  bottom: 0;
  background: #fff;
  border-radius: 0 0 16px 16px;
}

/* Quick View Modal */
.quick-view-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.quick-view-gallery {
  position: relative;
}

.quick-view-gallery .main-image {
  width: 100%;
  height: 350px;
  object-fit: contain;
  background: #f9f9f9;
  border-radius: 12px;
  padding: 1.5rem;
}

.quick-view-thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.quick-view-thumbs img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  padding: 0.5rem;
  background: #f9f9f9;
  transition: all 0.3s;
}

.quick-view-thumbs img.active,
.quick-view-thumbs img:hover {
  border-color: #FF5A00;
}

.quick-view-info h2 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.quick-view-info .price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #FF5A00;
  margin-bottom: 0.75rem;
}

.quick-view-info .original-price {
  font-size: 1rem;
  color: #aaa;
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 0.5rem;
}

.quick-view-info .description {
  color: #666;
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.quick-view-info .meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.quick-view-info .meta-item {
  display: flex;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.quick-view-info .meta-item strong {
  color: #333;
  min-width: 100px;
}

.quick-view-info .meta-item span {
  color: #666;
}

/* -----------------------------------------
   14. TOAST NOTIFICATIONS
   ----------------------------------------- */

.toast-container {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 380px;
  width: 100%;
}

.toast {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  animation: slideInRight 0.4s ease;
  overflow: hidden;
  position: relative;
}

.toast::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
}

.toast-success {
  border-left: 4px solid #28a745;
}

.toast-success::before {
  background: #28a745;
}

.toast-error {
  border-left: 4px solid #dc3545;
}

.toast-error::before {
  background: #dc3545;
}

.toast-warning {
  border-left: 4px solid #ffc107;
}

.toast-warning::before {
  background: #ffc107;
}

.toast-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.toast-success .toast-icon { color: #28a745; }
.toast-error .toast-icon { color: #dc3545; }
.toast-warning .toast-icon { color: #ffc107; }

.toast-content {
  flex: 1;
}

.toast-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.15rem;
}

.toast-message {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
}

.toast-close {
  font-size: 1rem;
  color: #aaa;
  cursor: pointer;
  transition: color 0.3s;
  flex-shrink: 0;
}

.toast-close:hover {
  color: #333;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* -----------------------------------------
   15. TRUST BADGES
   ----------------------------------------- */

.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 2.5rem 0;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  transition: all 0.3s;
}

.trust-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

#trust-badges .trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 1.5rem 0.75rem;
  min-height: 160px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
}

#trust-badges .trust-badge i {
  font-size: 2.25rem !important;
  color: #FFD400 !important;
}

#trust-badges .trust-badge h6 {
  color: #fff !important;
  margin-top: 0.75rem !important;
  font-size: 0.8rem !important;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  max-width: 120px;
}

.trust-badge-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.trust-badge-icon.secure {
  background: #e8f5e9;
  color: #28a745;
}

.trust-badge-icon.delivery {
  background: #fff3e0;
  color: #FF5A00;
}

.trust-badge-icon.warranty {
  background: #e3f2fd;
  color: #1565c0;
}

.trust-badge-icon.support {
  background: #fce4ec;
  color: #e91e63;
}

.trust-badge-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.15rem;
}

.trust-badge-text p {
  font-size: 0.78rem;
  color: #888;
  margin: 0;
}

/* -----------------------------------------
   16. BRANDS SECTION
   ----------------------------------------- */

.brands-section {
  padding: 3rem 0;
  background: #fff;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.4s;
  cursor: pointer;
}

.brand-item:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

.brand-item img {
  max-height: 50px;
  width: auto;
}

/* -----------------------------------------
   17. TESTIMONIALS
   ----------------------------------------- */

.testimonials-section {
  background: #f8f9fa;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #f0f0f0;
  transition: all 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-rating {
  display: flex;
  gap: 0.2rem;
  color: #FFD400;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-text::before {
  content: '\201C';
  font-size: 2.5rem;
  color: #FFD400;
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #FFD400;
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.1rem;
}

.testimonial-role {
  font-size: 0.78rem;
  color: #888;
}

/* -----------------------------------------
   18. NEWSLETTER
   ----------------------------------------- */

.newsletter-section {
  background: linear-gradient(135deg, #111 0%, #222 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 90, 0, 0.05);
}

.newsletter-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 212, 0, 0.05);
}

.newsletter-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 550px;
  margin: 0 auto;
}

.newsletter-content h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.newsletter-content p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.4);
}

.newsletter-form input:focus {
  border-color: #FF5A00;
  background: rgba(255,255,255,0.15);
}

.newsletter-form button {
  padding: 1rem 2rem;
  background: #FF5A00;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: #e04e00;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 90, 0, 0.3);
}

/* -----------------------------------------
   19. PRODUCT DETAILS
   ----------------------------------------- */

.product-details {
  padding: 3rem 0;
}

.product-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.product-gallery {
  position: relative;
}

.product-gallery-main {
  background: linear-gradient(145deg, #fff, #f8f8f8);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 450px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.8);
  position: relative;
  overflow: hidden;
}

.product-gallery-main::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(255,212,0,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.product-gallery-main img {
  max-height: 370px;
  object-fit: contain;
  border-radius: 12px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.08));
  transition: transform 0.4s ease, filter 0.4s ease;
  position: relative;
  z-index: 1;
}

.product-gallery-main img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.12));
}

.product-gallery-thumbs {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.product-gallery-thumbs img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  padding: 0.4rem;
  background: #fff;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.product-gallery-thumbs img:hover {
  border-color: #FF5A00;
  box-shadow: 0 4px 12px rgba(255,90,0,0.15);
  transform: translateY(-2px);
}

.product-gallery-thumbs img.active,
.product-gallery-thumbs img.active-thumb {
  border-color: #FF5A00;
  box-shadow: 0 4px 12px rgba(255,90,0,0.2);
}

.product-info h1 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.product-info .rating-reviews {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.product-info .rating-reviews .stars {
  color: #FFD400;
  font-size: 0.95rem;
}

.product-info .rating-reviews span {
  font-size: 0.85rem;
  color: #888;
}

.product-info .product-price-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff8f0;
  border-radius: 12px;
  margin-bottom: 1.25rem;
}

.product-info .product-price-box .current {
  font-size: 1.75rem;
  font-weight: 900;
  color: #FF5A00;
}

.product-info .product-price-box .original {
  font-size: 1.1rem;
  color: #aaa;
  text-decoration: line-through;
}

.product-info .product-price-box .discount {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: #dc3545;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
}

.product-info .description {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.product-specs {
  margin-bottom: 1.5rem;
}

.product-specs h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.specs-table {
  width: 100%;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  overflow: hidden;
}

.specs-table tr:nth-child(even) {
  background: #fafafa;
}

.specs-table td {
  padding: 0.7rem 1rem;
  font-size: 0.85rem;
  border-bottom: 1px solid #f0f0f0;
}

.specs-table td:first-child {
  font-weight: 600;
  color: #333;
  width: 40%;
}

.specs-table td:last-child {
  color: #666;
}

.specs-table tr:last-child td {
  border-bottom: none;
}

.product-compatible {
  margin-bottom: 1.5rem;
}

.product-compatible h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.compatible-bikes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.compatible-bike-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.8rem;
  background: #f5f5f5;
  border-radius: 50px;
  font-size: 0.78rem;
  color: #555;
  transition: all 0.3s;
}

.compatible-bike-tag:hover {
  background: #fff8f0;
  color: #FF5A00;
}

.compatible-bike-tag i {
  color: #FFD400;
}

.product-quantity {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.quantity-selector button {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #333;
  background: #fafafa;
  transition: all 0.3s;
}

.quantity-selector button:hover {
  background: #f0f0f0;
  color: #FF5A00;
}

.quantity-selector input {
  width: 60px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-left: 2px solid #e0e0e0;
  border-right: 2px solid #e0e0e0;
  height: 42px;
  color: #111;
}

.product-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.product-actions .btn {
  flex: 1;
  min-width: 140px;
}

.product-tabs {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  overflow: hidden;
}

.tabs-header {
  display: flex;
  border-bottom: 1px solid #f0f0f0;
  overflow-x: auto;
}

.tab-btn {
  padding: 1rem 1.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #888;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
}

.tab-btn:hover {
  color: #333;
}

.tab-btn.active {
  color: #FF5A00;
  border-bottom-color: #FF5A00;
}

.tab-content {
  display: none;
  padding: 1.5rem;
}

.tab-content.active {
  display: block;
}

.tab-content .product-description {
  color: #444;
  font-size: 0.9rem;
  line-height: 1.9;
}

.tab-content .product-description p {
  margin-bottom: 0.8rem;
}

.tab-content .product-description ul,
.tab-content .product-description ol {
  margin: 0.8rem 0;
  padding-left: 1.5rem;
}

.tab-content .product-description li {
  margin-bottom: 0.4rem;
  line-height: 1.7;
}

.tab-content .product-description strong {
  color: #222;
  font-weight: 700;
}

.tab-content .product-description h3,
.tab-content .product-description h4 {
  color: #111;
  font-weight: 700;
  margin: 1.2rem 0 0.6rem;
}

.review-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid #f5f5f5;
}

.review-item:last-child {
  border-bottom: none;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.review-author h4 {
  font-size: 0.9rem;
  margin: 0;
}

.review-author span {
  font-size: 0.75rem;
  color: #aaa;
}

.review-rating {
  color: #FFD400;
  font-size: 0.85rem;
}

.review-text {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* Related Products */
.related-products {
  margin-top: 3rem;
}

.related-products h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* -----------------------------------------
   20. CHECKOUT
   ----------------------------------------- */

.checkout-section {
  padding: 3rem 0;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: start;
}

.checkout-steps {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
}

.checkout-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.checkout-step:not(:last-child)::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: #e0e0e0;
  margin: 0 1rem;
}

.checkout-step.completed:not(:last-child)::after {
  background: #28a745;
}

.checkout-step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  background: #e0e0e0;
  color: #888;
  transition: all 0.3s;
}

.checkout-step.active .checkout-step-number {
  background: #FF5A00;
  color: #fff;
}

.checkout-step.completed .checkout-step-number {
  background: #28a745;
  color: #fff;
}

.checkout-step-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #aaa;
}

.checkout-step.active .checkout-step-label {
  color: #FF5A00;
}

.checkout-step.completed .checkout-step-label {
  color: #28a745;
}

.checkout-form-section {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  padding: 2rem;
}

.checkout-form-section h3 {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkout-form-section h3 i {
  color: #FF5A00;
}

.order-summary {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  padding: 2rem;
  position: sticky;
  top: 100px;
}

.order-summary h3 {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.order-summary h3 i {
  color: #FF5A00;
}

.order-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #f5f5f5;
}

.order-item:last-child {
  border-bottom: none;
}

.order-item-img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: contain;
  background: #f9f9f9;
  padding: 0.35rem;
  flex-shrink: 0;
}

.order-item-details {
  flex: 1;
}

.order-item-details h4 {
  font-size: 0.88rem;
  margin: 0 0 0.25rem;
}

.order-item-details p {
  font-size: 0.78rem;
  color: #888;
  margin: 0;
}

.order-item-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: #111;
  white-space: nowrap;
}

.order-totals {
  padding-top: 1rem;
  border-top: 1px solid #f0f0f0;
}

.order-total-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.88rem;
  color: #555;
}

.order-total-row.total {
  font-size: 1.1rem;
  font-weight: 800;
  color: #111;
  padding-top: 0.75rem;
  border-top: 2px solid #e0e0e0;
  margin-top: 0.5rem;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
}

.payment-method:hover {
  border-color: #ccc;
}

.payment-method.active {
  border-color: #FF5A00;
  background: #fff8f0;
}

.payment-method input[type="radio"] {
  accent-color: #FF5A00;
  width: 18px;
  height: 18px;
}

.payment-method-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
}

.payment-method-icon {
  font-size: 1.5rem;
  color: #FF5A00;
  margin-left: auto;
}

/* -----------------------------------------
   21. ORDER STATUS - TIMELINE
   ----------------------------------------- */

.order-timeline {
  display: flex;
  justify-content: space-between;
  padding: 2rem 0;
  position: relative;
}

.order-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 40px;
  right: 40px;
  height: 3px;
  background: #e0e0e0;
  z-index: 0;
}

.order-timeline .timeline-progress {
  position: absolute;
  top: 28px;
  left: 40px;
  height: 3px;
  background: #28a745;
  z-index: 1;
  transition: width 0.6s;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
  flex: 1;
}

.timeline-step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  background: #e0e0e0;
  color: #888;
  transition: all 0.4s;
  border: 3px solid #e0e0e0;
}

.timeline-step.completed .timeline-step-icon {
  background: #28a745;
  color: #fff;
  border-color: #28a745;
}

.timeline-step.active .timeline-step-icon {
  background: #fff;
  color: #FF5A00;
  border-color: #FF5A00;
  box-shadow: 0 0 0 6px rgba(255, 90, 0, 0.15);
}

.timeline-step-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  color: #aaa;
  max-width: 80px;
}

.timeline-step.completed .timeline-step-label {
  color: #28a745;
}

.timeline-step.active .timeline-step-label {
  color: #FF5A00;
}

.timeline-step-date {
  font-size: 0.7rem;
  color: #bbb;
}

/* -----------------------------------------
   22. AUTH PAGES
   ----------------------------------------- */

.auth-section {
  padding: 4rem 0;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
}

.auth-container {
  max-width: 440px;
  margin: 0 auto;
  width: 100%;
}

.auth-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid #f0f0f0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-header h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.auth-header p {
  color: #888;
  font-size: 0.88rem;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e0e0e0;
}

.auth-divider span {
  font-size: 0.8rem;
  color: #aaa;
  white-space: nowrap;
}

.auth-social {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.auth-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 2px solid #e0e0e0;
  transition: all 0.3s;
  cursor: pointer;
  background: #fff;
}

.auth-social-btn:hover {
  border-color: #FF5A00;
  color: #FF5A00;
}

.auth-social-btn.google svg,
.auth-social-btn.facebook svg {
  width: 20px;
  height: 20px;
}

.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #666;
}

.auth-footer a {
  color: #FF5A00;
  font-weight: 600;
}

.auth-footer a:hover {
  text-decoration: underline;
}

/* -----------------------------------------
   23. ABOUT PAGE
   ----------------------------------------- */

.about-hero {
  background: #111;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 90, 0, 0.08);
  top: -100px;
  right: -100px;
}

.about-hero::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 212, 0, 0.05);
  bottom: -80px;
  left: -80px;
}

.about-hero h1 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 900;
  position: relative;
  z-index: 2;
}

.about-hero h1 span {
  color: #FFD400;
}

.about-hero p {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 1rem auto 0;
  position: relative;
  z-index: 2;
  font-size: 1rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0;
}

.about-image img {
  border-radius: 16px;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-content h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.about-content h2 span {
  color: #FF5A00;
}

.about-content p {
  color: #666;
  margin-bottom: 1rem;
  font-size: 0.92rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  gap: 0.75rem;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff8f0;
  color: #FF5A00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.about-feature h4 {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.about-feature p {
  font-size: 0.8rem;
  color: #888;
  margin: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 3rem 0;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  transition: all 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.stat-card .number {
  font-size: 2.25rem;
  font-weight: 900;
  color: #FF5A00;
  margin-bottom: 0.25rem;
}

.stat-card .label {
  font-size: 0.85rem;
  color: #888;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  transition: all 0.3s;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.team-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid #FFD400;
}

.team-card h4 {
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.team-card span {
  font-size: 0.8rem;
  color: #888;
  display: block;
  margin-bottom: 0.75rem;
}

.team-card p {
  font-size: 0.82rem;
  color: #666;
  margin: 0;
}

/* -----------------------------------------
   24. ADMIN PANEL
   ----------------------------------------- */

.admin-login-overlay {
  position: fixed;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1486006920555-c77dcf18193c?w=1920&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.admin-login-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
}

.admin-login-card {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 3rem;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  animation: fadeIn 0.6s ease;
}

.admin-login-card .login-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD400, #FF5A00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #fff;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px rgba(255, 90, 0, 0.3);
}

.admin-login-card h2 {
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.admin-login-card p {
  color: rgba(255,255,255,0.6);
  text-align: center;
  font-size: 0.88rem;
  margin-bottom: 2rem;
}

.admin-login-card .form-control {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: #fff;
}

.admin-login-card .form-control::placeholder {
  color: rgba(255,255,255,0.4);
}

.admin-login-card .form-control:focus {
  border-color: #FF5A00;
  box-shadow: 0 0 0 4px rgba(255, 90, 0, 0.15);
}

.admin-login-card .form-label {
  color: rgba(255,255,255,0.8);
}

.admin-login-card .btn-primary {
  width: 100%;
  padding: 0.9rem;
  font-size: 1rem;
  border-radius: 12px;
}

/* Admin Layout */
.admin-layout {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 260px;
  background: #111;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
  overflow-y: auto;
  transition: all 0.3s;
}

.admin-sidebar-logo {
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.admin-sidebar-logo h2 {
  font-size: 1.1rem;
  color: #fff;
  margin: 0;
}

.admin-sidebar-logo span {
  color: #FF5A00;
}

.admin-sidebar-logo img {
  width: 36px;
  height: 36px;
}

.admin-nav {
  padding: 1rem 0;
}

.admin-nav-label {
  padding: 0.75rem 1.25rem 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.3);
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1.25rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
  border-left: 3px solid transparent;
}

.admin-nav-item:hover {
  background: rgba(255,255,255,0.05);
  color: #fff;
}

.admin-nav-item.active {
  background: rgba(255, 90, 0, 0.12);
  color: #FF5A00;
  border-left-color: #FF5A00;
}

.admin-nav-item i {
  width: 20px;
  text-align: center;
  font-size: 1rem;
}

.admin-nav-item .badge {
  margin-left: auto;
  background: #FF5A00;
  color: #fff;
  font-size: 0.65rem;
  padding: 0.12rem 0.5rem;
  border-radius: 50px;
}

.admin-main {
  flex: 1;
  margin-left: 260px;
  background: #f5f6fa;
  min-height: 100vh;
}

.admin-header {
  background: #fff;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
  z-index: 99;
}

.admin-header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.admin-header-left h3 {
  font-size: 1.1rem;
  margin: 0;
}

.admin-header-toggle {
  display: none;
  font-size: 1.25rem;
  color: #333;
  cursor: pointer;
}

.admin-header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.admin-header-btn {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.admin-header-btn:hover {
  background: #f5f5f5;
  color: #FF5A00;
}

.admin-header-btn .badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: #dc3545;
  color: #fff;
  font-size: 0.55rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-profile {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  padding: 0.35rem 0.75rem;
  border-radius: 10px;
  transition: all 0.3s;
}

.admin-profile:hover {
  background: #f5f5f5;
}

.admin-profile img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.admin-profile span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  font-size: 0.82rem;
  color: #888;
}

.breadcrumbs a {
  color: #888;
  transition: color 0.3s;
}

.breadcrumbs a:hover {
  color: #FF5A00;
}

.breadcrumbs .separator {
  color: #ccc;
  font-size: 0.7rem;
}

.breadcrumbs .current {
  color: #333;
  font-weight: 600;
}

/* Admin Content */
.admin-content {
  padding: 0 1.5rem 1.5rem;
}

.admin-page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.admin-page-header h2 {
  font-size: 1.35rem;
  margin: 0;
}

.admin-page-header .actions {
  display: flex;
  gap: 0.5rem;
}

/* -----------------------------------------
   25. ADMIN TABLE
   ----------------------------------------- */

.admin-table-wrapper {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  overflow: hidden;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table thead th {
  padding: 1rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #888;
  background: #fafafa;
  border-bottom: 2px solid #f0f0f0;
  text-align: left;
  white-space: nowrap;
}

.admin-table tbody tr {
  border-bottom: 1px solid #f5f5f5;
  transition: background 0.3s;
}

.admin-table tbody tr:last-child {
  border-bottom: none;
}

.admin-table tbody tr:hover {
  background: #fafafa;
}

.admin-table tbody td {
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  color: #555;
  vertical-align: middle;
}

.admin-table .cell-image {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  object-fit: contain;
  background: #f9f9f9;
  padding: 0.25rem;
}

.admin-table .cell-title {
  font-weight: 600;
  color: #111;
}

.admin-table .cell-actions {
  display: flex;
  gap: 0.35rem;
}

.admin-table .cell-actions button {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.3s;
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #555;
}

.admin-table .cell-actions .btn-edit:hover {
  background: #e3f2fd;
  color: #1565c0;
  border-color: #1565c0;
}

.admin-table .cell-actions .btn-delete:hover {
  background: #ffebee;
  color: #dc3545;
  border-color: #dc3545;
}

.admin-table .cell-actions .btn-view:hover {
  background: #e8f5e9;
  color: #28a745;
  border-color: #28a745;
}

.admin-table .status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
}

.status-badge.active {
  background: #e8f5e9;
  color: #28a745;
}

.status-badge.pending {
  background: #fff3e0;
  color: #FF5A00;
}

.status-badge.inactive {
  background: #f5f5f5;
  color: #888;
}

.status-badge.completed {
  background: #e8f5e9;
  color: #28a745;
}

.status-badge.cancelled {
  background: #ffebee;
  color: #dc3545;
}

.admin-table-footer {
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f0f0f0;
  font-size: 0.82rem;
  color: #888;
}

/* -----------------------------------------
   26. ADMIN FORMS
   ----------------------------------------- */

.admin-form-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  padding: 2rem;
}

.admin-form-card h3 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.admin-form-grid .full-width {
  grid-column: 1 / -1;
}

.file-upload {
  position: relative;
  border: 2px dashed #e0e0e0;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}

.file-upload:hover {
  border-color: #FF5A00;
  background: #fff8f0;
}

.file-upload i {
  font-size: 2.5rem;
  color: #FF5A00;
  margin-bottom: 1rem;
}

.file-upload h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.file-upload p {
  font-size: 0.8rem;
  color: #aaa;
  margin: 0;
}

.file-upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.file-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.file-preview img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid #f0f0f0;
}

/* -----------------------------------------
   27. ADMIN DASHBOARD CARDS
   ----------------------------------------- */

.dashboard-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.dashboard-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  transition: all 0.3s;
}

.dashboard-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.dashboard-card-info h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #888;
  margin-bottom: 0.5rem;
}

.dashboard-card-info .number {
  font-size: 2rem;
  font-weight: 900;
  color: #111;
  margin-bottom: 0.25rem;
}

.dashboard-card-info .trend {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.78rem;
  font-weight: 600;
}

.trend.up {
  color: #28a745;
}

.trend.down {
  color: #dc3545;
}

.dashboard-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.dashboard-card-icon.revenue {
  background: #e8f5e9;
  color: #28a745;
}

.dashboard-card-icon.orders {
  background: #fff3e0;
  color: #FF5A00;
}

.dashboard-card-icon.products {
  background: #e3f2fd;
  color: #1565c0;
}

.dashboard-card-icon.visitors {
  background: #fce4ec;
  color: #e91e63;
}

/* -----------------------------------------
   28. CHARTS
   ----------------------------------------- */

.chart-container {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.chart-header h3 {
  font-size: 1.05rem;
  margin: 0;
}

.chart-period {
  display: flex;
  gap: 0.25rem;
}

.chart-period button {
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #888;
  background: #f5f5f5;
  transition: all 0.3s;
}

.chart-period button:hover {
  background: #eee;
}

.chart-period button.active {
  background: #FF5A00;
  color: #fff;
}

.chart-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  color: #bbb;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.chart-placeholder::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(180deg, transparent, rgba(255, 90, 0, 0.05));
}

.chart-placeholder i {
  font-size: 2.5rem;
  color: #ddd;
}

.charts-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.25rem;
}

/* -----------------------------------------
   29. TOGGLE / SWITCH
   ----------------------------------------- */

.toggle-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  user-select: none;
}

.toggle-switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: relative;
  width: 46px;
  height: 24px;
  background: #ccc;
  border-radius: 12px;
  transition: all 0.3s;
  flex-shrink: 0;
}

.toggle-slider::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: all 0.3s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.toggle-switch input:checked + .toggle-slider {
  background: #28a745;
}

.toggle-switch input:checked + .toggle-slider::after {
  transform: translateX(22px);
}

.toggle-label {
  font-size: 0.85rem;
  color: #555;
}

/* -----------------------------------------
   30. PROGRESS BAR
   ----------------------------------------- */

.progress-bar {
  width: 100%;
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, #FFD400, #FF5A00);
  transition: width 0.6s ease;
  position: relative;
}

.progress-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 2s infinite;
}

.progress-bar-fill.success {
  background: linear-gradient(90deg, #28a745, #34ce57);
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: #888;
  margin-bottom: 0.35rem;
}

/* -----------------------------------------
   31. STAR RATING
   ----------------------------------------- */

.stars-display {
  display: inline-flex;
  gap: 0.15rem;
  color: #FFD400;
  font-size: 0.9rem;
}

.stars-display .empty {
  color: #ddd;
}

.stars-display .half {
  position: relative;
  display: inline-block;
}

.stars-input {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 0.1rem;
}

.stars-input input {
  display: none;
}

.stars-input label {
  cursor: pointer;
  font-size: 1.25rem;
  color: #ddd;
  transition: color 0.2s;
}

.stars-input label:hover,
.stars-input label:hover ~ label,
.stars-input input:checked ~ label {
  color: #FFD400;
}

/* -----------------------------------------
   34. SCROLL TO TOP
   ----------------------------------------- */

.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF5A00, #e04e00);
  color: #fff;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 25px rgba(255, 90, 0, 0.35);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s;
  cursor: pointer;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(255, 90, 0, 0.45);
}

/* -----------------------------------------
   36. LOADING SPINNER
   ----------------------------------------- */

.spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 3px solid #e0e0e0;
  border-top-color: #FF5A00;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.spinner-sm {
  width: 20px;
  height: 20px;
  border-width: 2px;
}

.spinner-lg {
  width: 60px;
  height: 60px;
  border-width: 4px;
}

.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  z-index: 9999;
}

.loading-overlay p {
  font-size: 0.9rem;
  color: #888;
  font-weight: 500;
}

/* -----------------------------------------
   37. EMPTY STATE
   ----------------------------------------- */

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
}

.empty-state i {
  font-size: 4rem;
  color: #ddd;
  margin-bottom: 1.5rem;
  display: block;
}

.empty-state h3 {
  font-size: 1.35rem;
  color: #111;
  margin-bottom: 0.5rem;
}

.empty-state p {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* -----------------------------------------
   38. MEDIA QUERIES
   ----------------------------------------- */

/* Up to 480px */
@media (max-width: 480px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.15rem; }

  .container {
    padding: 0 0.75rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-title h2 {
    font-size: 1.35rem;
  }

  .hero {
    min-height: auto;
    padding: 3rem 0;
  }

  .hero-content {
    padding: 0;
  }

  .hero-subtitle {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    margin-bottom: 0.6rem;
    padding: 0.25rem 0.75rem;
  }

  .hero-content h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .hero-content p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }

  .hero-search-box {
    flex-direction: column;
    border-radius: 12px;
  }

  .hero-search-box select {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    max-width: 100%;
    min-width: 0;
  }

  .hero-search-box input {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .hero-search-box button {
    justify-content: center;
    padding: 0.75rem 1rem;
  }

  .hero-arrows {
    display: none;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .product-card-image {
    height: 150px;
    padding: 1rem;
  }

  .product-card-image img {
    max-height: 120px;
  }

  .product-card-body {
    padding: 0.75rem;
  }

  .product-card-title {
    font-size: 0.8rem;
  }

  .product-card-price {
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
  }

  .product-card-price .current {
    font-size: 0.95rem;
  }

  .product-card-price .discount {
    font-size: 0.65rem;
    padding: 0.1rem 0.4rem;
  }

  .product-card-footer .btn {
    font-size: 0.7rem;
    padding: 0.4rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .checkout-steps {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .checkout-step:not(:last-child)::after {
    display: none;
  }

  .product-details-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-gallery-main {
    height: 280px;
  }

  .product-gallery-main img {
    max-height: 240px;
  }

  .quick-view-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stats-grid .stat-card {
    padding: 1.25rem;
  }

  .stat-card .number {
    font-size: 1.5rem;
  }

  .admin-sidebar {
    width: 100%;
    transform: translateX(-100%);
  }

  .admin-sidebar.open {
    transform: translateX(0);
  }

  .admin-main {
    margin-left: 0;
  }

  .dashboard-cards {
    grid-template-columns: 1fr;
  }

  .charts-grid {
    grid-template-columns: 1fr;
  }

  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
  }

  .auth-social {
    grid-template-columns: 1fr;
  }

  .pagination {
    gap: 0.2rem;
  }

  .pagination a {
    min-width: 34px;
    height: 34px;
    font-size: 0.78rem;
  }
}

/* 481px - 768px */
@media (min-width: 481px) and (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .container {
    padding: 0 1rem;
  }

  .hero {
    min-height: auto;
    padding: 3rem 0;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  .hero-buttons {
    margin-bottom: 1.5rem;
  }

  .hero-search-box select {
    min-width: 100px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .product-card-image {
    height: 180px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .product-details-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dashboard-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .charts-grid {
    grid-template-columns: 1fr;
  }

  .admin-form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .admin-sidebar {
    transform: translateX(-100%);
  }

  .admin-sidebar.open {
    transform: translateX(0);
  }

  .admin-main {
    margin-left: 0;
  }

  .admin-header-toggle {
    display: block;
  }
}

/* 769px - 992px */
@media (min-width: 769px) and (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dashboard-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .charts-grid {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    width: 220px;
  }

  .admin-main {
    margin-left: 220px;
  }
}

/* 993px - 1200px */
@media (min-width: 993px) and (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .dashboard-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-sidebar {
    width: 240px;
  }

  .admin-main {
    margin-left: 240px;
  }
}

/* Above 1200px - default styles apply */

/* Mobile Nav & Hamburger */
@media (max-width: 992px) {
  .header-top {
    display: none;
  }

  .header-search {
    display: none;
  }

  .header-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .header-main .container {
    gap: 0.75rem;
  }

  .header-logo h1 {
    font-size: 1.1rem;
  }

  .header-actions {
    gap: 0;
  }

  .header-action-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .mega-menu,
  .dropdown-menu {
    display: none;
  }
}

/* -----------------------------------------
   39. KEYFRAMES
   ----------------------------------------- */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -----------------------------------------
   40. UTILITY CLASSES
   ----------------------------------------- */

/* Text colors */
.text-primary { color: #FF5A00 !important; }
.text-secondary { color: #111 !important; }
.text-accent { color: #FFD400 !important; }
.text-white { color: #fff !important; }
.text-dark { color: #111 !important; }
.text-muted { color: #777 !important; }
.text-success { color: #28a745 !important; }
.text-danger { color: #dc3545 !important; }
.text-warning { color: #ffc107 !important; }
.text-info { color: #17a2b8 !important; }
.text-body { color: #333 !important; }

/* Background colors */
.bg-primary { background-color: #FF5A00 !important; }
.bg-secondary { background-color: #111 !important; }
.bg-accent { background-color: #FFD400 !important; }
.bg-white { background-color: #fff !important; }
.bg-light { background-color: #f8f9fa !important; }
.bg-dark { background-color: #222 !important; }
.bg-success { background-color: #28a745 !important; }
.bg-danger { background-color: #dc3545 !important; }
.bg-warning { background-color: #ffc107 !important; }
.bg-transparent { background-color: transparent !important; }

/* Flex utilities */
.d-flex { display: flex !important; }
.d-inline-flex { display: inline-flex !important; }
.d-block { display: block !important; }
.d-inline-block { display: inline-block !important; }
.d-none { display: none !important; }

.flex-row { flex-direction: row !important; }
.flex-column { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-nowrap { flex-wrap: nowrap !important; }

.justify-content-start { justify-content: flex-start !important; }
.justify-content-end { justify-content: flex-end !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-around { justify-content: space-around !important; }

.align-items-start { align-items: flex-start !important; }
.align-items-end { align-items: flex-end !important; }
.align-items-center { align-items: center !important; }
.align-items-stretch { align-items: stretch !important; }

.flex-1 { flex: 1 !important; }
.gap-0 { gap: 0 !important; }
.gap-1 { gap: 0.25rem !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 0.75rem !important; }
.gap-4 { gap: 1rem !important; }
.gap-5 { gap: 1.5rem !important; }
.gap-6 { gap: 2rem !important; }

/* Grid utilities */
.d-grid { display: grid !important; }

/* Spacing */
.m-0 { margin: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 0.75rem !important; }
.mt-4 { margin-top: 1rem !important; }
.mt-5 { margin-top: 1.5rem !important; }
.mt-6 { margin-top: 2rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 0.75rem !important; }
.mb-4 { margin-bottom: 1rem !important; }
.mb-5 { margin-bottom: 1.5rem !important; }
.mb-6 { margin-bottom: 2rem !important; }
.ml-0 { margin-left: 0 !important; }
.ml-1 { margin-left: 0.25rem !important; }
.ml-2 { margin-left: 0.5rem !important; }
.ml-3 { margin-left: 0.75rem !important; }
.mr-0 { margin-right: 0 !important; }
.mr-1 { margin-right: 0.25rem !important; }
.mr-2 { margin-right: 0.5rem !important; }
.mr-3 { margin-right: 0.75rem !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }

.p-0 { padding: 0 !important; }
.p-1 { padding: 0.25rem !important; }
.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 0.75rem !important; }
.p-4 { padding: 1rem !important; }
.p-5 { padding: 1.5rem !important; }
.p-6 { padding: 2rem !important; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.pl-0 { padding-left: 0 !important; }
.pr-0 { padding-right: 0 !important; }
.px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }

/* Text utilities */
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }
.text-uppercase { text-transform: uppercase !important; }
.text-lowercase { text-transform: lowercase !important; }
.text-capitalize { text-transform: capitalize !important; }
.text-decoration-none { text-decoration: none !important; }
.font-weight-light { font-weight: 300 !important; }
.font-weight-regular { font-weight: 400 !important; }
.font-weight-medium { font-weight: 500 !important; }
.font-weight-semibold { font-weight: 600 !important; }
.font-weight-bold { font-weight: 700 !important; }
.font-weight-extrabold { font-weight: 800 !important; }
.font-weight-black { font-weight: 900 !important; }
.font-italic { font-style: italic !important; }
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Sizing */
.w-100 { width: 100% !important; }
.w-auto { width: auto !important; }
.h-100 { height: 100% !important; }
.h-auto { height: auto !important; }

/* Border & Radius */
.rounded { border-radius: 8px !important; }
.rounded-lg { border-radius: 12px !important; }
.rounded-xl { border-radius: 16px !important; }
.rounded-circle { border-radius: 50% !important; }
.rounded-pill { border-radius: 50px !important; }
.border { border: 1px solid #f0f0f0 !important; }
.border-0 { border: none !important; }
.border-top { border-top: 1px solid #f0f0f0 !important; }
.border-bottom { border-bottom: 1px solid #f0f0f0 !important; }

/* Shadow */
.shadow-sm { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important; }
.shadow { box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important; }
.shadow-lg { box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important; }
.shadow-none { box-shadow: none !important; }

/* Position */
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
.position-fixed { position: fixed !important; }
.position-sticky { position: sticky !important; }

/* Overflow */
.overflow-hidden { overflow: hidden !important; }
.overflow-auto { overflow: auto !important; }
.overflow-visible { overflow: visible !important; }

/* Visibility */
.visible { visibility: visible !important; }
.invisible { visibility: hidden !important; }

/* Cursor */
.cursor-pointer { cursor: pointer !important; }
.cursor-default { cursor: default !important; }

/* Z-index */
.z-1 { z-index: 1 !important; }
.z-10 { z-index: 10 !important; }
.z-100 { z-index: 100 !important; }
.z-1000 { z-index: 1000 !important; }

/* Animations */
.animate-fadeIn { animation: fadeIn 0.5s ease; }
.animate-slideUp { animation: slideUp 0.5s ease; }
.animate-slideDown { animation: slideDown 0.5s ease; }
.animate-pulse { animation: pulse 2s ease infinite; }
.animate-spin { animation: spin 1s linear infinite; }
.animate-float { animation: float 3s ease infinite; }

/* Transitions */
.transition { transition: all 0.3s ease; }
.transition-fast { transition: all 0.15s ease; }
.transition-slow { transition: all 0.5s ease; }

/* List */
.list-unstyled { list-style: none; padding: 0; margin: 0; }
.list-inline { display: flex; gap: 0.5rem; }

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Print */
@media print {
  .header,
  .footer,
  .scroll-top,
  .toast-container,
  .modal-overlay {
    display: none !important;
  }
}

/* -----------------------------------------
   99. CART SIDEBAR
   ----------------------------------------- */

.cart-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.cart-sidebar-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
}

.cart-sidebar.open {
  transform: translateX(0);
}

.cart-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #f0f0f0;
}

.cart-sidebar-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
}

.cart-sidebar-close {
  width: 36px;
  height: 36px;
  border: none;
  background: #f5f5f5;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #111;
  transition: background 0.3s;
}

.cart-sidebar-close:hover {
  background: #e0e0e0;
}

.cart-sidebar-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  color: #999;
}

.cart-sidebar-empty i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ddd;
}

.cart-sidebar-empty p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.cart-sidebar-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cart-sidebar-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #f5f5f5;
  align-items: center;
}

.cart-sidebar-item:last-child {
  border-bottom: none;
}

.cart-sidebar-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 8px;
  background: #fafafa;
  flex-shrink: 0;
}

.cart-sidebar-item-info {
  flex: 1;
  min-width: 0;
}

.cart-sidebar-item-info h4 {
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-sidebar-item-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: #FF5A00;
  margin-bottom: 0.35rem;
}

.cart-sidebar-item-qty {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cart-sidebar-item-qty .qty-btn {
  width: 26px;
  height: 26px;
  border: 1px solid #e0e0e0;
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #555;
  transition: all 0.2s;
}

.cart-sidebar-item-qty .qty-btn:hover {
  background: #f5f5f5;
  border-color: #ccc;
}

.cart-sidebar-item-qty span {
  min-width: 24px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
}

.cart-sidebar-item-remove {
  width: 32px;
  height: 32px;
  border: none;
  background: #fff5f5;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #dc3545;
  transition: all 0.2s;
  flex-shrink: 0;
}

.cart-sidebar-item-remove:hover {
  background: #dc3545;
  color: #fff;
}

.cart-sidebar-footer {
  border-top: 1px solid #f0f0f0;
  padding: 1.25rem 1.5rem;
  background: #fafafa;
}

.cart-sidebar-coupon {
  margin-bottom: 0.75rem;
}

.cart-sidebar-coupon form {
  display: flex;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ddd;
}

.cart-sidebar-coupon input {
  flex: 1;
  padding: 0.55rem 0.75rem;
  font-size: 0.85rem;
  border: none;
  outline: none;
  min-width: 0;
}

.cart-sidebar-coupon input::placeholder { color: #aaa; }

.cart-sidebar-coupon form button {
  padding: 0.55rem 0.85rem;
  background: #FFD400;
  border: none;
  color: #111;
  cursor: pointer;
  font-size: 0.85rem;
  transition: background 0.2s;
}

.cart-sidebar-coupon form button:hover { background: #e6c000; }

.cart-sidebar-coupon.applied {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #e8f5e9;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.8rem;
  color: #2e7d32;
}

.cart-sidebar-coupon.applied i:first-child { color: #2e7d32; }

.cart-sidebar-coupon.applied span { flex: 1; }

.cart-sidebar-coupon.applied button {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  padding: 0;
  font-size: 0.75rem;
}

.cart-sidebar-coupon.applied button:hover { color: #e53935; }

.cart-sidebar-discount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.cart-sidebar-discount span {
  font-size: 0.85rem;
  color: #2e7d32;
}

.cart-sidebar-discount strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: #2e7d32;
}

.cart-sidebar-subtotal,
.cart-sidebar-vat,
.cart-sidebar-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.cart-sidebar-subtotal span,
.cart-sidebar-vat span {
  font-size: 0.85rem;
  color: #666;
}

.cart-sidebar-subtotal strong,
.cart-sidebar-vat strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: #333;
}

.cart-sidebar-total {
  margin-bottom: 1rem;
  padding-top: 0.5rem;
  border-top: 2px solid #e0e0e0;
}

.cart-sidebar-total span {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
}

.cart-sidebar-total strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: #FF5A00;
}

.cart-sidebar-footer .checkout-btn {
  width: 100%;
  padding: 0.85rem;
  font-size: 0.95rem;
  border-radius: 8px;
}

/* -----------------------------------------
   22. STICKY CART BAR (Mobile)
   ----------------------------------------- */

.sticky-cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #e0e0e0;
  padding: 0.75rem 1rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}

.sticky-cart-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.sticky-cart-name {
  font-size: 0.8rem;
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-cart-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: #FF5A00;
}

.sticky-cart-bar .btn {
  flex-shrink: 0;
  padding: 0.7rem 1.25rem;
  font-size: 0.85rem;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .sticky-cart-bar {
    display: flex;
  }
  .product-details {
    padding-bottom: 5rem;
  }
}

/* -----------------------------------------
   23. IMAGE LIGHTBOX
   ----------------------------------------- */

.image-lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.image-lightbox.open {
  display: flex;
}

.image-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2.5rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
  line-height: 1;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #fff;
  background: rgba(255,255,255,0.15);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  opacity: 0.7;
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.3);
  opacity: 1;
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}
@media (max-width: 768px) {
  .cart-table thead { display: none; }
  .cart-table, .cart-table tbody, .cart-table tr, .cart-table td {
    display: block;
    width: 100%;
  }
  .cart-table tr {
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 1rem;
    padding: 1rem;
  }
  .cart-table td {
    border: none;
    padding: 0.5rem 0;
    text-align: left;
  }
  .cart-table td[data-label]:not([data-label=""])::before {
    content: attr(data-label);
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 0.25rem;
  }
}

/* -----------------------------------------
   24. HOMEPAGE NEW LAUNCH RESPONSIVE
   ----------------------------------------- */

.new-launch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  flex: 1;
}

.new-launch-img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  padding: 0.75rem;
  transition: transform 0.3s;
}

.new-launch-img-wrap a {
  display: block;
}

.new-launch-img:hover {
  transform: scale(1.03);
}

@media (max-width: 767px) {
  .new-launch-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .new-launch-img {
    height: 160px;
  }
}

/* -----------------------------------------
   25. HOMEPAGE COUPON PROMO BANNER
   ----------------------------------------- */

.coupon-promo-section {
  padding: 2.5rem 0 1rem;
  position: relative;
  overflow: hidden;
}

.coupon-promo-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #1a1a2e 0%, #16213e 30%, #0f3460 60%, #1a1a2e 100%);
  z-index: 0;
}

.coupon-promo-circle {
  position: absolute;
  border-radius: 50%;
}

.coupon-promo-circle-1 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 90, 0, 0.18), transparent 70%);
  top: -100px;
  right: -50px;
  animation: promoFloat1 6s ease-in-out infinite;
}

.coupon-promo-circle-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 212, 0, 0.12), transparent 70%);
  bottom: -60px;
  left: 10%;
  animation: promoFloat2 8s ease-in-out infinite;
}

.coupon-promo-circle-3 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.1), transparent 70%);
  top: 20%;
  left: 40%;
  animation: promoFloat1 10s ease-in-out infinite reverse;
}

@keyframes promoFloat1 {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

@keyframes promoFloat2 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-15px) translateX(10px); }
}

.coupon-promo-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
}

.coupon-promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #FF5A00, #ff7a33);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(255, 90, 0, 0.4);
  animation: promoPulse 2s ease-in-out infinite;
}

@keyframes promoPulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(255, 90, 0, 0.4); }
  50% { box-shadow: 0 4px 25px rgba(255, 90, 0, 0.6); }
}

.coupon-promo-title {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

.coupon-promo-title span {
  background: linear-gradient(135deg, #FFD400, #FF5A00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.coupon-promo-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0 0 1.5rem;
  line-height: 1.6;
  max-width: 420px;
}

.coupon-promo-stats {
  display: flex;
  gap: 1.5rem;
}

.coupon-promo-stat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.6rem 1rem;
  backdrop-filter: blur(10px);
}

.coupon-promo-stat i {
  color: #FF5A00;
  font-size: 1rem;
}

.coupon-promo-stat strong {
  display: block;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}

.coupon-promo-stat span {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
}

.coupon-promo-right {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-height: 380px;
  overflow-y: auto;
  padding-right: 0.5rem;
  -ms-overflow-style: none;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,90,0,0.3) transparent;
}

.coupon-promo-right::-webkit-scrollbar {
  width: 4px;
}

.coupon-promo-right::-webkit-scrollbar-thumb {
  background: rgba(255, 90, 0, 0.3);
  border-radius: 4px;
}

.coupon-promo-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  overflow: visible;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.coupon-promo-card:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 12px 40px rgba(255, 90, 0, 0.15);
}

.coupon-promo-card-featured {
  border: 2px solid #FF5A00;
  box-shadow: 0 4px 20px rgba(255, 90, 0, 0.12);
}

.coupon-promo-card-featured::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 14px;
  background: linear-gradient(135deg, #FF5A00, #FFD400, #FF5A00);
  z-index: -1;
  opacity: 0.15;
}

.coupon-promo-card-notch {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #0f3460;
  border-radius: 50%;
  z-index: 2;
}

.coupon-promo-card-notch-top {
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
}

.coupon-promo-card-notch-bottom {
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
}

.coupon-promo-card-dashed {
  position: absolute;
  left: 78px;
  top: 12px;
  bottom: 12px;
  width: 0;
  border-left: 2px dashed #e0e0e0;
}

.coupon-promo-card-content {
  display: flex;
  align-items: stretch;
}

.coupon-promo-card-left {
  background: linear-gradient(135deg, #FF5A00, #d94800);
  padding: 1.25rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  border-radius: 13px 0 0 13px;
  position: relative;
  overflow: hidden;
}

.coupon-promo-card-left::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.coupon-promo-card-left::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.coupon-promo-card-discount {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}

.coupon-promo-val {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.coupon-promo-off {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.9;
  margin-top: 2px;
}

.coupon-promo-card-right {
  padding: 1rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
}

.coupon-promo-card-title {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: #111;
}

.coupon-promo-card-cond {
  margin: 0;
  font-size: 0.72rem;
  color: #999;
}

.coupon-promo-card-cond i {
  color: #FF5A00;
  margin-right: 3px;
}

.coupon-promo-card-code-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.coupon-promo-card-code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.85rem;
  font-weight: 800;
  color: #FF5A00;
  background: linear-gradient(135deg, #fff8f0, #fff0e0);
  border: 2px dashed #FF5A00;
  padding: 0.3rem 0.75rem;
  border-radius: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.coupon-promo-card-copy {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: linear-gradient(135deg, #FF5A00, #d94800);
  border: none;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(255, 90, 0, 0.25);
}

.coupon-promo-card-copy:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(255, 90, 0, 0.4);
}

.coupon-promo-card-copy.copied {
  background: linear-gradient(135deg, #28a745, #1e7e34);
  box-shadow: 0 3px 10px rgba(40, 167, 69, 0.3);
}

@media (max-width: 992px) {
  .coupon-promo-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .coupon-promo-title {
    font-size: 1.4rem;
  }
  .coupon-promo-right {
    max-height: none;
  }
}

@media (max-width: 576px) {
  .coupon-promo-section {
    padding: 1.5rem 0 0.5rem;
  }
  .coupon-promo-title {
    font-size: 1.2rem;
  }
  .coupon-promo-subtitle {
    font-size: 0.82rem;
  }
  .coupon-promo-stats {
    flex-direction: column;
    gap: 0.6rem;
  }
  .coupon-promo-card-left {
    min-width: 65px;
    padding: 1rem 0.75rem;
  }
  .coupon-promo-card-dashed {
    left: 65px;
  }
  .coupon-promo-val {
    font-size: 1.1rem;
  }
  .coupon-promo-card-right {
    padding: 0.8rem 1rem;
  }
  .coupon-promo-card-code {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
  }
  .coupon-promo-card-copy {
    font-size: 0.65rem;
    padding: 0.35rem 0.65rem;
  }
}

/* -----------------------------------------
   TRUST SECTION
   ----------------------------------------- */

.trust-section {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #16213e 100%);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.trust-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 90, 0, 0.08), transparent 70%);
  border-radius: 50%;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 90, 0, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.trust-text h6 {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.trust-text p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  margin: 0;
  line-height: 1.4;
}

/* -----------------------------------------
   STEPS ROW (How It Works)
   ----------------------------------------- */

.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step-card {
  flex: 1;
  max-width: 220px;
  text-align: center;
  padding: 2rem 1rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 90, 0, 0.2);
}

.step-number {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF5A00, #ff8c42);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(255, 90, 0, 0.35);
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.step-card h6 {
  font-weight: 700;
  color: #111;
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
}

.step-card p {
  font-size: 0.8rem;
  color: #888;
  margin: 0;
  line-height: 1.5;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3rem;
  color: #ddd;
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 40px;
}

/* -----------------------------------------
   PARTS GRID
   ----------------------------------------- */

.parts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.part-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.part-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  border-color: rgba(255, 90, 0, 0.2);
}

.part-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.part-info {
  flex: 1;
  min-width: 0;
}

.part-info h6 {
  color: #111;
  margin: 0 0 0.15rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.part-info p {
  color: #888;
  font-size: 0.75rem;
  margin: 0;
  line-height: 1.4;
}

.part-arrow {
  color: #ddd;
  font-size: 0.7rem;
  flex-shrink: 0;
  transition: all 0.3s;
}

.part-card:hover .part-arrow {
  color: #FF5A00;
  transform: translateX(3px);
}

/* -----------------------------------------
   BRANDS WRAP
   ----------------------------------------- */

.brands-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  background: linear-gradient(135deg, #f8f9fa, #fff);
  border: 2px solid #eee;
  border-radius: 50px;
  color: #444;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.brand-pill:hover {
  background: linear-gradient(135deg, #FF5A00, #ff8c42);
  border-color: #FF5A00;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 90, 0, 0.25);
}

.brand-pill i {
  font-size: 0.85rem;
}

/* -----------------------------------------
   SEO SECTION
   ----------------------------------------- */

.seo-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
  padding: 3.5rem 0;
}

.seo-card {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #f0f0f0;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.seo-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #f5f5f5;
}

.seo-header-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF5A00, #ff8c42);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 6px 20px rgba(255, 90, 0, 0.3);
}

.seo-header h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 0.5rem;
}

.seo-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #FFD400, #f0c000);
  color: #111;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.seo-feature {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  background: #fafafa;
  border-radius: 12px;
  transition: all 0.3s;
}

.seo-feature:hover {
  background: #fff8f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.seo-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #FF5A00, #ff8c42);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.seo-feature h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.2rem;
}

.seo-feature p {
  font-size: 0.78rem;
  color: #888;
  margin: 0;
  line-height: 1.5;
}

.seo-content {
  padding-top: 1.5rem;
  border-top: 2px solid #f5f5f5;
}

.seo-content p {
  color: #666;
  font-size: 0.88rem;
  line-height: 1.85;
  margin-bottom: 0.75rem;
}

.seo-content p:last-child {
  margin-bottom: 0;
}

/* -----------------------------------------
   RESPONSIVE - ALL NEW SECTIONS (BELOW BEST SELLERS)
   ----------------------------------------- */

/* --- MOBILE HORIZONTAL SCROLL (like Shop by Category) --- */
@media (max-width: 768px) {

  /* Trust Section */
  .trust-section {
    padding: 2rem 0;
  }

  .trust-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.75rem;
    padding-bottom: 0.5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .trust-grid::-webkit-scrollbar {
    display: none;
  }

  .trust-item {
    flex: 0 0 160px;
    min-width: 160px;
    flex-direction: column;
    text-align: center;
    padding: 1.25rem 0.75rem;
    gap: 0.6rem;
    border-radius: 14px;
  }

  .trust-icon {
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
    border-radius: 12px;
  }

  .trust-text h6 {
    font-size: 0.78rem;
    font-weight: 600;
  }

  .trust-text p {
    font-size: 0.68rem;
  }

  /* Testimonials */
  .testimonial-carousel {
    gap: 0;
    padding: 0;
  }

  .testimonial-carousel .carousel-btn {
    display: none;
  }

  .testimonial-track-wrapper {
    padding: 0.5rem 0;
  }

  .testimonial-track {
    gap: 0.75rem;
  }

  .testimonial-slide {
    width: 80vw;
    max-width: 300px;
    flex-shrink: 0;
  }

  .testimonial-card {
    padding: 1.25rem;
    border-radius: 14px;
  }

  .testimonial-user img {
    width: 42px;
    height: 42px;
  }

  .testimonial-user h5 {
    font-size: 0.85rem;
  }

  .testimonial-stars {
    font-size: 0.75rem;
  }

  .testimonial-card p {
    font-size: 0.8rem;
    line-height: 1.6;
  }

  /* How It Works - horizontal scroll */
  .steps-row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.75rem;
    padding-bottom: 0.5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .steps-row::-webkit-scrollbar {
    display: none;
  }

  .step-connector {
    display: none;
  }

  .step-card {
    flex: 0 0 160px;
    min-width: 160px;
    max-width: none;
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .step-number {
    display: none;
  }

  .step-icon {
    width: 52px;
    height: 52px;
    min-width: auto;
    font-size: 1.2rem;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
  }

  .step-card h6 {
    font-size: 0.82rem;
    margin-bottom: 0.25rem;
    white-space: normal;
    word-wrap: break-word;
  }

  .step-card p {
    font-size: 0.7rem;
    color: #999;
    line-height: 1.4;
    white-space: normal;
    word-wrap: break-word;
  }

  /* All Parts Grid - horizontal scroll */
  .parts-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.75rem;
    padding-bottom: 0.5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .parts-grid::-webkit-scrollbar {
    display: none;
  }

  .part-card {
    flex: 0 0 160px;
    min-width: 160px;
    flex-direction: column;
    text-align: center;
    padding: 1.25rem 0.75rem;
    border-radius: 14px;
    gap: 0.6rem;
  }

  .part-icon {
    width: 48px;
    height: 48px;
    min-width: auto;
    border-radius: 12px;
    font-size: 1.2rem;
    margin: 0;
  }

  .part-info h6 {
    font-size: 0.8rem;
    margin-bottom: 0.15rem;
  }

  .part-info p {
    font-size: 0.7rem;
    display: block;
  }

  .part-arrow {
    display: none;
  }

  /* Brands - horizontal scroll */
  .brands-wrap {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.6rem;
    padding-bottom: 0.5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .brands-wrap::-webkit-scrollbar {
    display: none;
  }

  .brand-pill {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 0.7rem 1.25rem;
    font-size: 0.82rem;
    font-weight: 600;
    gap: 0.4rem;
    border-width: 1.5px;
  }

  .brand-pill i {
    font-size: 0.75rem;
  }

  /* SEO Section */
  .seo-section {
    padding: 2rem 0;
  }

  .seo-card {
    padding: 1.5rem 1.25rem;
    border-radius: 16px;
  }

  .seo-header {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
  }

  .seo-header-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .seo-header h2 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
  }

  .seo-header-badge {
    font-size: 0.68rem;
    padding: 0.25rem 0.75rem;
  }

  .seo-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
  }

  .seo-feature {
    padding: 0.85rem;
    gap: 0.6rem;
    border-radius: 10px;
  }

  .seo-feature-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 0.85rem;
    border-radius: 8px;
  }

  .seo-feature h5 {
    font-size: 0.82rem;
    margin-bottom: 0.1rem;
  }

  .seo-feature p {
    font-size: 0.72rem;
    line-height: 1.4;
  }

  .seo-content {
    padding-top: 1rem;
  }

  .seo-content p {
    font-size: 0.82rem;
    line-height: 1.7;
  }

  /* Section Titles */
  .section-title {
    margin-bottom: 1.5rem;
  }

  .section-title h2 {
    font-size: 1.3rem;
  }

  .section-title p {
    font-size: 0.82rem;
  }

  .section-title::after {
    width: 40px;
    height: 3px;
    margin-top: 0.5rem;
  }
}

/* --- SMALL MOBILE (max-width: 480px) --- */
@media (max-width: 480px) {

  .trust-item {
    flex: 0 0 140px;
    min-width: 140px;
    padding: 1rem 0.6rem;
  }

  .trust-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .trust-text h6 {
    font-size: 0.72rem;
  }

  .trust-text p {
    font-size: 0.65rem;
  }

  .step-card {
    flex: 0 0 140px;
    min-width: 140px;
    padding: 1.25rem 0.75rem;
  }

  .step-number {
    display: none;
  }

  .step-icon {
    width: 44px;
    height: 44px;
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }

  .step-card h6 {
    font-size: 0.75rem;
  }

  .step-card p {
    font-size: 0.65rem;
  }

  .testimonial-slide {
    width: 75vw;
    max-width: 260px;
  }

  .testimonial-card {
    padding: 1rem;
  }

  .testimonial-user img {
    width: 36px;
    height: 36px;
  }

  .testimonial-user h5 {
    font-size: 0.78rem;
  }

  .testimonial-card p {
    font-size: 0.72rem;
  }

  .part-card {
    flex: 0 0 140px;
    min-width: 140px;
    padding: 1rem 0.6rem;
    border-radius: 12px;
  }

  .part-icon {
    width: 42px;
    height: 42px;
    font-size: 1rem;
    border-radius: 10px;
  }

  .part-info h6 {
    font-size: 0.72rem;
  }

  .part-info p {
    font-size: 0.62rem;
  }

  .brand-pill {
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
  }

  .seo-card {
    padding: 1.25rem 1rem;
    border-radius: 14px;
  }

  .seo-header h2 {
    font-size: 1rem;
  }

  .seo-header-badge {
    font-size: 0.62rem;
    padding: 0.2rem 0.6rem;
  }

  .seo-feature {
    padding: 0.75rem;
  }

  .seo-feature-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 0.8rem;
  }

  .seo-feature h5 {
    font-size: 0.78rem;
  }

  .seo-feature p {
    font-size: 0.68rem;
  }

  .seo-content p {
    font-size: 0.78rem;
    line-height: 1.65;
  }
}

/* -----------------------------------------
   END OF STYLESHEET
   ----------------------------------------- */
