.ottawa-shipping-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.ottawa-shipping-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.ottawa-shipping-popup {
    background: #fff;
    width: 90%;
    max-width: 500px;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    text-align: center;
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.ottawa-shipping-popup-overlay.active .ottawa-shipping-popup {
    transform: translateY(0);
}

.ottawa-shipping-popup-icon {
    width: 64px;
    height: 64px;
    background: #FEF2F2;
    color: #DC2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.ottawa-shipping-popup-icon svg {
    width: 32px;
    height: 32px;
}

.ottawa-shipping-popup h3 {
    margin: 0 0 12px;
    color: #111827;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.ottawa-shipping-popup p {
    margin: 0 0 32px;
    color: #6B7280;
    font-size: 16px;
    line-height: 1.6;
}

.ottawa-shipping-popup-price {
    color: #DC2626;
    font-weight: 600;
}

.ottawa-shipping-popup-btn {
    display: inline-block;
    background: #111827;
    color: #fff;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

.ottawa-shipping-popup-btn:hover {
    background: #000;
}

.ottawa-shipping-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #9CA3AF;
    padding: 4px;
    transition: color 0.2s;
}

.ottawa-shipping-close:hover {
    color: #4B5563;
}

/* Pickup Address Box Styles */
.ottawa-pickup-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-left: 5px solid #0f172a; /* Premium dark accent */
    border-radius: 8px;
    padding: 24px;
    margin: 20px 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ottawa-pickup-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.ottawa-pickup-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: #f1f5f9;
    color: #0f172a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.ottawa-pickup-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
}

.ottawa-pickup-content {
    flex: 1;
}

.ottawa-pickup-content h4 {
    margin: 0 0 8px 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: #64748b;
}

.ottawa-pickup-content p {
    margin: 0 0 12px 0;
    font-size: 16px;
    color: #334155;
    line-height: 1.5;
}

.ottawa-pickup-content p strong {
    display: block;
    font-size: 18px;
    color: #0f172a;
    margin-bottom: 2px;
}

.ottawa-pickup-link {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
    transition: all 0.2s;
    padding: 8px 0;
}

.ottawa-pickup-link:hover {
    color: #1d4ed8;
    transform: translateX(4px);
}