/* ============================================================
   EasyWash Brașov — Modern UI (brand: easywash.ro)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,500&display=swap');

:root {
    --ew-teal: #059eb7;
    --ew-teal-dark: #047a8f;
    --ew-cyan: #0EB0CC;
    --ew-cyan-dark: #0295B0;
    --ew-blue: #338bb0;
    --ew-purple: #7c6aad;
    --ew-yellow: #FFC941;
    --ew-yellow-dark: #e6b020;

    --ew-text: #0f172a;
    --ew-text-muted: #64748b;
    --ew-text-light: #94a3b8;
    --ew-bg: #f1f5f9;
    --ew-surface: #ffffff;
    --ew-border: #e2e8f0;
    --ew-border-soft: #f1f5f9;

    --ew-radius: 20px;
    --ew-radius-md: 14px;
    --ew-radius-sm: 10px;
    --ew-radius-pill: 999px;

    --ew-shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
    --ew-shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.06);
    --ew-shadow-md: 0 12px 40px rgba(5, 158, 183, 0.12);
    --ew-shadow-lg: 0 24px 60px rgba(5, 158, 183, 0.16);

    --ew-header-h: 72px;
    --ew-font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --ew-white: #ffffff;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.ew-body {
    font-family: var(--ew-font);
    color: var(--ew-text);
    background: var(--ew-bg);
    margin: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

/* ---- Header ---- */
.ew-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--ew-header-h);
    background: rgba(4, 122, 143, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 24px rgba(4, 74, 87, 0.18);
}

.ew-header-inner {
    max-width: 1180px;
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.ew-logo img {
    height: 44px;
    width: auto;
    display: block;
}

.ew-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ew-lang-switch {
    display: flex;
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--ew-radius-pill);
    padding: 3px;
    gap: 2px;
}

.ew-lang-btn {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    border-radius: var(--ew-radius-pill);
    transition: all 0.2s ease;
    letter-spacing: 0.03em;
}

.ew-lang-btn:hover {
    color: var(--ew-white);
}

.ew-lang-btn.active {
    background: rgba(255, 255, 255, 0.22);
    color: var(--ew-white);
    box-shadow: none;
}

.ew-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ew-nav a {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.88);
    border-radius: var(--ew-radius-sm);
    transition: color 0.2s, background 0.2s;
    text-transform: none;
    border: none;
    background: transparent;
}

.ew-nav a:hover {
    color: var(--ew-white);
    background: rgba(255, 255, 255, 0.1);
    transform: none;
    opacity: 1;
}

.ew-nav a.active {
    color: var(--ew-white);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: none;
}

.ew-nav a.nav-cta,
.ew-nav a.ew-nav-book {
    background: var(--ew-yellow);
    color: var(--ew-text);
    margin-left: 8px;
    border-radius: var(--ew-radius-pill);
    padding: 10px 20px;
    font-weight: 700;
}

.ew-nav a.nav-cta:hover,
.ew-nav a.ew-nav-book:hover {
    background: var(--ew-yellow-dark);
    color: var(--ew-text);
}

/* Legacy nav color classes — neutralize */
.ew-nav a.nav-concept,
.ew-nav a.nav-program,
.ew-nav a.nav-preturi,
.ew-nav a.nav-status,
.ew-nav a.nav-locatie {
    background: transparent;
    border-color: transparent;
    color: var(--ew-text-muted);
}

.ew-menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: var(--ew-white);
    width: 40px;
    height: 40px;
    border-radius: var(--ew-radius-sm);
    font-size: 18px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

/* ---- Buttons ---- */
.ew-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--ew-font);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    letter-spacing: 0;
    text-transform: none;
    border-radius: var(--ew-radius-pill);
}

.ew-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--ew-shadow-md);
}

.ew-btn-yellow {
    background: var(--ew-yellow);
    color: var(--ew-text);
}

.ew-btn-yellow:hover {
    background: var(--ew-yellow-dark);
}

.ew-btn-white {
    background: rgba(255, 255, 255, 0.12);
    color: var(--ew-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
}

.ew-btn-white:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.8);
}

.ew-btn-teal {
    background: var(--ew-teal);
    color: var(--ew-white);
}

.ew-btn-teal:hover {
    background: var(--ew-teal-dark);
}

.ew-btn-outline {
    background: var(--ew-surface);
    color: var(--ew-teal);
    border: 2px solid var(--ew-border);
    box-shadow: var(--ew-shadow-xs);
}

.ew-btn-outline:hover {
    border-color: var(--ew-teal);
    background: rgba(5, 158, 183, 0.04);
}

.ew-btn-purple {
    background: var(--ew-purple);
    color: var(--ew-white);
}

/* ---- Hero ---- */
.ew-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--ew-header-h) + 48px) 24px 120px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 255, 255, 0.18) 0%, transparent 60%),
        linear-gradient(160deg, var(--ew-cyan) 0%, var(--ew-teal) 50%, var(--ew-teal-dark) 100%);
}

.ew-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    top: -200px;
    right: -150px;
    pointer-events: none;
}

.ew-hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 201, 65, 0.08);
    bottom: 80px;
    left: -100px;
    pointer-events: none;
}

