@media (max-width: 1280px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  h1{
    font-size: 60px;
  }
  .ingredients-grid {
    gap: 30px;
  }
   .hero{
    height: 80vh;
   }
  .testimonial-grid {
    grid-template-columns: repeat(6, 1fr);
    padding-left: 20px;
    padding-right: 20px;
  }

  .testimonial-card {
    grid-column: span 3;
  }
   .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .product-images,
  .product-info {
    grid-column: auto;
  }

  .image-slider {
    max-width: 100%;
  }
    .cart-layout {
    grid-template-columns: 1fr 340px;
    gap: 40px;
  }

  .cart-item-row {
    grid-template-columns: 100px 1fr 120px 100px 30px;
    gap: 16px;
  }

  .cart-image img {
    height: 240px;
  }
  .ingredients-content p, .ingredients-content ul {
    line-height: 1.7;
    font-size: 13px;
  }
  .ingredients-content h3 {
    font-size: 38px;
  }
}

/* =====================================================
   TABLET LANDSCAPE (≤ 1024px)
===================================================== */

@media (max-width: 1024px) {
     .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;

    transform: translateY(0);
    transition: transform 0.35s cubic-bezier(.25,1,.3,1);
  }
   .logo img {
    height: 45px;
    margin-left: 10px;
}

  .tech-mobile-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "image"
      "text";
  }
  .height-adjust{
    height: 330px !important;
  }
  .tech-grid-text {
    display: contents;
  }

  .tech-heading {
    grid-area: heading;
  }

  .tech-grid-image {
    grid-area: image;
  }

  .tech-paragraphs {
    grid-area: text;
  }


h1{
  font-size: 50px;
}
  /* HIDDEN STATE */
  .site-header.header-hidden {
    transform: translateY(-100%);
  }
  .header-inner {
    justify-content: space-between;
    z-index: 1001;  
}
   .menu-toggle {
    display: block;
    position: relative;
    z-index: 1001;
    color: #fff;
    opacity: 0.7;
    margin-right: 10px;
  }
    .info-heading h1 {
    font-size: 65px;
    }
    .info-heading h2 {
      font-size: 42px;
    }
    .ingredients-content h3 {
      font-size: 42px;
    }
    .ingredients-content p {
      font-size: 17px;
    }
    .testimonials-heading h1 {
      font-size: 42px;
    }
    .media-heading h1 {
      font-size: 42px;
    }
    .products-heading h1 {
      font-size: 55px;
    }
    .products-heading h2 {
      font-size: 42px;
    }
    .products-count{
      padding-left: 10px;
    }
    .faq-title h1{
      font-size: 32px;
    }
    .technology-heading h1{
      font-size: 42px;
    }
