/* Pickup Service Popup Styles */
.pickup-service-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: pickupFadeIn 0.3s ease-in;
}

.pickup-service-popup {
    background: white;
    border-radius: 15px;
    max-width: 700px;
    width: 90%;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: pickupSlideDown 0.4s ease-out;
}

.pickup-service-header {
    background: linear-gradient(135deg, var(--dark-red-color) 0%, var(--dark-rose-color) 100%);
    color: white;
    padding: 24px 30px 20px;
    border-radius: 15px 15px 0 0;
    position: relative;
    text-align: center;
}

.pickup-service-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    line-height: 1;
}

.pickup-service-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.pickup-header-brand {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 8px;
}

.pickup-service-header h2 {
    margin: 0 0 8px 0;
    font-size: 24px;
    font-weight: bold;
}

.pickup-subheadline {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
    font-style: italic;
}

.pickup-service-content {
    padding: 24px 30px 16px;
}

.pickup-main-headline {
    color: var(--dark-red-color);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pickup-radius {
    font-size: 14px;
    color: var(--dark-rose-color);
    font-weight: 600;
}

.pickup-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.pickup-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: linear-gradient(135deg, var(--cream-color) 0%, #fff 100%);
    border-left: 4px solid var(--dark-rose-color);
    padding: 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pickup-feature-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 14px rgba(181, 60, 91, 0.18);
}

.pickup-feature-icon {
    background: linear-gradient(135deg, var(--dark-red-color), var(--dark-rose-color));
    color: white;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.pickup-feature-text h4 {
    color: var(--dark-red-color);
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.pickup-feature-text p {
    font-size: 13px;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

.pickup-service-cta {
    text-align: center;
    padding: 16px 25px 22px;
    background: var(--cream-color);
    border-radius: 0 0 15px 15px;
}

.pickup-service-cta a {
    display: inline-block;
    background: linear-gradient(135deg, var(--dark-red-color) 0%, var(--dark-rose-color) 100%);
    color: white;
    padding: 12px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(130, 21, 24, 0.3);
}

.pickup-service-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(130, 21, 24, 0.4);
    color: white;
    text-decoration: none;
}

@keyframes pickupFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes pickupSlideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pickupFadeOut {
    from { opacity: 1; }
    to   { opacity: 0; }
}

@media (max-width: 768px) {
    .pickup-service-overlay {
        align-items: flex-start;
        overflow-y: auto;
        padding: 20px 0;
    }

    .pickup-service-popup {
        width: 95%;
        margin: auto;
    }

    .pickup-service-header {
        padding: 18px 18px 16px;
    }

    .pickup-service-header h2 {
        font-size: 20px;
        padding-right: 40px;
    }

    .pickup-service-content {
        padding: 16px 14px;
    }

    .pickup-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pickup-feature-item {
        padding: 12px;
    }

    .pickup-main-headline {
        font-size: 16px;
    }

    .pickup-service-close {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
        font-size: 24px;
    }

    .pickup-service-cta a {
        padding: 10px 25px;
        font-size: 14px;
    }
}
