.shop_full_header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   width: 325px;
}

.shop_section {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
   align-items: center;
}

.shops_section {
   background-color: var(--light-2);
}
.shops_section h1 {
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 2.25rem;
}

.shop_list_item img {
   width: 100px;
   height: 100px;
   object-fit: contain;
}

.shop_list_item {
   display: flex;
   flex-direction: column;
   align-items: center;
   box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
   padding-top: 1rem;
   padding-bottom: 1rem;
   background-color: var(--light);
}

.shops_list {
   display: grid;
   grid-template-columns: 1fr 1fr 1fr;
   gap: 1.5rem;
}
@media (max-width: 768px) {
   .shops_section h1 {
      padding: 0.5rem;
   }
   .shops_list {
      display: grid;
      /* flex-direction: column; */
      gap: 0.5rem;
      grid-template-columns: 1fr;
      /* justify-content: center; */
      /* align-items: center; */
   }
}
