:root {
    --bg: #fff;
    --text: #101828;
    --muted: #667085;
    --line: #EAECF0;
    --card: #fff;
    --soft: #F9FAFB;
    --accent: #2563eb;
    --accent2: #1d4ed8;
    --ok: #16a34a;
    --shadow: none;
    --radius: 16px
}

.iwe * {
    box-sizing: border-box
}

.iwe {
    --text: #004151;
    --body-text: #1f252c;
    --muted: #6f7378;
    --line: #e0dfde;
    --card: #fff;
    --soft: #f3f4f4;
    --accent: #005065;
    --accent2: #004151;
    --accent-dark: #004151;
    --accent-mid: #086d84;
    --accent-soft: #e9f6f8;
    --warm-soft: #faf8df;
    --shadow: none;
    --radius: 18px;
    color: var(--body-text)
}

.iwe .grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 16px;
    align-items: start
}

.iwe-v2 .grid {
    display: block
}

@media (max-width:920px) {
    .iwe .grid {
        grid-template-columns: minmax(0, 1fr)
    }
}

.iwe .card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: none;
    padding: 16px;
    max-width: 100%
}

.iwe-v2 .card {
    border: 0;
    border-top: 0;
    border-radius: var(--radius);
    box-shadow: none;
    padding: 22px;
    background: var(--card)
}

.iwe .section-title {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
    color: var(--body-text)
}

.iwe .section-hint {
    font-weight: 400;
    font-size: 13px;
    color: var(--muted)
}

.iwe .iwe-form-head .section-title {
    margin: 0 0 4px;
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--accent-dark);
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.iwe .muted {
    color: var(--muted)
}

.iwe .hint {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 13px
}

.iwe .divider {
    height: 1px;
    background: var(--line);
    margin: 14px 0
}

.iwe-v2 .divider {
    margin: 16px 0;
    background: var(--line)
}

.iwe .field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px
}

.iwe-v2 .field:has(input[required])>label::after,
.iwe-v2 .field:has(select[required])>label::after,
.iwe-v2 .iwe-agree:has(input[required]) span::after {
    content: ' *';
    color: #dc2626;
    font-weight: 750
}

.iwe .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px
}

.iwe-v2 .form-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px
}

.iwe-v2 .form-row--contacts {
    grid-template-columns: 1fr 2fr
}

.iwe-v2 .field--wide {
    grid-column: 1 / -1
}

.iwe .iwe-result-help {
    grid-column: 1 / -1;
    max-width: 920px;
    margin: 0
}

.iwe .iwe-field-title {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 13px
}

.iwe .iwe-field-label-strong,
.iwe .iwe-field-title {
    color: var(--text);
    font-weight: 750
}

.iwe .iwe-check-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px 12px
}

.iwe .iwe-check-grid label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-size: 14px;
    margin: 0 !important
}

.iwe .iwe-check-grid input {
    width: 16px;
    min-width: 16px;
    height: 16px;
    padding: 0;
    accent-color: var(--accent)
}

.iwe .iwe-city-picker {
    position: relative
}

.iwe .iwe-city-picker input[type="text"] {
    padding-right: 38px
}

.iwe .iwe-city-clear {
    position: absolute;
    top: 50%;
    right: 8px;
    width: 26px;
    height: 26px;
    min-height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    font-size: 22px;
    line-height: 24px;
    cursor: pointer;
    transform: translateY(-50%)
}

.iwe .iwe-city-clear:hover {
    background: var(--soft);
    color: var(--text)
}

.iwe .iwe-city-results {
    display: none;
    position: absolute;
    z-index: 20;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    max-height: 240px;
    overflow: auto;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(0, 65, 81, 0.14)
}

.iwe .iwe-city-picker.is-open .iwe-city-results {
    display: grid;
    gap: 2px
}

.iwe .iwe-city-option {
    width: 100%;
    min-height: 34px;
    margin: 0;
    padding: 7px 9px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--text);
    font: inherit;
    font-size: 14px;
    text-align: left;
    cursor: pointer
}

.iwe .iwe-city-option:hover {
    background: var(--accent-soft)
}

