/* ===========================
   NATUREO RESPONSIVE
   =========================== */

/* Desktop 1440px */
@media (max-width: 1440px) {
  .container {
    max-width: 1280px;
    padding: 0 40px;
  }
}

/* Laptop 1200px */
@media (max-width: 1200px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-offer-card {
    width: 300px;
  }
}

/* Tablet 1024px */
@media (max-width: 1024px) {
  .site-header {
    width: 95%;
    top: 16px;
  }
  .navbar-inner {
    padding: 0 20px;
  }
  .nav-menu li a {
    padding: 6px 14px;
    font-size: 13px;
  }
  .hero-content {
    flex-direction: column;
    gap: 40px;
  }
  .hero-text {
    max-width: 100%;
    text-align: center;
  }
  .hero-description {
    max-width: 100%;
  }
  .hero-actions {
    justify-content: center;
  }
  .benefits-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .benefit-divider:nth-child(4) {
    display: none;
  }
  .hero-offer-card {
    width: 100%;
    max-width: 400px;
  }
  .hero-offer-card {
    align-self: center;
  }
  .hero-scroll-indicator {
    display: none;
  }
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .category-placeholder {
    width: 90px;
    height: 90px;
  }
  .inspiration-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .inspiration-card:last-child {
    grid-column: 1 / -1;
  }
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .trust-divider:nth-child(2),
  .trust-divider:nth-child(4) {
    display: none;
  }
}

/* Mobile 768px */
@media (max-width: 768px) {
  :root {
    --navbar-height: 72px;
    --navbar-scrolled: 60px;
  }
  .site-header {
    width: 100%;
    top: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  .site-header.scrolled {
    top: 0;
  }
  .navbar-inner {
    padding: 0 16px;
  }
  .logo-wordmark {
    font-size: 20px;
  }
  .logo-tagline {
    display: none;
  }
  .main-navigation {
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    background: rgba(247,244,239,0.95);
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    border-bottom: 1px solid var(--glass-border);
    padding: 20px;
    transform: translateY(-120%);
    transition: transform 0.4s var(--ease-out-expo);
    z-index: 999;
  }
  .main-navigation.active {
    transform: translateY(0);
  }
  .nav-menu {
    flex-direction: column;
    gap: 8px;
  }
  .nav-menu li a {
    padding: 12px 20px;
    font-size: 15px;
    width: 100%;
  }
  .menu-toggle {
    display: flex;
  }
  .hero-section {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .hero-label {
    font-size: 11px;
  }
  .hero-title {
    font-size: clamp(36px, 8vw, 48px);
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .benefits-bar {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px 20px;
  }
  .benefit-divider {
    display: none;
  }
  .benefit-item {
    padding: 8px 0;
  }
  .section-padding {
    padding: 60px 0;
  }
  .section-title {
    font-size: clamp(32px, 7vw, 42px);
  }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .category-card {
    padding: 20px 16px;
  }
  .featured-header {
    flex-direction: column;
    text-align: center;
  }
  .featured-header-left {
    width: 100%;
  }
  .featured-header-left .section-subtitle {
    margin: 0 auto;
  }
  .product-card {
    flex: 0 0 260px;
  }
  .carousel-controls {
    justify-content: center;
  }
  .trust-strip {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 28px 20px;
  }
  .trust-divider {
    display: none;
  }
  .trust-item {
    padding: 8px;
  }
  .inspiration-grid {
    grid-template-columns: 1fr;
  }
  .inspiration-card {
    min-height: 360px;
  }
  .newsletter-container {
    padding: 48px 24px;
  }
  .newsletter-title {
    font-size: 30px;
  }
  .newsletter-input-wrap {
    flex-direction: column;
    background: transparent;
    border: none;
    gap: 12px;
  }
  .newsletter-input {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-full);
    width: 100%;
  }
  .newsletter-submit {
    width: 100%;
    border-radius: var(--radius-full);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-brand {
    text-align: center;
  }
  .footer-description {
    margin: 0 auto 24px;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-col {
    text-align: center;
  }
  .woocommerce-natureo ul.products {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* Mobile 430px */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero-title {
    font-size: 32px;
  }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .category-placeholder {
    width: 72px;
    height: 72px;
  }
  .category-name {
    font-size: 17px;
  }
  .product-card {
    flex: 0 0 220px;
    padding: 14px;
  }
  .trust-strip {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .newsletter-container {
    padding: 36px 20px;
    border-radius: var(--radius-lg);
  }
  .newsletter-title {
    font-size: 26px;
  }
  .footer-grid {
    gap: 24px;
  }
  .woocommerce-natureo ul.products {
    grid-template-columns: 1fr;
  }
  .hero-offer-card {
    padding: 24px 20px;
  }
  .offer-title {
    font-size: 22px;
  }
  .countdown-timer {
    gap: 8px;
  }
  .countdown-value {
    font-size: 20px;
  }
}

/* Touch device adjustments */
@media (hover: none) and (pointer: coarse) {
  .category-card:hover,
  .product-card:hover,
  .inspiration-card:hover {
    transform: none;
  }
  .btn:hover,
  .nav-icon:hover {
    transform: none;
  }
  .carousel-track {
    -webkit-overflow-scrolling: touch;
  }
}
