/*  ----------------------------------------------------------------------------
    This file will load automatically when the Wokiee theme is active. You can use it
    for custom CSS.
*/

.tt-logo img {
    height: auto;
    max-height: 60px;
}


/* Make all product images uniform size */
.tt-product .tt-image-box .tt-img img {
    width: 280px;  /* Fixed width */
    height: 350px; /* Fixed height */ 
    object-fit: contain; /* Maintains aspect ratio */
    background: #ffffff;
    display: block;
    margin: auto;
}

/* Additional styling for image container */
.tt-product .tt-image-box {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px; /* Match the image height */
}

/* For slider/carousel images */
.tt-carousel-products .tt-product .tt-image-box img {
    width: 280px;
    height: 350px;
    object-fit: contain;
}


.category-intro {
  background-color: #f8f8f8;
  border-left: 4px solid #c62828;
  padding: 30px 0;
  margin-bottom: 40px;
}

.category-intro .container {
  max-width: 1200px;
  margin: 0 auto;
}

.category-intro h1 {
  color: #c62828;
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 600;
  font-family: 'Hind', sans-serif;
}

.category-intro p {
  color: #333;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  max-width: 800px;
  font-family: 'Hind', sans-serif;
}

/* Responsive Design - angepasst an Wokiee */
@media (max-width: 1024px) {
  .category-intro {
    padding: 25px 0;
  }
  
  .category-intro .container {
    padding: 0 15px;
  }
}

@media (max-width: 767px) {
  .category-intro {
    padding: 20px 0;
    margin-bottom: 25px;
  }
  
  .category-intro h1 {
    font-size: 22px;
  }
  
  .category-intro p {
    font-size: 15px;
  }
}