.product-terms, .cart-terms {
    background: #ffffff;
    color: #000000;
    border: 1px solid #cccccc;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 15px;
    max-width: 600px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    text-align: left;
    display: inline-block;

    .cart-terms-title {
        color: #000000;
        font-weight: bold;
        font-size: 1.8rem;
    }
}

.terms-content {
    max-height: 150px;
    overflow: hidden;
    position: relative;
    line-height: 1.5;
    overflow-wrap: break-word;
}

.terms-content:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s;
}

.terms-content.expanded {
    max-height: none;
}

.terms-content.expanded:after {
    opacity: 0;
}

.read-more {
    color: #007bff;
    cursor: pointer;
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}

.field.terms-acceptance {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.field.terms-acceptance .label {
    font-weight: bold;
    margin-left: 5px;
}

.field.terms-acceptance .checkbox {
    position: relative;
    top: 2px;
}

.terms-content {
    transition: max-height 0.3s ease-out;
}

.terms-modal-popup .terms-modal-content {
    padding: 0;
    font-size: 16px;
    line-height: 1.5;
}
