/* --- Amazon Style Popover CSS --- */
.amz-popover-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.amz-popover-overlay.active { display: flex; }

/* Naya Sleek Popover CSS */
.amz-popover-box {
    display: none; /* Default hidden */
    position: absolute; /* Relative to page coordinates */
    background: #F8F6F3;
    width: 450px;
    max-height: 85vh;
    border: 1px solid #cdcdcd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-family: Arial, sans-serif;
    color: #0f1111;
    z-index: 9999;
}
.amz-popover-box.active {
    display: flex;
    flex-direction: column;
}

.amz-popover-header {
    padding: 16px 24px;
    background: #f0f2f2;
    border-bottom: 1px solid #d5d9d9;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
}

.amz-close-btn {
    background: none; border: none; font-size: 20px; cursor: pointer; color: #0f1111;
}

.amz-popover-content {
    padding: 24px;
    overflow-y: auto;
    font-size: 14px;
    line-height: 20px;
}

/* Table Styling */
.amz-table {
    width: 100%; border-collapse: collapse; margin-bottom: 20px;
}
.amz-table th, .amz-table td {
    border-bottom: 1px solid #e7e7e7; padding: 10px 0; text-align: left;
}
.amz-table th { font-weight: 700; color: #565959; font-size: 13px; }

/* Info Box */
.amz-info-box {
    border: 1px solid #008296; border-radius: 4px; padding: 14px; margin-bottom: 20px;
    background: #F8F6F3;
}
.amz-info-box ul { margin: 8px 0 0 20px; padding: 0; }
.amz-info-box li { margin-bottom: 6px; }

/* Expand/Collapse */
.amz-know-more-btn {
    color: #007185; cursor: pointer; font-weight: 500; display: inline-flex; align-items: center; gap: 5px;
}
.amz-know-more-btn:hover { color: #c45500; text-decoration: underline; }
.amz-expanded-content {
    display: none; margin-top: 15px; padding-top: 15px; border-top: 1px solid #e7e7e7;
}
.amz-expanded-content.active { display: block; }
.amz-instruction-row {
    display: flex; gap: 15px; margin-bottom: 20px;
}
.amz-instruction-row img { width: 50px; height: 50px; object-fit: contain; }


/* Footer Link & Divider Styling */
.amz-divider {
    border: 0;
    border-top: 1px solid #e7e7e7;
    margin: 18px 0 10px 0; /* Upar neeche ka gap */
}

.amz-link-emphasis {
    color: #007185;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
}

.amz-link-emphasis:hover {
    color: #c45500;
    text-decoration: underline;
}