@media (min-width: 1024px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto auto;
    grid-template-areas: "brand . search actions";
    column-gap: 16px;
  }

  .search-bar {
    max-height: none;
    padding-top: 0;
    overflow: visible;
    opacity: 1;
  }

  .search-field {
    width: 320px;
  }

  .header-actions {
    gap: 12px;
  }

  [data-search-toggle] {
    display: none;
  }

  .home {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 24px;
    row-gap: 30px;
    padding-top: 26px;
    align-items: start;
  }

  .home .section {
    margin-top: 0;
  }

  .home .categories {
    grid-column: 1 / -1;
  }

  .home .categories__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .home .cat-card {
    flex: 0 1 calc((100% - 32px) / 3);
    min-height: 124px;
  }

  .site-footer {
    text-align: left;
    margin-top: 36px;
    padding-block: 48px 30px;
  }

  .footer-cols {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 12px;
  }

  .footer-brand {
    margin-bottom: 18px;
  }

  .footer-tagline {
    margin-inline: 0;
    margin-bottom: 0;
  }

  .footer-access {
    text-align: right;
  }

  .footer-access-title {
    margin-bottom: 16px;
  }

  .footer-links {
    margin-bottom: 0;
  }

  .footer-copy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
  }

  .footer-social {
    margin-top: 0;
  }

  .category {
    padding-top: 24px;
  }

  .category .cat-section {
    margin-top: 36px;
  }

  .category .cat-title h1 {
    font-size: 26px;
  }

  .category .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .category .not-found__btn {
    display: inline-flex;
    margin-left: auto;
  }

  .product {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    column-gap: 30px;
    align-items: start;
    padding-top: 26px;
  }

  .product .product-main {
    display: flex;
    flex-direction: column;
  }

  .product .product-aside {
    display: block;
  }

  .product .product-hero {
    margin-top: 0;
  }

  .product .product-desc {
    margin-top: 0;
  }

  .product .product-title {
    font-size: 26px;
  }

  .product .similares {
    grid-column: 1 / -1;
  }

  .product .similares__track .product-card {
    flex: 0 0 calc((100% - 4 * 12px) / 5);
  }

  .checkout {
    padding-top: 26px;
  }

  .checkout .checkout-cols {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    column-gap: 30px;
    align-items: start;
  }

  .checkout .checkout-col-main {
    display: flex;
    flex-direction: column;
  }

  .checkout .checkout-col-aside {
    display: block;
  }

  .checkout .checkout-pix-view,
  .checkout .checkout-done-view {
    max-width: 600px;
    margin-inline: auto;
  }
}
