.anfa-taxi-booking {
    display: grid;
    gap: 32px;
}

.anfa-taxi-booking__search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
    gap: 20px;
    align-items: end;
    padding: 28px;
    background: var(--e-global-color-white, #fff);
    border: 1px solid var(--e-global-color-divider, #ececec);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(4, 4, 1, 0.08);
}

.anfa-taxi-booking__field label {
    display: block;
    margin-bottom: 10px;
    font-family: var(--e-global-typography-primary-font-family, sans-serif);
    font-size: 15px;
    font-weight: 700;
    color: var(--e-global-color-primary, #040401);
}

.anfa-taxi-booking__field select {
    width: 100%;
    padding: 12px 18px;
    min-height: 52px;
    background: transparent;
    border: 1px solid var(--e-global-color-divider, #ececec);
    border-radius: 10px;
    color: var(--e-global-color-primary, #040401);
    font-family: var(--e-global-typography-text-font-family, sans-serif);
    box-shadow: none;
}

.anfa-taxi-booking__actions .btn-default {
    margin: 0;
    min-width: 180px;
    text-align: center;
}

.anfa-taxi-booking__actions {
    padding-right: 48px;
}

.anfa-taxi-booking__results-wrap {
    display: grid;
    gap: 18px;
}

.anfa-taxi-booking__results-head h2 {
    margin: 0 0 8px;
    color: var(--e-global-color-primary, #040401);
}

.anfa-taxi-booking__results-head p {
    margin: 0;
    color: var(--e-global-color-text, #616161);
}

.anfa-taxi-booking__results {
    display: grid;
    gap: 18px;
}

.anfa-taxi-booking__item {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    overflow: hidden;
    border-radius: 24px;
    background: var(--e-global-color-white, #fff);
    box-shadow: 0 20px 55px rgba(4, 4, 1, 0.08);
    border: 1px solid rgba(4, 4, 1, 0.06);
}

.anfa-taxi-booking__item-image {
    min-height: 220px;
}

.anfa-taxi-booking__item-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.anfa-taxi-booking__item-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    padding: 24px;
    align-items: center;
}

.anfa-taxi-booking__item-main {
    display: grid;
    gap: 10px;
}

.anfa-taxi-booking__item-main h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.2;
    color: var(--e-global-color-primary, #040401);
}

.anfa-taxi-booking__route,
.anfa-taxi-booking__capacity {
    margin: 0;
    color: var(--e-global-color-text, #616161);
}

.anfa-taxi-booking__item-side {
    display: grid;
    gap: 14px;
    justify-items: end;
    text-align: right;
}

.anfa-taxi-booking__price {
    font-family: var(--e-global-typography-primary-font-family, sans-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--e-global-color-accent, #ff3600);
}

.anfa-taxi-booking__book .btn-default {
    margin: 0;
    width: 100%;
}

.anfa-taxi-booking__book {
    padding-right: 48px;
}

.anfa-taxi-booking__message {
    padding: 16px 20px;
    border-radius: 14px;
    background: var(--e-global-color-secondary, #fff8f6);
    color: var(--e-global-color-primary, #040401);
}

.anfa-taxi-booking__message--error {
    border: 1px solid rgba(255, 54, 0, 0.2);
    color: var(--e-global-color-accent, #ff3600);
}

.anfa-taxi-product-booking {
    display: grid;
    gap: 20px;
    margin-top: 28px;
}

.anfa-taxi-product-booking__title {
    margin: 0;
    color: var(--e-global-color-primary, #040401);
}

.anfa-taxi-product-booking__search {
    margin: 0;
    grid-template-columns: 1fr;
    align-items: stretch;
}

.anfa-taxi-product-booking__result {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 24px 28px;
    background: var(--e-global-color-white, #fff);
    border: 1px solid rgba(4, 4, 1, 0.06);
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(4, 4, 1, 0.08);
}

.anfa-taxi-product-booking__result-main,
.anfa-taxi-product-booking__result-side {
    display: grid;
    gap: 10px;
}

.anfa-taxi-product-booking__result-side {
    justify-items: end;
    text-align: right;
}

.anfa-taxi-product-booking__change-route {
    display: none;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--e-global-color-accent, #ff3600);
    font-weight: 700;
    cursor: pointer;
}

.anfa-taxi-product-booking--has-result .anfa-taxi-product-booking__change-route {
    display: inline-flex;
}

.anfa-taxi-product-booking__price-label {
    color: var(--e-global-color-text, #616161);
    font-size: 14px;
    line-height: 1.4;
}

.anfa-taxi-product-booking__search .anfa-taxi-booking__actions {
    justify-self: start;
}

.anfa-taxi-product-booking__feedback,
.anfa-taxi-product-booking__result-wrap {
    display: grid;
    gap: 16px;
}

@media (max-width: 991px) {
    .anfa-taxi-booking__search,
    .anfa-taxi-booking__item,
    .anfa-taxi-booking__item-content,
    .anfa-taxi-product-booking__result {
        grid-template-columns: 1fr;
    }

    .anfa-taxi-booking__actions .btn-default,
    .anfa-taxi-booking__item-side,
    .anfa-taxi-product-booking__result-side {
        min-width: 0;
        justify-items: stretch;
        text-align: left;
    }

    .anfa-taxi-booking__actions,
    .anfa-taxi-booking__book {
        padding-right: 48px;
    }

    .anfa-taxi-booking__item-image {
        min-height: 180px;
    }
}

.page-header {
    padding: 35px 0;
}
.page-single-post {
    padding: 20px 0;
}

body.anfa-taxi-classic-checkout .woocommerce-checkout {
    display: grid;
    gap: 28px;
}

body.anfa-taxi-classic-checkout .woocommerce form.checkout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 28px;
    align-items: start;
}

body.anfa-taxi-classic-checkout .woocommerce form.checkout > .woocommerce-NoticeGroup,
body.anfa-taxi-classic-checkout .woocommerce form.checkout > .woocommerce-notices-wrapper {
    grid-column: 1 / -1;
}

body.anfa-taxi-classic-checkout .woocommerce form.checkout > .anfa-taxi-checkout__main,
body.anfa-taxi-classic-checkout .woocommerce form.checkout > .anfa-taxi-checkout__sidebar {
    min-width: 0;
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-checkout__main {
    display: grid;
    gap: 24px;
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-checkout__sidebar {
    display: grid;
    gap: 18px;
    align-self: start;
    position: sticky;
    top: 24px;
}

body.anfa-taxi-classic-checkout .woocommerce .col2-set,
body.anfa-taxi-classic-checkout .woocommerce #customer_details,
body.anfa-taxi-classic-checkout .woocommerce #order_review_heading,
body.anfa-taxi-classic-checkout .woocommerce #order_review {
    margin: 0 !important;
    width: 100%;
    float: none !important;
    clear: none !important;
}

body.anfa-taxi-classic-checkout .woocommerce .col2-set .col-1,
body.anfa-taxi-classic-checkout .woocommerce .col2-set .col-2 {
    width: 100%;
    float: none !important;
}

body.anfa-taxi-classic-checkout .woocommerce .woocommerce-billing-fields,
body.anfa-taxi-classic-checkout .woocommerce .woocommerce-shipping-fields,
body.anfa-taxi-classic-checkout .woocommerce #order_review {
    padding: 28px;
    background: var(--e-global-color-white, #fff);
    border: 1px solid rgba(4, 4, 1, 0.08);
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(4, 4, 1, 0.08);
}

body.anfa-taxi-classic-checkout .woocommerce .woocommerce-additional-fields {
    display: none;
}

body.anfa-taxi-classic-checkout .woocommerce .woocommerce-shipping-fields {
    display: none !important;
}

body.anfa-taxi-classic-checkout .woocommerce .woocommerce-billing-fields > h3,
body.anfa-taxi-classic-checkout .woocommerce .woocommerce-shipping-fields > h3,
body.anfa-taxi-classic-checkout .woocommerce #order_review_heading {
    margin: 0 0 20px;
    color: var(--e-global-color-primary, #040401);
    font-size: 30px;
    line-height: 1.15;
}

body.anfa-taxi-classic-checkout .woocommerce #order_review_heading {
    padding: 0 4px;
    background: transparent;
    border: 0;
    box-shadow: none;
}

body.anfa-taxi-classic-checkout .woocommerce .woocommerce-billing-fields__field-wrapper,
body.anfa-taxi-classic-checkout .woocommerce .woocommerce-shipping-fields__field-wrapper,
body.anfa-taxi-classic-checkout .woocommerce .woocommerce-additional-fields__field-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
}

body.anfa-taxi-classic-checkout .woocommerce form .form-row {
    width: 100%;
    float: none;
    margin: 0;
}

body.anfa-taxi-classic-checkout .woocommerce form .form-row-wide,
body.anfa-taxi-classic-checkout .woocommerce form .form-row-first:last-child,
body.anfa-taxi-classic-checkout .woocommerce form .form-row-last:last-child {
    grid-column: 1 / -1;
}

body.anfa-taxi-classic-checkout .woocommerce form .form-row label {
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--e-global-color-primary, #040401);
}

body.anfa-taxi-classic-checkout .woocommerce form .form-row input.input-text,
body.anfa-taxi-classic-checkout .woocommerce form .form-row select,
body.anfa-taxi-classic-checkout .woocommerce form .form-row textarea {
    min-height: 54px;
    padding: 12px 16px;
    border: 1px solid var(--e-global-color-divider, #ececec);
    border-radius: 12px;
    background: #fff;
    box-shadow: none;
}

body.anfa-taxi-classic-checkout .woocommerce form .form-row textarea {
    min-height: 130px;
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-passenger-picker__native {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-passenger-picker {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    min-height: 64px;
    padding: 10px;
    border: 1px solid var(--e-global-color-divider, #ececec);
    border-radius: 18px;
    background: #fff;
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-passenger-picker__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(4, 4, 1, 0.06);
    color: var(--e-global-color-primary, #040401);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-passenger-picker__button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-passenger-picker__value-wrap {
    display: grid;
    justify-items: center;
    gap: 2px;
    text-align: center;
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-passenger-picker__value {
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
    color: var(--e-global-color-primary, #040401);
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-passenger-picker__hint {
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(4, 4, 1, 0.55);
}

body.anfa-taxi-classic-checkout .woocommerce .col2-set .col-2:empty {
    display: none;
}

/* ── Date & Time Picker — shared ────────────────────────────────── */

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-datepicker__native,
body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-timepicker__native {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-datepicker,
body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-timepicker {
    position: relative;
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-datepicker__trigger,
body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-timepicker__trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 12px 16px;
    border: 1px solid var(--e-global-color-divider, #ececec);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s;
    user-select: none;
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-datepicker__trigger:hover,
body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-timepicker__trigger:hover {
    border-color: rgba(4, 4, 1, 0.25);
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-datepicker__icon,
body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-timepicker__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(4, 4, 1, 0.05);
    color: var(--e-global-color-primary, #040401);
    flex-shrink: 0;
    font-size: 18px;
    line-height: 1;
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-datepicker__display,
body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-timepicker__display {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: var(--e-global-color-primary, #040401);
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-datepicker__chevron,
body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-timepicker__chevron {
    display: flex;
    align-items: center;
    color: rgba(4, 4, 1, 0.4);
    transition: transform 0.2s;
}

/* ── Date Picker — Dropdown ─────────────────────────────────────── */

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-datepicker__dropdown,
body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-timepicker__dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 1000;
    background: #fff;
    border: 1px solid rgba(4, 4, 1, 0.08);
    border-radius: 18px;
    box-shadow: 0 20px 55px rgba(4, 4, 1, 0.12);
    padding: 20px;
    min-width: 300px;
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-datepicker__dropdown--open,
body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-timepicker__dropdown--open {
    display: block;
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-datepicker__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-datepicker__month-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--e-global-color-primary, #040401);
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-datepicker__nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 10px;
    background: rgba(4, 4, 1, 0.05);
    color: var(--e-global-color-primary, #040401);
    cursor: pointer;
    transition: background 0.15s;
    font-size: 20px;
    line-height: 1;
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-datepicker__nav:hover {
    background: rgba(4, 4, 1, 0.1);
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-datepicker__days-head,
body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-datepicker__days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-datepicker__days-head span {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(4, 4, 1, 0.4);
    padding: 6px 0;
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-datepicker__day {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0 auto;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--e-global-color-primary, #040401);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-datepicker__day:hover:not(:disabled) {
    background: rgba(4, 4, 1, 0.06);
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-datepicker__day--today {
    border: 1.5px solid var(--e-global-color-accent, #ff3600);
    color: var(--e-global-color-accent, #ff3600);
    font-weight: 700;
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-datepicker__day--selected {
    background: var(--e-global-color-accent, #ff3600) !important;
    color: #fff !important;
    font-weight: 700;
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-datepicker__day--disabled {
    opacity: 0.25;
    cursor: not-allowed;
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-datepicker__day--empty {
    visibility: hidden;
}

/* ── Time Picker — Dropdown ─────────────────────────────────────── */

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-timepicker__dropdown {
    min-width: 200px;
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-timepicker__panel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-timepicker__col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-timepicker__spin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 34px;
    border: 0;
    border-radius: 10px;
    background: rgba(4, 4, 1, 0.05);
    color: var(--e-global-color-primary, #040401);
    cursor: pointer;
    transition: background 0.15s;
    font-size: 12px;
    line-height: 1;
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-timepicker__spin:hover {
    background: rgba(4, 4, 1, 0.1);
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-timepicker__value {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    color: var(--e-global-color-primary, #040401);
    min-width: 52px;
    text-align: center;
    padding: 6px 0;
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-timepicker__sep {
    font-size: 28px;
    font-weight: 700;
    color: var(--e-global-color-primary, #040401);
    line-height: 1;
    padding-bottom: 4px;
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-timepicker__confirm {
    display: block;
    width: 100%;
    margin-top: 14px;
    padding: 10px;
    border: 0;
    border-radius: 12px;
    background: var(--e-global-color-accent, #ff3600);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.15s;
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-timepicker__confirm:hover {
    opacity: 0.9;
}

body.anfa-taxi-classic-checkout .woocommerce #order_review table.shop_table {
    display: none !important;
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-order-summary {
    display: grid;
    gap: 20px;
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-order-summary__header {
    margin: 0;
    color: var(--e-global-color-primary, #040401);
    font-size: 30px;
    line-height: 1.15;
    font-weight: 700;
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-order-summary__products,
body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-order-summary__totals {
    display: grid;
    gap: 14px;
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-order-summary__products {
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(4, 4, 1, 0.08);
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-order-summary__booking {
    display: grid;
    gap: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(4, 4, 1, 0.08);
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-order-summary__booking:empty {
    display: none;
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-order-summary__booking .anfa-taxi-order-summary__row {
    padding-top: 0;
    border-top: 0;
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-order-summary__booking .anfa-taxi-order-summary__row-value {
    font-size: 15px;
    font-weight: 600;
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-order-summary__item,
body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-order-summary__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: start;
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-order-summary__item-main,
body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-order-summary__row-label {
    font-size: 16px;
    line-height: 1.7;
    color: var(--e-global-color-primary, #040401);
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-order-summary__item-main strong,
body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-order-summary__row-label strong {
    font-weight: 700;
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-order-summary__item-price,
body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-order-summary__row-value {
    text-align: right;
    font-weight: 700;
    line-height: 1.6;
    color: var(--e-global-color-primary, #040401);
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-order-summary__item-price small {
    display: block;
    margin-top: 4px;
    color: var(--e-global-color-text, #616161);
    font-weight: 400;
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-order-summary__row {
    padding-top: 14px;
    border-top: 1px solid rgba(4, 4, 1, 0.08);
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-order-summary__row-label {
    color: rgba(4, 4, 1, 0.62);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 13px;
}

body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-order-summary__row--total .anfa-taxi-order-summary__row-label,
body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-order-summary__row--total .anfa-taxi-order-summary__row-value {
    font-size: 18px;
}

body.anfa-taxi-classic-checkout .woocommerce #payment {
    background: transparent;
    border: 0;
    padding: 0;
    margin-top: 12px;
}

body.anfa-taxi-classic-checkout .woocommerce #payment ul.payment_methods {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(4, 4, 1, 0.08);
}

body.anfa-taxi-classic-checkout .woocommerce #payment ul.payment_methods > li {
    margin: 0;
    padding: 20px 0;
    border-bottom: 1px solid rgba(4, 4, 1, 0.08);
}

body.anfa-taxi-classic-checkout .woocommerce #payment div.payment_box {
    margin: 14px 0 0;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(4, 4, 1, 0.04);
}

body.anfa-taxi-classic-checkout .woocommerce .woocommerce-form-coupon-toggle .woocommerce-info {
    padding: 18px 22px;
    border: 1px solid rgba(4, 4, 1, 0.08);
    border-radius: 20px;
    border-top-width: 1px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(4, 4, 1, 0.06);
}

body.anfa-taxi-classic-checkout .woocommerce form.checkout_coupon {
    padding: 22px;
    border: 1px solid rgba(4, 4, 1, 0.08);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(4, 4, 1, 0.06);
}

body.anfa-taxi-classic-checkout .woocommerce form.checkout_coupon::after,
body.anfa-taxi-classic-checkout .woocommerce form.checkout_coupon::before {
    content: "";
    display: table;
    clear: both;
}

body.anfa-taxi-classic-checkout .woocommerce #place_order {
    width: 100%;
    min-height: 56px;
    border-radius: 999px;
    margin-top: 16px;
}

@media (max-width: 991px) {
    body.anfa-taxi-classic-checkout .woocommerce form.checkout,
    body.anfa-taxi-classic-checkout .woocommerce .woocommerce-billing-fields__field-wrapper,
    body.anfa-taxi-classic-checkout .woocommerce .woocommerce-shipping-fields__field-wrapper,
    body.anfa-taxi-classic-checkout .woocommerce .woocommerce-additional-fields__field-wrapper {
        grid-template-columns: 1fr;
    }

    body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-checkout__sidebar {
        position: static;
    }

    body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-order-summary__item,
    body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-order-summary__row {
        grid-template-columns: 1fr;
    }

    body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-order-summary__item-price,
    body.anfa-taxi-classic-checkout .woocommerce .anfa-taxi-order-summary__row-value {
        text-align: left;
    }
}
