/*
Theme Name: Buho Chile
Responsive CSS
*/

/* Tablet (max-width: 1024px) */
@media screen and (max-width: 1024px) {
  .buho-container {
    padding: 0 1.5rem;
  }

  /* Grids */
  .buho-categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .buho-trust-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .buho-about__grid {
    grid-template-columns: 1fr;
  }

  /* WooCommerce */
  .woocommerce ul.products {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile (max-width: 768px) */
@media screen and (max-width: 768px) {
  /* Header */
  .buho-header__search {
    display: none; /* Show in mobile nav instead */
  }

  .buho-header__menu-toggle {
    display: block;
  }

  .buho-header__nav {
    display: none;
  }

  .buho-header__main {
    gap: 1rem;
    padding: 10px 0;
  }

  .buho-logo {
    max-height: 45px;
  }

  /* Hero */
  .buho-hero {
    min-height: 50vh;
  }

  .buho-hero__title {
    font-size: 1.8rem;
  }
  
  .buho-hero__subtitle {
    font-size: 1rem;
  }

  /* Sections */
  .buho-section {
    padding: 40px 0;
  }
  
  .buho-section__title {
    font-size: 1.5rem;
  }

  /* Blog */
  .buho-blog-layout {
    grid-template-columns: 1fr;
  }

  .buho-blog-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .buho-footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .buho-footer__bottom .buho-container {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  /* Trust Bar & About */
  .buho-trust-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* WooCommerce */
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .woocommerce div.product div.images,
  .woocommerce div.product div.summary {
    width: 100%;
    float: none;
  }
  
  .woocommerce .cart-collaterals .cart_totals {
    width: 100%;
    float: none;
    margin-top: 30px;
  }
  
  .woocommerce table.shop_table.cart {
    display: block;
    overflow-x: auto;
  }
  
  .woocommerce-checkout .col2-set .col-1,
  .woocommerce-checkout .col2-set .col-2 {
    width: 100%;
    float: none;
  }
  
  .woocommerce-account .woocommerce-MyAccount-navigation,
  .woocommerce-account .woocommerce-MyAccount-content {
    width: 100%;
    float: none;
  }
  
  .woocommerce-account .woocommerce-MyAccount-navigation {
    margin-bottom: 30px;
  }
}

/* Small Mobile (max-width: 480px) */
@media screen and (max-width: 480px) {
  .buho-hero__title {
    font-size: 1.5rem;
  }

  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .woocommerce ul.products li.product .button {
    font-size: 11px;
    padding: 8px 5px;
  }

  .buho-trust-bar__grid {
    grid-template-columns: 1fr;
  }
  
  .buho-categories__grid {
    grid-template-columns: 1fr;
  }
  
  .buho-about-section {
    padding: 50px 0;
  }
}