.ew-hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 140px;
    pointer-events: none;
}

.ew-hero-waves svg {
    width: 100%;
    height: 100%;
}

.ew-hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.ew-hero-logo {
    max-width: 260px;
    width: 72%;
    margin: 0 auto 28px;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15));
}

.ew-hero-tagline {
    color: var(--ew-white);
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 500;
    font-style: italic;
    margin: 0 0 20px;
    opacity: 0.95;
    text-shadow: none;
}

.ew-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--ew-white);
    font-weight: 600;
    font-size: 13px;
    padding: 10px 20px;
    margin-bottom: 32px;
    border-radius: var(--ew-radius-pill);
    letter-spacing: 0.02em;
    backdrop-filter: blur(8px);
}

.ew-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.ew-dive {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.ew-dive a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
    text-shadow: none;
    animation: ew-bounce 2.5s ease-in-out infinite;
}

.ew-dive a:hover { color: var(--ew-white); }
.ew-dive a i { font-size: 22px; }

@keyframes ew-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ---- Sections ---- */
.ew-section {
    padding: 88px 24px;
}

.ew-section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.ew-section-inner-narrow {
    max-width: 640px;
}

.ew-form-card-single {
    max-width: 640px;
    margin: 0 auto;
}

.ew-section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 48px;
}

.ew-section-header .ew-lead {
    margin: 16px auto 0;
}

.ew-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ew-teal);
    margin-bottom: 12px;
}

.ew-section-teal .ew-eyebrow { color: rgba(255, 255, 255, 0.75); }

.ew-title-box {
    display: block;
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
    padding: 0;
    border: none;
    text-shadow: none;
    text-transform: none;
    color: inherit;
}

.ew-lead {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: inherit;
    opacity: 0.9;
    max-width: 560px;
    text-shadow: none;
    margin: 0;
}

.ew-section-teal {
    background: var(--ew-teal);
    color: var(--ew-white);
}

.ew-section-teal .ew-lead { opacity: 0.88; }

.ew-section-white {
    background: var(--ew-surface);
}

.ew-section-white .ew-title-box { color: var(--ew-text); }
.ew-section-white .ew-lead { color: var(--ew-text-muted); }

.ew-section-light {
    background: var(--ew-bg);
    color: var(--ew-text);
}

.ew-section-light .ew-lead { color: var(--ew-text-muted); }

.ew-highlight-text {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 800;
    color: var(--ew-yellow);
    margin: 28px 0 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.ew-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* ---- Steps ---- */
.ew-section-steps {
    padding: 88px 24px;
    background: var(--ew-bg);
}

.ew-section-steps .ew-title-box {
    color: var(--ew-text);
}

.ew-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 0;
}

.ew-step {
    background: var(--ew-surface);
    border-radius: var(--ew-radius);
    padding: 36px 28px;
    text-align: left;
    color: var(--ew-text);
    box-shadow: var(--ew-shadow-sm);
    border: 1px solid var(--ew-border);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.ew-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ew-teal), var(--ew-cyan));
}

.ew-step:nth-child(2)::before {
    background: linear-gradient(90deg, var(--ew-blue), var(--ew-cyan));
}

.ew-step:nth-child(3)::before {
    background: linear-gradient(90deg, var(--ew-purple), var(--ew-blue));
}

.ew-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--ew-shadow-md);
}

.ew-step-num {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    color: var(--ew-teal);
    opacity: 0.2;
    margin-bottom: 16px;
}

.ew-step h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--ew-text);
    text-shadow: none;
    text-transform: none;
}

.ew-step p {
    font-size: 0.9375rem;
    margin: 0;
    color: var(--ew-text-muted);
    line-height: 1.65;
    text-shadow: none;
    opacity: 1;
}

/* ---- Form ---- */
.ew-section-form {
    background: var(--ew-surface);
    padding: 88px 24px;
    border-top: 1px solid var(--ew-border);
}

.ew-form-header {
    text-align: center;
    margin-bottom: 48px;
}

.ew-form-header .ew-title-box { color: var(--ew-text); }
.ew-form-header .ew-lead { color: var(--ew-text-muted); margin: 0 auto; }

.ew-form-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    align-items: start;
    max-width: 1040px;
    margin: 0 auto;
}

.ew-form-card {
    background: var(--ew-surface);
    border-radius: var(--ew-radius);
    padding: 36px;
    box-shadow: var(--ew-shadow-sm);
    border: 1px solid var(--ew-border);
}

.ew-form-block {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--ew-border-soft);
}

.ew-form-block:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.ew-form-block-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.ew-step-badge {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--ew-teal), var(--ew-cyan));
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    flex-shrink: 0;
}

.ew-form-block-head h3 {
    margin: 0;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--ew-text);
    text-transform: none;
    letter-spacing: 0;
}

.ew-field { margin-bottom: 18px; }
.ew-field-last { margin-bottom: 0; }

.ew-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ew-text-muted);
    margin-bottom: 8px;
}

.ew-field label span { color: var(--ew-teal); }

