.smartcater-kitchen-carousel {
    position: relative;
}

.smartcater-kitchen-carousel::before,
.smartcater-kitchen-carousel::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 34px;
    pointer-events: none;
}

.smartcater-kitchen-carousel::before {
    left: 0;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0));
}

.smartcater-kitchen-carousel::after {
    right: 0;
    background: linear-gradient(270deg, #ffffff, rgba(255, 255, 255, 0));
}

.smartcater-kitchen-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 340px);
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 4px 18px;
    cursor: grab;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    user-select: none;
}

.smartcater-kitchen-grid::-webkit-scrollbar {
    display: none;
}

.smartcater-kitchen-grid.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.smartcater-carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 34px;
    height: 54px;
    border: 0;
    background: transparent;
    color: #22e6d3;
    font-size: 58px;
    line-height: 1;
    text-shadow: 0 8px 18px rgba(7, 27, 54, 0.18);
    cursor: pointer;
    transform: translateY(-50%);
    transition: transform 180ms ease, color 180ms ease, opacity 180ms ease;
}

.smartcater-carousel-arrow:hover {
    color: #16b8ff;
    opacity: 0.9;
    transform: translateY(-50%) scale(1.08);
}

.smartcater-carousel-prev {
    left: -28px;
}

.smartcater-carousel-next {
    right: -28px;
}

.smartcater-kitchen-card {
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(7, 27, 54, 0.12);
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
}

.smartcater-kitchen-image img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.smartcater-kitchen-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px;
}

.smartcater-kitchen-body h3 {
    margin: 0 0 8px;
}

.smartcater-kitchen-body p {
    margin-bottom: 16px;
}

.smartcater-kitchen-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: auto 0 16px;
}

.smartcater-kitchen-meta span {
    border-radius: 999px;
    background: rgba(34, 230, 211, 0.14);
    color: #071b36;
    padding: 6px 10px;
    font-size: 14px;
}

.smartcater-kitchen-body > .smartcater-button {
    align-self: flex-start;
    min-height: 38px;
    padding: 8px 14px;
    font-size: 14px;
}

.smartcater-button,
.smartcater-configurator button {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 0;
    border-radius: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #22e6d3, #16b8ff);
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.smartcater-button::after,
.smartcater-configurator button::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-120%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
    transition: transform 620ms ease;
}

.smartcater-button:hover,
.smartcater-configurator button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(22, 184, 255, 0.22);
}

.smartcater-configurator button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.smartcater-button:hover::after,
.smartcater-configurator button:hover::after {
    transform: translateX(120%);
}

.smartcater-button-secondary {
    border: 1px solid rgba(7, 27, 54, 0.18);
    background: #ffffff;
    color: #071b36;
}

.smartcater-button-accent {
    background: #ff3ebf;
}

html {
    scroll-behavior: smooth;
}

.smartcater-home {
    color: #071b36;
}

.smartcater-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 36px;
    align-items: center;
    padding: 72px 0 48px;
}

.smartcater-hero::after {
    content: "";
    position: absolute;
    right: 2%;
    top: 14%;
    width: min(38vw, 360px);
    height: min(38vw, 360px);
    pointer-events: none;
    opacity: 0.22;
    background:
        linear-gradient(135deg, transparent 0 44%, rgba(34, 230, 211, 0.72) 44% 46%, transparent 46%),
        linear-gradient(145deg, transparent 0 54%, rgba(40, 199, 255, 0.68) 54% 56%, transparent 56%),
        linear-gradient(155deg, transparent 0 64%, rgba(139, 92, 255, 0.44) 64% 66%, transparent 66%);
    transform: translate3d(0, 0, 0);
    animation: smartcater-lines 7s ease-in-out infinite;
}

.smartcater-eyebrow {
    margin: 0 0 10px;
    color: #16b8ff;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
}

.smartcater-hero h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(42px, 7vw, 72px);
    line-height: 1.02;
}

.smartcater-hero-copy {
    max-width: 680px;
    margin: 22px 0 0;
    font-size: 19px;
    line-height: 1.6;
}

