 :root {
      --hamrosastobazar-red: #ED1C24;
      --hamrosastobazar-dark-red: #B71C1C;
      --hamrosastobazar-black: #1A1A1A;
      --hamrosastobazar-white: #FFFFFF;
      --hamrosastobazar-light-gray: #F5F5F5;
      --hamrosastobazar-gray: #9E9E9E;
      --hamrosastobazar-dark-gray: #333333;
      --resolved-green: #4CAF50;
      --actually-red: #ED1C24;
    }

    html {
  scroll-behavior: smooth;
  }
  
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--hamrosastobazar-black);
      background: var(--hamrosastobazar-white);
      overflow-x: hidden;
    }

    body.loading-active {
      overflow: hidden;
    }

  

    /* ---- NAV ---- */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      background: var(--hamrosastobazar-black);
      z-index: 1000;
      padding: 0 2rem;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .logo-text {
      font-size: 1rem;
      font-weight: 800;
      color: var(--hamrosastobazar-white);
      letter-spacing: -0.02em;
    }

    .logo-text span {
      color: var(--hamrosastobazar-red);
    }

    .logo-dot {
      width: 10px;
      height: 10px;
      background: var(--hamrosastobazar-red);
      border-radius: 50%;
      animation: pulse-dot 2s infinite;
    }

    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.8); }
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      color: var(--hamrosastobazar-gray);
      text-decoration: none;
      font-size: 0.875rem;
      font-weight: 500;
      transition: color 0.2s;
      letter-spacing: 0.02em;
    }

    .nav-links a:hover {
      color: var(--hamrosastobazar-red);
    }

    /* ---- HAMBURGER MENU ---- */
    .hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
      z-index: 1002;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--hamrosastobazar-white);
      margin: 5px 0;
      transition: transform 0.3s, opacity 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(5px, -5px);
    }


    /* ---- HERO ---- */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 6rem 2rem 4rem;
      background: linear-gradient(135deg, var(--hamrosastobazar-black) 0%, #2a0a0a 50%, var(--hamrosastobazar-black) 100%);
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle at 30% 50%, rgba(237, 28, 36, 0.08) 0%, transparent 50%),
                  radial-gradient(circle at 70% 50%, rgba(237, 28, 36, 0.05) 0%, transparent 50%);
      animation: bg-shift 15s ease-in-out infinite;
    }

    @keyframes bg-shift {
      0%, 100% { transform: translate(0, 0); }
      50% { transform: translate(-5%, 3%); }
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
    }

    .hero-badge {
      display: inline-block;
      padding: 0.4rem 1.2rem;
      border: 1px solid rgba(237, 28, 36, 0.4);
      border-radius: 50px;
      color: var(--resolved-green);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 2rem;
      background: rgba(237, 28, 36, 0.05);
    }


      

     .desktop-text {
     display: inline;
     }

    .hero h1 {
      font-size: clamp(1.5rem, 6vw, 2rem);
      font-weight: 900;
      color: var(--hamrosastobazar-white);
      line-height: 1.05;
      letter-spacing: -0.03em;
      margin-bottom: 1.5rem;
    }

    .hero h1 .red {
      color: var(--hamrosastobazar-red);
      position: relative;
    }

    .hero h1 .strike {
      text-decoration: line-through;
      opacity: 0.4;
      font-weight: 300;
      font-size: 2rem;
    }

    .hero-sub {
      font-size: 1.25rem;
      color: rgba(255,255,255,0.5);
      max-width: 600px;
      margin: 0 auto 3rem;
      line-height: 1.6;
      font-weight: 300;
    }

    .hero-stats {
      display: flex;
      margin-top: 5rem;
      gap: 8rem;
      justify-content: center;
      flex-wrap: wrap;
    }

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

    .hero-stat-number {
      font-size: 3rem;
      font-weight: 900;
      color: var(--hamrosastobazar-red);
      line-height: 1;
    }

    .hero-stat-label {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.4);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 600;
      margin-top: 0.5rem;
    }

    /* ---- TICKER ---- */
    .ticker-wrap {
      background: #B71C1C;
      overflow: hidden;
      padding: 0.75rem 0;
    }

    .ticker {
      display: flex;
      width: max-content;
      animation: ticker-scroll 60s linear infinite;
      white-space: nowrap;
    }

    .ticker span {
      white-space: nowrap;
      color: var(--hamrosastobazar-white);
      font-size: 0.85rem;
      font-weight: 600;
      padding: 0 3rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    @keyframes ticker-scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

 /* ---- Product List ---- */

 section {
      padding: 6rem 2rem;
      scroll-margin-top: 90px;
    }

    .section-dark {
      background: var(--hamrosastobazar-black);
      color: var(--hamrosastobazar-white);
      padding: 3rem 1rem;
    }

    .section-light {
      background: var(--hamrosastobazar-light-gray);
    }
    
    .section-lights {
      background: var(--hamrosastobazar-light-gray);
      padding: 2rem 1rem;
    }

    .section-red {
      background: var(--hamrosastobazar-red);
      color: var(--hamrosastobazar-white);
      padding: 3rem 1rem;
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
    }

    .section-label {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #D41920;
      margin-bottom: 1rem;
    }

    .section-dark .section-label {
      color: #FF4D4D;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      line-height: 1.1;
      margin-bottom: 1.5rem;
    }

    .section-subtitle {
      font-size: 1.1rem;
      color: var(--hamrosastobazar-gray);
      max-width: 600px;
      line-height: 1.6;
      font-weight: 300;
    }

    .section-dark .section-subtitle {
      color: rgba(255,255,255,0.7);
    }

    /* ---- SERVICES (Satirical) ---- */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .service-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 16px;
      padding: 2rem;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

    .service-card:hover {
      border-color: rgba(237, 28, 36, 0.3);
      transform: translateY(-2px);
      background: rgba(237, 28, 36, 0.03);
    }

    .service-card {
  background: #111;
  border-radius: 16px;
  padding: 0;
  border: 1px solid #2a2a2a;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #ff2a2a;
}

.card-image {
  position: relative;
}

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


.top-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 1px solid #555;
  background: #0f2d1f;
  color: #00ff99;
  padding: 4px 10px;
  font-size: 0.7rem;
  border-radius: 999px;
  
}

