/* LifeLight Product Card Styles */

/* Container for all product cards */
.ll-products-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
}

/* Individual product card */
.ll-product-card {
    display: flex;
    align-items: center;
    border: 1px solid #939393;
    border-radius: 20px;
    opacity: 1;
    padding: 20px;
    background: #ffffff;
    transition: box-shadow 0.3s ease;
}

.ll-product-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Product image section */
.ll-product-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    margin-right: 20px;
}

.ll-product-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.ll-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

/* Product content section */
.ll-product-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

/* Product name */
.ll-product-name {
    margin: 0;
    text-align: left;
    font-style: normal;
    font-variant: normal;
    font-weight: medium;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #000000;
    text-transform: uppercase;
    opacity: 1;
}

.ll-product-name a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ll-product-name a:hover {
    color: #007EAE;
}

/* Product short description */
.ll-product-description {
    text-align: left;
    font-style: normal;
    font-variant: normal;
    font-weight: 300;
    font-size: 15px;
    line-height: 18px;
    font-family: Roboto;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
    margin: 0;
}

/* Product price */
.ll-product-price {
    text-align: left;
    font-style: normal;
    font-variant: normal;
    font-weight: medium;
    font-size: 25px;
    line-height: 30px;
    letter-spacing: 0px;
    color: #007EAE;
    text-transform: uppercase;
    opacity: 1;
    margin: 0;
}

/* Product action section (cart button) */
.ll-product-action {
    flex-shrink: 0;
    margin-left: 20px;
}

/* Cart button - blue circle */
.ll-cart-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #007EAE;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    color: #ffffff;
}

.ll-cart-button:hover {
    background: #006090;
    transform: scale(1.05);
}

.ll-cart-button::before {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
}

.ll-cart-button svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
}

/* Responsive styles */
@media (max-width: 768px) {
    .ll-product-card {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .ll-product-image {
        width: 150px;
        height: 150px;
        margin: 0 auto 15px;
    }

    .ll-product-content {
        align-items: center;
        text-align: center;
    }

    .ll-product-name,
    .ll-product-description,
    .ll-product-price {
        text-align: center;
    }

    .ll-product-action {
        margin: 15px 0 0 0;
    }
}

@media (max-width: 480px) {
    .ll-product-name {
        font-size: 18px;
        line-height: 22px;
    }

    .ll-product-description {
        font-size: 14px;
        line-height: 17px;
    }

    .ll-product-price {
        font-size: 22px;
        line-height: 27px;
    }

    .ll-cart-button {
        width: 50px;
        height: 50px;
    }

    .ll-cart-button svg {
        width: 20px;
        height: 20px;
    }
}