@media (max-width: 680px) {
    .iwe .form-row {
        grid-template-columns: minmax(0, 1fr)
    }

    .iwe-v2 .form-row {
        grid-template-columns: minmax(0, 1fr)
    }

    .iwe .iwe-check-grid {
        grid-template-columns: minmax(0, 1fr)
    }
}

.iwe label {
    font-size: 13px;
    color: var(--muted)
}

.iwe input,
.iwe select,
.iwe textarea {
    width: 100%;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--text);
    font: inherit;
    font-size: 14px;
    outline: none
}

.iwe input:not([type="radio"]):not([type="checkbox"]):not([type="hidden"]),
.iwe select {
    height: 42px;
    line-height: 1.2
}

.iwe select {
    -webkit-appearance: none;
    appearance: none;
    padding-right: 38px;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23004151' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px
}

.iwe input:focus,
.iwe select:focus,
.iwe textarea:focus {
    border-color: rgba(37, 99, 235, .55);
    box-shadow: 0 0 0 3px rgba(150, 207, 217, 0.32)
}

.iwe input[type="radio"]:focus,
.iwe input[type="checkbox"]:focus {
    box-shadow: none !important;
    border-color: transparent !important;
}

.iwe input[type="radio"],
.iwe input[type="checkbox"] {
    -webkit-tap-highlight-color: transparent;
}

.iwe input[type="radio"]:focus,
.iwe input[type="checkbox"]:focus {
    box-shadow: none !important;
}

.iwe input::placeholder,
.iwe textarea::placeholder {
    color: #98A2B3
}

.iwe .iwe-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 10px
}

.iwe .iwe-choice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--soft);
    color: var(--text);
    cursor: pointer
}

.iwe .iwe-choice input {
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin-top: 2px;
    padding: 0
}

.iwe .iwe-choice span {
    display: grid;
    gap: 4px;
    min-width: 0
}

.iwe .iwe-choice strong {
    font-weight: 750
}

.iwe .iwe-choice small {
    color: var(--muted);
    line-height: 1.35
}

.iwe .iwe-choice--muted {
    color: var(--muted)
}

.iwe .iwe-group-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 42px;
    min-height: 42px;
    margin: 0 !important;
    padding: 8px 11px;
    border-radius: 999px;
    background: var(--accent-soft);
    border: 1px solid rgba(0, 80, 101, 0.14);
    color: var(--accent-dark);
    font-weight: 800;
    font-size: 14px;
    line-height: 1;
    letter-spacing: -0.01em;
    white-space: nowrap;
    box-sizing: border-box;
}

.iwe .iwe-group-title::before {
    content: '';
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 3v3M17 3v3M4.5 9h15M6.5 5h11A2.5 2.5 0 0 1 20 7.5v10A2.5 2.5 0 0 1 17.5 20h-11A2.5 2.5 0 0 1 4 17.5v-10A2.5 2.5 0 0 1 6.5 5Z' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 3v3M17 3v3M4.5 9h15M6.5 5h11A2.5 2.5 0 0 1 20 7.5v10A2.5 2.5 0 0 1 17.5 20h-11A2.5 2.5 0 0 1 4 17.5v-10A2.5 2.5 0 0 1 6.5 5Z' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat
}

.iwe .iwe-form-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px
}

.iwe .iwe-format-segment {
    display: inline-flex;
    gap: 4px;
    padding: 4px;
    border-radius: 999px;
    background: var(--soft)
}

.iwe .iwe-format-option {
    position: relative;
    margin: 0;
    color: var(--text);
    cursor: pointer
}

.iwe .iwe-format-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none
}

.iwe .iwe-format-option span {
    display: block;
    min-height: 36px;
    padding: 9px 18px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500
}

.iwe .iwe-format-option input:checked+span {
    background: var(--accent-dark);
    color: #fff;
    box-shadow: none
}

.iwe .iwe-self-swim-notice {
    margin-top: 14px;
    padding: 14px 16px;
    border-left: 3px solid var(--accent);
    border-radius: 12px;
    background: var(--accent-soft);
    color: var(--text);
    font-size: 14px;
    line-height: 1.55
}