.ew-field-hint {
    font-size: 12px;
    color: var(--ew-text-light);
    margin: 8px 0 0;
}

.ew-field input,
.ew-field select,
.ew-field textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--ew-border);
    border-radius: var(--ew-radius-sm);
    font-size: 15px;
    font-family: var(--ew-font);
    background: var(--ew-bg);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    color: var(--ew-text);
}

.ew-field textarea {
    resize: vertical;
    min-height: 110px;
}

.ew-field input:focus,
.ew-field select:focus,
.ew-field textarea:focus {
    outline: none;
    border-color: var(--ew-teal);
    background: var(--ew-surface);
    box-shadow: 0 0 0 4px rgba(5, 158, 183, 0.1);
}

/* Packages */
.ew-packages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ew-package-option { position: relative; }

.ew-package-featured .ew-package-popular {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ew-yellow);
    color: var(--ew-text);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: var(--ew-radius-pill);
    z-index: 2;
    letter-spacing: 0.06em;
}

.weight-card input:checked + .ew-package-label {
    border-color: var(--ew-teal);
    background: linear-gradient(180deg, #f0fdfa 0%, #ecfeff 100%);
    box-shadow: 0 0 0 3px rgba(5, 158, 183, 0.12);
}

.weight-card input:checked + .ew-package-label .ew-package-check {
    opacity: 1;
    transform: scale(1);
}

.ew-package-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    border: 2px solid var(--ew-border);
    border-radius: var(--ew-radius-md);
    padding: 28px 16px 22px;
    text-align: center;
    transition: all 0.2s ease;
    position: relative;
    background: var(--ew-surface);
    height: 100%;
}

.ew-package-label:hover {
    border-color: var(--ew-cyan);
    transform: translateY(-2px);
    box-shadow: var(--ew-shadow-sm);
}

.ew-package-check {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 28px;
    height: 28px;
    background: var(--ew-teal);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    opacity: 0;
    transform: scale(0.6);
    transition: all 0.2s;
}

.ew-package-icon {
    width: 52px;
    height: 52px;
    background: rgba(5, 158, 183, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ew-teal);
    font-size: 22px;
    margin-bottom: 14px;
}

.ew-package-kg {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--ew-text);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.ew-package-desc {
    font-size: 13px;
    color: var(--ew-text-muted);
    margin: 6px 0 14px;
}

.ew-package-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ew-teal);
    line-height: 1;
    letter-spacing: -0.02em;
}

.ew-package-price small {
    font-size: 15px;
    font-weight: 600;
    color: var(--ew-text-light);
}

/* Quantity selector (number of machines / loads) */
.ew-qty-select {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 18px;
    padding: 16px 20px;
    background: rgba(5, 158, 183, 0.06);
    border: 1.5px solid rgba(5, 158, 183, 0.25);
    border-radius: var(--ew-radius-md);
    flex-wrap: wrap;
}

.ew-qty-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 200px;
}

.ew-qty-label {
    font-weight: 700;
    font-size: 14px;
    color: var(--ew-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ew-qty-label i { color: var(--ew-teal); }

.ew-qty-hint {
    font-size: 12px;
    color: var(--ew-text-muted);
    line-height: 1.5;
}

.ew-stepper {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--ew-surface);
    border: 1.5px solid var(--ew-border);
    border-radius: var(--ew-radius-pill);
    overflow: hidden;
    flex-shrink: 0;
}

.ew-stepper-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: var(--ew-teal);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.ew-stepper-btn:hover { background: rgba(5, 158, 183, 0.08); }

.ew-stepper-btn:disabled {
    color: var(--ew-text-light);
    cursor: not-allowed;
    background: transparent;
}

.ew-stepper input {
    width: 48px;
    text-align: center;
    border: none;
    border-left: 1.5px solid var(--ew-border);
    border-right: 1.5px solid var(--ew-border);
    font-size: 16px;
    font-weight: 700;
    color: var(--ew-text);
    background: transparent;
    padding: 0;
    height: 40px;
    -moz-appearance: textfield;
}

.ew-stepper input::-webkit-outer-spin-button,
.ew-stepper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Mixed machines builder */
.ew-masini-builder {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ew-masini-qty-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.ew-masini-qty-row {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px 16px;
    background: var(--ew-bg);
    border: 1.5px solid var(--ew-border);
    border-radius: var(--ew-radius-md);
}

.ew-masini-qty-row.ew-masini-qty-featured {
    border-color: rgba(5, 158, 183, 0.35);
    background: rgba(5, 158, 183, 0.04);
}

.ew-masini-qty-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ew-masini-qty-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(5, 158, 183, 0.1);
    color: var(--ew-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.ew-masini-qty-kg {
    display: block;
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--ew-text);
    line-height: 1.2;
}

.ew-masini-qty-desc {
    display: block;
    font-size: 0.8125rem;
    color: var(--ew-text-muted);
}

.ew-masini-qty-price {
    margin-left: auto;
    font-size: 1rem;
    font-weight: 800;
    color: var(--ew-teal);
    white-space: nowrap;
}

.ew-masini-total-hint {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ew-text-muted);
    text-align: center;
}

.ew-masini-total-hint.ew-masini-total-error {
    color: #b91c1c;
}

.ew-masini-dry-section {
    padding: 18px;
    background: var(--ew-bg);
    border: 1px solid var(--ew-border);
    border-radius: var(--ew-radius-md);
}

.ew-masini-dry-title {
    margin: 0 0 6px;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--ew-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ew-masini-dry-hint {
    margin: 0 0 14px;
    font-size: 0.8125rem;
    color: var(--ew-text-muted);
    line-height: 1.5;
}

.ew-masini-dry-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ew-masini-dry-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    background: var(--ew-surface);
    border: 1.5px solid var(--ew-border);
    border-radius: var(--ew-radius-md);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.ew-masini-dry-row:hover {
    border-color: rgba(255, 201, 65, 0.45);
}

.ew-masini-dry-row.is-on {
    border-color: rgba(5, 158, 183, 0.4);
    background: rgba(5, 158, 183, 0.04);
}

.ew-masini-dry-row input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ew-masini-dry-check {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    border: 2px solid var(--ew-border);
    border-radius: 7px;
    background: var(--ew-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    font-size: 12px;
    transition: all 0.2s ease;
}

.ew-masini-dry-row.is-on .ew-masini-dry-check {
    background: var(--ew-teal);
    border-color: var(--ew-teal);
    color: #fff;
}

.ew-masini-dry-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.ew-masini-dry-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ew-text);
}

.ew-masini-dry-sub {
    font-size: 0.75rem;
    color: var(--ew-text-muted);
}

.ew-masini-item-type {
    margin-top: 4px;
}

.ew-summary-masini-lines {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ew-summary-masini-lines li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--ew-border);
    font-size: 0.875rem;
}

