
.carousel-product-card {
    background: #111;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease-in-out;
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.carousel-product-card:hover {
    transform: scale(1.03);
}
.carousel-product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: white;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 10px;
}
.carousel-product-brand {
    font-size: 14px;
    color: #ccc;
    font-weight: 500;
    margin-bottom: 4px;
    text-transform: capitalize;
}
.carousel-product-title {
    font-size: 15px;
    font-weight: bold;
    color: white;
    margin: 5px 0 10px;
    line-height: 1.3em;
    min-height: 2.6em;
}
.carousel-product-strain {
    font-size: 13px;
    color: #aaa;
    font-style: italic;
    margin-bottom: 6px;
}
.carousel-product-thc {
    font-size: 14px;
    color: #bbb;
    font-weight: 500;
    margin-bottom: 6px;
}
.carousel-product-price {
    font-size: 18px;
    font-weight: bold;
    color: #ff9800;
    margin-bottom: 10px;
}
.carousel-add-to-cart {
    background: #ff6a00;
    color: white;
    font-size: 14px;
    padding: 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
}
.carousel-add-to-cart:hover {
    background: #e65c00;
}

