
  :root {
    --orange: #fd2f53;
    --orange-light: #fec4c4;
    --orange-glow: rgba(255,107,0,0.15);
    --dark: #000000;
    --dark-2: #151515;
    --dark-3: #1E1E1E;
    --white: #FFFFFF;
    --gray: #888;
    --light-bg: #F7F7F7;
    --card-bg: #FFFFFF;
    --text: #1A1A1A;
    --text-light: #555;
    --border: #E5E5E5;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-hover: 0 12px 40px rgba(255,107,0,0.18);
    --radius: 16px;
    --radius-sm: 10px;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'poppins', sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
  }

  h1, h2, h3, h4 { font-family: 'Clash Display', sans-serif; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0 48px;
    height: 70px;
    display: flex; align-items: center; justify-content: space-between;
  }

  .nav-logo {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.6rem; font-weight: 700;
    color: var(--dark);
    text-decoration: none;
  }

  .nav-logo span { color: var(--orange); }

  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a {
    text-decoration: none; color: var(--text-light);
    font-size: 0.9rem; font-weight: 500;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--orange); }

  .nav-cta {
    background: var(--orange); color: #fff;
    padding: 10px 24px; border-radius: 50px;
    text-decoration: none; font-size: 0.9rem; font-weight: 600;
    transition: background 0.2s, transform 0.15s;
  }
  .nav-cta:hover { background: white; transform: translateY(-1px);
  border: 1px solid #fd2f53;
color:#fd2f53;}

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    /* background: linear-gradient(135deg, #0D0D0D 0%, #1a1a2e 50%, #0D0D0D 100%); */
    position: relative; overflow: hidden;
    display: flex; align-items: center;
    padding: 70px 0 0;
  }

  .hero::before {
    content: '';
    position: absolute; inset: 0;
    /* background:
      radial-gradient(ellipse 60% 60% at 30% 50%, rgba(255,107,0,0.12) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 70% 30%, rgba(255,107,0,0.06) 0%, transparent 60%); */
  }

  .hero-grid {
    position: absolute; inset: 0; 
    /* opacity: 0.04; */
    /* background-image: linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px); */
    background-image:url('../assets/hero-bg2.png'); 
    /* background-size: 60px 60px; */
    background-size: cover;
  }

  .hero-content {
    position: relative; z-index: 2;
    width: 100%; max-width: 1280px;
    margin: 0 auto;
    padding: 60px 48px;
    display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center;
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,107,0,0.15); border: 1px solid rgba(255,107,0,0.3);
    color: var(--orange); padding: 6px 16px; border-radius: 50px;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 24px;
  }

  .hero-badge::before {
    content: ''; width: 8px; height: 8px; border-radius: 50%;
    background: var(--orange); animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
  }

  .hero-title {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 700; color: #fff;
    line-height: 1.1; margin-bottom: 20px;
  }

  .hero-title .accent { color: var(--orange); }

  .hero-subtitle {
    font-size: 1.1rem; color: rgba(255,255,255,0.6);
    line-height: 1.7; max-width: 480px; margin-bottom: 36px;
  }

  .hero-stats {
    display: flex; gap: 36px;
  }

  .stat { }
  .stat-num {
    font-family: 'Clash Display', sans-serif;
    font-size: 2rem; font-weight: 700; color: var(--orange);
  }
  .stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 2px; }

  /* ── HERO FORM ── */
  .hero-form {
    background: rgba(255,255,255,0.97);
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,107,0,0.1);
    animation: floatUp 0.8s ease both 0.3s;
  }

  @keyframes floatUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .form-title {
    font-size: 1.3rem; font-weight: 700; color: var(--dark);
    margin-bottom: 6px;
  }

  .form-sub { font-size: 0.85rem; color: var(--text-light); margin-bottom: 24px; }

  .form-group { margin-bottom: 16px; }

  .form-group label {
    display: block; font-size: 0.8rem; font-weight: 600;
    color: var(--text); margin-bottom: 6px;
  }

  .form-group input,
  .form-group select {
    width: 100%; padding: 12px 16px;
    border: 1.5px solid var(--border); border-radius: var(--radius-sm);
    font-family: 'Sora', sans-serif; font-size: 0.9rem; color: var(--text);
    background: #fafafa;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
  }

  .form-group input:focus,
  .form-group select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255,107,0,0.1);
    background: #fff;
  }

  .form-btn {
    width: 100%; padding: 14px;
    background: var(--orange); color: #fff;
    border: none; border-radius: var(--radius-sm);
    font-family: 'Clash Display', sans-serif;
    font-size: 1rem; font-weight: 600; cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    margin-top: 8px;
  }

  .form-btn:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,107,0,0.35);
  }

  /* ── SECTION COMMONS ── */
  section { padding: 96px 48px; }

  .section-inner { max-width: 1280px; margin: 0 auto; }

  .section-label {
    font-size: 0.75rem; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--orange);
    margin-bottom: 12px;
  }

  .section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700; color: var(--dark);
    margin-bottom: 16px;
  }

  .section-desc {
    font-size: 1rem; color: var(--text-light);
    max-width: 540px; line-height: 1.7;
  }

  .section-header { margin-bottom: 52px; }

  /* ── PRODUCTS SECTION ── */
  .products { background: var(--light-bg); }

  .products-controls {
    display: flex; align-items: center;
    justify-content: space-between;
    gap: 20px; margin-bottom: 40px; flex-wrap: wrap;
  }

  .search-bar {
    display: flex; align-items: center;
    background: #fff; border: 1.5px solid var(--border);
    border-radius: 50px; padding: 10px 20px; gap: 10px;
    flex: 1; max-width: 380px;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .search-bar:focus-within {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255,107,0,0.08);
  }

  .search-bar i { color: var(--gray); font-size: 0.9rem; }

  .search-bar input {
    border: none; outline: none; background: transparent;
    font-family: 'Sora', sans-serif; font-size: 0.9rem; color: var(--text);
    width: 100%;
  }

  .filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }

  .filter-tab {
    padding: 8px 18px; border-radius: 50px;
    border: 1.5px solid var(--border); background: #fff;
    font-size: 0.82rem; font-weight: 600; cursor: pointer;
    transition: all 0.2s; color: var(--text-light);
  }

  .filter-tab.active, .filter-tab:hover {
    background: var(--orange); color: #fff; border-color: var(--orange);
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
  }

  .product-card {
    background: var(--card-bg);
    border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); border: 1px solid var(--border);
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
  }

  .product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
  }

  .card-badge {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    background: var(--orange); color: #fff;
    font-size: 0.72rem; font-weight: 700; padding: 4px 10px;
    border-radius: 50px; letter-spacing: 0.5px;
  }

  .card-wishlist {
    position: absolute; top: 14px; right: 14px; z-index: 2;
    background: #fff; border: none; width: 34px; height: 34px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.2s; color: var(--gray);
  }

  .card-wishlist:hover { color: var(--orange); transform: scale(1.1); }

  .card-img-wrap {
    background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
    height: 200px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; padding: 20px;
  }

  .card-img-wrap img {
    max-height: 160px; max-width: 100%;
    object-fit: contain; transition: transform 0.3s;
  }

  .product-card:hover .card-img-wrap img { transform: scale(1.05); }

  .card-body { padding: 20px; }

  .card-brand {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; color: var(--orange); margin-bottom: 4px;
  }

  .card-name {
    font-size: 1.05rem; font-weight: 700; color: var(--dark);
    margin-bottom: 12px; line-height: 1.3;
  }

  .card-specs {
    display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px;
  }

  .spec-row {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.8rem; color: var(--text-light);
  }

  .spec-row i { color: var(--orange); width: 14px; font-size: 0.75rem; }

  .card-footer {
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid var(--border); padding-top: 16px;
  }

  .card-price { }
  .price-label { font-size: 0.72rem; color: var(--gray); }
  .price-val {
    font-family: 'Clash Display', sans-serif;
    font-size: 18px; font-weight: 700; color: var(--dark);
  }

  .buy-btn {
    background: var(--orange); color: #fff;
    border: none; padding: 10px 20px; border-radius: var(--radius-sm);
    font-family: 'Sora', sans-serif; font-size: 0.85rem; font-weight: 600;
    cursor: pointer; transition: background 0.2s, transform 0.15s;
  }

  .buy-btn:hover { background: white;;
  border: 1px solid #fd2f53;
color:#fd2f53; }

  /* ── WHY US ── */
  .why { background: #fff; }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 28px;
  }

  .why-card {
    padding: 36px 28px;
    border: 1.5px solid var(--border); border-radius: var(--radius);
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    position: relative; overflow: hidden;
  }

  .why-card::before {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0; height: 3px;
    background: var(--orange); transform: scaleX(0); transition: transform 0.3s;
    transform-origin: left;
  }

  .why-card:hover { border-color: var(--orange); box-shadow: var(--shadow-hover); transform: translateY(-4px); }
  .why-card:hover::before { transform: scaleX(1); }

  .why-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: var(--orange-glow); display: flex; align-items: center;
    justify-content: center; font-size: 1.4rem; color: var(--orange);
    margin-bottom: 20px;
  }

  .why-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
  .why-desc { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }

  /* ── DEALS ── */
  .deals { background: var(--dark); position: relative; overflow: hidden; }

  .deals::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,0,0.1) 0%, transparent 70%);
  }

  .deals .section-title { color: #fff; }
  .deals .section-desc { color: rgba(255,255,255,0.5); }

  .deals-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px; position: relative; z-index: 1;
  }

  .deal-card {
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius); padding: 32px 28px;
    transition: border-color 0.25s, transform 0.25s;
    position: relative; overflow: hidden;
  }

  .deal-card::after {
    content: '';
    position: absolute; top: 0; right: 0;
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(255,107,0,0.12) 0%, transparent 70%);
  }

  .deal-card:hover { border-color: rgba(255,107,0,0.4); transform: translateY(-4px); }

  .deal-tag {
    display: inline-block; background: rgba(255,107,0,0.15);
    color: var(--orange); font-size: 0.75rem; font-weight: 700;
    padding: 4px 12px; border-radius: 50px; margin-bottom: 20px;
    border: 1px solid rgba(255,107,0,0.25);
  }

  .deal-icon { font-size: 2.5rem; margin-bottom: 16px; }

  .deal-title {
    font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 10px;
  }

  .deal-desc { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 20px; }

  .deal-discount {
    font-family: 'Clash Display', sans-serif;
    font-size: 25px; font-weight: 700; color: var(--orange);
    margin-bottom: 20px;
  }

  .deal-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--orange); color: #fff;
    border: none; padding: 10px 22px; border-radius: var(--radius-sm);
    font-family: 'Sora', sans-serif; font-size: 0.85rem; font-weight: 600;
    cursor: pointer; transition: background 0.2s, gap 0.2s;
  }

  .deal-btn:hover { background: var(--orange-light); gap: 12px; }

  /* ── FEATURES ── */
  .features { background: var(--light-bg); }

  .features-wrap {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }

  .features-list { display: flex; flex-direction: column; gap: 24px; }

  .feature-item {
    display: flex; gap: 20px; align-items: flex-start;
    padding: 24px; background: #fff; border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: box-shadow 0.2s, transform 0.2s;
  }

  .feature-item:hover { box-shadow: var(--shadow-hover); transform: translateX(4px); }

  .feat-icon {
    flex-shrink: 0; width: 48px; height: 48px;
    border-radius: 12px; background: var(--orange-glow);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--orange);
  }

  .feat-text h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
  .feat-text p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

  .features-visual {
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a2e 100%);
    border-radius: 24px; padding: 48px 40px;
    color: #fff; position: relative; overflow: hidden;
  }

  .features-visual::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 250px; height: 250px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,0,0.2) 0%, transparent 70%);
  }

  .visual-title {
    font-size: 1.8rem; font-weight: 700; margin-bottom: 12px;
    position: relative; z-index: 1;
  }

  .visual-sub {
    font-size: 0.9rem; color: rgba(255,255,255,0.55);
    line-height: 1.7; margin-bottom: 32px;
    position: relative; z-index: 1;
  }

  .visual-stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    position: relative; z-index: 1;
  }

  .v-stat {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm); padding: 20px;
  }

  .v-stat-num {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.8rem; font-weight: 700; color: var(--orange);
  }

  .v-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 4px; }

  /* ── FOOTER ── */
  footer {
    background: var(--dark); color: rgba(255,255,255,0.65);
    padding: 80px 48px 0;
  }

  .footer-grid {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px; padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .footer-logo {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.8rem; font-weight: 700; color: #fff;
    margin-bottom: 16px; display: block; text-decoration: none;
  }

  .footer-logo span { color: var(--orange); }

  .footer-about { font-size: 0.87rem; line-height: 1.8; margin-bottom: 24px; }

  .social-links { display: flex; gap: 12px; }

  .social-link {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    font-size: 0.9rem;
  }

  .social-link:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

  .footer-col h4 {
    font-size: 0.9rem; font-weight: 700; color: #fff;
    margin-bottom: 20px; letter-spacing: 0.5px;
  }

  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

  .footer-col ul a {
    color: rgba(255,255,255,0.55); text-decoration: none;
    font-size: 0.85rem; transition: color 0.2s;
  }

  .footer-col ul a:hover { color: var(--orange); }

  .contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; }
  .contact-item i { color: var(--orange); margin-top: 2px; font-size: 0.85rem; }
  .contact-item span { font-size: 0.85rem; line-height: 1.5; }

  .hours-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,107,0,0.12); border: 1px solid rgba(255,107,0,0.25);
    color: var(--orange); font-size: 0.78rem; font-weight: 600;
    padding: 5px 12px; border-radius: 50px; margin-bottom: 12px;
  }

  .footer-bottom {
    max-width: 1280px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    padding: 24px 0; font-size: 0.82rem;
    color: #ffffff;
    justify-content: center;
  }

  .footer-bottom a { color: var(--orange); text-decoration: none; }

  /* ── BANNER ── */
  .trust-banner {
    background: var(--orange);
    padding: 20px 48px;
  }

  .trust-inner {
    max-width: 1280px; 
    margin: 0 auto;
    display: flex; align-items: center; 
    /* justify-content: space-between; */
    flex-wrap: wrap; gap: 20px;
    text-align: center;
    justify-content: center;
  }

  .trust-item {
    display: flex; align-items: center; gap: 10px;
    color: #fff; font-size: 0.88rem; font-weight: 600;
  }

  .trust-item i { font-size: 1.1rem; }

  /* ── MOBILE ── */
  .hamburger { display: none; cursor: pointer; font-size: 1.4rem; color: var(--dark); background: none; border: none; }

  @media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; }
    .hero-form { max-width: 500px; }
    .features-wrap { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 768px) {
    nav { padding: 0 20px; }
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: block; }
    section { padding: 64px 20px; }
    .hero-content { padding: 40px 20px; }
    .trust-banner { padding: 20px; }
    footer { padding: 60px 20px 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
    .hero-stats { gap: 24px; }
    .products-controls { flex-direction: column; align-items: stretch; }
    .search-bar { max-width: 100%; }
  }

  /* Animations */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .fade-in { animation: fadeInUp 0.6s ease both; }
  .fade-in-1 { animation-delay: 0.1s; }
  .fade-in-2 { animation-delay: 0.2s; }
  .fade-in-3 { animation-delay: 0.35s; }
  .fade-in-4 { animation-delay: 0.5s; }



  nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-cta {
  margin-left: 10px;
}

.nav-right {
  /* margin-left: auto; */
  display: flex;
  /* gap: 10px; */
  align-items: center;
}

.call-now-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;   /* 👈 change here */
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.3);
    transition: background 0.3s ease, transform 0.2s ease;
    z-index: 1000;
}

.call-now-btn:hover {
    background: #1ebe57;
    transform: scale(1.1);
}