.wclp-location-box {
    border: 1px solid #ddd;
    padding: 16px;
    margin-bottom: 20px;
    border-radius: 10px;
    background: #fafafa;
}

.wclp-location-title {
    font-weight: 700;
    margin-bottom: 14px;
}

.wclp-location-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid #dde2e7;
    border-radius: 12px;
    background: #ffffff;
    margin-bottom: 14px;
}

.wclp-location-pincode {
    display: grid;
    gap: 4px;
}

.wclp-location-label {
    font-size: 12px;
    color: #7a7a7a;
}

.wclp-location-code {
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.wclp-open-popup {
    min-width: 120px;
}

.wclp-location-delivery {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #dde2e7;
    background: #ffffff;
}

.wclp-location-icon {
    font-size: 22px;
}

.wclp-location-delivery-title {
    font-size: 13px;
    color: #4d4d4d;
}

.wclp-location-delivery-date {
    font-size: 15px;
    font-weight: 700;
    color: #111;
}

.wclp-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    padding: 20px;
}

.wclp-popup {
    background: #fff;
    width: min(640px, 100%);
    border-radius: 18px;
    padding: 28px;
    position: relative;
    box-shadow: 0 18px 48px rgba(0,0,0,0.18);
}

.wclp-toast {
    position: fixed;
    top: 24px;
    right: 24px;
    background: #edf8f5;
    color: #0f664d;
    border: 1px solid #c7f0e8;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    padding: 14px 18px;
    border-radius: 12px;
    font-weight: 600;
    z-index: 1000000;
    display: none;
}

.wclp-popup-header {
    text-align: center;
    margin-bottom: 18px;
}

.wclp-popup-header h3 {
    margin: 0;
    font-size: 24px;
    letter-spacing: 0.3px;
}

.wclp-pincode-block {
    margin-bottom: 22px;
}

.wclp-pincode-block label {
    display: block;
    margin-bottom: 10px;
    color: #5a5a5a;
    font-weight: 500;
}

.wclp-pincode-input-wrap {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}

.wclp-pincode-input {
    width: 100%;
    padding: 16px 16px;
    border: 1px solid #d5dfe9;
    border-radius: 999px;
    font-size: 15px;
    outline: none;
}

.wclp-pincode-submit {
    border: 1px solid #02aab0;
    background: #02aab0;
    color: #fff;
    width: 56px;
    border-radius: 999px;
    font-size: 18px;
    cursor: pointer;
}

.wclp-current-pincode {
    margin-top: 10px;
    color: #5a5a5a;
    font-size: 14px;
}

.wclp-popup-search-wrap {
    margin-bottom: 18px;
}

.wclp-city-search {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d5dfe9;
    border-radius: 999px;
    font-size: 15px;
    outline: none;
}

.wclp-popup-section-title {
    text-align: center;
    margin-bottom: 18px;
    font-size: 15px;
    color: #3b3b3b;
}

.wclp-cities-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 22px;
}

.wclp-city-card {
    border: 1px solid #e4e8eb;
    border-radius: 18px;
    background: #f6fcfc;
    padding: 18px 12px;
    text-align: center;
    color: #0f4f54;
    font-weight: 600;
    cursor: pointer;
}

.wclp-city-card:hover,
.wclp-city-link:hover {
    border-color: #02aab0;
}

.wclp-other-cities-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
}

.wclp-other-cities-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.wclp-city-link {
    background: transparent;
    border: none;
    color: #0f4f54;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}

@media (max-width: 720px) {
    .wclp-cities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .wclp-location-topbar,
    .wclp-location-delivery {
        flex-direction: column;
        align-items: stretch;
    }
    .wclp-open-popup {
        width: 100%;
    }
}

.wclp-popup {
    background: #fff;
    width: min(520px, 100%);
    border-radius: 14px;
    padding: 24px;
    position: relative;
    box-shadow: 0 12px 36px rgba(0,0,0,0.2);
}

.wclp-close-popup {
    position: absolute;
    top: 12px;
    right: 12px;
    border: 0;
    background: transparent;
    font-size: 24px;
    cursor: pointer;
}

.wclp-pincode-input {
    width: 100%;
    margin-bottom: 16px;
    padding: 10px 12px;
}

.wclp-cities-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 16px;
}

.wclp-city-card,
.wclp-city-link {
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    background: #fff;
    padding: 10px;
    cursor: pointer;
}

.wclp-city-card:hover,
.wclp-city-link:hover {
    border-color: #0073aa;
}

.wclp-other-cities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

@media (max-width: 600px) {
    .wclp-cities-grid {
        grid-template-columns: 1fr 1fr;
    }
}
