/* ==========================================================================
   Retail Promo Pop-Up — Pleasant Hill Distillery
   Promotes Apple Pie, Dirty Rat Bastard & Oakey at Lexington Hardware & Feed
   ========================================================================== */

.retail-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 30, 30, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    padding: 20px;
    box-sizing: border-box;
}

.retail-popup-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.retail-popup {
    background: #fdfdfb;
    color: #1f2b2a;
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 16px;
    border: 3px solid #28c4c0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    position: relative;
    transform: translateY(30px) scale(0.96);
    transition: transform 0.35s ease;
    font-family: inherit;
}

.retail-popup-overlay.is-visible .retail-popup {
    transform: translateY(0) scale(1);
}

.retail-popup-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: #28c4c0;
    color: #fff;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.2em;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 2;
}

.retail-popup-close:hover {
    background: #1e9d99;
    transform: scale(1.08);
}

.retail-popup-banner {
    background: linear-gradient(135deg, #28c4c0, #1a8f8b);
    color: #fff;
    text-align: center;
    padding: 22px 30px 18px;
    border-radius: 13px 13px 0 0;
}

.retail-popup-banner .tag {
    display: inline-block;
    background: #fff;
    color: #1a8f8b;
    font-size: 0.72em;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.retail-popup-banner h2 {
    margin: 0;
    font-size: 1.6em;
    line-height: 1.25;
}

.retail-popup-banner p {
    margin: 6px 0 0;
    font-size: 1em;
    opacity: 0.95;
}

.retail-popup-body {
    padding: 22px 30px 8px;
}

.retail-popup-store {
    text-align: center;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #cfe9e8;
}

.retail-popup-store h3 {
    margin: 0 0 4px;
    font-size: 1.25em;
    color: #1a8f8b;
}

.retail-popup-store address {
    font-style: normal;
    font-size: 0.98em;
    line-height: 1.4;
    margin-bottom: 8px;
}

.retail-popup-store-links {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.retail-popup-btn {
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    padding: 9px 18px;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 2px solid #28c4c0;
}

.retail-popup-btn.solid {
    background: #28c4c0;
    color: #fff;
}

.retail-popup-btn.outline {
    background: transparent;
    color: #1a8f8b;
}

.retail-popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(40, 196, 192, 0.35);
}

.retail-popup-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}

.retail-popup-product {
    background: #f2fbfa;
    border: 1px solid #d4efee;
    border-radius: 12px;
    padding: 14px 12px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.retail-popup-product:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(40, 196, 192, 0.2);
}

.retail-popup-product .icon {
    font-size: 2em;
    margin-bottom: 6px;
}

.retail-popup-product h4 {
    margin: 0 0 6px;
    color: #1a8f8b;
    font-size: 1.05em;
}

.retail-popup-product p {
    margin: 0;
    font-size: 0.85em;
    line-height: 1.4;
    color: #33403f;
}

.retail-popup-footer-note {
    text-align: center;
    font-size: 0.85em;
    color: #5a6a69;
    padding: 4px 0 20px;
}

.retail-popup-footer-note a {
    color: #1a8f8b;
    font-weight: 600;
}

/* Floating re-open tab */
.retail-popup-tab {
    position: fixed;
    bottom: 22px;
    right: 22px;
    background: #28c4c0;
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 0.9em;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    z-index: 900;
    display: none;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.retail-popup-tab.is-visible {
    display: inline-flex;
}

.retail-popup-tab:hover {
    background: #1e9d99;
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .retail-popup-banner h2 {
        font-size: 1.25em;
    }
    .retail-popup-body {
        padding: 18px 18px 6px;
    }
    .company-name {
        font-size: 2.4em;
    }
}