.iwe .iwe-self-swim-notice[hidden] {
    display: none !important
}

.iwe .iwe-self-swim-notice p {
    margin: 0 0 8px
}

.iwe .iwe-self-swim-notice p:last-child {
    margin-bottom: 0
}

.iwe .iwe-distance-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent
}

.iwe .iwe-distance-row--offline {
    display: grid;
    gap: 14px
}

.iwe .iwe-distance-day {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px
}

.iwe .iwe-distance-options {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    gap: 10px
}

.iwe .iwe-distance {
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--text);
    cursor: pointer;
    min-height: 42px;
    height: 42px;
    margin: 0 !important;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
    box-sizing: border-box;
}

.iwe .iwe-distance:hover {
    border-color: rgba(0, 80, 101, 0.42)
}

.iwe .iwe-distance:has(input:checked) {
    border-color: var(--accent);
    background: var(--accent-soft);
    box-shadow: none
}

.iwe .iwe-distance input,
.iwe .iwe-distance-skip input {
    width: 16px;
    min-width: 16px;
    height: 16px;
    margin: 0;
    padding: 0;
    accent-color: var(--accent)
}

.iwe .iwe-distance span {
    min-width: 0
}

.iwe .distance-name {
    flex: 1 1 auto;
    font-weight: 650;
    font-size: 14px
}

.iwe .price {
    margin-left: auto;
    font-weight: 400;
    font-size: 15px;
    white-space: nowrap
}

.iwe .iwe-distance-skip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    height: 42px;
    margin: 0 !important;
    padding: 0 10px;
    color: var(--muted);
    cursor: pointer;
    white-space: nowrap;
    border: 1px solid transparent;
    border-radius: 12px;
    box-sizing: border-box;
    font-weight: 400;
}

.iwe .iwe-distance-skip:has(input:checked) {
    color: var(--text);
    font-weight: 400;
}

.iwe .price-note {
    margin-top: 8px;
    padding: 9px 12px;
    border-radius: 12px;
    background: var(--warm-soft);
    color: #5f5b22;
    font-size: 13px;
    line-height: 1.4;
    border-left: 3px solid #ebe88e
}

@media (max-width: 900px) {
    .iwe .iwe-distance-row {
        align-items: stretch;
    }

    .iwe .iwe-group-title {
        align-self: flex-start;
    }

    .iwe .iwe-distance-options {
        flex-direction: column;
        align-items: stretch;
    }

}

.iwe .opt--stack {
    display: block
}

.iwe .iwe-agree {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    color: var(--muted);
    line-height: 1.45;
    font-size: 13px
}

.iwe .iwe-agree input {
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin: 0;
    padding: 0
}

@media (max-width: 680px) {
    .iwe .iwe-choice-grid {
        grid-template-columns: minmax(0, 1fr)
    }
}

.iwe .opt-list {
    display: grid;
    gap: 18px;
    max-width: 760px;
    margin-top: 10px
}

.iwe .iwe-option-day-group {
    display: grid;
    gap: 8px
}

.iwe .iwe-option-day-title {
    margin: 0 0 2px;
    color: var(--accent-dark);
    font-size: 15px;
    font-weight: 750
}

.iwe .iwe-option-row {
    display: grid;
    grid-template-columns: minmax(200px, 1fr) auto minmax(120px, auto);
    gap: 8px 12px;
    align-items: center;
    min-height: 50px;
    padding: 0;
    border: 0
}

.iwe .iwe-option-quantity {
    display: grid;
    grid-template-columns: 34px 42px 34px;
    gap: 4px;
    align-items: center;
    height: 36px;
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent
}

.iwe .iwe-qty-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    min-height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    box-shadow: none;
    color: var(--accent-dark);
    font: inherit;
    font-size: 20px;
    line-height: 34px;
    cursor: pointer
}

.iwe .iwe-qty-button:hover:not(:disabled) {
    background: var(--accent-soft)
}

.iwe .iwe-qty-button:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 0
}

.iwe .iwe-qty-button:disabled {
    color: var(--line);
    cursor: default
}