.smartcater-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.smartcater-hero-panel,
.smartcater-price-panel {
    border-radius: 8px;
    background: #071b36;
    color: #ffffff;
    padding: 26px;
}

.smartcater-hero-panel {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 16px;
    box-shadow: 0 24px 54px rgba(7, 27, 54, 0.18);
    animation: smartcater-float 6s ease-in-out infinite;
}

.smartcater-hero-panel div {
    display: grid;
    gap: 3px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding-bottom: 14px;
}

.smartcater-hero-panel div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.smartcater-hero-panel strong,
.smartcater-price-panel strong {
    color: #22e6d3;
    font-size: 30px;
}

.smartcater-section {
    scroll-margin-top: 110px;
    padding: 54px 0;
}

.smartcater-home .smartcater-section,
.smartcater-home .smartcater-hero > div {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 700ms ease, transform 700ms ease;
}

.smartcater-home .smartcater-section.is-visible,
.smartcater-home .smartcater-hero > div.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.smartcater-section-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

.smartcater-section-heading p:not(.smartcater-eyebrow) {
    margin-top: 16px;
    color: rgba(7, 27, 54, 0.74);
    font-size: 17px;
    line-height: 1.72;
}

.smartcater-section-heading h2,
.smartcater-split h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.12;
}

.smartcater-solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.smartcater-solution-grid article {
    position: relative;
    border: 1px solid rgba(7, 27, 54, 0.12);
    border-radius: 8px;
    padding: 20px;
    background: #ffffff;
}

.smartcater-solution-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    border-radius: 8px;
    background: rgba(34, 230, 211, 0.16);
    color: #071b36;
}

.smartcater-solution-icon svg {
    width: 24px;
    height: 24px;
}

.smartcater-solution-grid h3 {
    margin: 0 0 8px;
}

.smartcater-offer-note {
    display: grid;
    gap: 8px;
    max-width: 820px;
    margin: -8px 0 28px;
    border: 1px solid rgba(34, 230, 211, 0.42);
    border-radius: 8px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(34, 230, 211, 0.12), rgba(40, 199, 255, 0.08));
    color: #071b36;
}

.smartcater-offer-note strong {
    font-size: 20px;
}

.smartcater-offer-note span {
    color: rgba(7, 27, 54, 0.72);
}

.smartcater-dark-band {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
    background: linear-gradient(135deg, #071b36, #000814);
    color: #ffffff;
}

.smartcater-dark-band .smartcater-eyebrow {
    color: #22e6d3;
}

.smartcater-dark-band h2,
.smartcater-dark-band h3 {
    color: #ffffff;
}

.smartcater-dark-band p {
    color: rgba(255, 255, 255, 0.78);
}

.smartcater-steps {
    position: relative;
    display: grid;
    gap: 18px;
    max-width: 920px;
}

.smartcater-steps div {
    position: relative;
    margin-left: 34px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    padding: 22px 24px 22px 72px;
    background: rgba(255, 255, 255, 0.035);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.smartcater-steps div:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 230, 211, 0.72);
    background: rgba(34, 230, 211, 0.07);
    box-shadow: 0 18px 42px rgba(34, 230, 211, 0.14);
}