.ew-summary-masini-lines li:last-child {
    border-bottom: none;
}

#sum-masini-lines-wrap {
    padding: 0;
    border-bottom: none;
}

/* Dryer optional toggle */
.ew-dryer-select {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 18px;
    padding: 16px 20px;
    background: rgba(255, 201, 65, 0.08);
    border: 1.5px solid rgba(255, 201, 65, 0.35);
    border-radius: var(--ew-radius-md);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.ew-dryer-select:hover {
    background: rgba(255, 201, 65, 0.14);
}

.ew-dryer-checkbox {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    border: 2px solid var(--ew-border);
    border-radius: 8px;
    background: var(--ew-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    font-size: 13px;
    transition: all 0.2s ease;
}

.ew-dryer-select input:checked + .ew-dryer-checkbox {
    background: var(--ew-teal);
    border-color: var(--ew-teal);
    color: #fff;
}

.ew-dryer-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 160px;
}

.ew-dryer-label {
    font-weight: 700;
    font-size: 14px;
    color: var(--ew-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ew-dryer-label i {
    color: var(--ew-yellow-dark);
}

.ew-dryer-hint {
    font-size: 12px;
    color: var(--ew-text-muted);
    line-height: 1.5;
}

.ew-dryer-price {
    font-weight: 800;
    font-size: 16px;
    color: var(--ew-teal);
    flex-shrink: 0;
}

.ew-dryer-price small {
    font-size: 12px;
    font-weight: 600;
    color: var(--ew-text-light);
}

/* Summary breakdown */
.ew-summary-breakdown {
    list-style: none;
    margin: 0;
    padding: 14px 22px;
    background: var(--ew-bg);
    border-bottom: 1px solid var(--ew-border);
}

.ew-summary-breakdown li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 5px 0;
    font-size: 12.5px;
    color: var(--ew-text-muted);
    transition: opacity 0.2s;
}

.ew-summary-breakdown li span:last-child {
    font-weight: 600;
    color: var(--ew-text);
}

.ew-summary-breakdown li.ew-breakdown-off {
    opacity: 0.4;
    text-decoration: line-through;
}

/* Pricing extra info */
.ew-pricing-extra {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 680px;
    margin: 32px auto 0;
}

.ew-pricing-extra-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--ew-bg);
    border: 1px solid var(--ew-border);
    border-radius: var(--ew-radius-md);
    padding: 20px;
}

.ew-pricing-extra-item i {
    font-size: 22px;
    color: var(--ew-teal);
    margin-top: 2px;
    flex-shrink: 0;
}

.ew-pricing-extra-item strong {
    color: var(--ew-text);
    font-size: 14px;
}

.ew-pricing-extra-item p {
    margin: 6px 0 0;
    font-size: 13px;
    color: var(--ew-text-muted);
    line-height: 1.5;
}

/* Schedule */
.ew-schedule-box {
    border-radius: var(--ew-radius-md);
    padding: 20px;
}

.ew-dropoff-box {
    background: rgba(5, 158, 183, 0.05);
    border: 1.5px solid rgba(5, 158, 183, 0.15);
}

.ew-pickup-box {
    background: rgba(124, 106, 173, 0.05);
    border: 1.5px solid rgba(124, 106, 173, 0.15);
}

.ew-box-label {
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.ew-dropoff-box .ew-box-label { color: var(--ew-teal); }
.ew-pickup-box .ew-box-label { color: var(--ew-purple); }

.ew-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: var(--ew-radius-sm);
    padding: 16px 18px;
    font-size: 14px;
    color: #92400e;
    margin-top: 24px;
    line-height: 1.5;
}