.iwe input.iwe-option-qty-input {
    width: 42px;
    height: 34px;
    min-height: 0;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--text);
    font-weight: 750;
    text-align: center;
    appearance: textfield
}

.iwe input.iwe-option-qty-input:focus {
    border-color: var(--accent);
    outline: 2px solid color-mix(in srgb, var(--accent) 18%, transparent);
    outline-offset: 1px
}

.iwe input.iwe-option-qty-input::-webkit-inner-spin-button,
.iwe input.iwe-option-qty-input::-webkit-outer-spin-button {
    margin: 0;
    appearance: none
}

@media (max-width: 680px) {
    .iwe .iwe-option-row {
        grid-template-columns: minmax(0, 1fr) auto
    }

    .iwe .iwe-option-price {
        grid-column: 1 / -1
    }
}

.iwe .iwe-option-name {
    color: var(--text);
    font-weight: 650;
    font-size: 14px
}

.iwe .iwe-option-dates {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    align-items: center;
    justify-content: flex-end;
    min-height: 36px;
}

.iwe .iwe-option-row--dated:not(.has-visible-dates) .iwe-option-dates {
    visibility: hidden;
}

.iwe .iwe-option-dates label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--text);
    font-size: 14px;
    cursor: pointer;
    margin: 0 !important;
}

.iwe .iwe-option-dates label:has(input:checked) {
    border-color: transparent;
    background: transparent;
}

.iwe .iwe-option-dates input {
    width: 16px;
    height: 16px;
    padding: 0;
    accent-color: var(--accent)
}

.iwe .iwe-option-price {
    color: var(--text);
    font-weight: 750;
    font-size: 14px;
    white-space: nowrap
}

@media (max-width: 720px) {
    .iwe .iwe-option-row {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px
    }

    .iwe .iwe-option-price {
        grid-column: 1 / -1
    }
}

.iwe .opt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 12px;
    border: 1px solid var(--line);
    background: var(--soft);
    border-radius: 14px
}

.iwe .opt-name {
    font-weight: 650;
    margin: 0;
    overflow-wrap: anywhere
}

.iwe .opt-price {
    white-space: nowrap;
    font-weight: 800;
    letter-spacing: -.01em
}

.iwe .opt-left {
    min-width: 0
}

.iwe .check {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0
}

.iwe .check input {
    appearance: none;
    width: 22px;
    height: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    position: relative;
    cursor: pointer;
    transition: border-color .12s ease, background-color .12s ease, box-shadow .12s ease;
}

.iwe .check input:checked {
    border-color: var(--accent);
    background: var(--accent);
}

.iwe .check input:checked::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 3px;
    width: 6px;
    height: 10px;
    border: 2px solid #fff;
    border-top: 0;
    border-left: 0;
    transform: rotate(45deg);
}

.iwe .check input:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
}

@media (max-width: 680px) {
    .iwe .opt {
        flex-wrap: nowrap;
    }

    .iwe .check {
        width: auto;
        justify-content: flex-end;
    }
}

.iwe .summary {
    position: sticky;
    top: 14px;
    padding: 16px
}

@media (max-width:920px) {
    .iwe .summary {
        position: relative;
        top: auto
    }
}

.iwe .sum-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start
}

.iwe .sum-label {
    margin: 0;
    font-size: 14px;
    color: var(--muted)
}

.iwe .sum-value {
    margin: 0;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -.02em;
    white-space: nowrap
}

.iwe .iwe-total-inline {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin: 16px 0 0;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--soft)
}

.iwe .iwe-registration-details[hidden] {
    display: none !important
}

.iwe-v2.is-reveal-start .iwe-registration-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-8px)
}

.iwe-v2.is-revealing .iwe-registration-details {
    max-height: var(--iwe-details-height, 3200px);
    opacity: 1;
    overflow: hidden;
    transform: translateY(0);
    transition:
        max-height .56s cubic-bezier(.2, .8, .2, 1),
        opacity .34s ease .08s,
        transform .36s ease .04s
}

.iwe .iwe-start-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    opacity: 1;
    overflow: visible;
    transition:
        opacity .2s ease,
        transform .2s ease,
        border-color .2s ease
}