.smartcater-steps::before {
    content: "";
    position: absolute;
    top: 28px;
    bottom: 28px;
    left: 34px;
    width: 2px;
    background: linear-gradient(180deg, #22e6d3, rgba(34, 230, 211, 0.12));
}

.smartcater-steps span {
    position: absolute;
    left: -18px;
    top: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #22e6d3;
    color: #071b36;
    font-weight: 800;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.smartcater-steps div:hover span {
    transform: scale(1.08);
    box-shadow: 0 0 0 8px rgba(34, 230, 211, 0.12);
}

.smartcater-steps h3 {
    margin: 0 0 10px;
    font-size: 23px;
    line-height: 1.2;
    transition: color 220ms ease;
}

.smartcater-steps div:hover h3 {
    color: #22e6d3;
}

.smartcater-steps p {
    margin: 0;
    line-height: 1.68;
}

.smartcater-manager-note {
    max-width: 860px;
    margin-top: 22px;
    border: 1px solid rgba(34, 230, 211, 0.36);
    border-radius: 8px;
    padding: 24px;
    background: rgba(34, 230, 211, 0.1);
}

.smartcater-manager-note h3 {
    margin: 0 0 10px;
    color: #22e6d3;
}

.smartcater-manager-note p {
    margin: 0;
    line-height: 1.7;
}

.smartcater-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 28px;
    align-items: center;
}

.smartcater-price-panel {
    display: grid;
    gap: 10px;
}

.smartcater-final-cta {
    position: relative;
    margin: 52px 0 88px;
    border-radius: 8px;
    overflow: hidden;
    padding: 54px 42px;
    background:
        linear-gradient(135deg, rgba(34, 230, 211, 0.18), rgba(40, 199, 255, 0.14)),
        #ffffff;
}

.smartcater-final-cta::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 360px;
    height: 360px;
    opacity: 0.34;
    pointer-events: none;
    background:
        linear-gradient(135deg, transparent 0 44%, rgba(255, 62, 191, 0.55) 44% 46%, transparent 46%),
        linear-gradient(145deg, transparent 0 54%, rgba(34, 230, 211, 0.7) 54% 56%, transparent 56%),
        linear-gradient(155deg, transparent 0 64%, rgba(139, 92, 255, 0.42) 64% 66%, transparent 66%);
    animation: smartcater-lines 8s ease-in-out infinite;
}

.smartcater-final-cta-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.smartcater-final-cta h2 {
    margin: 0;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.08;
}

.smartcater-final-cta p:not(.smartcater-eyebrow) {
    max-width: 780px;
    margin: 18px 0 28px;
    color: rgba(7, 27, 54, 0.74);
    font-size: 18px;
    line-height: 1.72;
}


#main-menu .menu-item:last-child > a,
#main-menu .menu-item:last-child > a span {
    color: #ff3ebf;
}

#main-menu .menu-item:last-child > a:hover,
#main-menu .menu-item:last-child > a:hover span {
    color: #8b5cff;
}

@media (max-width: 760px) {
    .smartcater-hero,
    .smartcater-split {
        grid-template-columns: 1fr;
    }

    .smartcater-hero::after {
        display: none;
    }

    .smartcater-steps div {
        margin-left: 24px;
        padding: 20px 18px 20px 56px;
    }

    .smartcater-steps::before {
        left: 24px;
    }

    .smartcater-steps span {
        left: -16px;
    }

    .smartcater-final-cta {
        padding: 34px 24px;
    }

}

@media (prefers-reduced-motion: reduce) {
    .smartcater-button,
    .smartcater-configurator button,
    .smartcater-home .smartcater-section,
    .smartcater-home .smartcater-hero > div,
    .smartcater-hero-panel,
    .smartcater-hero::after {
        animation: none;
        transition: none;
        transform: none;
    }
}

@keyframes smartcater-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes smartcater-lines {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(-18px, 12px, 0);
    }
}

.smartcater-configurator {
    max-width: 1080px;
    margin: 0 auto;
    border: 1px solid rgba(7, 27, 54, 0.12);
    border-radius: 8px;
    padding: 34px;
    background:
        linear-gradient(135deg, rgba(34, 230, 211, 0.09), rgba(40, 199, 255, 0.05)),
        #ffffff;
    color: #071b36;
    box-shadow: 0 24px 70px rgba(7, 27, 54, 0.08);
}

.smartcater-configurator-header {
    max-width: 780px;
}

.smartcater-configurator-header h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.05;
}

.smartcater-configurator-header p:not(.smartcater-eyebrow),
.smartcater-step-intro {
    color: rgba(7, 27, 54, 0.72);
    font-size: 17px;
    line-height: 1.7;
}

.smartcater-wizard-progress {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    margin: 34px 0 30px;
    padding-top: 8px;
}

.smartcater-wizard-progress::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    height: 2px;
    background: linear-gradient(90deg, rgba(34, 230, 211, 0.72), rgba(7, 27, 54, 0.12));
}