/* LEFT BADGE */
.badge {
  position: absolute;
  bottom: 15px;
  left: 10px;
  background: #0f2d1f;
  color: #00ff99;
  padding: 5px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 80px;
  letter-spacing: 0.05em;
}

.card-content {
  padding: 1.2rem;
}

.card-content h3 {
  font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
      color: var(--hamrosastobazar-white);
}


.price-row {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 10px;
}


.discount-price {
  font-size: 1.5rem;
  color: #00ff99;
  font-weight: 800;
}

.original-price {
  font-size: 1.3rem;
  color: #888;
  text-decoration: line-through;
  font-weight: 500;
  text-decoration-thickness: 1.5px;
}



.bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.buy-btn {
  background: var(--hamrosastobazar-red);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.85rem;
  transition: 0.3s;
}

.buy-btn:hover {
  background: var(--hamrosastobazar-black) ;
}

.stars {
  color: #FFC107;
  font-size: 0.7rem;
  letter-spacing: 2px;
}


.testimonial-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.testimonial-card {
  background: var(--hamrosastobazar-black);
  border-radius: 16px;
  padding: 20px;
  
}

/* PROFILE */
.profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.profile img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.profile h4 {
  margin: 0;
  color: var(--actually-red);
  font-size: 1rem;
}

.profile span {
  font-size: 0.85rem;
  color: var(--hamrosastobazar-white);
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--hamrosastobazar-white);
  line-height: 1.5;
}


.contact-buttons {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}


.btn {
 display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.btn i {
  font-size: 18px;
}

.telegram {
  background: var(--hamrosastobazar-white);
  font-size: 1.2rem;
  color: var(--hamrosastobazar-black);
}

.whatsapp {
  border: 1px solid #25D366;
  color: #25D366;
  background: transparent;
}

.whatsapp:hover {
  background: #25D366;
  color: #000;
}

/* ---- FAQ ---- */
    .faq-list {
      max-width: 800px;
      margin: 3rem auto 0;
    }

    .faq-item {
      border-bottom: 1px solid rgba(255,255,255,0.06);
      padding: 1.75rem 0;
    }

    .faq-question {
      font-size: 1.05rem;
      font-weight: 400;
      color: var(--hamrosastobazar-white);
      margin-bottom: 0.75rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      background: none;
      border: none;
      padding: 0;
      text-align: left;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      appearance: none;
    }

    .faq-question::after {
      content: '+';
      color: var(--hamrosastobazar-red);
      font-size: 1.5rem;
      font-weight: 300;
      transition: transform 0.3s;
    }

    .faq-question:focus-visible {
      outline: 2px solid var(--hamrosastobazar-red);
      outline-offset: 6px;
    }

    .faq-item.open .faq-question::after {
      transform: rotate(45deg);
    }

    .faq-answer {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.5);
      line-height: 1.7;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
    }

    .faq-item.open .faq-answer {
      max-height: 500px;
      padding-top: 0.5rem;
    }


    /*--Footer---*/
    footer {
      background: var(--hamrosastobazar-black);
      color: rgba(255,255,255,0.65);
      padding: 2rem 0 0.3rem;
    }

.quick-links {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  
}

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

.quick-links a {
  text-decoration: none;
  color: var(--actually-white);
  font-size: 1rem;
  transition: 0.3s;
}


.quick-links a:hover {
  color: #ff2a2a;
  padding-left: 5px;
}

.footer-bottom {
  margin-bottom: 0px;
  text-align: center;
  padding-top: 15px;
  font-size: 0.85rem;
  color: #777;
}

.mobile-search-wrap {
  display: none;
}

.search-dropdown {
  display: none;
}
 
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

