@charset "utf-8";
/* CSS Document */

/* Apply Poppins font to everything inside the postcode checker */
.postcode-checker input,
.postcode-checker button,
.postcode-checker,
.pc-loading,
.pc-success,
.pc-error,
.pc-btn {
    font-family: 'Poppins', sans-serif !important;
}

/* Input field styling */
.postcode-checker input {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-right: 6px;
}

/* Check button */
.postcode-checker button {
    background-color: #ff66a3;
    color: #fff;
    font-weight: 500;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.postcode-checker button:hover {
    background-color: #e0558e;
}

/* Loading text */
.pc-loading {
    color: #ff66a3;
    font-weight: 500;
}

/* Success message */
.pc-success {
    color: #28a745;
    font-weight: 500;
    margin-top: 10px;
}

/* Error message */
.pc-error {
    color: #e63946;
    font-weight: 500;
    margin-top: 10px;
}

/* Shop Now button */
.pc-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 7px 14px;
    background-color: #ff66a3;
    color: #fff !important;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s ease;
}
.pc-btn:hover {
    background-color: #e0558e;
}

