/* style.css */
.gai-amazon-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    margin: 30px 0;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    font-family: sans-serif;
    direction: ltr; /* Keeping the box English as in the image, or you can remove this for RTL */
}

.gai-info {
    flex: 1;
    padding-right: 20px;
    text-align: left;
}

.gai-info h3 {
    font-size: 20px;
    font-weight: bold;
    color: #111;
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.4;
    border: none;
}

.gai-prime {
    color: #00a8e1;
    font-weight: bold;
    font-style: italic;
    font-size: 14px;
    margin-bottom: 15px;
}

.gai-btn {
    display: inline-block;
    background-color: #2D2F48;
    color: #fff !important;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.gai-btn:hover {
    background-color: #6ABADF;
    text-decoration: none;
}

.gai-disclosure {
    font-size: 11px;
    color: #767676;
    margin-top: 15px;
    font-style: italic;
}

.gai-img {
    flex-basis: 150px;
    text-align: center;
}

.gai-img img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 600px) {
    .gai-amazon-box {
        flex-direction: column-reverse;
        text-align: center;
    }
    .gai-info {
        padding-right: 0;
        margin-top: 20px;
        text-align: center;
    }
}
