/*Produkt*/

.products-section {
    width: 100%;
    max-width: auto;
    align-items: center;
    text-align: center;
    padding-top: 20%;
    margin-bottom: 0px;
    margin-top:20px;
}

.products-title {
    margin-top: 5px;
    font-size: 1.7rem;
    padding: 10px 10px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

/* Produkt-Container: Flexbox für nebeneinander stehende Produkte */
.product-container {
    flex-direction: line;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    justify-content: center;
    gap: 20px;
    width: 90%;
    padding: 10px 10px;
    margin: 20px auto;
}

/* Produktrahmen */
.product-frame {
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    width: 80%;
    max-width: 600px;
    min-height: 560px;
    transition: transform 0.3s ease;
    margin: 20px auto !important;
    text-align: center; /* zentriert evtl. Textelemente */
}

/* Produktbild */
.product-image {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    object-position: bottom;
}

/* Produktinformationen */
.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
}

/* Produkttitel */
.product-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0px;
}

/* Produktbeschreibung */
.product-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
}

/* Button für den Onlineshop */
.onlineshop-info button {
    background-color: #ff4d00;
    color: #fff;
    border: none;
    padding: 30px 40px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.2em;
    margin-bottom: 40px;
}

  .shopify-products-container {
    display: flex;               /* flex layout */
    justify-content: center;     /* center the row */
    flex-wrap: wrap;             /* allow wrapping on small screens */
    gap: 20px;                   /* space between products */
    margin: 0 auto;           /* optional top/bottom margin, center horizontally */
    max-width: 1200px;           /* optional max width */
  padding: 0;
}

  /* Each product container */
  .shopify-products-container > div {
    display: flex !important;
    justify-content: center;
    flex: 1 1 auto;            /* grow/shrink, minimum width 300px */
margin: 0 !important;    
min-width: 280px;           /* prevent products from shrinking too small */
    margin-left: 20px;  
    margin-bottom: 20 px;
}

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .shopify-products-container {
      gap: 15px;               /* less gap on smaller screens */
    margin-bottom: 20px; /* minimal spacing below for mobile */    
    
}
  }

  @media (max-width: 480px) {
    .shopify-products-container {
      flex-direction: column;  /* stack products vertically */
      align-items: center;     /* center stacked products */
    gap: 15px;           /* smaller vertical gap on stacked products */
    margin-bottom: 20px; /* minimal spacing below for mobile */    
}
  }

  /* Ensure each product component behaves nicely */
  #product-component-1762706536955,
  #product-component-1762705981839,
  #product-component-1762706425656 {
    margin-bottom: 0 !important;
  }

                                                                     