/* Overlay */
.aright-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 999;
}

/* Popup container */
.aright-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    max-width: 900px;
    width: 90%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    z-index: 1000;
    overflow: hidden;
    font-family: sans-serif;
}

/* Header */
.aright-popup-header {
    background: #3a958d;
    color: #fff;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.aright-popup-header h2 {
    margin: 0;
    font-size: 1.5rem;
}
/* Title updated to match the green-teal theme */
.aright-popup-title {
    color: #fff; /* updated title color */
}
.aright-popup-close {
    cursor: pointer;
    font-size: 1.8rem;
}

/* Content grid */
.aright-popup-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}
.aright-product {
    flex: 1 1 250px;
    margin: 10px;
    text-align: center;
}
.aright-product img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
.aright-product h3 {
    margin-top: 12px;
    font-size: 1.2rem;
    color: #0b3d91;
}
.aright-product p {
    font-size: 0.95rem;
    margin: 8px 0;
    color: #333;
}
.aright-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 14px;
    background: #f97316;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
}
.aright-btn:hover {
    background: #ff7f3b;
    color: #000;
}

/* Center Explore Products button below products */
.aright-popup-explore {
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

.aright-popup-explore .aright-btn {
    padding: 12px 24px;
    font-size: 1rem;
}