.iwe-v2:not(.has-distance-selection) .iwe-start-row {
    grid-template-columns: minmax(0, 1fr) auto
}

.iwe-v2:not(.has-distance-selection) .iwe-start-total {
    display: none
}

.iwe-v2:not(.has-distance-selection) .iwe-show-details {
    grid-column: 2
}

.iwe .iwe-show-details {
    grid-column: 3;
    grid-row: 1
}

.iwe .iwe-start-total {
    grid-column: 1;
    display: flex;
    align-items: baseline;
    gap: 10px;
    color: var(--muted)
}

.iwe .iwe-start-total strong {
    color: var(--text);
    font-size: 28px;
    font-weight: 850;
    letter-spacing: -0.02em;
    white-space: nowrap
}

.iwe-v2.is-opening .iwe-start-row {
    border-top-color: transparent;
    opacity: 0;
    transform: translateY(-4px);
    pointer-events: none
}

.iwe-v2.is-expanded .iwe-start-row {
    display: none
}

.iwe .iwe-checkout-area {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 8px 18px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.iwe .iwe-checkout-area .cta {
    grid-column: 2;
    grid-row: 1 / 3;
    margin: 0;
}

.iwe .iwe-checkout-total {
    display: flex;
    align-items: baseline;
    gap: 10px;
    color: var(--muted);
    grid-column: 1;
}

.iwe .iwe-checkout-total strong {
    color: var(--text);
    font-size: 26px;
    font-weight: 850;
    letter-spacing: -0.02em;
    white-space: nowrap
}

.iwe .iwe-total-details {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 14px;
    grid-column: 1;
}

.iwe .iwe-auto-discount-notice {
    grid-column: 1;
    width: fit-content;
    max-width: 100%;
    padding: 7px 10px;
    border: 1px solid rgba(16, 185, 129, .24);
    border-radius: 8px;
    background: rgba(16, 185, 129, .08);
    color: #047857;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.iwe .iwe-auto-discount-notice--top {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
}

.iwe #lineAutoDiscountNote {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

.iwe .iwe-promo-row {
    display: grid;
    grid-template-columns: minmax(220px, 340px) auto minmax(0, 1fr);
    gap: 10px;
    align-items: end;
    margin-top: 4px
}

.iwe .iwe-promo-row .field {
    margin-bottom: 0
}

.iwe .iwe-promo-apply {
    height: 42px;
    min-height: 42px;
    margin: 0;
    padding: 0 18px;
    border: 1px solid var(--accent);
    border-radius: 12px;
    background: #fff;
    color: var(--accent);
    font-weight: 750;
    cursor: pointer
}

.iwe .iwe-promo-apply:hover {
    background: var(--accent-soft)
}

.iwe .iwe-promo-row>span {
    height: 42px;
    display: flex;
    align-items: center;
    color: var(--muted);
    font-size: 13px;
    margin: 0;
}

@media (max-width: 680px) {
    .iwe .iwe-start-row {
        grid-template-columns: minmax(0, 1fr)
    }

    .iwe .iwe-start-row .cta {
        grid-column: 1;
        grid-row: auto;
        width: 100%;
        min-width: 0
    }

    .iwe .iwe-auto-discount-notice--top {
        grid-column: 1;
        grid-row: auto;
        white-space: normal;
    }

    .iwe .iwe-checkout-area {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 12px;
    }

    .iwe .iwe-checkout-area .cta {
        grid-column: 1;
        grid-row: 3;
        width: 100%;
        margin-top: 8px;
    }

    .iwe .iwe-promo-row {
        grid-template-columns: 1fr
    }
}

.iwe .iwe-total-inline span {
    color: var(--muted);
    font-size: 14px
}

.iwe .iwe-total-inline strong {
    color: var(--text);
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
    white-space: nowrap
}

.iwe .iwe-total-inline--bottom {
    margin-top: 18px
}

.iwe .iwe-total-details strong {
    color: var(--text)
}

@media (max-width: 520px) {
    .iwe .iwe-total-inline {
        display: block
    }

    .iwe .iwe-total-inline strong {
        display: block;
        margin-top: 6px
    }
}

.iwe .line-item {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed var(--line);
    font-size: 14px;
    color: var(--muted)
}

.iwe .line-item strong {
    color: var(--text);
    font-weight: 650
}

.iwe .line-item:last-child {
    border-bottom: 0
}

.iwe .cta {
    min-width: 280px;
    height: 50px;
    margin-top: 0;
    border: 0;
    border-radius: 26px;
    padding: 0 26px;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    color: #fff;
    background: var(--accent-dark);
    box-shadow: none;
    transition: transform .12s ease, background .12s ease
}

.iwe .cta:hover {
    transform: translateY(-1px);
    background: var(--accent-dark)
}

.iwe .cta:active {
    transform: translateY(0px)
}

@media (max-width: 680px) {
    .iwe .cta {
        width: 100%;
        min-width: 0
    }
}

.iwe .pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--soft);
    font-size: 13px;
    color: var(--muted);
    margin-top: 8px
}