.ew-notice i {
    color: var(--ew-yellow-dark);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.ew-btn-submit {
    width: 100%;
    margin-top: 24px;
    font-size: 16px;
    padding: 18px 28px;
}

/* Order summary */
.ew-order-summary {
    position: sticky;
    top: calc(var(--ew-header-h) + 20px);
    background: var(--ew-surface);
    border-radius: var(--ew-radius);
    border: 1px solid var(--ew-border);
    box-shadow: var(--ew-shadow-md);
    overflow: hidden;
}

.ew-summary-header {
    background: linear-gradient(135deg, var(--ew-teal), var(--ew-teal-dark));
    color: #fff;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ew-summary-header h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
}

.ew-summary-price-box {
    background: var(--ew-bg);
    padding: 28px 22px;
    text-align: center;
    border-bottom: 1px solid var(--ew-border);
}

.ew-summary-price-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ew-text-muted);
    font-weight: 700;
}

.ew-summary-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--ew-teal);
    line-height: 1.1;
    margin: 6px 0;
    letter-spacing: -0.03em;
}

.ew-summary-price small {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--ew-text-light);
}

.ew-summary-package {
    display: inline-block;
    background: rgba(5, 158, 183, 0.1);
    color: var(--ew-teal);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--ew-radius-pill);
}

.ew-summary-list {
    list-style: none;
    margin: 0;
    padding: 8px 22px 16px;
}

.ew-summary-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 13px;
    border-bottom: 1px solid var(--ew-border-soft);
}

.ew-summary-list li:last-child { border-bottom: none; }

.ew-summary-divider {
    border-bottom: 1px dashed var(--ew-border) !important;
    padding: 4px 0 !important;
    margin: 4px 0;
}

.ew-summary-key {
    color: var(--ew-text-muted);
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ew-summary-key i {
    color: var(--ew-teal);
    width: 16px;
    text-align: center;
    font-size: 13px;
}

.ew-summary-val {
    color: var(--ew-text);
    font-weight: 600;
    text-align: right;
    word-break: break-word;
}

.ew-summary-val.filled { color: var(--ew-teal); }

.ew-summary-includes {
    padding: 14px 22px;
    background: var(--ew-bg);
    border-top: 1px solid var(--ew-border-soft);
}

.ew-summary-includes p {
    margin: 8px 0;
    font-size: 13px;
    color: var(--ew-text-muted);
}

.ew-summary-includes i {
    color: var(--ew-teal);
    margin-right: 8px;
}

.ew-summary-pay {
    background: var(--ew-yellow);
    color: var(--ew-text);
    text-align: center;
    padding: 16px;
    font-size: 13px;
    font-weight: 700;
}

.ew-summary-pay i { margin-right: 8px; }

/* ---- Pricing ---- */
.ew-pricing {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 680px;
    margin: 0 auto;
}

.ew-price-card {
    background: var(--ew-surface);
    border: 1px solid var(--ew-border);
    border-radius: var(--ew-radius);
    padding: 40px 28px;
    text-align: center;
    box-shadow: var(--ew-shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}

.ew-price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ew-shadow-md);
}

.ew-price-card.featured {
    border-color: var(--ew-teal);
    box-shadow: var(--ew-shadow-md);
}

.ew-price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ew-yellow);
    color: var(--ew-text);
    font-size: 11px;
    font-weight: 800;
    padding: 5px 16px;
    border-radius: var(--ew-radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ew-price-card .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--ew-teal);
    line-height: 1;
    letter-spacing: -0.03em;
}

.ew-price-card .unit {
    font-size: 15px;
    color: var(--ew-text-muted);
    margin-top: 6px;
    font-weight: 500;
}

.ew-price-features {
    list-style: none;
    padding: 24px 0 0;
    margin: 0;
    text-align: left;
}

.ew-price-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--ew-text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ew-price-features i {
    color: var(--ew-teal);
    font-size: 14px;
    width: 18px;
}

/* ---- Google section ---- */
.ew-section-google {
    background: var(--ew-bg);
    padding: 88px 24px;
    border-top: 1px solid var(--ew-border);
}

.ew-google-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.ew-google-info .ew-title-box { color: var(--ew-text); }
.ew-google-info .ew-lead { color: var(--ew-text-muted); margin: 16px 0 28px; }

.ew-google-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.ew-google-review-card {
    background: var(--ew-surface);
    border: 1px solid var(--ew-border);
    border-radius: var(--ew-radius);
    padding: 28px;
    box-shadow: var(--ew-shadow-sm);
}

.ew-google-stars {
    color: var(--ew-yellow);
    font-size: 18px;
    margin-bottom: 12px;
}

