: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;
    }

    * {
      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;
    }

    /* ---- 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);
    }   
 .fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

 .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
  .section-dark {
      background: #000;
      color: var(--hamrosastobazar-white);
      padding: 8rem 1rem 2rem 1rem;
    }


.container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
    }

.product-top {
      display: flex;
      gap: 6rem;
      align-items: flex-start;
      justify-content: flex-start;
      flex-wrap: wrap;
    }  


.product-image,
    .product-details {
      flex: 0 0 calc(50% - 3rem);
    }    

 .product-image {
  max-width: 100%;
}

.product-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}   

.breadcrumb {
  font-size: 0.9rem;
  color: #aaa;
  margin-top: 4rem;
  margin-bottom: 0.6rem;
}

.breadcrumb a {
  color: var(--hamrosastobazar-light-gray);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--actually-red);
}

.breadcrumb span {
  color: var(--resolved-green);
}


.product-title {
  font-size: 1.7rem;
  margin-bottom: 10px;
  color: #FFA200;
  line-height: 1.2;
}

.price-row {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 10px;
  
}


.discount-price {
  font-size: 2rem;
  color: var(--hamrosastobazar-white);
  font-weight: 800;
  color: #FFFFFF;
}


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

.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: 20px;
}

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

.telegram:hover {
  background: var(--hamrosastobazar-black);
  font-size: 1.2rem;
  color: var(--hamrosastobazar-white);
  border: 1px solid var(--actually-red);
}

.whatsapp {
  border: 1px solid #25D366;
  font-size: 1.2rem;
  color: #25D366;
  background: transparent;
}

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

.full-line {
  width: 100%;
  height: 1px;
  background: var(--actually-red);
  
}


#comparison {
  margin: 0;
  padding-top: 1rem;
  
  
}

#comparison h2 {
  margin-top: 0; 
}

/*--Section---*/
  .section-label {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--actually-red);
      margin-bottom: 1rem;
    }

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

    }

    .section-subtitle {
      font-size: 0.9rem;
      color: var(--hamrosastobazar-dark-gray);
      max-width: 800px;
      line-height: 1.6;
      font-weight: 500;
    }

.containers {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 2rem;
      margin-bottom: 2rem;
    }
    /* ---- COMPARISON TABLE ---- */
    .comparison-table {
      width: 100%;
      margin-top: 3rem;
      border-collapse: collapse;
      border-radius: 12px;
      overflow: hidden;
    }

    .comparison-table th {
      background: var(--hamrosastobazar-red);
      color: var(--hamrosastobazar-white);
      padding: 1rem 1.5rem;
      text-align: left;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .comparison-table td {
      width: 50%;
      padding: 1rem 1.5rem;
      font-size: 0.9rem;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      color: rgba(255,255,255,0.7);
    }

    .comparison-table tr:nth-child(even) td {
      background: rgba(255,255,255,0.02);
    }

    .comparison-table .checkmark {
      color: var(--resolved-green);
      font-weight: 700;
    }

    .comparison-table .xmark {
      color: var(--hamrosastobazar-red);
      font-weight: 700;
    }


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


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



    .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;
}


.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;
}


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


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

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

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

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

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

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

@media (max-width: 768px) {
 
  /* ---- NAV ---- */
  nav {
    display: flex;
    padding: 0 1.25rem;
    height: 56px;
  }
 
 .hamburger {
    display: block;
    flex-direction: column;
    justify-content: center;
     margin-left: auto;
  }
 
  .nav-links {
    position: fixed;
    top: 56px;
    left: 0;
    width: 100%;
    height: calc(100vh - 56px);
    background: rgba(26, 26, 26, 0.6);  
    backdrop-filter: blur(8px);         
    -webkit-backdrop-filter: blur(8px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 999;
    display: flex;
  }
 
  .nav-links.open {
    transform: translateX(0);
  }
 
  .nav-links a {
    font-size: 1.1rem;
    color: var(--hamrosastobazar-white);
  }
 
  .logo-text {
    font-size: 0.9rem;
  }

   .section-dark {
    padding: 5rem 1rem 2rem 1rem;
  }

  /* ---- CONTAINER ---- */
  .container {
    padding: 0 1rem;
  }

  .containers {
    padding: 0 1rem;
    margin-bottom: 1.5rem;
  }

  /* ---- PRODUCT TOP ---- */
  .product-top {
    flex-direction: column;
    gap: 2rem;
  }

  .product-image,
  .product-details {
    flex: 0 0 100%;
    width: 100%;
  }

  .product-image img {
    height: 220px;
    border-radius: 10px;
  }

  /* ---- BREADCRUMB ---- */
  .breadcrumb {
    font-size: 0.8rem;
    margin-top: 1rem;
  }

  /* ---- PRODUCT TITLE & PRICE ---- */
  .product-title {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }

  .price-row {
    gap: 16px;
    margin-top: 14px;
    margin-bottom: 14px;
    margin-left: 0;
    flex-wrap: wrap;
  }

  .discount-price {
    font-size: 1.6rem;
  }

  /* ---- CONTACT BUTTONS ---- */
  .contact-buttons {
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
  }

  .btn {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: 8px;
  }

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

  /* ---- SECTION LABELS ---- */

  .containers {
    padding: 0;
    margin: 0;
    max-width: 100%;
  }

  .section-label {
    font-size: 0.7rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .section-subtitle {
    font-size: 0.85rem;
  }

  /* ---- COMPARISON TABLE ---- */
   .comparison-table {
    margin-top: 1.5rem;
    display: table;
    width: 100%;
    overflow-x: hidden;        /* remove horizontal scroll */
    
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem 0.6rem;
    font-size: 0.8rem;
    white-space: normal;      
    word-break: break-word;   
    width: 50%;               
  }

  /* ---- TESTIMONIALS ---- */
  .testimonial-container {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    gap: 0.85rem;
    padding: 0.5rem 1rem 0.5rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    grid-template-columns: unset;
  }
 
  .testimonial-container::-webkit-scrollbar { display: none; }
 
  .testimonial-card {
    min-width: 82vw;
    max-width: 82vw;
    flex-shrink: 0;
    scroll-snap-align: center;
    padding: 1.25rem;
    border-radius: 16px;
    box-sizing: border-box;
  }
 
  .profile h4  { font-size: 0.9rem; }
  .profile span { font-size: 0.78rem; }
  .testimonial-card p { font-size: 0.88rem; }
 
  .btn { padding: 10px; font-size: 0.9rem; }
  .contact-buttons { gap: 8px; margin-top: 12px; }
 
  /* ---- FAQ ---- */
  .faq-list { margin-top: 2rem; }
 
  .faq-question {
    font-size: 0.92rem;
    gap: 0.5rem;
  }
 
  .faq-question::after {
    font-size: 1.25rem;
    flex-shrink: 0;
  }
 
  .faq-answer { font-size: 0.85rem; }
  .faq-item   { padding: 1.25rem 0; }
 
  /* ---- FOOTER ---- */
  footer .testimonial-container {
    grid-template-columns: unset;
  }
 
  .footer-bottom {
    font-size: 0.78rem;
    padding: 1rem;
  }

  #footer .section-subtitle {
    font-size: 0.7rem;
  }
 
  .quick-links a { font-size: 0.9rem; }
 
  /* ---- FADE UP ---- */
  .fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
 
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
}  