.smartcater-wizard-progress span {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: start;
    align-content: start;
    gap: 10px;
    min-height: 86px;
    color: rgba(7, 27, 54, 0.52);
    font-size: 12px;
    font-weight: 800;
    cursor: default;
    user-select: none;
}

.smartcater-wizard-progress em {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 2px solid rgba(7, 27, 54, 0.16);
    border-radius: 999px;
    background: #ffffff;
    color: rgba(7, 27, 54, 0.55);
    font-style: normal;
    line-height: 1;
    box-shadow: 0 0 0 6px rgba(238, 254, 253, 0.95);
}

.smartcater-wizard-progress strong {
    display: block;
    max-width: 190px;
    line-height: 1.35;
}

.smartcater-wizard-progress span.is-active {
    color: #22e6d3;
}

.smartcater-wizard-progress span.is-active em {
    border-color: #22e6d3;
    background: #071b36;
    color: #22e6d3;
    box-shadow: 0 0 0 6px rgba(34, 230, 211, 0.14), 0 12px 24px rgba(7, 27, 54, 0.18);
}

.smartcater-step {
    display: none;
}

.smartcater-step.is-active {
    display: block;
}

.smartcater-step-label {
    margin: 0 0 8px;
    color: #16b8ff;
    font-weight: 700;
}

.smartcater-step h2 {
    margin: 0 0 10px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
}

.smartcater-period-options,
.smartcater-option-grid {
    display: grid;
    gap: 14px;
    margin: 24px 0;
}