.ew-google-stars span {
    color: var(--ew-text-muted);
    font-size: 12px;
    margin-left: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.ew-google-review-card h3 {
    color: var(--ew-text);
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 10px;
    text-transform: none;
}

.ew-google-review-card p {
    color: var(--ew-text-muted);
    font-size: 14px;
    margin: 0 0 20px;
    line-height: 1.6;
}

.ew-btn-review { width: 100%; }

.ew-google-map {
    border-radius: var(--ew-radius);
    overflow: hidden;
    min-height: 360px;
    background: var(--ew-border);
    box-shadow: var(--ew-shadow-md);
    border: 1px solid var(--ew-border);
}

.ew-google-map iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
    display: block;
}

.ew-google-map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(5, 158, 183, 0.08), rgba(14, 176, 204, 0.12));
}

.ew-google-map-fallback {
    text-align: center;
    padding: 40px 32px;
    color: var(--ew-text-muted);
}

.ew-google-map-fallback i {
    font-size: 48px;
    color: var(--ew-teal);
    margin-bottom: 16px;
    display: block;
}

.ew-google-map-fallback p {
    margin: 0 0 20px;
    font-size: 15px;
    color: var(--ew-text);
    font-weight: 600;
}

/* ---- Footer ---- */
.ew-footer {
    background: var(--ew-text);
    color: rgba(255, 255, 255, 0.85);
    padding: 56px 24px 32px;
    text-align: center;
}

.ew-footer img {
    height: 40px;
    margin-bottom: 20px;
    opacity: 1;
    filter: brightness(0) invert(1);
}

.ew-footer p {
    font-size: 14px;
    margin: 8px 0;
    text-shadow: none;
    line-height: 1.6;
}

.ew-footer a {
    color: var(--ew-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}

.ew-footer a:hover { opacity: 0.85; }

.ew-footer-copy {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
    opacity: 0.55;
}

.ew-footer-links {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
}

/* ---- Inner pages ---- */
.ew-page-hero {
    background: linear-gradient(160deg, var(--ew-teal) 0%, var(--ew-teal-dark) 100%);
    padding: calc(var(--ew-header-h) + 48px) 24px 64px;
    text-align: center;
    color: var(--ew-white);
}

.ew-page-hero h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.02em;
    text-shadow: none;
    text-transform: none;
}

.ew-page-hero p {
    margin-top: 12px;
    opacity: 0.88;
    font-size: 1rem;
}

.ew-page-hero-cont {
    padding-bottom: 72px;
}

.ew-page-hero-cont p {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.ew-cont-hero-cta {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ew-cont-page {
    max-width: 920px;
    margin: -40px auto 72px;
    padding: 0 24px;
}

.ew-cont-empty {
    background: var(--ew-surface);
    border: 1px solid var(--ew-border);
    border-radius: var(--ew-radius);
    padding: 56px 32px;
    text-align: center;
    box-shadow: var(--ew-shadow-lg);
}

.ew-cont-empty h2 {
    margin: 16px 0 8px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ew-text);
}

.ew-cont-empty p {
    color: var(--ew-text-muted);
    font-size: 0.9375rem;
    margin: 0 0 24px;
}

.ew-cont-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ew-page-hero-b2b {
    padding-bottom: 72px;
}

.ew-page-hero-b2b .ew-hero-badge {
    margin-bottom: 20px;
}

/* B2B partner portal */
.ew-b2b-bar {
    background: var(--ew-surface);
    border-bottom: 1px solid var(--ew-border);
    padding: 14px 24px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--ew-shadow-sm);
}

.ew-b2b-bar-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.ew-b2b-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.ew-b2b-nav a {
    font-size: 14px;
    font-weight: 600;
    color: var(--ew-text-muted);
    padding: 8px 14px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.ew-b2b-nav a:hover,
.ew-b2b-nav a.active {
    background: rgba(5, 158, 183, 0.12);
    color: var(--ew-teal-dark);
}

.ew-b2b-company {
    font-size: 13px;
    color: var(--ew-text-muted);
    padding: 6px 12px;
    background: var(--ew-bg);
    border: 1px solid var(--ew-border);
    border-radius: var(--ew-radius-pill);
}

.ew-b2b-company strong {
    color: var(--ew-text);
}

.ew-page-hero-b2b-portal {
    padding-top: 56px;
    padding-bottom: 72px;
}

.ew-b2b-orders-page {
    margin-top: -48px;
}

.ew-footer-b2b {
    margin-top: 0;
}

.ew-page-hero-b2b p {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

/* B2B audience grid */
.ew-audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 8px;
}

.ew-audience-card {
    background: var(--ew-surface);
    border: 1px solid var(--ew-border);
    border-radius: var(--ew-radius);
    padding: 28px 22px;
    text-align: left;
    box-shadow: var(--ew-shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ew-audience-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ew-shadow-md);
}

.ew-audience-icon {
    width: 52px;
    height: 52px;
    background: rgba(5, 158, 183, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ew-teal);
    font-size: 22px;
    margin-bottom: 16px;
}

.ew-audience-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--ew-text);
}

.ew-audience-card p {
    font-size: 0.875rem;
    color: var(--ew-text-muted);
    margin: 0;
    line-height: 1.6;
}

.ew-card {
    max-width: 440px;
    margin: -40px auto 64px;
    background: var(--ew-surface);
    border: 1px solid var(--ew-border);
    border-radius: var(--ew-radius);
    padding: 36px;
    box-shadow: var(--ew-shadow-lg);
}

