/* Pickup Info Section */
.pickup-info {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.pickup-info h2 {
    font-size: 2rem;
    color: #036308;
    margin-bottom: 15px;
}

.info-details p {
    font-size: 1.2rem;
    margin: 5px 0;
    color: #333;
}

/* Market Iframe Section */
.market-iframe {
    max-width: 1400px;
    margin: 40px auto;
    text-align: center;
    height: 800px;
}

.market-iframe h2 {
    font-size: 2rem;
    color: #036308;
    margin-bottom: 15px;
}

.market-iframe iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .pickup-info, .market-iframe {
        padding: 15px;
    }

    .pickup-info h2, .market-iframe h2 {
        font-size: 1.8rem;
    }

    .info-details p {
        font-size: 1.1rem;
    }

    .market-iframe iframe {
        height: 500px;
    }
}

/* Popup Overlay */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Popup Box */
.popup {
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.popup h3 {
    font-size: 1.5rem;
    color: #036308;
    margin-bottom: 15px;
}

.popup p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.popup a {
    color: #036308;
    font-weight: bold;
    text-decoration: underline;
}

.popup a:hover {
    text-decoration: none;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.checkbox-container {
    margin: 15px 0;
}

.checkbox-container input {
    margin-right: 8px;
}

#startShoppingBtn {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
}

#startShoppingBtn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}
