/* =========================================================
   VENDOG DOG FOOD CALCULATOR
   Visual system aligned with Vendog Light Bundles.
   ========================================================= */
.vendog-food-calculator {
    --vendog-bundle-orange: #ec7c17;
    --vendog-bundle-orange-dark: #c96008;
    --vendog-bundle-orange-soft: #fff5eb;
    --vendog-bundle-brown: #4a3024;
    --vendog-bundle-text: #2e2926;
    --vendog-bundle-muted: #746b66;
    --vendog-bundle-border: #e8ddd5;
    --vendog-bundle-surface: #ffffff;
    --vendog-bundle-success: #247a49;
    --vendog-bundle-success-soft: #edf8f1;
    --vendog-bundle-radius: 14px;
    --vendog-bundle-shadow: 0 12px 32px rgba(74, 48, 36, 0.08);

    box-sizing: border-box;
    display: block;
    width: 100% !important;
    min-width: 0;
    max-width: none !important;
    margin: 10px 0 0;
    color: var(--vendog-bundle-text);
    font: inherit;
}

.vendog-food-calculator,
.vendog-food-calculator * {
    box-sizing: border-box;
}

#tab-vendog_food_calculator,
.woocommerce-Tabs-panel--vendog_food_calculator {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    overflow: visible !important;
}

.vdofc-heading {
    width: 100%;
    max-width: 900px;
    margin: 0 0 20px;
}

.vdofc-heading h2 {
    margin: 0 0 8px !important;
    color: var(--vendog-bundle-brown);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    line-height: 1.2;
}

.vdofc-heading p {
    width: 100%;
    margin: 0 !important;
    color: var(--vendog-bundle-muted);
    font-size: 15px;
    line-height: 1.65;
}

/* Main calculator input card. */
.vendog-food-calculator .vdofc-form-card {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 0 18px !important;
    padding: clamp(18px, 2.5vw, 28px) !important;
    border: 1px solid var(--vendog-bundle-border) !important;
    border-radius: var(--vendog-bundle-radius) !important;
    background: var(--vendog-bundle-surface) !important;
    box-shadow: var(--vendog-bundle-shadow) !important;
}

.vdofc-fields {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: end;
    gap: 16px;
    width: 100%;
    min-width: 0;
}

.vdofc-field {
    display: flex !important;
    min-width: 0;
    flex-direction: column;
    gap: 7px;
    margin: 0 !important;
    color: var(--vendog-bundle-text);
    font-weight: 650;
}

.vdofc-field[hidden] {
    display: none !important;
}

.vdofc-field > span:first-child {
    display: block;
    color: var(--vendog-bundle-brown);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}

.vdofc-field input,
.vdofc-field select {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 48px !important;
    height: auto !important;
    margin: 0 !important;
    padding: 10px 40px 10px 12px !important;
    border: 1px solid #cfc4bd !important;
    border-radius: 9px !important;
    outline: none !important;
    background-color: #fff !important;
    color: var(--vendog-bundle-text) !important;
    font: inherit !important;
    font-size: 14px !important;
    line-height: 1.3 !important;
    box-shadow: none !important;
}

.vdofc-field input {
    padding-right: 52px !important;
}

.vdofc-field input:hover,
.vdofc-field select:hover {
    border-color: var(--vendog-bundle-orange) !important;
}

.vdofc-field input:focus,
.vdofc-field select:focus {
    border-color: var(--vendog-bundle-orange) !important;
    box-shadow: 0 0 0 3px rgba(236, 124, 23, 0.16) !important;
}

.vdofc-input-unit {
    position: relative;
    display: block;
    width: 100%;
    min-width: 0;
}

.vdofc-input-unit em {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    color: var(--vendog-bundle-muted);
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    pointer-events: none;
}

.vendog-food-calculator .vdofc-source-note {
    display: block !important;
    width: 100%;
    margin: 17px 0 0 !important;
    padding: 12px 14px !important;
    border: 1px solid var(--vendog-bundle-border);
    border-radius: 9px;
    background: #fffaf6;
    color: var(--vendog-bundle-muted) !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
}

.vendog-food-calculator .vdofc-source-note:empty {
    display: none !important;
}