.main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    clip-path: inset(0 0 100% 0);
    opacity: 0;

    transition:
      clip-path 0.55s cubic-bezier(.25,1,.3,1),
      opacity 0.25s ease;

    border-bottom: 1px solid #000;
  }
   .faq-question span, .faq-answer{
    font-size: 18px;
   }
  .main-nav.nav-open {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }

  .nav-links {
    flex-direction: column;
    padding: 22px 0;
    gap: 20px;
    text-align: center;
  }

  .nav-text {
    font-size: 18px;
    display: block;
  }

  .hero {
    height: 60vh;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
    .product-card {
      border-radius: 0px;
    }
  .ingredients-grid {
    grid-template-columns: 1fr;
    position: relative;
    top: auto;
    margin: 60px 0;
  }

  .product-ingredients-card,
  .ingredients-content {
    text-align: center;
    grid-column: span 12;
  }
    .ingredients-content h3,
  .ingredients-content p {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .ingredients-grid.is-active h3,
  .ingredients-grid.is-active p {
    opacity: 1;
    transform: translateY(0);
  }


  .testimonial-grid {
    grid-template-columns: repeat(4, 1fr);
    padding-left: 10px;
    padding-right: 10px;
  }

  .testimonial-card {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .hero-content h2 {
    font-size: 36px;
  }

  /* MAIN TECH GRID */
  .tech-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tech-image {
    height: 500px;
  }

  .tech-image img {
    object-fit: contain;
  }

  /* CENTER TEXT */
  .tech-heading {
    align-items: flex-start;
  }

  .circle {
    width: 80px;
    height: 80px;
  }

  .circle span {
    font-size: 42px;
  }

  /* DIVIDERS */
  .ingredients-divider span,
  .tech-divider span {
    width: 70%;
  } .company-page {
    padding: 50px 30px;
  }

  /* HERO IMAGE */
  .company-hero img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* HEADINGS */
  .company-info-heading h1 {
    font-size: 42px;
  }

  .content-block h2 {
    font-size: 34px;
  }

  .content-block h3 {
    font-size: 24px;
  }

  /* TEXT */
  .main-block p,
  .content-block p {
    font-size: 18px;
    line-height: 1.7;
  }

  /* SPACING */
  .content-block {
    margin-bottom: 60px;
  }

  .divider {
    margin: 50px 0;
  }
.upper-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .next-previous {
    align-self: flex-end;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .main-image {
    height: 460px;
  }

  .main-image img,
  .main-image video {
    height: 440px;
  }

  .cta {
    grid-template-columns: 1fr;
  }
 .qa-section {
    margin-top: 40px;
  }

  .qa-question {
    font-size: 15px;
    padding: 14px 0;
  }

  .qa-answer {
    font-size: 15px;
    line-height: 1.6;
  }
   .cart-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cart-right {
    border-top: 1px solid #000;
    padding-top: 30px;
  }

  .cart-item-row {
    grid-template-columns: 100px 1fr;
    grid-template-areas:
      "img details"
      "qty price"
      ". remove";
    row-gap: 14px;
  }

  .cart-image { grid-area: img; }
  .cart-details { grid-area: details; }
  .cart-qty { grid-area: qty; }
  .cart-line-price { grid-area: price; text-align: left; }
  .cart-remove { grid-area: remove; }

  .cart-image img {
    height: 200px;
  }
   .bottom-bar-content {
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
  }

  .payment-icon {
    grid-column: span 6;
  }

  .copyright {
    grid-column: span 6;
    font-size: 13px;
  }

  .products-heading h1,
  .info-heading h1,
  .testimonials-heading h1,
  .media-heading h1 {
    font-size: 44px;
  }

  .products-heading h2,
  .info-heading h2 {
    font-size: 34px;
  }
  .ingredients-content h3 {
    font-size: 34px;
  }
  .tech-image img{
    border-radius: 0px;
  }
  .faq-title{
      font-size: 50px;
}
.tech-paragraphs{
  text-align: center;
}
.tech-heading{
  align-items: center;
  flex-direction: column;

}
.tech-heading h2{
  text-align: center;
}
  .breadcrumb a, .breadcrumb span{
    font-size: 18px;
  }
}
/* =====================================================
   TABLET PORTRAIT (≤ 768px)
===================================================== */

@media (max-width: 768px) {
  .hero {
    height: 50vh;
  }
     .faq-question span, .faq-answer{
    font-size: 15px;
   }
  h1 {
    margin-top: 0;
  }
     .height-adjust{
    height: 250px !important;
  }
   .heading-adjust{
     font-size: 35px;
     margin: 0;
   }
  .product-image {
    height: 260px;
  }

  .product-image img {
    height: 240px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    grid-column: span 1;
  }

  .track {
    grid-auto-columns: 280px;
    grid-template-rows: repeat(2, 280px);
  }

  .track img {
    height: 280px;
  }

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


  /* HERO */
  .hero-content h2 {
    font-size: 28px;
    letter-spacing: 1px;
  }

  /* HEADINGS */
  .technology-heading h1 {
    font-size: 34px;
    margin-top: 0;
  }

  .technology-heading h4 {
    font-size: 22px;
  }

  /* TEXT */
  .century p,
  .tech-paragraphs p {
    font-size: 16px;
    line-height: 1.7;
  }

  /* IMAGE */
  .tech-image {
    height: 320px;
  }

  /* NUMBER CIRCLE */
  .circle {
    width: 70px;
    height: 70px;
  }

  .circle span {
    font-size: 36px;
  }

  /* DIVIDERS */
  .ingredients-divider span,
  .tech-divider span {
    width: 90%;
  }
   .company-page {
    padding: 40px 20px;
  }

  /* HERO */
  .company-banner {
    margin-bottom: 40px;
  }
  .ingredients-content h3{
    font-size: 25px;
  }

  /* HEADINGS */
  .company-info-heading h1 {
    font-size: 32px;
  }

  .content-block h2 {
    font-size: 28px;
  }

  .content-block h3 {
    font-size: 22px;
  }

  /* TEXT */
  .main-block p,
  .content-block p {
    font-size: 16px;
    line-height: 1.65;
  }

  /* DIVIDER */
  .divider {
    height: 3px;
    margin: 40px 0;
  }
   .breadcrumb {
    font-size: 12px;
    margin-bottom: 0;
  }

  .product-info h1 {
    font-size: 24px;
  }

  .description {
    font-size: 15px;
    line-height: 1.6;
  }

  .quantity {
    flex-wrap: wrap;
    gap: 12px;
  }

  .thumb-strip {
    flex-wrap: wrap;
    justify-content: center;
  }

  .thumb {
    width: 52px;
    height: 52px;
  }

  .thumb img {
    height: 52px;
  }
  .qa-question {
    font-size: 14px;
    padding: 12px 0;
    gap: 10px;
  }

  .qa-question span {
    flex-shrink: 0;
  }
  .tech-paragraphs ul{
    font-size: 16px;
    text-align: center;
  }
  .qa-answer {
    font-size: 14px;
    line-height: 1.6;
    padding: 10px 0 14px;
  }
   .cart-page {
    padding: 40px 0;
  }

  .cart-title {
    font-size: 16px;
  }

  .cart-item-row {
    padding: 18px 0;
  }

  .cart-details p {
    font-size: 13px;
  }

  .cart-qty {
    width: 100px;
  }

  .summary-row,
  .summary-total {
    font-size: 14px;
  }

  .checkout-btn,
  .paypal-btn,
  .paylater-btn {
    padding: 12px;
  }

  .empty-inner {
    margin: 100px 20px;
  }
   .bottom-bar {
    padding: 20px 0;
  }

  .bottom-bar-content {
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: center;
  }

  .payment-icon {
    grid-column: auto;
    justify-content: center;
    gap: 16px;
  }

  .payment-icons {
    height: 22px;
  }

  .copyright {
    grid-column: auto;
    text-align: center;
    font-size: 12px;
  }
  .sub-heading-margin{
    margin: 0;
  }
    .products-count{
    font-size: 16px;
  }
  .breadcrumb a, .breadcrumb span{
    font-size: 16px;
  }
  .century p, .tech-text p, .content-block p, .tech-text ul {
    text-align: left;
    padding-left: 2px;
    margin: 0;
   }
   .info-content p, .ingredients-details p, .ingredients-details ul{
    text-align: left;
    font-size: 13px;
    line-height: 1.7;
    padding-left: 2px;
   }
   .media-heading h1{
    font-size: 32px;
   }
}


/* =====================================================
   MOBILE (≤ 600px)
===================================================== */

@media (max-width: 600px) {
  .hero {
    height: 40vh;
  }
       .height-adjust{
    height: 200px !important;
  }
  .century-heading{
    font-size: 25px;
  }
    .breadcrumb a, .breadcrumb span{
    font-size: 14px;
  }
  .products-heading h1, .info-heading h1, .testimonials-heading h1{
   font-size: 35px;
  }
  .products-heading h2, .info-heading h2{
    font-size: 27px;
  }
.technology-heading  h1{
    font-size: 28px;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    padding: 20px 15px;
  }

  .product-card p {
    font-size: 14px;
  }

  .price {
    font-size: 16px;
  }

  .ingredients-details p,
  .ingredients-details ul {
    font-size: 16px;
    line-height: 1.7;
  }

  .mini-cart {
    width: 100%;
  }

  .nav.prev,
  .nav.next {
    display: none;
  }
  .heading-adjust{
    font-size: 28px;
  }
  .products-count{
    font-size: 14px;
  }
  .century p{
    font-size: 14px;
  }
  .faq-title{
    font-size: 35px;
  }
   
}

/* =====================================================
   SMALL MOBILE (≤ 480px)
===================================================== */

@media (max-width: 480px) {
  .hero {
    height: 30vh;
  }
       .height-adjust{
    height: 150px !important;
  }
  .faq-title{
    font-size: 28px;
  }
  .century-heading{
    font-size: 19px;
  }
  .tech-paragraphs ul{
    font-size: 15px;
  }
   .heading-adjust{
    font-size: 22px;
   }
   .gap{
    gap:0 !important;
   }
 h1 {
    font-size: 35px;
  }
  h2 {
    font-size: 28px;
  }
   .products-heading h1, .testimonials-heading h1{
   font-size: 24px;
  }
  .info-heading h1{
    font-size: 18px !important;
  }
  .products-heading h2, .info-heading h2{
    font-size: 18px;
  }

  .product-image {
    height: 220px;
  }

  .product-image img {
    height: 200px;
  }

  .learn-more {
    font-size: 12px;
    padding: 10px 22px;
  }

  .testimonial-text {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .payment-icon {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .copyright {
    text-align: center;
    font-size: 12px;
  }
 .hero-content h2 {
    font-size: 22px;
  }

  /* TECH HEADING */
  .tech-heading {
    flex-direction: column;
    gap: 16px;
  }

  .tech-heading h2 {
    font-size: 24px;
  }

  .subtitle {
    font-size: 14px;
  }

  /* IMAGE */
  .tech-image {
    height: 280px;
  }

  /* TEXT */
  .tech-paragraphs p {
    font-size: 15px;
  }

  /* CIRCLE */
  .circle {
    width: 60px;
    height: 60px;
  }

  .circle span {
    font-size: 30px;
  }.company-page {
    padding: 30px 16px;
  }

  /* HERO IMAGE */
  .company-hero img {
    border-radius: 0;
  }

  /* HEADINGS */
  .company-info-heading h1 {
    font-size: 26px;
    letter-spacing: 1px;
  }

  .content-block h2 {
    font-size: 24px;
  }

  .content-block h3 {
    font-size: 20px;
  }

  /* TEXT */
  .main-block p,
  .content-block p {
    font-size: 15px;
    line-height: 1.6;
  }

  /* DIVIDER */
  .divider {
    height: 2px;
    margin: 30px 0;
  }
  
  .upper-bar {
    gap: 15px;
  }

  .main-image {
    height: 380px;
  }

  .main-image img,
  .main-image video {
    height: 360px;
  }

  .product-info h1 {
    font-size: 22px;
  }

  .cta button {
    padding: 12px;
    font-size: 14px;
  }
  .qa-question {
    font-size: 14px;
    padding: 12px 0;
    gap: 10px;
  }

  .qa-question span {
    flex-shrink: 0;
  }

  .qa-answer {
    font-size: 14px;
    line-height: 1.6;
    padding: 10px 0 14px;
  }
   .cart-item-row {
    grid-template-columns: 1fr;
    grid-template-areas:
      "img"
      "details"
      "qty"
      "price"
      "remove";
    row-gap: 12px;
  }

  .cart-image img {
    height: 180px;
  }

  .cart-qty {
    width: 100%;
    justify-content: space-between;
  }

  .cart-line-price {
    font-size: 14px;
  }

  .empty-inner h3 {
    font-size: 22px;
  }
  .payment-icon {
    flex-wrap: wrap;
    gap: 12px;
  }

  .payment-icons {
    height: 20px;
  }

  .copyright {
    font-size: 11px;
    line-height: 1.4;
  }

}