.ad-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    /*border: 1px solid rgb(221, 220, 220);*/
}
.ad-carousel-items {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.5s ease;
    width: 100%;
    align-items: stretch;
}
.ad-carousel-item {
    position: relative;
    color: #333; /* Change this to your desired text color */
    box-sizing: border-box; /* Ensure padding and borders are included in width/height */
    /*border: 1px solid rgb(221, 220, 220);*/
    /*padding: 5px;*/
    text-align: center;
    margin: 0px 5px;
    display: flex;
    border: 1px solid rgb(212, 212, 212);
    border-radius: 5px;
    overflow: hidden;
}
.ad-carousel-item p {
  margin: 0 5px;
  font-size: 1em;
}
.ad-carousel-item .img-wrap {
    width: 125px;
    height: 125px;
    margin: 0px auto;
}
.ad-carousel-item .img-wrap img {
    max-height: 125px;
}
.ad-carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
}
.prev {
    left: 0px;
}
.next {
    right: -12px;
}

/* Product Boxes */ 
.product-panel {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.product-header {
    padding: 0.5rem 1 rem;
    font-weight: bold;
    text-transform: uppercase;
    background-color: #ffce07;
}

.product-body {
    display: flex;
    flex-direction: column;
    flex: 1; /* Makes all bodies stretch equally */
    padding: 5px;
}

.product-body img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}
.product-body .product-description {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3rem;
}
.product-price {
    margin-top: auto; /* pushes price to the bottom */
    font-size: 1.3rem;
    font-weight: bold;
    color: #d60000;
}

.product-footer {
    padding: 0.75rem 1rem;
    background: #03543e;
    color: white;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
}
.product-footer {
    text-decoration: none;
    color: white;
}
.product-footer:hover {
    background-color: #04805f;
}