/* Product variation swatches size increase */
.cfvsw-swatches-option.cfvsw-label-option {
    font-size: 14px !important;
    padding: 8px 16px !important;
    min-height: 36px !important;
    min-width: 60px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 6px !important;
    margin: 4px !important;
    box-sizing: border-box !important;
    transition: all 0.2s ease-in-out !important;
}

.cfvsw-swatches-option.cfvsw-label-option:hover {
    border-color: #003823 !important; /* Premium dark green/teal accent */
    background-color: #f0fdf4 !important;
}

/* For image/color swatches as well, if any */
.cfvsw-swatches-option:not(.cfvsw-label-option) {
    width: 36px !important;
    height: 36px !important;
    margin: 4px !important;
}

/* Compact & Premium Zipcode Checker */
.zac-zipcode-checker-wrapper {
    background: #f8fafc; /* Sleek light grey-blue background */
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    max-width: 380px; /* Reduced width */
    margin: 15px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.zac-zipcode-checker-wrapper label {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
    display: block;
}

.zac-input-group {
    display: flex;
    align-items: center;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    height: 36px; /* Set height to be compact */
}

.zac-input-group:focus-within {
    border-color: #003823;
    box-shadow: 0 0 0 2px rgba(0, 56, 35, 0.1);
}

.zac-zipcode-checker-wrapper input[type="text"]#zac_zipcode_input {
    flex: 1;
    border: none !important;
    outline: none !important;
    padding: 6px 12px !important;
    margin: 0 !important;
    font-size: 13px !important;
    height: 100% !important;
    box-shadow: none !important;
    background: transparent !important;
    color: #1e293b !important;
}

.zac-zipcode-checker-wrapper button#zac_check_availability_btn {
    border: none !important;
    background: #003823 !important; /* Theme color */
    color: #fff !important;
    padding: 0 16px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    height: 100% !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease !important;
    border-radius: 0 !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.zac-zipcode-checker-wrapper button#zac_check_availability_btn:hover {
    background: #002416 !important;
}

#zac_zipcode_message {
    font-size: 12px;
    margin-top: 6px;
}

/* Contact Us Button when Zipcode check fails */
.zac-zipcode-checker-wrapper button#zac_contact_us_btn {
    width: 100%;
    margin-top: 10px !important;
    padding: 8px 12px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    background: #475569 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
    transition: background-color 0.2s ease !important;
}

.zac-zipcode-checker-wrapper button#zac_contact_us_btn:hover {
    background: #334155 !important;
}
