/* Carousel Container */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

/* Carousel Wrapper */
.carousel-wrapper {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

/* Carousel Item */
.carousel-item {
    min-width: 150px;
    max-width: 150px;
    margin: 10px;
    flex-shrink: 0;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.carousel-item img {
    max-width: 100%;
    border-radius: 8px 8px 0 0;
	max-height: 150px;
}

.carousel-item .title {
    font-size: 1rem;
    font-weight: 300;
    margin: 10px 0;
	min-height: 50px;
	max-height: 50px;
	overflow: hidden;
}

.carousel-item .brand {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

/* Arrow Buttons */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 10px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    z-index: 10;
}

.arrow.left {
    left: 10px;
}

.arrow.right {
    right: 10px;
}

/* Mobile Specific */
@media screen and (max-width: 768px) {
    .carousel-item {
        min-width: 150px;
        max-width: 150px;
    }
    
    .arrow {
        display: none; /* Hide arrows on mobile */
    }
}

article, h1{
	word-wrap: anywhere;
}

.caro-discount {
  background: red;
  color: white;
  font-weight: bold;
  padding: 5px;
  margin-bottom: 5px;
  position:absolute;
}