.iwe .pill b {
    color: var(--text)
}

.iwe .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--ok)
}

/* Таблица */
.iwe .table-card {
    margin: 16px 0 16px 0;
}

.iwe .table-wrap {
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: 14px
}

.iwe table {
    width: 100%;
    border-collapse: collapse;
    min-width: 820px;
    background: #fff
}

.iwe th,
.iwe td {
    padding: 12px 12px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top
}

.iwe th {
    background: var(--soft);
    color: var(--muted);
    font-size: 13px;
    font-weight: 650;
    position: sticky;
    top: 0
}

.iwe td.num {
    white-space: nowrap;
    font-weight: 800
}

/* Мобильные карточки таблицы цен */
.iwe .price-cards {
    display: none;
    margin-top: 10px;
    gap: 10px;
}

.iwe .price-card {
    border: 1px solid var(--line);
    background: var(--soft);
    border-radius: 14px;
    padding: 12px;
}

.iwe .price-card-title {
    font-weight: 800;
    letter-spacing: -.01em;
    margin: 0 0 8px;
}

.iwe .kv {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px dashed var(--line);
    color: var(--muted);
    font-size: 14px;
}

.iwe .kv strong {
    color: var(--text);
    font-weight: 800;
    white-space: nowrap;
}

.iwe .kv:last-child {
    border-bottom: 0
}

@media (max-width: 680px) {
    .iwe .table-wrap {
        display: none;
    }

    .iwe .price-cards {
        display: grid;
    }
}

/* Скрыть стандартные хлебные крошки и цену WooCommerce */
.woocommerce .woocommerce-breadcrumb,
.woocommerce-breadcrumb {
    display: none !important;
}

.woocommerce div.product .summary .price {
    display: none !important;
}

/* Скрыть мета (артикул/категории) и похожие товары на странице товара */
.single-product .product_meta {
    display: none !important;
}

.single-product .related,
.single-product .upsells {
    display: none !important;
}

/* Скрыть строку поиска на странице товара (fallback для темы) */
.single-product form.search-form,
.single-product .search-form,
.single-product .site-header .search,
.single-product .header-search,
.single-product .widget_search,
.single-product input[type="search"] {
    display: none !important;
}

.iwe .invalid {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, .12) !important;
}

.iwe .iwe-form-errors {
    margin-top: 16px;
    padding: 12px 14px;
    border: 1px solid rgba(220, 38, 38, .35);
    border-radius: 12px;
    background: #fff1f2;
    color: #991b1b;
    font-size: 14px;
    line-height: 1.45
}

.iwe .iwe-form-errors[hidden] {
    display: none !important
}

.iwe .iwe-invalid-group {
    border-color: rgba(220, 38, 38, .65) !important
}

.iwe .iwe-distance-row.iwe-invalid-group {
    padding: 10px;
    margin: 8px -10px 0;
    border: 1px solid rgba(220, 38, 38, .35);
    border-radius: 12px;
    background: #fff7f7
}

.iwe .iwe-agree.iwe-invalid-group {
    padding: 8px 10px;
    border: 1px solid rgba(220, 38, 38, .35);
    border-radius: 10px;
    background: #fff7f7;
    color: #991b1b
}