.smartcater-period-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.smartcater-option-grid {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.smartcater-period-options button {
    min-height: 116px;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    border: 1px solid rgba(7, 27, 54, 0.12);
    border-radius: 8px;
    padding: 18px 18px 16px;
    background: #ffffff;
    color: #071b36;
    text-align: left;
    box-shadow: none;
    transform: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, transform 180ms ease;
}

.smartcater-period-options button::after {
    display: none;
}

.smartcater-period-options button:hover {
    border-color: rgba(34, 230, 211, 0.58);
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(7, 27, 54, 0.08);
    transform: translateY(-1px);
}

.smartcater-period-options button strong {
    position: relative;
    z-index: 1;
    display: block;
    max-width: calc(100% - 30px);
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0;
}

.smartcater-period-options button span {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 94%;
    color: rgba(7, 27, 54, 0.66);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}

.smartcater-period-options button.is-selected {
    border-color: rgba(34, 230, 211, 0.78);
    background: #071b36;
    color: #ffffff;
    box-shadow: 0 16px 32px rgba(7, 27, 54, 0.16);
}

.smartcater-period-options button.is-selected span {
    color: rgba(255, 255, 255, 0.78);
}

.smartcater-period-panel {
    display: none;
    border: 1px solid rgba(7, 27, 54, 0.12);
    border-radius: 8px;
    padding: 24px;
    background: #ffffff;
}

.smartcater-period-panel.is-active {
    display: grid;
    gap: 16px;
    animation: smartcater-panel-in 220ms ease both;
}

.smartcater-period-panel h3 {
    margin: 0;
    font-size: 24px;
}

.smartcater-period-panel p {
    margin: 0;
    color: rgba(7, 27, 54, 0.68);
    line-height: 1.65;
}

.smartcater-form-grid,
.smartcater-date-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.smartcater-date-rows {
    grid-template-columns: 1fr;
}

.smartcater-date-row {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(180px, 0.48fr) minmax(140px, 0.34fr) 42px;
    gap: 14px;
    align-items: start;
    border-bottom: 1px solid rgba(7, 27, 54, 0.08);
    padding-bottom: 14px;
}

.smartcater-date-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.smartcater-configurator label {
    display: grid;
    gap: 8px;
    max-width: none;
    font-weight: 700;
    margin: 0;
    line-height: 1.25;
}

.smartcater-form-grid > label,
.smartcater-date-row > label,
.smartcater-delivery-rule > label {
    grid-template-rows: 22px auto;
    align-self: start;
}

.smartcater-configurator input,
.smartcater-configurator select,
.smartcater-configurator textarea {
    width: 100%;
    height: 48px;
    min-height: 48px;
    border: 1px solid rgba(7, 27, 54, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
    color: #071b36;
    background: #ffffff;
    line-height: 1.2;
}

.smartcater-configurator textarea {
    height: auto;
    min-height: 118px;
    resize: vertical;
}

.smartcater-weekday-picker {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 10px;
}

.smartcater-weekday-picker label {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(7, 27, 54, 0.12);
    border-radius: 8px;
    padding: 10px 12px;
    background: rgba(34, 230, 211, 0.06);
    font-size: 13px;
    line-height: 1.25;
}

.smartcater-weekday-picker input {
    width: auto;
    min-height: 0;
}

.smartcater-delivery-rules {
    display: grid;
    gap: 12px;
}

.smartcater-delivery-rule {
    display: grid;
    grid-template-columns: minmax(180px, 0.48fr) minmax(140px, 0.34fr) 42px;
    gap: 14px;
    align-items: start;
    border-bottom: 1px solid rgba(7, 27, 54, 0.08);
    padding-bottom: 12px;
}

.smartcater-delivery-rule:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.smartcater-inline-button {
    width: fit-content;
    min-height: 38px;
    padding: 8px 12px;
    background: rgba(34, 230, 211, 0.14);
    color: #071b36;
    box-shadow: none;
}

.smartcater-configurator .smartcater-remove-delivery {
    width: 38px;
    min-height: 38px;
    margin-top: 29px;
    border: 1px solid rgba(255, 62, 191, 0.28);
    background: rgba(255, 62, 191, 0.08);
    color: #ff3ebf;
    padding: 0;
    box-shadow: none;
}

.smartcater-configurator .smartcater-remove-delivery::after {
    display: none;
}

.smartcater-configurator .smartcater-remove-delivery:hover {
    background: rgba(255, 62, 191, 0.14);
    box-shadow: none;
}

.smartcater-remove-delivery svg {
    position: relative;
    z-index: 1;
    width: 18px;
    height: 18px;
}

.smartcater-step-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 22px;
}

.smartcater-configurator-error {
    margin-top: 18px;
    border: 1px solid rgba(255, 62, 191, 0.35);
    border-radius: 8px;
    padding: 12px 14px;
    background: rgba(255, 62, 191, 0.08);
    color: #071b36;
    font-weight: 700;
}

.smartcater-configurator-error a {
    color: #ff3ebf;
    text-decoration: underline;
}

.smartcater-note,
.smartcater-placeholder {
    color: rgba(7, 27, 54, 0.72);
}

.smartcater-placeholder {
    margin: 16px 0;
    border: 1px dashed rgba(7, 27, 54, 0.24);
    border-radius: 8px;
    padding: 18px;
    background: rgba(34, 230, 211, 0.06);
}

@keyframes smartcater-panel-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 760px) {
    .smartcater-configurator {
        padding: 22px;
    }

    .smartcater-wizard-progress {
        grid-template-columns: 1fr;
        gap: 14px;
        margin: 26px 0;
        padding-top: 0;
    }

    .smartcater-wizard-progress::before {
        top: 17px;
        bottom: 17px;
        left: 16px;
        right: auto;
        width: 2px;
        height: auto;
        background: linear-gradient(180deg, rgba(34, 230, 211, 0.72), rgba(7, 27, 54, 0.12));
    }

    .smartcater-wizard-progress span {
        grid-template-columns: 34px minmax(0, 1fr);
        align-items: center;
        justify-items: start;
        min-height: auto;
        gap: 12px;
    }

    .smartcater-wizard-progress strong {
        max-width: none;
    }

    .smartcater-period-options {
        grid-template-columns: 1fr;
    }

    .smartcater-date-row {
        grid-template-columns: 1fr;
    }

    .smartcater-delivery-rule {
        grid-template-columns: 1fr;
    }

    .smartcater-remove-delivery {
        margin-top: 0;
    }

    .smartcater-weekday-picker {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 761px) and (max-width: 1060px) {
    .smartcater-period-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .smartcater-weekday-picker {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
