/* ===== VARIABLES ===== */
:root {
  --green: #00a651;
  --green2: #007a3d;
  --green3: #e8fdf0;
  --green-dark: #005a2c;
  --dark: #0d1117;
  --dark2: #161b22;
  --dark3: #21262d;
  --text: #1a1a2e;
  --text2: #555;
  --text3: #888;
  --border: #e0e0e0;
  --bg-light: #f8fafc;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 20px rgba(0, 0, 0, .08);
  --shadow-hover: 0 8px 32px rgba(0, 166, 81, .18);
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  line-height: 1.6;
  font-size: 14.5px
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%
}

input,
select,
textarea,
button {
  font-family: 'Poppins', sans-serif
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  outline: none;
  transition: .2s
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 166, 81, .1)
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 17, 23, .95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: .3s
}

.navbar.scrolled {
  background: #0d1117
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  flex-shrink: 0
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--green), var(--green2));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin-left: auto;
  flex-wrap: nowrap
}

.nav-links a {
  color: rgba(255, 255, 255, .75);
  padding: 6px 11px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  transition: .2s;
  white-space: nowrap
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, .08)
}

.nav-cta {
  background: linear-gradient(135deg, var(--green), var(--green2)) !important;
  color: #fff !important;
  padding: 7px 16px !important;
  border-radius: 8px !important
}

.nav-cart-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px
}

.cart-badge {
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: .3s
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #0d1117;
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 12px 20px 20px
}

.mobile-menu a {
  color: rgba(255, 255, 255, .8);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  font-size: 14px
}

.mobile-menu.open {
  display: flex
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #0a1a0a 50%, #091209 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0 60px
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.hero-badge {
  display: inline-block;
  background: rgba(0, 166, 81, .15);
  color: #4aab6d;
  border: 1px solid rgba(0, 166, 81, .3);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 20px
}

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

.hero-content h1 .highlight {
  background: linear-gradient(135deg, var(--green), #4aab6d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.hero-content p {
  color: rgba(255, 255, 255, .65);
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 28px
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .7);
  font-size: 13px
}

.hero-visual {
  display: flex;
  justify-content: center
}

.hero-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  backdrop-filter: blur(8px)
}

.big-icon {
  font-size: 90px;
  margin-bottom: 12px;
  animation: float 3s ease-in-out infinite
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

.green-text {
  color: var(--green)
}

.fw-700 {
  font-weight: 700
}

.muted-text {
  color: rgba(255, 255, 255, .5);
  font-size: 13px
}

.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 20px
}

.stat-num {
  font-size: 22px;
  font-weight: 800;
  color: #fff
}

.stat-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, .5)
}

/* ===== SECTIONS ===== */
.section {
  padding: 64px 0
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px
}

.bg-light {
  background: var(--bg-light)
}

.bg-dark {
  background: var(--dark)
}

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

.section-badge {
  display: inline-block;
  background: var(--green3);
  color: var(--green2);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .8px;
  margin-bottom: 10px
}

.section-title {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 10px
}

.section-sub {
  color: var(--text3);
  font-size: 14.5px
}

.text-center {
  text-align: center
}

.mt-16 {
  margin-top: 16px
}

.mt-48 {
  margin-top: 48px
}

.mb-16 {
  margin-bottom: 16px
}

/* ===== GRIDS ===== */
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 24px
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr)
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr)
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr)
}

/* ===== CARDS ===== */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: .2s
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px)
}

.card-icon {
  font-size: 36px;
  margin-bottom: 12px
}

.card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px
}

.card p {
  color: var(--text2);
  font-size: 13.5px;
  line-height: 1.7
}

.card-link {
  cursor: pointer;
  display: block
}

.card-arrow {
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  margin-top: 10px;
  display: block
}

/* ===== SCOOTER CARDS ===== */
.scooter-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: .25s
}

.scooter-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px)
}

.scooter-img {
  background: var(--green3);
  padding: 32px;
  text-align: center;
  font-size: 64px;
  position: relative
}

.scooter-body {
  padding: 20px
}

.tag-badge {
  background: linear-gradient(135deg, var(--green), var(--green2));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px
}

.scooter-name {
  font-size: 17px;
  font-weight: 700;
  margin: 10px 0 4px
}

.scooter-cat {
  color: var(--text3);
  font-size: 12.5px;
  margin-bottom: 14px
}

.specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
  background: var(--bg-light);
  border-radius: 8px;
  padding: 10px 6px
}

.spec {
  text-align: center
}

.spec-val {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--green-dark)
}

.spec-lbl {
  font-size: 10.5px;
  color: var(--text3);
  margin-top: 2px
}

.scooter-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 12px
}

.scooter-btns {
  display: flex;
  gap: 8px
}

