/* Wrapper for the delivery checker */
.delivery-checker-wrapper {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

/* Label styling */
.checker-box label {
    font-size: 16px;
    font-weight: bold;
    display: block;
    margin-bottom: 12px;
    color: #333;
}

/* Input wrapper */
.input-wrap {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

/* Input field */
.pincode-check {
    padding: 8px 10px;
    font-size: 15px;
    width: 100%;
    max-width: 500px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

/* Buttons */
.check-delivery,
.change-pincode {
    padding: 8px 16px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
    background: #ff6b6b;
    color: #fff;
}

/* Valid state */
.check-delivery.valid {
    background: #28a745;
}

/* Hover states */
.check-delivery:hover,
.change-pincode:hover {
    background-color: #d85b5b;
}

.check-delivery.valid:hover {
    background-color: #218838;
}

/* Hidden change button by default */
.change-pincode {
    display: none;
}

/* Result box */
.delivery-result {
    font-size: 14px;
    line-height: 1.5;
}

/* Success message */
.delivery-result .success {
    background-color: #e0f7e9;
    border: 1px solid #28a745;
    color: #155724;
    padding: 10px 15px;
    border-radius: 4px;
    font-weight: 500;
}

/* Error message */
.delivery-result .error {
    background-color: #f8d7da;
    border: 1px solid #dc3545;
    color: #721c24;
    padding: 10px 15px;
    border-radius: 4px;
    font-weight: 500;
}

/* POS line styling */
.pos-line {
    display: block;
    margin-top: 5px;
    font-style: italic;
    color: #333;
}

/* Disabled Add to Cart button */
.adc-disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* Autocomplete dropdown */
.autocomplete-items {
    border: 1px solid #ccc;
    max-height: 250px;
    overflow-y: auto;
    position: absolute;
    z-index: 10;
    background: #fff;
    width: 100%;
    max-width: 500px;
    margin-to
