/**
 * Delivery Location Selector Styles
 */
 :root {
  --pink: #654785;
  --white: #ffffff;
}


.dl-loc-inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dl-loc-title {
    margin: 0 0 10px 0;
    font-size: 1.25rem;
    color: #333;
    text-align: center;
    font-weight: 600;
}

.dl-loc-form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.dl-loc-geo-group {
    align-items: center;
    margin: 5px 0;
}

.dl-loc-or {
    display: inline-block;
    background: #f1f1f1;
    color: #888;
    border-radius: 50%;
    padding: 8px;
    font-size: 0.8rem;
    line-height: 1;
    margin-bottom: 15px;
}

.dl-loc-select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--pink);
    border-radius: 6px;
    font-size: 1rem;
    color: #444;
    background-color: #fcfcfc;
    transition: border-color 0.3s;
}

.dl-loc-select:focus {
    border-color: var(--pink);
    outline: none;
}

.dl-loc-btn {
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.dl-loc-btn-primary {
    background-color: var(--pink);
    color: #fff;
}

.dl-loc-btn-primary:hover {
    background-color: var(--pink);
    color: #fff;
}


.dl-loc-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.dl-loc-msg {
    padding: 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 5px;
}

.dl-loc-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.dl-loc-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Disabled add to cart states */
.woocommerce button.button.disabled,
.woocommerce a.button.disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    pointer-events: none;
}