/* ===== PRODUCT CARDS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px
}

.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: .2s
}

.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px)
}

.product-img {
  background: var(--green3);
  padding: 28px;
  text-align: center;
  font-size: 52px;
  position: relative
}

.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px
}

.product-body {
  padding: 14px
}

.product-cat {
  font-size: 11px;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 4px
}

.product-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.4
}

.discount-badge {
  background: #fff0f0;
  color: #ef4444;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 6px
}

.product-price {
  font-size: 17px;
  font-weight: 800;
  color: var(--green)
}

.product-price span {
  font-size: 13px;
  text-decoration: line-through;
  color: var(--text3);
  margin-left: 6px;
  font-weight: 400
}

.stock-info {
  font-size: 12px;
  margin: 6px 0
}

.low-stock {
  color: #f59e0b;
  font-weight: 600
}

.btn-cart {
  width: 100%;
  padding: 8px;
  background: linear-gradient(135deg, var(--green), var(--green2));
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: .2s
}

.btn-cart:hover {
  transform: translateY(-1px)
}

.bulk-banner {
  background: linear-gradient(135deg, var(--dark), #0a2010);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap
}

.bulk-banner h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 700
}

.bulk-banner p {
  color: rgba(255, 255, 255, .65);
  font-size: 13.5px
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green2));
  color: #fff;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 166, 81, .35)
}

.btn-outline {
  background: transparent;
  color: #fff;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid rgba(255, 255, 255, .25);
  cursor: pointer;
  transition: .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green)
}

.btn-primary-sm {
  background: linear-gradient(135deg, var(--green), var(--green2));
  color: #fff;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: .2s;
  display: inline-block
}

.btn-outline-sm {
  background: transparent;
  color: var(--green);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  border: 1.5px solid var(--green);
  cursor: pointer;
  transition: .2s;
  display: inline-block
}

.btn-outline-sm:hover {
  background: var(--green3)
}

/* ===== FORMS ===== */
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px
}

.form-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px
}

.form-sub {
  color: var(--text3);
  font-size: 13.5px;
  margin-bottom: 20px
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px
}

.form-group.full {
  grid-column: 1/-1
}

.form-group label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text)
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--green), var(--green2));
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 166, 81, .4)
}

/* ===== FILTER TABS ===== */
.filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px
}

.filter-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap
}

.ftab {
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  background: #f0f0f0;
  transition: .2s;
  cursor: pointer
}

.ftab:hover,
.ftab.active {
  background: var(--green);
  color: #fff
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, #0d1117, #0a2010);
  padding: 120px 24px 60px;
  text-align: center;
  color: #fff
}

.dark-hero {
  background: linear-gradient(135deg, var(--dark), #09190d)
}

.page-hero-inner {
  max-width: 700px;
  margin: 0 auto
}

.page-hero h1 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px
}

.page-hero p {
  color: rgba(255, 255, 255, .65);
  font-size: 15px
}

/* ===== EMI CALCULATOR ===== */
.emi-calc {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 28px
}

.range-group {
  margin-bottom: 18px
}

.range-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 8px
}

.range-val {
  font-weight: 700;
  color: var(--green)
}

input[type=range] {
  width: 100%;
  -webkit-appearance: none;
  height: 5px;
  background: rgba(255, 255, 255, .15);
  border-radius: 3px;
  outline: none
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--green);
  border-radius: 50%;
  cursor: pointer
}

.emi-result {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
  background: rgba(0, 0, 0, .3);
  border-radius: 10px;
  padding: 16px
}

.er-val {
  font-size: 18px;
  font-weight: 800;
  color: var(--green);
  text-align: center
}

.er-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, .5);
  text-align: center;
  margin-top: 3px
}

.feature-tag {
  background: rgba(0, 166, 81, .15);
  color: #4aab6d;
  border: 1px solid rgba(0, 166, 81, .25);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--green3)
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .3s
}

.gallery-item:hover img {
  transform: scale(1.05)
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .7));
  padding: 16px;
  opacity: 0;
  transition: .3s;
  color: #fff;
  font-weight: 600;
  font-size: 14px
}

.gallery-item:hover .gallery-overlay {
  opacity: 1
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column
}

.lightbox.open {
  display: flex
}

.lightbox img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px
}

.lightbox p {
  color: #fff;
  margin-top: 12px;
  font-size: 14px
}

/* ===== TESTIMONIALS ===== */
.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px
}

.testi-stars {
  color: #f59e0b;
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: 2px
}

.testi-text {
  color: var(--text2);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px
}

.testi-avatar {
  font-size: 28px
}

.testi-name {
  font-weight: 700;
  font-size: 14px
}

.testi-loc {
  color: var(--text3);
  font-size: 12px
}

/* ===== BLOG ===== */
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: .2s
}

.blog-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px)
}

.blog-img {
  width: 100%;
  height: 180px;
  object-fit: cover
}

