/*
Theme Name: storefront Child Theme
Theme URI: https://eksempel.dk
Author: Dit Navn
Author URI: https://store.jwk.dk
Description: Et simpelt child theme
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: storefront-child-theme
Template: storefront
*/
:root{
  --border-radius-2:10px;
}

.products > .product a > img{
  border-radius: var(--border-radius-2);
  aspect-ratio: 3/4;
}
.wc-block-grid__product-image > img{
  aspect-ratio: 3/4;
  border-radius: var(--border-radius-2);
  box-shadow: 0px 0px 10px -5px black;
}

 .product-category > a > img{
  aspect-ratio: 1;
  object-fit: cover;
 }


@media (max-width: 768px) {
  .product-category-container{ 
    .woocommerce{
      ul.products::before, ul.products::after{
        
        display: none;
      }
      ul{
        display: grid;
        /* gap: 1rem; */
        grid-template-columns: repeat(2, 1fr);
        li{
          margin-bottom: 0;
        }
      }
    }
  }
}
/* 
@media (max-width: 568px){
  .product-category-container{ 
    .woocommerce{
      ul{
        gap: 1rem;
      }
    }
  }
} */