/* Feeding-period result cards use the bundle price-summary treatment. */
.vendog-food-calculator .vdofc-results {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 12px !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 0 18px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

.vendog-food-calculator .vdofc-results > span {
    display: flex !important;
    min-width: 0;
    min-height: 88px;
    flex-direction: column;
    justify-content: center;
    padding: 14px 15px;
    border: 1px solid var(--vendog-bundle-border);
    border-radius: 11px;
    background: var(--vendog-bundle-orange-soft);
}

.vendog-food-calculator .vdofc-results small {
    display: block;
    margin: 0 0 6px;
    color: var(--vendog-bundle-muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.vendog-food-calculator .vdofc-results strong {
    display: block;
    min-width: 0;
    color: var(--vendog-bundle-brown);
    font-size: clamp(18px, 2vw, 23px);
    font-weight: 800;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

/* Recommended food quantity card. */
.vendog-food-calculator .vdofc-recommendation {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 70px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 18px !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 112px !important;
    margin: 0 !important;
    padding: 18px !important;
    overflow: hidden !important;
    border: 1px solid rgba(36, 122, 73, 0.28) !important;
    border-radius: 12px !important;
    background: var(--vendog-bundle-success-soft) !important;
    box-shadow: inset 4px 0 0 var(--vendog-bundle-success) !important;
    opacity: 1 !important;
    transform: none !important;
}

.vdofc-bag-icon {
    position: relative;
    width: 58px;
    height: 68px;
    margin: 0 auto;
    border: 2px solid var(--vendog-bundle-success);
    border-radius: 7px 7px 12px 12px;
    color: var(--vendog-bundle-success);
}

.vdofc-bag-icon::before,
.vdofc-bag-icon::after {
    content: "";
    position: absolute;
    left: 9px;
    right: 9px;
    height: 2px;
    background: currentColor;
}

.vdofc-bag-icon::before { top: 11px; }
.vdofc-bag-icon::after { bottom: 11px; }

.vdofc-bag-icon span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid currentColor;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.vendog-food-calculator .vdofc-recommendation .vendog-choice-copy {
    display: flex !important;
    min-width: 0 !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 5px !important;
    margin: 0 !important;
}

.vendog-food-calculator .vdofc-recommendation .vendog-choice-copy > strong {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    color: var(--vendog-bundle-brown) !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
}

.vdofc-bag-copy,
.vdofc-days-copy {
    display: block;
    width: 100%;
    min-width: 0;
    color: var(--vendog-bundle-text);
    font-size: 14px;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.vdofc-days-copy {
    color: var(--vendog-bundle-muted);
    font-size: 13px;
}

.vdofc-disclaimer {
    width: 100%;
    margin: 14px 0 0 !important;
    color: var(--vendog-bundle-muted);
    font-size: 12px;
    line-height: 1.6;
}

@media (max-width: 1050px) {
    .vdofc-fields {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vendog-food-calculator .vdofc-results {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 700px) {
    .vendog-food-calculator {
        margin-top: 0;
    }

    .vdofc-fields {
        grid-template-columns: minmax(0, 1fr);
        gap: 13px;
    }

    .vendog-food-calculator .vdofc-form-card {
        padding: 16px !important;
        border-radius: 12px !important;
    }

    .vendog-food-calculator .vdofc-recommendation {
        grid-template-columns: 56px minmax(0, 1fr) !important;
        gap: 13px !important;
        padding: 15px !important;
    }

    .vdofc-bag-icon {
        width: 48px;
        height: 58px;
    }

}

@media (max-width: 480px) {
    .vdofc-heading h2 {
        font-size: 24px;
    }

    .vendog-food-calculator .vdofc-results {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 9px !important;
    }

    .vendog-food-calculator .vdofc-results > span {
        min-height: 0;
        padding: 12px 14px;
    }

    .vendog-food-calculator .vdofc-recommendation {
        grid-template-columns: minmax(0, 1fr) !important;
        text-align: left;
    }

    .vdofc-bag-icon {
        margin: 0;
    }
}

/* =========================================================
   GUIDED FOOD SELECTOR
   Uses assigned WooCommerce products and feeding guides.
   ========================================================= */
.vendog-food-selector {
    --vendog-bundle-orange: #ec7c17;
    --vendog-bundle-orange-dark: #c96008;
    --vendog-bundle-orange-soft: #fff5eb;
    --vendog-bundle-brown: #4a3024;
    --vendog-bundle-text: #2e2926;
    --vendog-bundle-muted: #746b66;
    --vendog-bundle-border: #e8ddd5;
    --vendog-bundle-surface: #ffffff;
    --vendog-bundle-success: #247a49;
    --vendog-bundle-success-soft: #edf8f1;
    --vendog-bundle-radius: 14px;
    --vendog-bundle-shadow: 0 12px 32px rgba(74, 48, 36, 0.08);

    display: block;
    width: 100%;
    min-width: 0;
    max-width: none;
    margin: 10px 0 0;
    color: var(--vendog-bundle-text);
    font: inherit;
}

.vendog-food-selector,
.vendog-food-selector * {
    box-sizing: border-box;
}

.vdofs-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    width: 100%;
    margin: 0;
    padding: clamp(18px, 2.5vw, 28px);
    border: 1px solid var(--vendog-bundle-border);
    border-radius: var(--vendog-bundle-radius);
    background: var(--vendog-bundle-surface);
    box-shadow: var(--vendog-bundle-shadow);
}

.vdofs-stage-fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.vdofs-stage-fieldset > legend {
    display: block;
    width: 100%;
    margin: 0 0 12px;
    padding: 0;
    color: var(--vendog-bundle-brown);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.vdofs-stage-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
}

.vdofs-stage-card {
    position: relative;
    display: block;
    min-width: 0;
    min-height: 132px;
    margin: 0;
    cursor: pointer;
}

.vdofs-stage-card > input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
}

.vdofs-stage-card > span {
    position: relative;
    display: flex;
    min-height: 132px;
    flex-direction: column;
    justify-content: flex-start;
    gap: 7px;
    padding: 17px 18px 17px 50px;
    border: 1px solid var(--vendog-bundle-border);
    border-radius: 12px;
    background: #fff;
    transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.vdofs-stage-card > span::before {
    content: "";
    position: absolute;
    top: 17px;
    left: 17px;
    width: 22px;
    height: 22px;
    border: 2px solid #d6ccc5;
    border-radius: 50%;
    background: #fff;
    box-shadow: inset 0 0 0 5px #fff;
}

.vdofs-stage-card:hover > span {
    border-color: rgba(236, 124, 23, 0.62);
    background: #fffaf6;
    transform: translateY(-1px);
    box-shadow: 0 7px 20px rgba(74, 48, 36, 0.08);
}

.vdofs-stage-card > input:focus-visible + span {
    outline: 3px solid rgba(236, 124, 23, 0.2);
    outline-offset: 2px;
}

.vdofs-stage-card > input:checked + span {
    border-color: rgba(36, 122, 73, 0.72);
    background: var(--vendog-bundle-success-soft);
    box-shadow: inset 4px 0 0 var(--vendog-bundle-success), 0 7px 20px rgba(36, 122, 73, 0.08);
}

.vdofs-stage-card > input:checked + span::before {
    border-color: var(--vendog-bundle-success);
    background: var(--vendog-bundle-success);
}

.vdofs-stage-card strong {
    color: var(--vendog-bundle-brown);
    font-size: 18px;
    font-weight: 750;
    line-height: 1.25;
}

.vdofs-stage-card small {
    color: var(--vendog-bundle-muted);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
}

.vdofs-detail-fields {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 16px;
    width: 100%;
    min-width: 0;
}

.vdofs-detail-fields[hidden],
.vdofs-puppy-age-field[hidden],
.vdofs-activity-field[hidden] {
    display: none !important;
}

.vdofs-weight-help {
    display: block;
    margin-top: 1px;
    color: var(--vendog-bundle-muted);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
}

.vdofs-submit,
.vdofs-product-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 13px 22px;
    border: 0;
    border-radius: 10px;
    background: var(--vendog-bundle-orange);
    color: #fff !important;
    font: inherit;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;
    transition: background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.vdofs-submit {
    width: 100%;
}

.vdofs-submit:hover,
.vdofs-submit:focus-visible,
.vdofs-product-link:hover,
.vdofs-product-link:focus-visible {
    background: var(--vendog-bundle-orange-dark);
    transform: translateY(-1px);
    box-shadow: 0 9px 20px rgba(201, 96, 8, 0.22);
}

.vdofs-submit:disabled {
    cursor: not-allowed;
    opacity: 0.48;
    transform: none;
    box-shadow: none;
}

.vdofs-results {
    width: 100%;
    margin: 22px 0 0;
    scroll-margin-top: 24px;
}

.vdofs-results[hidden] {
    display: none !important;
}

.vdofs-results-heading {
    margin: 0 0 14px;
}

.vdofs-results-heading h3 {
    margin: 0 0 5px !important;
    color: var(--vendog-bundle-brown);
    font-size: clamp(21px, 2.5vw, 28px);
    font-weight: 700;
    line-height: 1.25;
}

.vdofs-results-heading p {
    margin: 0 !important;
    color: var(--vendog-bundle-muted);
    font-size: 14px;
    line-height: 1.5;
}

.vdofs-product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
    min-width: 0;
}

.vdofs-product-grid[hidden] {
    display: none !important;
}

.vdofs-product-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    align-items: stretch;
    gap: 16px;
    min-width: 0;
    margin: 0;
    padding: 15px;
    border: 1px solid var(--vendog-bundle-border);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 7px 20px rgba(74, 48, 36, 0.06);
}

.vdofs-product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 150px;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    pointer-events: none;
}

.vdofs-product-image img {
    display: block;
    width: 100%;
    height: 150px;
    object-fit: contain;
}

.vdofs-product-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
}

.vdofs-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.vdofs-badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 4px 8px;
    border-radius: 999px;
    background: var(--vendog-bundle-success-soft);
    color: var(--vendog-bundle-success);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
}

.vdofs-badge-muted {
    background: var(--vendog-bundle-orange-soft);
    color: var(--vendog-bundle-orange-dark);
}

.vdofs-product-copy h4 {
    margin: 0 !important;
    color: var(--vendog-bundle-text);
    font-size: 17px;
    font-weight: 650;
    line-height: 1.35;
}

.vdofs-product-copy h4 a {
    color: inherit !important;
    text-decoration: none !important;
}

.vdofs-product-copy h4 a:hover {
    color: var(--vendog-bundle-orange-dark) !important;
}


/* Only the product title and the explicit action button are links. */
.vdofs-product-image,
.vdofs-product-image:hover,
.vdofs-product-image:focus {
    color: inherit !important;
    text-decoration: none !important;
    cursor: default !important;
}

.vdofs-product-price {
    color: var(--vendog-bundle-brown);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.vdofs-product-description {
    display: -webkit-box;
    margin: 0 !important;
    overflow: hidden;
    color: var(--vendog-bundle-muted);
    font-size: 12px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

.vdofs-product-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: auto;
}

.vdofs-product-metrics > span {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
    padding: 9px 10px;
    border: 1px solid var(--vendog-bundle-border);
    border-radius: 9px;
    background: var(--vendog-bundle-orange-soft);
}

.vdofs-product-metrics small {
    color: var(--vendog-bundle-muted);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.vdofs-product-metrics strong {
    color: var(--vendog-bundle-brown);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.vdofs-bag-line {
    margin: 0 !important;
    color: var(--vendog-bundle-muted);
    font-size: 12px;
    line-height: 1.4;
}

.vdofs-product-link {
    width: 100%;
    min-height: 44px;
    margin-top: 2px;
    padding: 10px 16px;
    font-size: 14px;
}

.vdofs-empty {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
    padding: 18px;
    border: 1px solid var(--vendog-bundle-border);
    border-radius: 12px;
    background: #fffaf6;
}

.vdofs-empty[hidden] {
    display: none !important;
}

.vdofs-empty strong {
    color: var(--vendog-bundle-brown);
    font-size: 16px;
}

.vdofs-empty span {
    color: var(--vendog-bundle-muted);
    font-size: 13px;
    line-height: 1.45;
}

@media (max-width: 1050px) {
    .vdofs-product-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 800px) {
    .vdofs-stage-options {
        grid-template-columns: minmax(0, 1fr);
    }

    .vdofs-stage-card,
    .vdofs-stage-card > span {
        min-height: 0;
    }

    .vdofs-detail-fields {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .vendog-food-selector {
        margin-top: 0;
    }

    .vdofs-form {
        gap: 15px;
        padding: 15px;
        border-radius: 12px;
    }

    .vdofs-detail-fields {
        grid-template-columns: minmax(0, 1fr);
        gap: 13px;
    }

    .vdofs-product-card {
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 12px;
        padding: 12px;
    }

    .vdofs-product-image {
        min-height: 92px;
    }

    .vdofs-product-image img {
        height: 92px;
    }
}

@media (max-width: 420px) {
    .vdofs-product-card {
        grid-template-columns: minmax(0, 1fr);
    }

    .vdofs-product-image {
        min-height: 150px;
    }

    .vdofs-product-image img {
        height: 150px;
    }

    .vdofs-product-metrics {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* =========================================================
   GUIDED SELECTOR — CENTRED DYNAMIC WEIGHT SLIDER
   The minimum and maximum values are supplied by the assigned
   feeding guides for the selected life stage.
   ========================================================= */
.vendog-food-selector .vdofc-heading {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.vendog-food-selector .vdofs-form {
    text-align: center;
}

.vendog-food-selector .vdofs-stage-fieldset > legend {
    text-align: center;
}

.vendog-food-selector .vdofs-stage-options {
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
}

.vendog-food-selector .vdofs-stage-card > span {
    align-items: center;
    padding: 54px 18px 18px;
    text-align: center;
}

.vendog-food-selector .vdofs-stage-card > span::before {
    top: 17px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
}

.vendog-food-selector .vdofs-detail-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 820px;
    margin-right: auto;
    margin-left: auto;
}

.vendog-food-selector .vdofs-detail-fields .vdofc-field,
.vendog-food-selector .vdofs-detail-fields .vdofc-field > span:first-child {
    align-items: stretch;
    text-align: center;
}

.vendog-food-selector .vdofs-detail-fields select {
    text-align: center !important;
    text-align-last: center !important;
}

.vendog-food-selector .vdofs-weight-field {
    justify-content: flex-start;
    min-width: 0;
}

.vendog-food-selector .vdofs-weight-value {
    display: inline-flex;
    align-items: center;
    align-self: center;
    justify-content: center;
    min-width: 92px;
    min-height: 42px;
    margin: 1px auto 0;
    padding: 8px 15px;
    border: 1px solid var(--vendog-bundle-border);
    border-radius: 999px;
    background: var(--vendog-bundle-orange-soft);
    color: var(--vendog-bundle-brown);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.vendog-food-selector input.vdofs-weight[type="range"] {
    --vdofs-progress: 0%;
    position: relative !important;
    z-index: 2 !important;
    pointer-events: auto !important;
    opacity: 1 !important;
    touch-action: pan-y;
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 32px !important;
    height: 32px !important;
    margin: 2px 0 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.vendog-food-selector input.vdofs-weight[type="range"]:disabled {
    cursor: not-allowed !important;
    opacity: 0.45 !important;
}

.vendog-food-selector input.vdofs-weight[type="range"]:focus {
    border: 0 !important;
    box-shadow: none !important;
}

.vendog-food-selector input.vdofs-weight[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(
        to right,
        var(--vendog-bundle-orange) 0,
        var(--vendog-bundle-orange) var(--vdofs-progress),
        #eee5df var(--vdofs-progress),
        #eee5df 100%
    );
}

.vendog-food-selector input.vdofs-weight[type="range"]::-webkit-slider-thumb {
    width: 24px;
    height: 24px;
    margin-top: -8px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--vendog-bundle-orange);
    box-shadow: 0 2px 8px rgba(74, 48, 36, 0.24);
    appearance: none;
    -webkit-appearance: none;
}

.vendog-food-selector input.vdofs-weight[type="range"]:focus-visible::-webkit-slider-thumb {
    outline: 3px solid rgba(236, 124, 23, 0.22);
    outline-offset: 3px;
}

.vendog-food-selector input.vdofs-weight[type="range"]::-moz-range-track {
    width: 100%;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: #eee5df;
}

.vendog-food-selector input.vdofs-weight[type="range"]::-moz-range-progress {
    height: 8px;
    border-radius: 999px;
    background: var(--vendog-bundle-orange);
}

.vendog-food-selector input.vdofs-weight[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--vendog-bundle-orange);
    box-shadow: 0 2px 8px rgba(74, 48, 36, 0.24);
}

.vendog-food-selector .vdofs-range-limits {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: -2px 0 0;
    color: var(--vendog-bundle-muted);
}

.vendog-food-selector .vdofs-range-limits small {
    color: inherit;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.vendog-food-selector .vdofs-weight-help {
    max-width: 520px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.vendog-food-selector .vdofs-submit {
    max-width: 520px;
    margin-right: auto;
    margin-left: auto;
}

.vendog-food-selector .vdofs-results-heading {
    text-align: center;
}

.vendog-food-selector > .vdofc-disclaimer {
    max-width: 900px;
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center;
}

@media (max-width: 620px) {
    .vendog-food-selector .vdofs-detail-fields {
        grid-template-columns: minmax(0, 1fr);
        max-width: 100%;
    }

    .vendog-food-selector .vdofs-stage-card > span {
        padding-top: 52px;
    }

    .vendog-food-selector .vdofs-weight-value {
        font-size: 17px;
    }
}



/* =========================================================
   V1.6.1 — ACTIVITY CONTROL ALIGNMENT
   Keep the Adult/Senior activity selector visually balanced beside
   the taller weight-slider control without changing any behaviour.
   ========================================================= */
.vendog-food-selector .vdofs-detail-fields {
    align-items: stretch;
}

.vendog-food-selector .vdofs-activity-field {
    align-self: stretch;
    justify-content: center;
    min-width: 0;
    min-height: 100%;
}

.vendog-food-selector .vdofs-activity-field > span:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 22px;
    margin: 0;
    text-align: center;
}

.vendog-food-selector .vdofs-activity-field select.vdofs-activity {
    align-self: center;
    width: 100% !important;
    min-height: 52px !important;
    border-radius: 10px !important;
}

@media (max-width: 620px) {
    .vendog-food-selector .vdofs-activity-field {
        align-self: auto;
        justify-content: flex-start;
        min-height: 0;
    }
}