.ew-card-wide {
    max-width: 880px;
    margin: 40px auto 64px;
    padding: 0 24px;
}

.ew-alert-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    padding: 14px 16px;
    font-size: 14px;
    margin-bottom: 20px;
    border-radius: var(--ew-radius-sm);
}

.ew-alert-success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #047857;
    padding: 14px 16px;
    font-size: 14px;
    margin-bottom: 20px;
    border-radius: var(--ew-radius-sm);
}

/* Orders */
.ew-order-card {
    background: var(--ew-surface);
    border: 1px solid var(--ew-border);
    border-radius: var(--ew-radius);
    overflow: hidden;
    box-shadow: var(--ew-shadow-lg);
}

.ew-order-header {
    background: linear-gradient(135deg, var(--ew-teal), var(--ew-teal-dark));
    color: var(--ew-white);
    padding: 22px 28px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.ew-order-header-main {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ew-order-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.75;
}

.ew-order-code {
    font-size: 1.375rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.2;
}

.ew-order-b2b-badge {
    display: inline-block;
    margin-top: 6px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--ew-radius-pill);
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.ew-order-status {
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ew-order-header .ew-badge-amber { background: #fef3c7; color: #92400e; border-color: transparent; }
.ew-order-header .ew-badge-blue { background: #dbeafe; color: #1e40af; border-color: transparent; }
.ew-order-header .ew-badge-emerald { background: #d1fae5; color: #065f46; border-color: transparent; }
.ew-order-header .ew-badge-red { background: #fee2e2; color: #991b1b; border-color: transparent; }
.ew-order-header .ew-badge-slate { background: rgba(255, 255, 255, 0.22); color: #fff; border-color: rgba(255, 255, 255, 0.35); }

.ew-order-body {
    padding: 28px;
}

.ew-order-top {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: start;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--ew-border);
}

.ew-order-qr-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 14px;
    background: var(--ew-bg);
    border: 1px solid var(--ew-border);
    border-radius: var(--ew-radius-md);
    min-width: 120px;
}

.ew-order-qr-block .ew-qr-hint {
    max-width: 110px;
    text-align: center;
    font-size: 11px;
    line-height: 1.45;
    margin: 0;
}

.ew-order-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 0;
}

.ew-order-timeline-step {
    text-align: center;
    padding: 14px 8px;
    border-radius: var(--ew-radius-md);
    background: var(--ew-bg);
    border: 1.5px solid var(--ew-border);
    opacity: 0.42;
    transition: opacity 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ew-order-timeline-step.is-done {
    opacity: 1;
    border-color: rgba(5, 158, 183, 0.28);
}

.ew-order-timeline-step.is-current {
    opacity: 1;
    border-color: var(--ew-teal);
    background: rgba(5, 158, 183, 0.06);
    box-shadow: 0 0 0 3px rgba(255, 201, 65, 0.35);
}

.ew-order-timeline-num {
    display: block;
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--ew-teal);
    line-height: 1;
    margin-bottom: 6px;
}

.ew-order-timeline-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--ew-text-muted);
    line-height: 1.3;
}

.ew-order-schedule {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 20px;
}

.ew-order-schedule .ew-schedule-box {
    padding: 18px 20px;
}

.ew-order-schedule .ew-schedule-box strong {
    display: block;
    font-size: 1rem;
    color: var(--ew-text);
    margin-bottom: 2px;
}

.ew-order-schedule .ew-schedule-box span {
    font-size: 0.875rem;
    color: var(--ew-text-muted);
}

.ew-order-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.ew-order-meta-item {
    background: var(--ew-bg);
    border: 1px solid var(--ew-border);
    border-radius: var(--ew-radius-md);
    padding: 14px 16px;
}

.ew-order-meta-key {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ew-text-muted);
    margin-bottom: 4px;
}

.ew-order-meta-val {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ew-text);
}

.ew-order-pricing {
    border: 1px solid var(--ew-border);
    border-radius: var(--ew-radius-md);
    overflow: hidden;
    margin-bottom: 16px;
}

.ew-order-breakdown {
    border-bottom: none;
    padding: 0;
    margin: 0;
    background: var(--ew-bg);
}

.ew-order-breakdown li {
    padding: 10px 18px;
    border-bottom: 1px solid var(--ew-border);
}

.ew-order-breakdown li:last-child {
    border-bottom: none;
}

.ew-order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: var(--ew-surface);
    border-top: 1px solid var(--ew-border);
}

.ew-order-total span {
    font-size: 13px;
    font-weight: 600;
    color: var(--ew-text-muted);
}

.ew-order-total strong {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ew-teal);
}

.ew-order-notice {
    margin-top: 0;
}

.ew-order-updated {
    text-align: right;
    font-size: 11px;
    color: var(--ew-text-light);
    margin: 14px 0 0;
}

.ew-qr-box-sm {
    width: 84px;
    height: 84px;
    flex-shrink: 0;
}

.ew-status-badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--ew-radius-pill);
}

