/**
 * Retailers Popup Styles
 * Shop Now popup for category and product pages
 */

/* Popup Overlay */
.retailers-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Popup Modal */
.retailers-popup-modal {
    background: #fff;
    border-radius: 8px;
    max-width: 845px;
    height: 400px;
    width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    cursor: pointer;
}

/* Popup Header */
.retailers-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #e0e0e0;
}

.retailers-popup-header h3 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

/* Close Button */
.retailers-popup-close {
    background: none;
    border: none;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
}

.retailers-popup-close:hover {
    color: #333;
}

/* Popup Content */
.retailers-popup-content {
    padding: 25px;
}

.retailers-popup-description {
    font-size: 14px;
    color: #65737b;
    background: #e7e8e9;
    padding: 6px;
    margin: 0;
    text-align: center;
}

/* Retailers List */
.retailers-list {
    padding-top: 30px;
    text-align: center;
    overflow: auto;
    max-height: 290px;
}

/* Retailer Item */
.retailer-item {
    text-align: center;
    display: inline-block;
    padding: 5px;
    margin: 0 auto;

    a {
        width: 122px;
        display: block;
    }
}

.retailer-logo {
    width: 90%;
    margin: 0 auto;
    object-fit: contain;
    flex-shrink: 0;
}

.retailer-name {
    margin-top: 14px;
    font-size: 14px;
    letter-spacing: 2px;
    background: #a2bf19;
    display: inline-block;
    padding: 8px 12px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}

/* Shop Now Button */
.btn-shop-now {
    margin-left: 10px;
}

/* Out of Stock Message */
.oosmessage {
    color: #008acb;
    text-align: center;
    font-family: "arial", sans-serif;
    padding-top: 30px;
    font-weight: bold;
    font-size: 16px;
}

.close-modal-button {
    background-image: url(../images/fancybox_sprite.png);
    background-size: 44px 152px;
    position: absolute;
    top: -18px;
    right: -18px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 8040;
}

@media (min-width: 770px) {
    .retailer-item {
        padding: 20px;
    }
}