/* Alif Product Widget Styles */
.alif-product-widget {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    background-color: #f8f8f8;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.alif-product-widget .widget-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e5e5;
}

.alif-product-widget .widget-content {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

.alif-product-widget .payment-options {
    margin-top: 15px;
}

.alif-product-widget .payment-option {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #eee;
}

.alif-product-widget .payment-option:last-child {
    margin-bottom: 0;
}

.alif-product-widget .payment-icon {
    margin-right: 10px;
    width: 24px;
    height: 24px;
}

.alif-product-widget .payment-details {
    flex: 1;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .alif-product-widget {
        margin: 15px 0;
        padding: 12px;
    }
    
    .alif-product-widget .widget-title {
        font-size: 14px;
    }
    
    .alif-product-widget .widget-content {
        font-size: 13px;
    }
}

/* Alif Shop Widget Styles */
.alif-shop-widget {
    border: 1px solid #E7E7E7;
    border-radius: 4px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    max-width: 400px;
    margin: 10px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.alif-shop-widget img {
    height: 24px;
    width: auto;
}

.alif-shop-widget .widget-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.alif-shop-widget .installment-text {
    font-size: 14px;
    color: #333333;
    margin: 0;
}

.alif-shop-widget .widget-right {
    display: flex;
    align-items: center;
}

.alif-shop-widget .learn-more {
    font-size: 14px;
    color: #333333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.alif-shop-widget .learn-more:hover {
    text-decoration: underline;
}

.alif-shop-widget .chevron-down {
    width: 12px;
    height: auto;
    margin-left: 4px;
}

/* Modal Styles */
.alif-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999999;
}

.alif-modal-content {
    position: relative;
    background: white;
    max-width: 480px;
    margin: 40px auto;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive styles */
@media screen and (max-width: 480px) {
    .alif-shop-widget {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .alif-shop-widget .widget-right {
        width: 100%;
        justify-content: flex-end;
    }
} 

a#alif-learn-more:hover {
    text-decoration: none;
    outline-width: 0;
    outline-style: none;
}

a#alif-learn-more:focus {
    text-decoration: none;
    outline-width: 0;
    outline-style: none;
}