/* EasyDogManager Onlineshop - checkout/account UI.
 * Mobile-first and fully scoped. Never styles theme/WordPress elements globally.
 */
.edmos-shop.edmos-checkout,
.edmos-shop.edmos-order-confirmation,
.edmos-shop.edmos-account {
    --edmos-ui-border: #dcdcde;
    --edmos-ui-border-strong: #c3c4c7;
    --edmos-ui-muted: #646970;
    --edmos-ui-soft: #f6f7f7;
    --edmos-ui-primary: #2271b1;
    --edmos-ui-radius: 12px;
    --edmos-ui-gap: 12px;
}

.edmos-shop .edmos-honeypot[hidden] {
    display: none !important;
}

.edmos-shop .edmos-honeypot {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    border: 0 !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}

.edmos-shop .edmos-checkout-form {
    margin: 0;
}

.edmos-shop .edmos-checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--edmos-ui-gap, 12px);
    align-items: start;
}

.edmos-shop .edmos-checkout-main,
.edmos-shop .edmos-order-list,
.edmos-shop .edmos-order-lines,
.edmos-shop .edmos-choice-list {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.edmos-shop .edmos-checkout-card,
.edmos-shop .edmos-summary-card,
.edmos-shop .edmos-success-card,
.edmos-shop .edmos-order-card {
    border: 1px solid var(--edmos-ui-border, #dcdcde);
    border-radius: var(--edmos-ui-radius, 12px);
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .025);
}

.edmos-shop .edmos-checkout-card {
    padding: 14px;
}

.edmos-shop .edmos-checkout-card > :first-child,
.edmos-shop .edmos-summary-card > :first-child {
    margin-top: 0;
}

.edmos-shop .edmos-step-heading {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    margin: 0 0 12px;
}

.edmos-shop .edmos-step-heading > span {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--edmos-ui-border-strong, #c3c4c7);
    border-radius: 10px;
    background: var(--edmos-ui-soft, #f6f7f7);
    color: #3c434a;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

.edmos-shop .edmos-step-heading h3 {
    margin: 2px 0 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.25;
}

.edmos-shop .edmos-step-heading p {
    margin: 4px 0 0;
    font-size: 12.5px;
    line-height: 1.4;
}

.edmos-shop .edmos-address-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
}

.edmos-shop .edmos-field {
    display: grid;
    gap: 5px;
    min-width: 0;
    margin: 0;
    color: inherit;
    font-size: 12.5px;
    font-weight: 400;
    line-height: 1.35;
}

.edmos-shop .edmos-field > span {
    color: #50575e;
    font-weight: 500;
}

.edmos-shop .edmos-field input,
.edmos-shop .edmos-field select,
.edmos-shop .edmos-field textarea {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 42px;
    margin: 0;
    border: 1px solid #8c8f94;
    border-radius: 8px;
    background: #fff;
    color: inherit;
    padding: 8px 10px;
    font: inherit;
    line-height: 1.35;
}

.edmos-shop .edmos-field input:focus,
.edmos-shop .edmos-field select:focus,
.edmos-shop .edmos-field textarea:focus {
    border-color: var(--edmos-ui-primary, #2271b1);
    outline: 2px solid rgba(34, 113, 177, .18);
    outline-offset: 0;
}

.edmos-shop .edmos-field textarea {
    min-height: 96px;
    resize: vertical;
}

.edmos-shop .edmos-field input[readonly] {
    background: var(--edmos-ui-soft, #f6f7f7);
    color: #50575e;
}

.edmos-shop .edmos-field-wide {
    grid-column: 1 / -1;
}

.edmos-shop .edmos-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
}

.edmos-shop .edmos-check input {
    flex: 0 0 auto;
    margin: 2px 0 0;
}

.edmos-shop .edmos-shipping-address {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f1;
}

.edmos-shop .edmos-choice-card {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 9px;
    align-items: center;
    min-width: 0;
    padding: 11px 12px;
    border: 1px solid var(--edmos-ui-border, #dcdcde);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
}

.edmos-shop .edmos-choice-card:hover {
    background: #f9f9f9;
}

.edmos-shop .edmos-choice-card:focus-within,
.edmos-shop .edmos-choice-card:has(input:checked) {
    border-color: var(--edmos-ui-primary, #2271b1);
    box-shadow: 0 0 0 1px var(--edmos-ui-primary, #2271b1) inset;
}

.edmos-shop .edmos-choice-card input {
    margin: 0;
}

.edmos-shop .edmos-choice-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.edmos-shop .edmos-choice-copy strong {
    font-size: 13.5px;
    font-weight: 600;
}

.edmos-shop .edmos-choice-card > .edmos-price {
    grid-column: 2;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.edmos-shop .edmos-checkout-summary {
    min-width: 0;
}

.edmos-shop .edmos-summary-card {
    display: grid;
    gap: 10px;
    padding: 14px;
}

.edmos-shop .edmos-summary-card h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.25;
}

.edmos-shop .edmos-checkout-summary-item,
.edmos-shop .edmos-order-line {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f1;
    font-size: 13px;
}

.edmos-shop .edmos-checkout-summary-item > span,
.edmos-shop .edmos-order-line > span {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.edmos-shop .edmos-checkout-summary-item small,
.edmos-shop .edmos-order-line small {
    color: var(--edmos-ui-muted, #646970);
    font-size: 11.5px;
    line-height: 1.35;
}

.edmos-shop .edmos-checkout-summary-item > strong,
.edmos-shop .edmos-order-line > strong,
.edmos-shop .edmos-summary-row > strong {
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.edmos-shop .edmos-order-confirm {
    padding: 10px;
    border-radius: 9px;
    background: var(--edmos-ui-soft, #f6f7f7);
}

.edmos-shop .edmos-order-button {
    width: 100%;
    min-height: 44px;
}

.edmos-shop .edmos-success-card {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    margin-bottom: 12px;
    padding: 14px;
    border-color: #7ad03a;
    background: #f4fbf0;
}

.edmos-shop .edmos-success-card h2 {
    margin: 0 0 5px;
    font-size: 18px;
}

.edmos-shop .edmos-success-card p {
    margin: 0;
}

.edmos-shop .edmos-success-icon {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid #7ad03a;
    border-radius: 999px;
    background: #fff;
    color: #17781f;
    font-size: 18px;
    font-weight: 700;
}

.edmos-shop .edmos-payment-instructions {
    padding-top: 10px;
    border-top: 1px solid var(--edmos-ui-border, #dcdcde);
}

.edmos-shop .edmos-payment-instructions p {
    margin: 5px 0 0;
    white-space: normal;
}

.edmos-shop .edmos-order-card {
    display: grid;
    gap: 10px;
    padding: 12px;
}

.edmos-shop .edmos-order-card h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.25;
}

.edmos-shop .edmos-order-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    margin-top: 6px;
    color: var(--edmos-ui-muted, #646970);
    font-size: 12px;
}

.edmos-shop .edmos-status-badge {
    display: inline-flex;
    min-height: 23px;
    align-items: center;
    padding: 2px 8px;
    border: 1px solid var(--edmos-ui-border-strong, #c3c4c7);
    border-radius: 999px;
    background: #fff;
    color: #50575e;
    font-size: 12px;
}

.edmos-shop .edmos-order-card-end {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
}

.edmos-shop .edmos-order-card-end > strong {
    font-variant-numeric: tabular-nums;
}

.edmos-shop .edmos-checkout-card address {
    font-style: normal;
    line-height: 1.55;
}

.edmos-shop .edmos-checkout-card[hidden],
.edmos-shop .edmos-choice-card[hidden],
.edmos-shop .edmos-shipping-address[hidden] {
    display: none !important;
}

@media (min-width: 640px) {
    .edmos-shop .edmos-address-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .edmos-shop .edmos-choice-card {
        grid-template-columns: 22px minmax(0, 1fr) auto;
    }

    .edmos-shop .edmos-choice-card > .edmos-price {
        grid-column: auto;
    }

    .edmos-shop .edmos-order-card {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: start;
        padding: 12px 14px;
    }

    .edmos-shop .edmos-order-card-end {
        grid-template-columns: 1fr;
        justify-items: end;
        text-align: right;
    }
}

@media (min-width: 900px) {
    .edmos-shop .edmos-checkout-layout {
        grid-template-columns: minmax(0, 1fr) 320px;
    }

    .edmos-shop .edmos-checkout-summary {
        position: sticky;
        top: 24px;
    }
}


/* 0.5.9: checkout follows the configurable shop type scale. */
.edmos-shop .edmos-step-heading>span{font-size:.8125em}
.edmos-shop .edmos-step-heading h3{font-size:1.0625em;line-height:1.35}
.edmos-shop .edmos-step-heading p{font-size:.875em;line-height:1.45}
.edmos-shop .edmos-field{font-size:.9375em;line-height:1.4}
.edmos-shop .edmos-field input,.edmos-shop .edmos-field select,.edmos-shop .edmos-field textarea{font-size:1em;min-height:44px}