.ew-badge-amber { background: #fef3c7; color: #92400e; }
.ew-badge-blue { background: #dbeafe; color: #1e40af; }
.ew-badge-emerald { background: #d1fae5; color: #065f46; }
.ew-badge-red { background: #fee2e2; color: #991b1b; }
.ew-badge-slate { background: rgba(255, 255, 255, 0.2); color: #fff; }
.ew-badge-b2b { background: rgba(5, 158, 183, 0.15); color: var(--ew-teal-dark); }

.ew-empty-icon {
    font-size: 48px;
    color: var(--ew-cyan);
    margin-bottom: 8px;
}

/* Modal */
.ew-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(4px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.ew-modal {
    background: var(--ew-surface);
    border: none;
    border-radius: var(--ew-radius);
    max-width: 440px;
    width: 100%;
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--ew-shadow-lg);
}

.ew-modal-icon {
    font-size: 52px;
    color: var(--ew-teal);
    margin-bottom: 8px;
}

.ew-modal-title {
    margin: 0 0 8px;
    color: var(--ew-text);
    font-size: 1.375rem;
    font-weight: 800;
    text-transform: none;
}

.ew-modal-msg {
    color: var(--ew-text-muted);
    font-size: 14px;
    margin: 0 0 8px;
}

.ew-modal-code {
    background: var(--ew-bg);
    border: 1px solid var(--ew-border);
    border-radius: var(--ew-radius-md);
    padding: 20px;
    margin: 20px 0;
}

.ew-modal-code .label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ew-text-muted);
    font-weight: 700;
}

.ew-modal-code .code {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--ew-teal);
    letter-spacing: 0.12em;
    margin-top: 6px;
}

.ew-modal-qr {
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.ew-qr-box {
    width: 160px;
    height: 160px;
    background: #fff;
    border: 1.5px solid var(--ew-border);
    border-radius: var(--ew-radius-md);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ew-qr-box svg {
    width: 100%;
    height: 100%;
    display: block;
}

.ew-qr-hint {
    margin: 0;
    font-size: 12.5px;
    color: var(--ew-text-muted);
    text-align: center;
    max-width: 260px;
}

.ew-modal-review {
    margin: 20px 0;
    padding: 20px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: var(--ew-radius-md);
}

.ew-modal-review p {
    margin: 0 0 14px;
    font-size: 14px;
    color: var(--ew-text-muted);
}

.ew-modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.ew-modal-actions .ew-btn { flex: 1; min-width: 140px; }

.ew-modal-actions .ew-btn-white {
    background: var(--ew-bg);
    color: var(--ew-teal);
    border: 1.5px solid var(--ew-border);
}

.ew-modal-actions .ew-btn-white:hover {
    border-color: var(--ew-teal);
    background: rgba(5, 158, 183, 0.04);
}

/* Utilities */
.hidden { display: none !important; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.animate-fade-up { animation: fadeUp 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards; }

.loader { animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .ew-form-layout { grid-template-columns: 1fr; }
    .ew-order-summary {
        order: -1;
        position: static !important;
    }
}

@media (max-width: 900px) {
    .ew-grid-2,
    .ew-google-grid { grid-template-columns: 1fr; gap: 32px; }
    .ew-steps { grid-template-columns: 1fr; }
    .ew-audience-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .ew-section { padding: 64px 20px; }
    .ew-section-form { padding: 64px 20px; }

    .ew-menu-toggle { display: flex; }

    .ew-header-right {
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .ew-nav {
        display: none;
        position: absolute;
        top: var(--ew-header-h);
        left: 0;
        right: 0;
        background: var(--ew-teal-dark);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        align-items: stretch;
        padding: 12px 16px 20px;
        gap: 4px;
        box-shadow: var(--ew-shadow-md);
    }

    .ew-nav.open { display: flex; }

    .ew-nav a {
        padding: 12px 16px;
        border-radius: var(--ew-radius-sm);
        color: rgba(255, 255, 255, 0.9);
    }

    .ew-nav a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--ew-white);
    }

    .ew-nav a.nav-cta,
    .ew-nav a.ew-nav-book {
        margin-left: 0;
        text-align: center;
        margin-top: 8px;
    }

    .ew-header-inner { position: relative; }

    .ew-packages,
    .ew-pricing,
    .ew-pricing-extra { grid-template-columns: 1fr; }

    .ew-dryer-select { flex-wrap: wrap; }

    .ew-masini-qty-grid { grid-template-columns: 1fr; }

    .ew-order-top { grid-template-columns: 1fr; }
    .ew-order-timeline { grid-template-columns: repeat(2, 1fr); }
    .ew-order-schedule { grid-template-columns: 1fr; }

    .ew-b2b-bar-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .ew-b2b-nav {
        justify-content: center;
    }

    .ew-b2b-company {
        text-align: center;
    }

    .ew-hero { padding-bottom: 100px; }
    .ew-hero-logo { max-width: 220px; }
}

@media (max-width: 600px) {
    .ew-grid-2 { grid-template-columns: 1fr; }
    .ew-form-card { padding: 24px 20px; }
    .ew-audience-grid { grid-template-columns: 1fr; }
}