.blog-img-placeholder {
  background: var(--green3);
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px
}

.blog-body {
  padding: 18px
}

.blog-cat {
  background: var(--green3);
  color: var(--green2);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 8px
}

.blog-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px
}

.blog-title a:hover {
  color: var(--green)
}

.blog-excerpt {
  color: var(--text2);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 12px
}

.blog-footer {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 12.5px;
  color: var(--text3);
  justify-content: space-between
}

.blog-content {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text2)
}

.blog-content h2,
.blog-content h3 {
  margin: 24px 0 10px;
  color: var(--text)
}

/* ===== CONTACT ===== */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ci-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px
}

.ci-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px
}

.ci-item h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px
}

.ci-item p {
  color: var(--text2);
  font-size: 13.5px;
  line-height: 1.6
}

.ci-item a:hover {
  color: var(--green)
}

/* ===== CHECKOUT & CART ===== */
.checkout-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 28px;
  align-items: start
}

.order-summary {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  position: sticky;
  top: 84px
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px
}

.summary-divider {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 8px 0
}

.summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 800;
  border-top: 2px solid var(--border);
  padding-top: 12px;
  margin-top: 4px
}

.btn-cod {
  width: 100%;
  background: #fff;
  color: var(--text);
  border: 1.5px solid var(--border);
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: .2s;
  margin-bottom: 10px
}

.btn-cod:hover {
  border-color: var(--green);
  color: var(--green)
}

.btn-razorpay {
  width: 100%;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: .2s
}

.cart-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 10px
}

.qty-btn {
  width: 28px;
  height: 28px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700
}

.qty-btn:hover {
  background: var(--green3);
  border-color: var(--green)
}

/* ===== ORDER TRACKING ===== */
.order-success-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px
}

.order-detail-box {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 16px;
  margin: 20px 0;
  text-align: left
}

.od-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px
}

.od-row:last-child {
  border: 0
}

.status-badge {
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600
}

.status-pending {
  background: #fef3c7;
  color: #b45309
}

.status-confirmed {
  background: #dbeafe;
  color: #1d4ed8
}

.status-processing {
  background: #ede9fe;
  color: #7c3aed
}

.status-shipped {
  background: #cffafe;
  color: #0891b2
}

.status-delivered {
  background: #d1fae5;
  color: #065f46
}

.status-cancelled {
  background: #fee2e2;
  color: #dc2626
}

/* ===== FOOTER ===== */
.site-footer {
  background: #070d07;
  color: rgba(255, 255, 255, .75);
  padding: 48px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, .06)
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px
}

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

.footer-brand p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.7;
  margin-top: 6px
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px
}

.footer-col ul {
  list-style: none
}

.footer-col li {
  margin-bottom: 8px
}

.footer-col a {
  color: rgba(255, 255, 255, .55);
  font-size: 13.5px;
  transition: .2s
}

.footer-col a:hover {
  color: var(--green)
}

.social-links {
  display: flex;
  gap: 10px
}

.social-link {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, .06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .65);
  font-size: 14px;
  transition: .2s
}

.social-link:hover {
  background: var(--green);
  color: #fff
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .35);
  flex-wrap: wrap;
  gap: 8px
}

/* ===== CART SIDEBAR ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 1100;
  display: none;
  opacity: 0;
  transition: .3s
}

.cart-overlay.open {
  display: block;
  opacity: 1
}

.cart-sidebar {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 320px;
  background: #fff;
  z-index: 1200;
  transform: translateX(100%);
  transition: .3s;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(0, 0, 0, .15)
}

.cart-sidebar.open {
  transform: translateX(0)
}

.cart-header {
  padding: 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center
}

.cart-header h3 {
  font-size: 17px;
  font-weight: 700
}

.cart-close {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--text3)
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 14px
}

.cart-item {
  display: flex;
  gap: 10px;
  padding: 10px;
  background: var(--bg-light);
  border-radius: 8px;
  margin-bottom: 8px;
  align-items: center
}

.cart-item-name {
  font-size: 13px;
  font-weight: 600;
  flex: 1
}

.cart-item-qty {
  font-size: 12px;
  color: var(--text3)
}

.cart-item-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--green)
}

.cart-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: #ef4444;
  font-size: 14px;
  flex-shrink: 0
}

.cart-empty {
  text-align: center;
  padding: 40px;
  color: var(--text3);
  font-size: 14px
}

.cart-footer {
  padding: 16px;
  border-top: 1px solid var(--border)
}

.cart-total {
  font-size: 16px;
  font-weight: 800;
  color: var(--text)
}

/* ===== ALERTS ===== */
.alert-float{
  position:fixed;top:84px;right:20px;z-index:9000;
  display:flex;align-items:center;gap:12px;
  padding:14px 20px;border-radius:10px;
  font-size:14px;font-weight:500;
  background:#fff;color:var(--text);
  box-shadow:0 8px 30px rgba(0,0,0,.12);
  border-left:4px solid var(--green);
  max-width:380px;
  animation:slideIn .3s ease-out;
  transition:opacity .4s, transform .4s;
}

