@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: calc(var(--nav-height) + 40px);
    min-height: auto;
    padding-bottom: 80px;
  }

  .hero-visual {
    display: none;
  }

  .hero-content {
    text-align: center;
    align-items: center;
  }

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

  .hero-stats {
    justify-content: center;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-eyebrow::before {
    display: none;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .newsletter-section-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: clamp(48px, 6vw, 80px);
  }

  .hamburger {
    display: flex;
  }

  .navbar-nav {
    display: none;
  }

  .navbar-logo-text span:last-child {
    display: none;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
  }

  .featured-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .testimonial-card {
    flex: 0 0 300px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .newsletter-big-form {
    flex-direction: column;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .mission-banner-cta {
    flex-direction: column;
    align-items: center;
  }

  .products-sort {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .products-filters {
    gap: 8px;
  }

  .filter-btn {
    padding: 7px 16px;
    font-size: 0.72rem;
  }

  .dm-panel {
    width: 340px;
  }
}

@media (max-width: 540px) {
  .featured-products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .product-info {
    padding: 14px;
  }

  .product-name {
    font-size: 0.95rem;
  }

  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.8rem;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .breadcrumb {
    flex-wrap: wrap;
    gap: 4px;
  }

  .cart-table {
    font-size: 0.85rem;
  }

  .cart-product-img {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 400px) {
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .featured-products-grid {
    grid-template-columns: 1fr;
  }

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

@media (min-width: 1280px) {
  .featured-products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (hover: none) {
  .product-actions-overlay {
    display: none;
  }

  .product-card:hover {
    transform: none;
  }

  .navbar-nav a::after {
    display: none;
  }
}