.alert-success{border-left-color:var(--green)}
.alert-success .alert-icon{color:var(--green)}
.alert-error{border-left-color:#ef4444}
.alert-error .alert-icon{color:#ef4444}
.notification .alert-icon{color:var(--green)}

@keyframes slideIn{
  from{opacity:0;transform:translateX(40px)}
  to{opacity:1;transform:translateX(0)}
}

.notification{
  position:fixed;top:84px;right:20px;
  display:flex;align-items:center;gap:10px;
  background:#fff;color:var(--text);
  padding:14px 20px;border-radius:10px;
  font-size:13.5px;font-weight:500;
  border-left:4px solid var(--green);
  box-shadow:0 8px 30px rgba(0,0,0,.12);
  z-index:9999;
  animation:slideIn .3s ease-out;
  transition:opacity .4s, transform .4s;
  max-width:340px;
}

/* ===== WHATSAPP ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .4);
  z-index: 900;
  transition: .3s;
  animation: wa-pulse 2s ease-in-out infinite
}

.wa-float:hover {
  transform: scale(1.1)
}

@keyframes wa-pulse {

  0%,
  100% {
    box-shadow: 0 6px 20px rgba(37, 211, 102, .4)
  }

  50% {
    box-shadow: 0 6px 30px rgba(37, 211, 102, .6)
  }
}

/* ===== PROCESS STEPS ===== */
.process-steps {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 28px;
  flex-wrap: wrap
}

.step {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 20px 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px
}

.step-num {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--green), var(--green2));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  margin: 0 auto 10px
}

.step h4 {
  font-size: 13px;
  font-weight: 700
}

/* ===== COMPARE TABLE ===== */
.compare-table {
  overflow-x: auto;
  margin-bottom: 28px
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px
}

.table th {
  background: var(--green3);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  color: var(--green-dark);
  border-bottom: 2px solid #c0e8d0
}

.table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border)
}

.table tr:hover td {
  background: var(--bg-light)
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .hero-content h1 {
    font-size: 38px
  }
}

@media(max-width:768px) {
  .nav-links {
    display: none
  }

  .hamburger {
    display: flex
  }

  .hero-inner,
  .grid-2,
  .grid-3,
  .checkout-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .hero {
    padding-top: 100px
  }

  .hero-content h1 {
    font-size: 30px
  }

  .form-grid {
    grid-template-columns: 1fr
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr)
  }

  .cart-sidebar {
    width: 100%;
    max-width: 360px
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:480px) {
  .grid-4 {
    grid-template-columns: 1fr
  }

  .page-hero h1 {
    font-size: 26px
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

/* ===== PROFESSIONAL ICON STYLES ===== */
.hero-icon-circle {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--green), var(--green2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  color: #fff;
  margin: 0 auto 16px;
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 8px 24px rgba(0, 166, 81, .3)
}

.card-icon i,
.scooter-img i,
.testi-avatar i,
.hero-badge i,
.trust-item i {
  color: var(--green)
}

.card-icon {
  font-size: 32px;
  margin-bottom: 12px;
  width: 56px;
  height: 56px;
  background: var(--green3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center
}

.scooter-img i {
  font-size: 56px
}

.testi-avatar i {
  font-size: 32px;
  color: #ccc
}

.trust-item i {
  font-size: 14px
}

.card-arrow i {
  font-size: 11px;
  margin-left: 4px
}

.blog-footer a i {
  font-size: 10px;
  margin-left: 3px
}

.btn-primary i,
.btn-outline i,
.btn-primary-sm i,
.btn-outline-sm i {
  font-size: 13px
}

.feature-tag i {
  font-size: 10px;
  margin-right: 4px
}

/* ===== LOGO ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  flex-shrink: 0;
  text-decoration: none
}

.logo-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  white-space: nowrap
}

.logo-sub {
  font-size: 8.5px;
  font-weight: 500;
  color: #4aab6d;
  letter-spacing: .8px;
  line-height: 1;
  white-space: nowrap;
  margin-top: 3px
}

@media(max-width:768px) {
  .logo img {
    height: 40px;
    width: 40px
  }

  .logo-name {
    font-size: 13px
  }

  .logo-sub {
    font-size: 7px
  }
}

.logo-name {
  font-size: 16px !important;
  font-weight: 700;
  color: #fff !important;
  line-height: 1;
  white-space: nowrap
}

.logo-sub {
  font-size: 8.5px !important;
  font-weight: 500;
  color: #4aab6d !important;
  letter-spacing: .8px;
  line-height: 1;
  white-space: nowrap;
  margin-top: 3px;
  display: block
}