
    /* ===========================================
       DESIGN TOKENS
    =========================================== */
    :root {
      --teal:   #2FA4D7;
      --mint:   #2FA4D7;
      --amber:  #FFB040;
      --yellow: #FFB040;
      --white:  #FFFFFF;
      --black:  #3E2C23;
      --off:    #F5E9D8;
      --gray:   #888888;
      --light:  #DEDEDE;
      --subtle: rgba(0, 0, 0, 0.03);
      --border: rgba(47,164,215,0.14);
      --r-sm: 8px;
      --r-md: 14px;
      --r-lg: 22px;
      --r-xl: 32px;
      --r-pill: 999px;
    }

    *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
    html { scroll-behavior:auto; overflow-x:hidden; }

    body {
      font-family:'Inter', sans-serif;
      background:var(--white);
      color:var(--black);
      overflow-x:hidden;
      -webkit-font-smoothing:antialiased;
    }

    h1, h2, h3, h4 { font-family:'Nunito', serif; }

    /* ===========================================
       NAVIGATION
    =========================================== */
    nav {
      position:fixed; top:0; left:0; right:0; z-index:1000;
      display:flex; align-items:center; justify-content:space-between;
      padding:0 52px; height:72px;
      background:var(--white);
      border-bottom:1px solid rgba(0,0,0,0.08);
    }

    .logo {
      font-family:'Nunito', serif; font-weight:700; font-size:22px;
      color:var(--black); letter-spacing:-0.5px; text-decoration:none;
      margin-right: 30px;
      display: inline-flex; align-items: center;
    }
    .logo span { color:var(--teal); }

    .nav-links { display:flex; gap:36px; list-style:none; }
    .nav-links a {
      font-size:14px; font-weight:400; color:var(--gray);
      text-decoration:none; transition:color .3s ease; letter-spacing:0.01em;
    }
    .nav-links a:hover { color:var(--black); }
    .nav-links a.active { color:var(--teal); font-weight:500; }
    .nav-links a::after { content:attr(data-text); display:block; font-weight:500; height:0; overflow:hidden; visibility:hidden; }

    .btn-nav {
      background:var(--yellow); color:var(--black);
      border:none; padding:10px 24px; border-radius:var(--r-pill);
      font-family:'Inter', sans-serif; font-weight:700; font-size:14px;
      cursor:pointer; transition:all .2s; letter-spacing:0.01em;
    }
    .btn-nav:hover { background:var(--amber); transform:translateY(-1px); }

    /* ===========================================
       HERO
    =========================================== */
    .hero {
      min-height:100vh; display:flex; align-items:center;
      padding:104px 52px 80px; position:relative; overflow:hidden;
    }

    .hero-noise {
      position:absolute; inset:0; pointer-events:none;
      background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
      background-size:200px 200px;
    }
    .hero-blobs {
      position:absolute; inset:0; pointer-events:none; overflow:hidden; z-index:0;
    }
    .hero-blob {
      position:absolute;
    }
    .hb1 { width:700px; height:700px; top:-180px; right:-80px; }
    .hb2 { width:500px; height:500px; bottom:-120px; right:150px; }
    .hb3 { width:320px; height:320px; top:40px; right:420px; }
    .hb4 { width:420px; height:420px; bottom:-140px; left:-120px; }

    .hero-inner {
      position:relative; z-index:1; max-width:1240px; margin:0 auto;
      width:100%; display:flex; align-items:center; gap:88px;
    }

    .hero-copy { flex:1; position:relative; z-index:2; }

    .hero-badge {
      display:inline-flex; align-items:center; gap:9px;
      border:1.5px solid rgba(47,164,215,0.35);
      border-radius:var(--r-pill); padding:6px 16px;
      font-size:13px; font-weight:500; color:var(--teal);
      background:rgba(47,164,215,0.06); margin-bottom:30px;
    }
    .badge-pulse {
      width:7px; height:7px; border-radius:50%;
      background:var(--mint);
      animation:pulse 2.2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%,100% { opacity:1; transform:scale(1); }
      50% { opacity:.4; transform:scale(1.6); }
    }

    .hero h1 {
      font-size:clamp(44px, 6.5vw, 84px); font-weight:800;
      line-height:1.02; letter-spacing:-3px;
      color:var(--black); margin-bottom:24px;
    }
    .hero h1 em {
      font-style:normal; color:var(--amber);
    }

    .hero-sub {
      font-size:18px; font-weight:300; line-height:1.8;
      color:var(--gray); margin-bottom:36px; max-width:600px;
    }

    .trust-row {
      display:flex; align-items:center; gap:20px;
      margin-bottom:38px; flex-wrap:nowrap;
    }
    .trust-item {
      display:flex; align-items:center; gap:7px;
      font-size:13px; font-weight:500; color:#555;
    }
    .trust-item .t-icon { color:var(--teal); width:15px; height:15px; flex-shrink:0; }
    .t-stars { display:flex; gap:1px; color:var(--amber); }
    .t-stars svg { width:12px; height:12px; }
    .trust-sep { width:1px; height:16px; background:var(--light); }

    .cta-row { display:flex; gap:12px; flex-wrap:wrap; align-items:center; }

    .btn-primary {
      display:inline-flex; align-items:center; gap:10px;
      background:var(--yellow); color:var(--black);
      border:none; padding:0 28px; height:56px; border-radius:var(--r-pill);
      font-family:'Inter', sans-serif; font-weight:700; font-size:16px;
      cursor:pointer; transition:all .25s; text-decoration:none;
    }
    .btn-primary:hover { background:var(--amber); transform:translateY(-2px); box-shadow:0 10px 28px rgba(255,176,64,.4); }
    .btn-primary svg { width:25px; height:25px; flex-shrink:0; }

    .btn-outline {
      display:inline-flex; align-items:center; gap:8px;
      background:transparent; color:var(--black);
      border:1.5px solid rgba(0,0,0,0.2);
      padding:0 28px; height:56px; border-radius:var(--r-pill);
      font-family:'Inter', sans-serif; font-weight:500; font-size:16px;
      cursor:pointer; transition:all .25s; text-decoration:none;
    }
    .btn-outline:hover { border-color:var(--black); background:var(--black); color:var(--white); transform:translateY(-2px); }
    .hero .btn-outline { background:var(--white); }
    .hero .btn-outline:hover { background:var(--black); color:var(--white); border-color:var(--black); }
    .btn-outline svg { width:15px; height:15px; }

    /* Hero visual */
    .hero-visual { flex:1 1 0; min-width:0; max-width:560px; position:relative; }
    .hero-img { width:100%; height:auto; display:block; position:relative; z-index:2; }
    .hero-img-blob { position:absolute; bottom:-70px; left:0; width:100%; pointer-events:none; z-index:1; }
    .hero-card {
      background:var(--teal); border-radius:var(--r-xl);
      padding:32px; color:var(--white);
      box-shadow:0 48px 100px rgba(47,164,215,.28);
      animation:float 7s ease-in-out infinite;
    }
    @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }

    .hc-label {
      font-size:10px; font-weight:700; text-transform:uppercase;
      letter-spacing:2.5px; color:rgba(255,255,255,0.45); margin-bottom:12px;
    }
    .hc-file {
      display:flex; align-items:center; gap:14px;
      background:rgba(255,255,255,0.09); border-radius:var(--r-md);
      padding:14px 16px; margin-bottom:18px;
    }
    .hc-file-icon {
      width:40px; height:40px; border-radius:var(--r-sm);
      background:rgba(255,255,255,0.12);
      display:flex; align-items:center; justify-content:center;
      flex-shrink:0; color:var(--mint);
    }
    .hc-file-icon svg { width:20px; height:20px; }
    .hc-fname { font-size:14px; font-weight:500; }
    .hc-fsize { font-size:12px; color:rgba(255,255,255,0.45); margin-top:3px; }

    .hc-specs {
      display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-bottom:18px;
    }
    .hc-spec {
      background:rgba(255,255,255,0.07); border-radius:var(--r-sm); padding:12px 14px;
    }
    .hc-spec-val {
      font-family:'Nunito', serif; font-weight:700; font-size:18px;
      color:var(--white); line-height:1;
    }
    .hc-spec-lbl { font-size:11px; color:rgba(255,255,255,0.45); margin-top:4px; }

    .hc-price {
      background:var(--yellow); color:var(--black);
      border-radius:var(--r-md); padding:16px 20px;
      display:flex; justify-content:space-between; align-items:center;
    }
    .hc-price-lbl { font-size:12px; font-weight:500; }
    .hc-price-val {
      font-family:'Nunito', serif; font-weight:700;
      font-size:26px; letter-spacing:-1px;
    }

    /* ===========================================
       SECTION SCAFFOLDING
    =========================================== */
    .section { padding:100px 52px; }
    .container { max-width:1240px; margin:0 auto; }

    .section-tag {
      display:inline-block;
      /* background:rgba(47,164,215,0.08); */
      color:var(--teal);
      font-size:11px; font-weight:700; letter-spacing:2.5px;
      text-transform:uppercase;
      margin-bottom: 24px;
      /* padding:5px 14px; */
      /* border-radius:var(--r-pill); margin-bottom:16px; */
    }
    .section-title {
      font-size:clamp(30px, 4vw, 52px); font-weight:800;
      letter-spacing:-1.5px; color:var(--black); line-height:1.08;
      margin-bottom:16px;
    }
    .section-sub {
      font-size:17px; font-weight:300; color:var(--gray);
      line-height:1.8; max-width:540px;
    }

    /* ===========================================
       TRANSFORMATION — HOW IT WORKS
    =========================================== */
    .transformation { background:var(--off); }

    .steps-grid {
      display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
      margin-top:60px; position:relative;
    }

    .step-card {
      background:var(--white); border:1px solid rgba(0,0,0,0.08);
      border-radius:var(--r-lg); padding:0 28px 34px;
      position:relative; z-index:1; transition:all .3s;
      overflow:hidden;
    }
    .step-card:hover { transform:translateY(-7px); box-shadow:0 24px 64px rgba(0,0,0,.09); border-color:var(--mint); }

    .step-num {
      display:flex; align-items:center; justify-content:center;
      width:calc(100% + 56px); margin:0 -28px 26px;
      padding:10px 28px;
      font-family:'Nunito', serif; font-weight:700; font-size:13px;
      letter-spacing:.04em; text-transform:uppercase;
    }
    .sn1 { background:var(--teal); color:var(--white); }
    .sn2 { background:var(--mint); color:var(--white); }
    .sn3 { background:var(--teal); color:var(--white); }

    .step-icon {
      width:46px; height:46px; border-radius:var(--r-sm);
      display:flex; align-items:center; justify-content:center;
      background:rgba(47,164,215,0.07); color:var(--teal);
      flex-shrink:0;
    }
    .step-icon svg { width:23px; height:23px; }
    .step-icon-row {
      display:flex; align-items:center; gap:14px;
      margin-bottom:16px;
    }
    .step-title { font-size:17px; font-weight:700; color:var(--black); }
    .step-desc { font-size:14px; font-weight:300; color:var(--gray); line-height:1.75; }

    .press-bar { margin-top:80px; text-align:center; }
    .press-label {
      font-size:11px; font-weight:700; text-transform:uppercase;
      letter-spacing:2.5px; color:var(--light); margin-bottom:26px;
    }
    .press-logos {
      display:flex; align-items:center; justify-content:center;
      gap:52px; flex-wrap:wrap;
    }
    .press-logo {
      font-family:'Inter', sans-serif; font-weight:700;
      font-size:13px; letter-spacing:1.5px; text-transform:uppercase;
      color:rgba(0,0,0,0.14); transition:color .3s; cursor:default;
    }
    .press-logo:hover { color:rgba(0,0,0,0.32); }

    /* ===========================================
       INTEREST — MATERIALS & BENEFITS
    =========================================== */
    .interest { background:var(--white); }

    .interest-grid {
      display:grid; grid-template-columns:1fr 1fr;
      gap:88px; align-items:center; margin-top:60px;
    }

    .benefits-list { display:flex; flex-direction:column; gap:26px; }
    .benefit-item { display:flex; gap:18px; align-items:flex-start; }
    .bi-icon {
      width:46px; height:46px; border-radius:var(--r-sm); flex-shrink:0;
      display:flex; align-items:center; justify-content:center;
    }
    .bi-icon svg { width:22px; height:22px; }
    .bi-teal  { background:rgba(255,176,64,0.12); color:var(--yellow); }
    .bi-mint  { background:rgba(255,176,64,0.12); color:var(--yellow); }
    .bi-amber { background:rgba(255,176,64,0.12); color:var(--yellow); }
    .bi-dark  { background:rgba(255,176,64,0.12); color:var(--yellow); }

    .bi-text h4 { font-size:15px; font-weight:700; color:var(--black); margin-bottom:5px; }
    .bi-text p { font-size:14px; font-weight:300; color:var(--gray); line-height:1.75; }

    .mat-card {
      background:var(--mint); border-radius:var(--r-xl);
      padding:44px; color:var(--white);
      margin-bottom: 26px;
    }
    .mat-label {
      font-size:10px; font-weight:700; text-transform:uppercase;
      letter-spacing:2.5px; color:rgba(255,255,255,0.45); margin-bottom:14px;
    }
    .pill-row { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:24px; }
    .pill {
      padding:6px 14px; border-radius:var(--r-pill);
      font-size:13px; font-weight:500; cursor:default;
      transition:transform .18s;
    }
    .pill:hover { transform:scale(1.05); }
    .p-w { background:rgba(255,255,255,0.12); color:rgba(255,255,255,0.85); }
    .p-y { background:rgba(255,255,255,0.12); color:rgba(255,255,255,0.85); }
    .p-m { background:rgba(255,255,255,0.12); color:rgba(255,255,255,0.85); }

    .specs-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:28px; }
    .spec-box { background:rgba(255,255,255,0.07); border-radius:var(--r-sm); padding:16px 18px; }
    .spec-val { font-family:'Nunito', serif; font-weight:700; font-size:22px; color:var(--white); }
    .spec-lbl { font-size:11px; color:rgba(255,255,255,0.45); margin-top:5px; }

    /* ===========================================
       DESIRE — REVIEWS
    =========================================== */
    .desire { background:var(--off); }

    .rating-summary {
      display:flex; align-items:center; gap:52px;
      background:var(--white); border:1px solid rgba(0,0,0,0.08);
      border-radius:var(--r-lg); padding:32px 44px;
      margin:52px 0 36px;
    }
    .rating-big { text-align:center; flex-shrink:0; }
    .rating-num {
      font-family:'Nunito', serif; font-weight:700; font-size:64px;
      color:var(--black); line-height:1;
    }
    .rating-stars-big {
      display:flex; justify-content:center; gap:4px;
      color:var(--amber); margin-top:7px;
    }
    .rating-stars-big svg { width:18px; height:18px; }
    .rating-count { font-size:12px; color:var(--gray); margin-top:6px; }
    .rating-sep { width:1px; height:88px; background:var(--light); }
    .rating-bars { flex:1; display:flex; flex-direction:column; gap:10px; }
    .bar-row { display:flex; align-items:center; gap:12px; }
    .bar-label { font-size:12px; color:var(--gray); width:28px; }
    .bar-track { flex:1; height:6px; background:var(--subtle); border-radius:3px; overflow:hidden; }
    .bar-fill { height:100%; border-radius:3px; background:var(--mint); }
    .bar-count { font-size:12px; color:var(--gray); width:30px; text-align:right; }

    .reviews-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
    .review-card {
      background:var(--white); border:1px solid rgba(0,0,0,0.08);
      border-radius:var(--r-lg); padding:28px; transition:all .3s;
    }
    .review-card:hover { transform:translateY(-5px); box-shadow:0 20px 52px rgba(0,0,0,.09); border-color:var(--mint); }
    .rc-stars { display:flex; gap:3px; color:var(--amber); margin-bottom:16px; }
    .rc-stars svg { width:14px; height:14px; }
    .rc-text { font-size:15px; font-weight:300; line-height:1.8; color:#555; margin-bottom:20px; font-style:italic; }
    .rc-author { display:flex; align-items:center; gap:12px; }
    .rc-avatar {
      width:40px; height:40px; border-radius:50%;
      display:flex; align-items:center; justify-content:center;
      font-family:'Nunito', serif; font-weight:700; font-size:15px;
    }
    .av1 { background:var(--teal); color:var(--white); }
    .av2 { background:var(--mint); color:var(--white); }
    .av3 { background:var(--teal); color:var(--white); }
    .rc-info h5 { font-size:14px; font-weight:700; color:var(--black); }
    .rc-info p { font-size:12px; color:var(--gray); margin-top:2px; }
    .rc-project-img-wrap {
      margin-top:20px; border-radius:var(--r-md); overflow:hidden;
      aspect-ratio:1/1; width:100%;
    }
    .rc-project-img {
      width:100%; height:100%; object-fit:cover; display:block;
      transition:transform .4s ease;
    }
    .review-card:hover .rc-project-img { transform:scale(1.04); }
    .rc-project-name {
      margin-top:16px; font-family:'Nunito', serif; font-weight:700;
      font-size:14px; color:var(--black); letter-spacing:-.01em;
    }
    .rc-project-desc {
      margin-top:6px; font-size:13px; font-weight:300;
      line-height:1.75; color:var(--gray);
    }

    /* ===========================================
       ORDER SECTION — INLINE
    =========================================== */
    .order-sect {
      background:var(--teal); padding:100px 52px;
      position:relative; overflow:hidden;
    }
    .order-sect::before {
      content:''; position:absolute; inset:0; pointer-events:none;
      background:
        radial-gradient(ellipse 65% 60% at 95% 50%, rgba(47,164,215,.09) 0%, transparent 55%),
        radial-gradient(ellipse 45% 45% at 8% 85%, rgba(255,176,64,.06) 0%, transparent 50%);
    }

    .order-head { max-width:1240px; margin:0 auto 52px; position:relative; z-index:1; }
    .section-tag-light {
      display:inline-block;
      /* background:rgba(255,255,255,0.1); */
      color:rgba(255,255,255,0.65);
      font-size:11px; font-weight:700; letter-spacing:2.5px;
      text-transform:uppercase;
      /* padding:5px 14px; */
      /* border-radius:var(--r-pill); */
      margin-bottom:24px;
    }
    .order-head h2 {
      font-size:clamp(30px, 4vw, 52px); font-weight:700;
      letter-spacing:-1.8px; color:var(--white); line-height:1.08;
    }

    .order-card {
      background:var(--white); border-radius:var(--r-xl);
      box-shadow:0 48px 120px rgba(0,0,0,.28);
      overflow:hidden;
      max-width:1240px; margin:0 auto;
      position:relative; z-index:1;
    }

    /* Progress tabs */
    .o-tabs {
      display:flex; align-items:stretch;
      border-bottom:1px solid rgba(0,0,0,0.08);
      background:var(--subtle);
    }
    .o-tab {
      flex:1; display:flex; flex-direction:column;
      align-items:center; justify-content:center;
      padding:20px 10px; gap:5px;
      border-right:1px solid rgba(0,0,0,0.08);
      position:relative; transition:all .3s;
    }
    .o-tab:last-child { border-right:none; }
    .ot-num {
      font-family:'Nunito', serif; font-weight:700; font-size:15px; color:var(--teal);
    }
    .ot-lbl { font-size:11px; font-weight:500; color:var(--teal); text-transform:uppercase; letter-spacing:1px; }
    .o-tab.active { background:var(--white); }
    .o-tab.active::after {
      content:''; position:absolute; bottom:-1px; left:0; right:0;
      height:3px; background:var(--teal);
    }
    .o-tab.active .ot-num { color:var(--teal); }
    .o-tab.active .ot-lbl { color:var(--teal); }
    .o-tab.done .ot-num { color:var(--mint); }
    .o-tab.done .ot-lbl { color:var(--mint); }

    /* Step panes */
    .o-body { padding:44px 48px; }
    .o-pane { display:none; }
    .o-pane.active { display:block; }

    .o-heading { font-size:26px; font-weight:700; color:var(--black); letter-spacing:-.5px; margin-bottom:6px; }
    .o-sub { font-size:15px; font-weight:300; color:var(--gray); margin-bottom:30px; }

    /* Upload zone */
    .upload-zone {
      border:2px dashed rgba(47,164,215,0.22); border-radius:var(--r-lg);
      padding:56px 24px; text-align:center; cursor:pointer;
      transition:all .25s; position:relative;
      background:rgba(47,164,215,0.02);
    }
    .upload-zone:hover, .upload-zone.drag {
      border-color:var(--mint); background:rgba(47,164,215,0.05);
    }
    .upload-zone.filled {
      border-color:var(--teal); background:rgba(47,164,215,0.04);
    }
    .upload-zone input[type=file] {
      position:absolute; inset:0; opacity:0; cursor:pointer; width:100%; height:100%;
    }
    .uz-icon {
      width:68px; height:68px; border-radius:var(--r-lg);
      background:rgba(47,164,215,0.09); color:var(--teal);
      display:flex; align-items:center; justify-content:center;
      margin:0 auto 18px; transition:background .25s;
    }
    .upload-zone:hover .uz-icon { background:rgba(47,164,215,0.14); }
    .uz-icon svg { width:32px; height:32px; }
    .uz-title { font-size:16px; font-weight:700; color:var(--black); margin-bottom:7px; }
    .uz-sub { font-size:14px; font-weight:300; color:var(--gray); margin-bottom:12px; }
    .uz-fmts { display:flex; align-items:center; justify-content:center; gap:7px; flex-wrap:wrap; }
    .fmt-badge {
      padding:3px 10px; border-radius:var(--r-pill);
      border:1px solid rgba(47,164,215,0.35);
      font-size:11px; font-weight:700; color:var(--teal);
      background:rgba(47,164,215,0.06);
    }

    .uprog { margin-top:18px; display:none; }
    .uprog.show { display:block; }
    .uprog-meta {
      display:flex; justify-content:space-between;
      font-size:12px; color:var(--gray); margin-bottom:8px;
    }
    .uprog-track { height:5px; background:var(--subtle); border-radius:3px; overflow:hidden; }
    .uprog-fill { height:100%; border-radius:3px; background:var(--mint); width:0; transition:width .3s; }

    /* Config grid */
    .config-grid {
      display:grid; grid-template-columns:repeat(4,1fr); gap:16px;
      margin-top:28px; display:none;
    }
    .config-grid.show { display:grid; }

    .opt-group { display:flex; flex-direction:column; gap:7px; }
    .opt-group label {
      font-size:11px; font-weight:700; color:var(--gray);
      text-transform:uppercase; letter-spacing:1px;
    }
    .opt-group select {
      width:100%; padding:11px 14px;
      border-radius:var(--r-sm); border:1.5px solid rgba(0,0,0,0.1);
      font-family:'Inter', sans-serif; font-size:14px; color:var(--black);
      outline:none; cursor:pointer; transition:border-color .2s; background:white;
      appearance:none;
      background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23007F73' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat:no-repeat; background-position:right 13px center;
      padding-right:34px;
    }
    .opt-group select:focus { border-color:var(--teal); }

    /* Color tiles (Szín) */
    .color-tiles-grid {
      display:grid; gap:16px; width:100%;
      grid-template-columns:repeat(4, 1fr);
    }
    @media (max-width: 1100px) {
      .color-tiles-grid { grid-template-columns:repeat(3, 1fr); }
    }
    @media (max-width: 900px) {
      .color-tiles-grid { grid-template-columns:repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      .color-tiles-grid { grid-template-columns:1fr; }
    }
    .color-tile {
      display:flex; align-items:center; gap:12px;
      padding:10px 14px;
      border:1.5px solid rgba(0,0,0,0.1);
      border-radius:var(--r-sm);
      background:var(--white); cursor:pointer;
      font-family:'Inter', sans-serif; font-size:14px; color:var(--black);
      text-align:left;
      transition:border-color .2s, background .2s, box-shadow .2s;
    }
    .color-tile:hover { border-color:var(--mint); }
    .color-tile.active {
      border-color:var(--teal); background:rgba(47,164,215,0.07);
      box-shadow:0 0 0 2px rgba(47,164,215,0.15);
    }
    .color-tile .color-swatch {
      width:22px; height:22px; border-radius:50%;
      border:1.5px solid rgba(0,0,0,0.15); flex-shrink:0;
    }
    .color-tile .color-name { line-height:1.2; }
    .color-tiles-empty {
      color:var(--gray); font-size:13px;
      padding:8px 2px; grid-column:1 / -1;
    }

    /* Inline price display */
    .price-inline {
      background:var(--teal); color:var(--white);
      border-radius:var(--r-lg); padding:28px 32px;
      display:none; align-items:center; justify-content:space-between;
      margin-top:24px; gap:24px;
    }
    .price-inline.show { display:flex; }

    .pi-left .pi-lbl { font-size:15px; color:var(--white); font-weight:500; }
    .pi-right { text-align:right; flex-shrink:0; }
    .pi-right .pi-amt {
      font-family:'Nunito', serif; font-weight:700;
      font-size:28px; color:var(--white); line-height:1; letter-spacing:-1px;
    }
    .pi-right .pi-note { font-size:12px; color:rgba(255,255,255,0.5); margin-top:4px; }

    .pi-calculating { display:flex; align-items:center; gap:12px; color:rgba(255,255,255,0.7); font-size:15px; }
    .spinner {
      width:20px; height:20px; border-radius:50%;
      border:2px solid rgba(255,255,255,0.2); border-top-color:white;
      animation:spin .75s linear infinite; flex-shrink:0;
    }
    @keyframes spin { to { transform:rotate(360deg); } }

    .svg-loader { width:64px; height:64px; animation:spin 1.5s linear infinite; }
    @keyframes fade-in { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }
    .fade-in { animation:fade-in 0.4s ease both; }

    /* Delivery */
    .del-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:22px; }
    .del-card {
      border:2px solid rgba(0,0,0,0.09); border-radius:var(--r-lg);
      padding:26px 22px; cursor:pointer; transition:all .25s;
      display:flex; align-items:flex-start; gap:16px;
    }
    .del-card:hover { border-color:var(--mint); }
    .del-card.sel { border-color:var(--teal); background:rgba(47,164,215,0.03); }
    .del-card-icon {
      width:48px; height:48px; border-radius:var(--r-sm); flex-shrink:0;
      display:flex; align-items:center; justify-content:center;
      background:rgba(47,164,215,0.07); color:var(--teal); transition:all .25s;
    }
    .del-card.sel .del-card-icon { background:var(--teal); color:var(--white); }
    .del-card-icon svg { width:23px; height:23px; }
    .del-card-text h4 { font-size:15px; font-weight:700; color:var(--black); margin-bottom:5px; }
    .del-card-text p { font-size:13px; font-weight:300; color:var(--gray); }
    .del-card-text .del-price { font-size:15px; font-weight:700; color:var(--teal); margin-top:7px; }

    .collection-info {
      display:none; background:rgba(47,164,215,0.04);
      border:1px solid rgba(47,164,215,0.28);
      border-radius:var(--r-sm); padding:18px;
      margin-bottom:16px; font-size:13px; font-weight:300;
      color:#555; line-height:1.75;
    }
    .collection-info.show { display:flex; gap:10px; }
    .collection-info svg { color:var(--teal); flex-shrink:0; margin-top:2px; width:16px; height:16px; }
    .ci-text strong { color:var(--black); font-weight:700; display:block; margin-bottom:4px; }

    /* Form */
    .f-row { display:grid; gap:14px; margin-bottom:14px; }
    .f-row2  { grid-template-columns:1fr 1fr; }
    .f-row3  { grid-template-columns:1fr 1fr 1fr; }
    .f-row1  { grid-template-columns:1fr; }
    .f-field { display:flex; flex-direction:column; gap:7px; }
    .f-field label {
      font-size:11px; font-weight:700; color:var(--gray);
      text-transform:uppercase; letter-spacing:1px;
    }
    .f-field input, .f-field select {
      padding:12px 14px; border-radius:var(--r-sm);
      border:1.5px solid rgba(0,0,0,0.1);
      font-family:'Inter', sans-serif; font-size:14px; color:var(--black);
      outline:none; transition:border-color .2s; background:white;
    }
    .f-field input:focus, .f-field select:focus { border-color:var(--teal); }

    /* Order summary */
    .o-summary {
      background:var(--subtle); border:1px solid rgba(0,0,0,0.08);
      border-radius:var(--r-sm); padding:22px; margin-bottom:24px;
    }
    .o-row {
      display:flex; justify-content:space-between;
      font-size:14px; color:var(--gray); margin-bottom:10px;
    }
    .o-row:last-child { margin-bottom:0; }
    .o-row.total {
      font-weight:700; font-size:18px; color:var(--black);
      padding-top:12px; border-top:1.5px solid rgba(0,0,0,0.09);
      margin-top:12px; margin-bottom:0;
    }
    .o-row.total span:last-child { color:var(--teal); }

    .pay-placeholder {
      border:2px dashed rgba(47,164,215,0.35); border-radius:var(--r-lg);
      padding:28px 24px; text-align:center; margin-bottom:22px;
      background:rgba(47,164,215,0.02);
    }
    .pay-icon {
      width:56px; height:56px; border-radius:var(--r-md);
      background:rgba(47,164,215,0.08); color:var(--teal);
      display:flex; align-items:center; justify-content:center;
      margin:0 auto 14px;
    }
    .pay-icon svg { width:28px; height:28px; }
    .pay-placeholder h4 { font-size:16px; font-weight:700; color:var(--black); margin-bottom:7px; }
    .pay-placeholder p { font-size:13px; font-weight:300; color:var(--gray); line-height:1.7; }

    /* Order buttons */
    .o-btn {
      width:100%; padding:0 24px; height:56px; border-radius:var(--r-pill);
      font-family:'Inter', sans-serif; font-weight:700; font-size:16px;
      cursor:pointer; transition:all .25s; border:none;
      display:flex; align-items:center; justify-content:center; gap:10px;
    }
    .o-btn svg { width:18px; height:18px; }
    .o-btn-primary { background:var(--yellow); color:var(--black); }
    .o-btn-primary:hover { background:var(--amber); transform:translateY(-1px); box-shadow:0 8px 22px rgba(255,176,64,.4); }
    .o-btn-primary:disabled { background:var(--subtle); color:var(--light); box-shadow:none; cursor:not-allowed; transform:none; }
    .o-btn-back {
      background:none; color:var(--gray);
      border:1.5px solid rgba(0,0,0,0.1); margin-top:10px;
    }
    .o-btn-back:hover { border-color:var(--black); color:var(--black); }

    /* Success */
    .success-pane { text-align:center; padding:56px 40px; }
    .success-icon {
      width:84px; height:84px; border-radius:50%;
      background:var(--teal); color:var(--white);
      display:flex; align-items:center; justify-content:center;
      margin:0 auto 24px;
    }
    .success-icon svg { width:40px; height:40px; }
    .success-pane h2 { font-size:30px; font-weight:700; color:var(--black); margin-bottom:12px; }
    .success-pane p { font-size:15px; font-weight:300; color:var(--gray); line-height:1.8; }
    .success-note {
      margin-top:16px; font-size:14px; font-weight:700; color:var(--teal);
      display:flex; align-items:center; justify-content:center; gap:8px;
    }
    .success-note svg { width:16px; height:16px; }

    /* ===========================================
       FAQ
    =========================================== */
    .faq { background:var(--white); }

    .faq-grid { display:grid; grid-template-columns:1fr 1fr; gap:76px; margin-top:56px; align-items:start; }
    .faq-list { display:flex; flex-direction:column; gap:4px; }
    .faq-item {
      border:1px solid rgba(0,0,0,0.08); border-radius:var(--r-md);
      overflow:hidden; transition:border-color .2s;
    }
    .faq-item.open { border-color:var(--teal); }
    .faq-q {
      padding:18px 22px; display:flex; justify-content:space-between; align-items:center;
      cursor:pointer; font-weight:500; font-size:15px; color:var(--black);
      gap:16px; background:var(--white); transition:background .2s; user-select:none;
    }
    .faq-q:hover { background:rgba(47,164,215,0.03); }
    .faq-chevron {
      width:26px; height:26px; border-radius:50%; flex-shrink:0;
      background:var(--subtle);
      display:flex; align-items:center; justify-content:center;
      color:var(--gray); transition:all .3s;
    }
    .faq-chevron svg { width:13px; height:13px; }
    .faq-item.open .faq-chevron { background:var(--teal); color:var(--white); transform:rotate(180deg); }
    .faq-a {
      max-height:0; overflow:hidden; transition:all .35s ease;
      font-size:14px; font-weight:300; color:var(--gray); line-height:1.8;
      padding:0 22px;
    }
    .faq-a.open { max-height:220px; padding:0 22px 18px; }

    .faq-cta {
      background:var(--black); color:var(--white);
      border-radius:var(--r-xl); padding:48px 40px;
      position:sticky; top:88px;
    }
    .faq-cta h3 { font-size:26px; font-weight:700; letter-spacing:-.5px; margin-bottom:12px; }
    .faq-cta p { font-size:15px; font-weight:300; opacity:.6; line-height:1.75; margin-bottom:28px; }
    .contact-opts { display:flex; flex-direction:column; gap:10px; }
    .contact-opt {
      display:flex; align-items:center; gap:12px;
      padding:14px 18px; background:rgba(255,255,255,0.06);
      border:1px solid rgba(255,255,255,0.1);
      border-radius:var(--r-sm); cursor:pointer;
      transition:background .2s; color:var(--white);
      font-size:14px; font-weight:500; text-decoration:none;
    }
    .contact-opt:hover { background:rgba(255,255,255,0.13); }
    .contact-opt svg { width:18px; height:18px; color:var(--mint); flex-shrink:0; }

    /* ===========================================
       ACTION — BOTTOM CTA
    =========================================== */
    .action-sect {
      background:var(--yellow); text-align:center;
      padding:100px 52px; position:relative; overflow:hidden;
    }
    .action-sect h2 {
      font-size:clamp(34px, 5.5vw, 66px); font-weight:700;
      color:var(--black); letter-spacing:-2.5px; margin-bottom:14px;
    }
    .action-sect > .container > p {
      font-size:18px; font-weight:300; color:rgba(0,0,0,0.55); margin-bottom:42px;
    }
    .btn-action {
      display:inline-flex; align-items:center; gap:10px;
      background:var(--black); color:var(--white);
      border:none; padding:0 56px; height:56px; border-radius:var(--r-pill);
      font-family:'Inter', sans-serif; font-weight:700; font-size:16px;
      cursor:pointer; transition:all .25s; text-decoration:none;
      box-shadow:0 12px 44px rgba(0,0,0,.2);
    }
    .btn-action:hover { transform:translateY(-3px) scale(1.02); box-shadow:0 20px 56px rgba(0,0,0,.3); }
    .btn-action svg { width:25px; height:25px; flex-shrink:0; }

    @media (max-width:600px) {
      .action-sect  { padding:64px 20px; }
      .btn-action   { padding:0 28px; }
    }

    .action-guarantee {
      margin-top:20px; font-size:13px; color:rgba(0,0,0,.45);
      display:flex; align-items:center; justify-content:center;
      gap:8px; flex-wrap:wrap;
    }
    .action-guarantee span { display:flex; align-items:center; gap:5px; }
    .action-guarantee svg { width:13px; height:13px; }
    .ag-dot { color:rgba(0,0,0,.25); }

    /* ===========================================
       FOOTER
    =========================================== */
    footer { background:var(--black); color:var(--white); padding:64px 52px 28px; }
    .footer-grid {
      display:grid; grid-template-columns:2fr 1fr 1fr 1fr;
      gap:52px; max-width:1240px; margin:0 auto;
      padding-bottom:52px; border-bottom:1px solid rgba(255,255,255,0.07);
    }
    .footer-brand .logo { color:var(--white); }
    .footer-brand .logo span { color:var(--mint); }
    .footer-brand p { font-size:14px; font-weight:300; color:rgba(255,255,255,0.42); line-height:1.8; margin-top:14px; }
    .fc h5 {
      font-size:10px; font-weight:700; text-transform:uppercase;
      letter-spacing:2.5px; color:rgba(255,255,255,.28); margin-bottom:18px;
    }
    .fc a {
      display:block; font-size:14px; font-weight:300;
      color:rgba(255,255,255,0.52); text-decoration:none;
      margin-bottom:11px; transition:color .2s;
    }
    .fc a:hover { color:var(--mint); }
    .footer-bottom {
      max-width:1240px; margin:24px auto 0;
      display:flex; justify-content:space-between; align-items:center;
      font-size:13px; font-weight:300; color:rgba(255,255,255,0.22);
      flex-wrap:wrap; gap:10px;
    }
    @media (max-width:680px) {
      .footer-bottom {
        flex-direction:column; align-items:center; text-align:center; gap:16px;
      }
      .footer-bottom span { flex:unset !important; text-align:center !important; }
    }

    /* ===========================================
       SCROLL ANIMATIONS
    =========================================== */
    .anim { opacity:0; transform:translateY(22px); transition:opacity .5s ease, transform .5s ease; }
    .anim.in { opacity:1; transform:translateY(0); }

    /* ===========================================
       RESPONSIVE
    =========================================== */
    /* ===========================================
       HAMBURGER BUTTON
    =========================================== */
    .nav-hamburger {
      display:none;
      flex-direction:column; justify-content:center; align-items:center;
      gap:5px; width:40px; height:40px;
      background:none; border:none; cursor:pointer; padding:4px;
      border-radius:var(--r-sm); transition:background .2s;
      flex-shrink:0;
    }
    .nav-hamburger:hover { background:rgba(0,0,0,0.05); }
    .nav-hamburger span {
      display:block; width:22px; height:2px;
      background:var(--black); border-radius:2px;
      transition:all .28s ease;
    }
    .nav-hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
    .nav-hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

    @media (max-width:1440px) {
        nav {
                padding:0 16px;
                display:grid;
                grid-template-columns:40px 1fr auto auto;
                align-items:center;
                gap:6px;
              }
      .nav-hamburger { display:flex; }
      .logo {
        justify-self:center;
        text-align:center;
        margin-right:0px;
      }
      .logo img { height:26px !important; }

      /* Mobile dropdown menu */
      .nav-links {
        display:none;
        position:absolute;
        top:72px; left:0; right:0;
        background:var(--white);
        border-bottom:1px solid rgba(0,0,0,0.08);
        flex-direction:column;
        gap:0;
        padding:8px 0;
        list-style:none;
        box-shadow:0 8px 24px rgba(0,0,0,0.08);
        z-index:999;
      }
      .nav-links.open { display:flex; }
      .nav-links li { width:100%; }
      .nav-links a {
        display:block; padding:14px 24px;
        font-size:15px; font-weight:400; color:var(--black);
        border-bottom:1px solid rgba(0,0,0,0.04);
        transition:background .15s;
      }
      .nav-links a:hover { background:rgba(47,164,215,0.04); color:var(--teal); }
      .nav-links li:last-child a { border-bottom:none; }

      .section, .order-sect { padding:72px 24px; }
      .hero { padding:96px 24px 64px; }
      .steps-grid { grid-template-columns:1fr; }
      .interest-grid { grid-template-columns:1fr; gap:48px; }
      .reviews-grid { grid-template-columns:repeat(3,1fr); }
      .faq-grid { grid-template-columns:1fr; }
      .faq-cta { position:static; }
      .footer-grid { grid-template-columns:1fr; gap:36px; }
      .rating-summary { flex-direction:column; text-align:center; }
      .rating-sep { width:80px; height:1px; }
      .del-grid { grid-template-columns:1fr; }
      .f-row2, .f-row3 { grid-template-columns:1fr; }
      .config-grid { grid-template-columns:1fr 1fr !important; }
      .o-body { padding:28px 24px; }
      .mat-card { padding:24px; }
      .interest-grid { gap:40px; }
    }

    @media (max-width:1200px) {
      .hb3 { display:none; }
    }

    @media (max-width:1024px) {
      .hero-inner { flex-direction:column; gap:48px; }
      .hero-visual { width:100%; max-width:500px; }
      .hb1 { width:420px; height:420px; }
      .hb2 { right:50px; }
      .reviews-grid { grid-template-columns:1fr; }
      .rc-project-img-wrap { max-width:350px; }
    }

    @media (max-width:600px) {
      .trust-row { flex-direction:column; align-items:flex-start; gap:12px; }
      .trust-sep { display:none; }
      .hb1 { display:none; }
    }

    @media (max-width:440px) {
      .price-inline { flex-direction:column; align-items:flex-end; }
    }

    @media (max-width:400px) {
      .hero-img-blob { bottom:-40px; }
    }

/* ===========================================
   ORDER FLOW EXTENSIONS
=========================================== */
.uploaded-file-card {
  display:none;
  margin-top:18px;
  padding:18px 20px;
  border-radius:var(--r-md);
  border:1px solid rgba(0,0,0,0.08);
  background:var(--subtle);
}
.uploaded-file-card.show { display:block; }
.uploaded-file-name {
  font-size:15px;
  font-weight:700;
  color:var(--black);
  margin-bottom:4px;
}
.uploaded-file-size {
  font-size:13px;
  color:var(--gray);
}

.settings-stack {
  display:flex;
  flex-direction:column;
  gap:24px;
}
.settings-grid-top {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}
.mode-toggle-wrap,
.settings-panel,
.settings-question {
  display:flex;
  flex-direction:column;
  gap:24px;
}
.mode-toggle-label,
.settings-question-title {
  font-size:14px;
  font-weight:700;
  color:var(--black);
}
.choice-grid {
  display:grid;
  gap:14px;
}
.choice-grid.two-col {
  grid-template-columns:repeat(2,minmax(0,1fr));
}
.choice-card {
  width:100%;
  text-align:left;
  border:2px solid rgba(0,0,0,0.08);
  border-radius:var(--r-lg);
  background:var(--white);
  padding:18px 18px;
  cursor:pointer;
  transition:all .22s;
  display:flex;
  flex-direction:column;
  gap:6px;
  font-family:'Inter', sans-serif;
}
.choice-card:hover {
  border-color:var(--mint);
  transform:translateY(-2px);
}
.choice-card.active {
  border-color:var(--teal);
  background:rgba(47,164,215,0.03);
  box-shadow:0 10px 30px rgba(47,164,215,0.08);
}
.choice-title {
  font-size:15px;
  font-weight:700;
  color:var(--black);
}
.choice-desc {
  font-size:13px;
  line-height:1.65;
  color:var(--gray);
}
.settings-panel { display:none; }
.settings-panel.show { display:flex; }
.advanced-grid {
  margin-top:0;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.o-tabs .o-tab { min-width:0; }
.o-tabs .ot-lbl { text-align:center; }

@media (max-width:1250px) {
  .settings-grid-top,
  .choice-grid.two-col,
  .advanced-grid {
    grid-template-columns:1fr;
  }
}

@media (max-width:400px) {
  .specs-grid { grid-template-columns:1fr; }
}
.starred {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color:var(--gray);
  line-height: 1.75;
}

/* ─── FILE LIST (Step 1 multi-upload) ───────── */
#fileList {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.file-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1.5px solid var(--subtle);
  border-radius: 14px;
  padding: 14px 16px;
  transition: border-color .18s, box-shadow .18s;
}
.file-list-item:hover {
  border-color: var(--mint);
  box-shadow: 0 2px 12px rgba(47,164,215,.08);
}

.fli-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  background: var(--subtle);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray);
}
.fli-icon svg { width: 20px; height: 20px; }

.fli-meta {
  flex: 1;
  min-width: 0;
}
.fli-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fli-info {
  font-size: 12px;
  color: var(--gray);
  margin-top: 3px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.fli-badge {
  display: inline-block;
  font-size: 11.5px;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 500;
}
.fli-badge.fli-loading { background: rgba(0,0,0,.06); color: var(--gray); }
.fli-badge.fli-error   { background: rgba(220,50,50,.10); color: #c0392b; }
.fli-badge.fli-ok      { background: rgba(47,164,215,.10); color: var(--teal, #2FA4D7); font-family: var(--mono, monospace); }

.fli-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fli-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: 10px;
  border: 1.5px solid var(--subtle);
  background: var(--white);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
  white-space: nowrap;
}
.fli-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.fli-btn:hover { background: var(--subtle); border-color: var(--gray); }

.fli-settings { color: var(--black); }
.fli-settings:hover { border-color: var(--mint); color: var(--mint); }
.fli-settings.has-custom {
  border-color: var(--mint);
  background: rgba(47,164,215,.07);
  color: var(--mint);
}
.fli-check { color: var(--mint); }

.fli-edit-unit { padding: 7px 10px; }
.fli-edit-unit:hover { border-color: var(--teal); color: var(--teal); background: rgba(47,164,215,.07); }
.fli-edit-unit:disabled { opacity: .4; cursor: not-allowed; }
.fli-edit-unit:disabled:hover { border-color: var(--subtle); color: var(--black); background: var(--white); }

.fli-delete { padding: 7px 10px; }
.fli-delete:hover { border-color: #e74c3c; color: #e74c3c; background: rgba(231,76,60,.07); }

/* ─── Step 2: colorSection (qty moved to file list) ─────────── */
#colorQtySection {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding-top: 0;
}
#colorQtySection .opt-group { gap: 24px; }
@media (max-width: 600px) {
  #colorQtySection { grid-template-columns: 1fr; }
  .fli-actions { flex-direction: column; align-items: flex-end; }
  .fli-btn     { font-size: 11.5px; padding: 6px 10px; }
}

/* ─── Delete Confirmation Modal ─────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.48);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-box {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(0,0,0,.2);
  animation: modal-in .2s cubic-bezier(.34,1.56,.64,1);
  /* When the modal is taller than the viewport (small phones), let the box
     itself scroll instead of the page behind it. overscroll-behavior keeps
     the scroll from chaining to the background. */
  max-height: calc(100vh - 48px);
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
@keyframes modal-in {
  from { opacity:0; transform:scale(.94) translateY(12px); }
  to   { opacity:1; transform:scale(1)   translateY(0); }
}
.modal-box h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}
.modal-box p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 28px;
}
.modal-filename {
  font-weight: 600;
  color: var(--black);
}
.modal-actions { display: flex; gap: 10px; }
.o-btn-danger {
  background: #e74c3c;
  color: var(--white);
  flex: 1;
  font-size: 15px;
  padding: 14px 20px;
  border-radius: var(--r-pill);
  border: none;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
}
.o-btn-danger:hover { background: #c0392b; transform: translateY(-1px); }
.o-btn-cancel {
  flex: 1;
  font-size: 15px;
  padding: 14px 20px;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(0,0,0,.12);
  background: none;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--gray);
  cursor: pointer;
  transition: all .2s;
}
.o-btn-cancel:hover { border-color: var(--black); color: var(--black); }

/* ─── Model-size confirmation modal ─────────── */
.modal-box-size { max-width: 460px; }
.modal-box-size .modal-actions { margin-top: 4px; }

/* The box is the (non-scrolling) frame; an inner .modal-scroll does the
   scrolling so the scroll-hint arrows can be pinned to the box edges. */
.modal-box-size {
  padding: 0;
  overflow: hidden;          /* clip hints to the rounded corners */
  position: relative;
}
.modal-box-size .modal-scroll {
  max-height: calc(100vh - 48px);
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 36px;
}

/* Subtle "more content" arrows — shown only when there's overflow in that
   direction (toggled via .can-scroll-up / .can-scroll-down by JS). */
.modal-scroll-hint {
  position: absolute;
  left: 0;
  right: 0;
  height: 46px;
  display: flex;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease;
  z-index: 2;
}
.modal-scroll-hint svg { width: 22px; height: 22px; color: var(--gray); }
.modal-scroll-hint-up {
  top: 0;
  align-items: flex-start;
  padding-top: 7px;
  background: linear-gradient(to top, rgba(255,255,255,0), var(--white) 75%);
}
.modal-scroll-hint-down {
  bottom: 0;
  align-items: flex-end;
  padding-bottom: 7px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), var(--white) 75%);
}
.modal-box-size.can-scroll-up   .modal-scroll-hint-up   { opacity: 1; }
.modal-box-size.can-scroll-down .modal-scroll-hint-down { opacity: 1; }
.modal-box-size.can-scroll-down .modal-scroll-hint-down svg { animation: hint-bob 1.5s ease-in-out infinite; }
@keyframes hint-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(3px); } }
@media (prefers-reduced-motion: reduce) {
  .modal-scroll-hint-down svg { animation: none !important; }
}
/* Narrow phones: stack the modal action buttons in their own rows, with the
   primary action (Mentés/Folytatás, last in DOM) on top. */
@media (max-width: 400px) {
  .modal-box-size .modal-actions { flex-direction: column-reverse; }
}
.o-btn-confirm {
  flex: 1;
  font-size: 15px;
  padding: 14px 20px;
  border-radius: var(--r-pill);
  border: none;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.size-modal-list { margin-bottom: 24px; display: flex; flex-direction: column; gap: 14px; }
.size-row {
  border: 1.5px solid var(--subtle);
  border-radius: 12px;
  padding: 14px 16px;
}
.size-row-name {
  font-weight: 600;
  color: var(--black);
  font-size: 14px;
  margin-bottom: 4px;
  word-break: break-word;
}
.size-row-current { font-size: 13px; color: var(--gray); margin-bottom: 10px; }
.size-row-current strong { color: var(--black); }
.size-row-select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1.5px solid rgba(0,0,0,.12);
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--black);
  cursor: pointer;
}
.size-row-new { font-size: 13px; color: var(--gray); margin-top: 8px; }
.size-row-new strong { color: var(--yellow-text, var(--black)); }

/* ─── Step 2: accordion (Eltérő beállítások) ─ */
.sfl-accordion {
  border: 1.5px solid var(--subtle);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .15s;
}
.sfl-accordion:hover { border-color: rgba(47,164,215,.25); }
.sfl-accordion.expanded { border-color: var(--teal); }
.sfl-accordion.configured { border-color: rgba(47,164,215,.45); }
.sfl-accordion.expanded.configured { border-color: var(--teal); }

/* Inside accordion: row has no own border */
.sfl-accordion > .sfl-row {
  border: none;
  border-radius: 0;
  cursor: default;
}
.sfl-accordion > .sfl-row:hover { background: transparent; border: none; }

.sfl-accordion-body {
  padding: 20px 20px 24px;
  border-top: 1px solid var(--subtle);
  background: rgba(47,164,215,.015);
  animation: none;
}
.sfl-accordion-body.closing {
  display: none;
}
@keyframes sfl-body-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes sfl-body-out {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-4px); }
}

/* Chevron animation */
.sfl-chevron {
  width: 13px; height: 13px;
  flex-shrink: 0;
  transition: transform .22s ease;
}

/* Accordion body: settings form padding tweaks */
.sfl-accordion-body .settings-stack {
  margin-top: 0 !important;
}
.sfl-accordion-body .settings-context-bar { margin-bottom: 16px; }

/* sfl-table: no gap between accordion items */
.sfl-accordion + .sfl-accordion { margin-top: 0; }

/* Chevron flips 180° when accordion is open */
.sfl-accordion.expanded .sfl-chevron { transform: rotate(180deg); }
.sfl-table {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

/* ─── Step 2: File list rows ─────────── */

/* Named grid areas so mobile reflow is clean */
.sfl-name     { grid-area: name; }
.sfl-qty-col  { grid-area: qty;  }
.sfl-price-col{ grid-area: price;}
.sfl-btn-col  { grid-area: btn;  }
.sfl-note-block { grid-area: note; }

.sfl-row {
  display: grid;
  grid-template-columns: 1fr 96px 116px;
  grid-template-areas:
    "name qty price"
    "note note note";
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid var(--subtle);
  border-radius: 14px;
  transition: border-color .15s, background .15s;
}
.sfl-row:hover { border-color: rgba(47,164,215,.25); }
.sfl-row.sfl-active {
  border-color: var(--teal);
  background: rgba(47,164,215,.03);
}

/* Custom (Eltérő) mode row: accordion button first */
.sfl-row--custom {
  grid-template-columns: auto 1fr 96px 116px;
  grid-template-areas:
    "btn name qty price"
    "note note note note";
  column-gap: 12px;
}

/* File name cell */
.sfl-name {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.sfl-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--subtle);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray);
}
.sfl-icon svg { width: 17px; height: 17px; }
.sfl-filename {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Label above input/price */
.sfl-field-label {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  white-space: nowrap;
}

/* Quantity column */
.sfl-qty-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.sfl-qty-input {
  width: 64px;
  padding: 7px 8px;
  border: 1.5px solid var(--light);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: var(--black);
  background: var(--white);
  outline: none;
  transition: border-color .15s;
  -moz-appearance: textfield;
}
.sfl-qty-input:focus { border-color: var(--teal); }
.sfl-qty-input::-webkit-inner-spin-button,
.sfl-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

/* Price column */
.sfl-price-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;  /* Ár: pinned top, price pinned bottom */
  height: 48.5px;
}
.sfl-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--teal);
  white-space: nowrap;
  min-height: 1em;
}

/* Bigger accordion settings button (Eltérő mode, first column) */
.sfl-btn-col { display: flex; align-items: center; }
.fli-btn-accordion {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  width: 152px;          /* fixed width so tick badge doesn't shift layout */
  padding: 9px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--yellow);
  background: var(--yellow);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  cursor: pointer;
  transition: background .15s, border-color .15s;
  white-space: nowrap;
  overflow: hidden;
}
.fli-btn-accordion .sfl-chevron { width: 14px; height: 14px; flex-shrink: 0; }
.fli-btn-accordion:hover { background: var(--amber); box-shadow: 0 12px 32px rgba(255,176,64,.42); border: 1.5px solid var(--amber) }
.fli-btn-accordion.has-custom { background: rgba(47,164,215,.1); border: 1.5px solid var(--teal); box-shadow: none; color: var(--teal); }
/* .sfl-accordion.expanded .fli-btn-accordion { background: rgba(47,164,215,.14); border: 1.5px solid var(--teal) } */

/* Round teal badge with white tick — replaces plain ✓ */
.fli-check-badge {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-left: auto;  /* push to right edge inside fixed-width button */
}

/* Mobile: qty + price wrap to a new row, no hiding */
@media (max-width: 640px) {
  .sfl-row {
    grid-template-columns: auto 1fr;
    grid-template-areas: "name name" "qty price" "note note";
    gap: 8px 12px;
  }
  .sfl-row--custom {
    grid-template-columns: auto 1fr;
    grid-template-areas: "btn name" "qty price" "note note";
  }
  .sfl-price-col { align-items: flex-start; }
  .sfl-qty-input { width: 56px; }
  .fli-btn-accordion { width: 130px; font-size: 12px; padding: 8px 12px; }
}

/* ─── Step 2: Per-file note block ───────────── *
 * Checkbox stays visible at all times. The textarea only appears when the
 * row has `.has-note`; the textarea's value is preserved on f.note even when
 * the checkbox is unchecked (cart submission gates on the checkbox). */
.sfl-note-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px dashed rgba(0,0,0,.08);
  align-self: stretch;
  justify-self: stretch;
}
.sfl-note-cb-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--gray);
  line-height: 1.4;
  user-select: none;
  align-self: flex-start;
}
.sfl-note-cb-wrap span { color: var(--black); font-weight: 500; }
.sfl-note-input {
  display: none;
  width: 100%;
  height: calc(1.5em * 2 + 22px);   /* 2 lines × line-height + vertical padding */
  padding: 10px 12px;
  border: 1.5px solid var(--light);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--black);
  background: var(--white);
  outline: none;
  resize: none;
  overflow-y: auto;
  transition: border-color .15s;
}
.sfl-note-input:focus { border-color: var(--teal); }
.sfl-row.has-note .sfl-note-input { display: block; }

/* ─── Shared custom checkbox (matches the checkout consent box) ───── */
input[type="checkbox"].custom-cb {
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px;
  border: 1.5px solid rgba(0,0,0,0.2);
  border-radius: 4px;
  background: var(--white);
  cursor: pointer;
  flex-shrink: 0;
  transition: background .15s, border-color .15s;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
input[type="checkbox"].custom-cb:checked {
  background: var(--teal);
  border-color: var(--teal);
}
input[type="checkbox"].custom-cb:checked::after {
  content: ''; display: block;
  width: 5px; height: 9px;
  border: 2px solid #fff;
  border-top: none; border-left: none;
  transform: rotate(45deg) translate(-1px,-1px);
}

/* ─── Step 2: Unified & Save buttons ─────────── */
.o-btn-unified {
  background: var(--subtle);
  color: var(--black);
  border: 1.5px solid var(--light);
}
.o-btn-unified:hover {
  background: rgba(47,164,215,.06);
  border-color: var(--teal);
  color: var(--teal);
}
.o-btn-unified.is-active {
  background: rgba(47,164,215,.08);
  border-color: var(--teal);
  color: var(--teal);
}
.o-btn-save {
  background: rgba(47,164,215,.08);
  color: var(--teal);
  border: 1.5px solid rgba(47,164,215,.22);
  margin-top: 16px;
}
.o-btn-save:hover {
  background: rgba(47,164,215,.14);
  border-color: var(--teal);
}

/* ─── Step 2: Settings context bar ─────────── */
.settings-context-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--subtle);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  margin-bottom: 22px;
}
.settings-context-bar svg {
  width: 15px; height: 15px;
  color: var(--teal);
  flex-shrink: 0;
}
.settings-context-bar .scb-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
}
.settings-divider {
  height: 1px;
  background: var(--subtle);
  margin: 28px 0;
}
.step2-section-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}

    /* ===========================================
       NAV CART BUTTON
    =========================================== */
    .nav-cart-btn {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 56px; height: 56px;
      border-radius: var(--r-pill);
      border: 1.5px solid rgba(0,0,0,0.18);
      background: transparent;
      color: var(--black);
      cursor: pointer;
      transition: all .22s;
      text-decoration: none;
      flex-shrink: 0;
    }
    .nav-cart-btn:hover { border-color: var(--black); background: var(--black); color: var(--white); }
    .nav-cart-btn svg { width: 17px; height: 17px; }
    .nav-cart-badge {
      position: absolute;
      top: -5px; right: -5px;
      min-width: 18px; height: 18px;
      background: var(--teal);
      color: var(--white);
      border-radius: 999px;
      font-size: 10px; font-weight: 700;
      display: none;
      align-items: center; justify-content: center;
      font-family: 'Inter', sans-serif;
      padding: 0 4px;
    }

    /* ===========================================
       UPLOAD FLOW — SUMMARY STEP (op5)
    =========================================== */
    .summary-file-card {
      background: var(--subtle);
      border: 1px solid rgba(0,0,0,0.08);
      border-radius: var(--r-lg);
      padding: 18px 20px;
    }
    .summary-file-card-name {
      font-size: 13px; font-weight: 700; color: var(--black);
      margin-bottom: 12px;
      display: flex; align-items: center; gap: 8px;
    }
    .summary-file-card-name svg { width: 15px; height: 15px; color: var(--teal); flex-shrink: 0; }
    .summary-file-rows { display: flex; flex-direction: column; gap: 6px; }
    .summary-file-row {
      display: flex; justify-content: space-between;
      font-size: 13px;
    }
    .summary-file-row span:first-child { color: var(--gray); }
    .summary-file-row span:last-child  { font-weight: 500; color: var(--black); }
    .summary-file-row.file-price-row span:last-child { color: var(--teal); font-weight: 700; }
    .summary-total-row {
      display: flex; justify-content: space-between; align-items: baseline;
      padding: 14px 0; border-top: 2px solid rgba(0,0,0,0.09);
      font-size: 15px; font-weight: 700; color: var(--black);
      margin-bottom: 20px;
    }
    .summary-total-row span:last-child {
      font-family: 'Nunito', serif; font-size: 20px; color: var(--teal);
    }
    .summary-actions {
      display: flex; gap: 10px; margin-bottom: 4px; margin-top: 28px;
    }
    .summary-actions .btn-cart,
    .summary-actions .btn-order-now {
      flex: 1;
      display: flex; align-items: center; justify-content: center;
      gap: 8px; padding: 0 20px; height: 56px;
      border-radius: var(--r-pill);
      font-family: 'Inter', sans-serif; font-weight: 600; font-size: 15px;
      cursor: pointer; transition: all .22s; text-decoration: none;
      white-space: nowrap;
    }
    .summary-actions .btn-cart {
      background: transparent;
      color: var(--black);
      border: 1.5px solid rgba(0,0,0,0.18);
    }
    .summary-actions .btn-cart:hover {
      border-color: var(--black); background: var(--black); color: var(--white);
    }
    .summary-actions .btn-order-now {
      background: var(--yellow); color: var(--black); border: none;
    }
    .summary-actions .btn-order-now:hover {
      background: var(--amber); box-shadow: 0 10px 28px rgba(255,176,64,.40);
    }
    .summary-actions .btn-cart svg,
    .summary-actions .btn-order-now svg { width: 16px; height: 16px; }

    @media (max-width: 480px) {
      .summary-actions { flex-direction: column; }
      .summary-actions .btn-cart,
      .summary-actions .btn-order-now { flex: unset; width: 100%; height: 56px; }
    }

    /* ===========================================
       KOSAR.HTML — CART PAGE
    =========================================== */
    .cart-page { padding: 104px 52px 100px; min-height: 80vh; }
    .cart-page-inner { max-width: 1100px; margin: 0 auto; }
    .cart-page-title {
      font-size: clamp(26px, 3.5vw, 38px); font-weight: 700;
      letter-spacing: -1.5px; color: var(--black); margin-bottom: 36px;
    }
    .cart-page-sub { font-size: 15px; color: var(--gray); font-weight: 300; margin-bottom: 44px; display: none; }
    .cart-layout {
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 40px; align-items: start;
    }
    .cart-items { display: flex; flex-direction: column; gap: 16px; }
    .cart-item {
      display: grid; grid-template-columns: auto 1fr auto;
      gap: 16px; align-items: start;
      background: var(--white); border: 1px solid rgba(0,0,0,0.08);
      border-radius: var(--r-lg); padding: 20px 22px; transition: box-shadow .2s;
    }
    .cart-item:hover { box-shadow: 0 6px 24px rgba(0,0,0,.07); }
    .cart-item-icon {
      width: 56px; height: 56px; background: var(--subtle);
      border-radius: var(--r-md); display: flex; align-items: center;
      justify-content: center; color: var(--teal); flex-shrink: 0;
    }
    .cart-item-icon svg { width: 24px; height: 24px; }
    .cart-item-icon.upload-icon  { color: var(--teal); background: rgba(47,164,215,.08); }
    .cart-item-icon.product-icon { color: var(--teal); background: rgba(47,164,215,.08); }
    .cart-item-type {
      font-size: 10px; font-weight: 700; text-transform: uppercase;
      letter-spacing: 2px; color: var(--gray); margin-bottom: 4px;
    }
    .cart-item-name { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 8px; word-break: break-word; }
    .cart-item-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
    .cart-item-tag {
      padding: 3px 10px; border-radius: var(--r-pill);
      background: var(--subtle); border: 1px solid rgba(0,0,0,0.08);
      font-size: 11px; font-weight: 500; color: var(--gray);
    }
    .cart-item-note {
      font-size: 12.5px; line-height: 1.5; color: var(--gray);
      margin-bottom: 12px; word-break: break-word;
    }
    .cart-item-note-label { font-weight: 600; color: var(--black); }
    .cart-item-qty-row { display: flex; align-items: center; gap: 12px; }
    .cart-qty-ctrl {
      display: flex; align-items: center;
      border: 1.5px solid rgba(0,0,0,0.1); border-radius: var(--r-pill); overflow: hidden;
    }
    .cart-qty-btn {
      width: 34px; height: 34px; border: none; background: none;
      cursor: pointer; font-size: 16px; color: var(--black);
      transition: background .15s; font-family: 'Inter', sans-serif; font-weight: 500;
      display: flex; align-items: center; justify-content: center;
      line-height: 1; padding-bottom: 2px;
    }
    .cart-qty-btn:hover { background: var(--subtle); }
    .cart-qty-val {
      width: 38px; text-align: center; font-size: 14px; font-weight: 700;
      color: var(--black); border: none; outline: none; background: transparent;
      font-family: 'Inter', sans-serif;
    }
    .cart-item-remove {
      font-size: 12px; color: var(--gray); cursor: pointer;
      border: none; background: none; font-family: 'Inter', sans-serif;
      transition: color .15s; padding: 0; text-decoration: underline;
    }
    .cart-item-remove:hover { color: #d00; }
    .cart-item-price { text-align: right; flex-shrink: 0; }
    .cart-price-amount {
      font-family: 'Nunito', serif; font-size: 20px; font-weight: 700;
      color: var(--black); letter-spacing: -0.5px;
    }
    .cart-price-unit { font-size: 11px; color: var(--gray); margin-top: 3px; }
    .cart-empty {
      text-align: center; padding: 80px 24px;
      background: var(--subtle); border-radius: var(--r-xl);
    }
    .cart-empty-icon {
      width: 64px; height: 64px; margin: 0 auto 20px;
      background: rgba(0,0,0,0.06); border-radius: var(--r-lg);
      display: flex; align-items: center; justify-content: center; color: var(--teal);
    }
    .cart-empty-icon svg { width: 32px; height: 32px; position: relative; left: -1px; top: 1px; }
    .cart-empty h3 { font-size: 22px; color: var(--black); margin-bottom: 10px; }
    .cart-empty p  { font-size: 15px; color: var(--gray); font-weight: 300; margin-bottom: 28px; }
    .cart-summary-panel {
      background: var(--white); border: 1px solid rgba(0,0,0,0.08);
      border-radius: var(--r-xl); padding: 28px 26px; position: sticky; top: 92px;
    }
    .cart-summary-title { font-size: 17px; font-weight: 700; color: var(--black); margin-bottom: 20px; }
    .cart-summary-rows  { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
    .cart-summary-row   { display: flex; justify-content: space-between; font-size: 14px; color: var(--gray); }
    .cart-summary-row span:last-child { color: var(--black); font-weight: 500; }
    .cart-summary-divider { height: 1px; background: rgba(0,0,0,0.08); margin: 16px 0; }
    .cart-summary-total {
      display: flex; justify-content: space-between; align-items: baseline;
      font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 8px;
    }
    .cart-summary-total span:last-child { font-family: 'Nunito', serif; font-size: 24px; color: var(--teal); }
    .cart-summary-vat { font-size: 11px; color: var(--gray); margin-bottom: 22px; text-align: right; }
    .btn-checkout {
      display: flex; align-items: center; justify-content: center; gap: 9px; width: 100%;
      background: var(--yellow); color: var(--black);
      border: none; padding: 0 24px; height: 56px; border-radius: var(--r-pill);
      font-family: 'Inter', sans-serif; font-weight: 700; font-size: 16px;
      cursor: pointer; transition: all .25s; text-decoration: none;
    }
    .btn-checkout:hover { background: var(--amber); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,176,64,.40); }
    .btn-checkout svg { width: 18px; height: 18px; }
    .btn-continue-shopping {
      display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; margin-top: 10px;
      background: transparent; color: var(--black); border: 1.5px solid rgba(0,0,0,0.15);
      padding: 0 24px; height: 56px; border-radius: var(--r-pill); font-family: 'Inter', sans-serif;
      font-weight: 500; font-size: 14px; cursor: pointer; transition: all .2s; text-decoration: none;
    }
    .btn-continue-shopping:hover { border-color: var(--black); background: var(--black); color: var(--white); }
    .btn-continue-shopping svg { width: 15px; height: 15px; flex-shrink: 0; }
    .cart-trust-row  { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(0,0,0,0.07); }
    .cart-trust-item { display: flex; align-items: center; gap: 9px; font-size: 12px; color: var(--gray); }
    .cart-trust-item svg { width: 14px; height: 14px; color: var(--teal); flex-shrink: 0; }
    .cart-upload-cta {
      background: rgba(47,164,215,.04); border: 1.5px dashed rgba(47,164,215,.25);
      border-radius: var(--r-lg); padding: 22px 24px;
      display: flex; align-items: center; gap: 16px;
      cursor: pointer; transition: all .2s; text-decoration: none; margin-top: 8px;
    }
    .cart-upload-cta:hover { background: rgba(47,164,215,.08); border-color: rgba(47,164,215,.5); }
    .cart-upload-cta-icon {
      width: 44px; height: 44px; flex-shrink: 0;
      background: rgba(47,164,215,.10); border-radius: var(--r-md);
      display: flex; align-items: center; justify-content: center; color: var(--teal);
    }
    .cart-upload-cta-icon svg { width: 20px; height: 20px; }
    .cart-upload-cta-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--teal); }
    .cart-upload-cta-text span  { font-size: 12px; color: var(--gray); }

    /* ===========================================
       FIZETES.HTML — CHECKOUT PAGE
    =========================================== */
    .checkout-page { padding: 104px 52px 100px; min-height: 80vh; }
    .checkout-inner { max-width: 1100px; margin: 0 auto; }
    .checkout-breadcrumb {
      display: flex; align-items: center; gap: 10px;
      font-size: 13px; color: var(--gray); margin-bottom: 36px;
    }
    .checkout-breadcrumb a { color: var(--gray); text-decoration: none; transition: color .15s; }
    .checkout-breadcrumb a:hover { color: var(--teal); }
    .checkout-breadcrumb .bc-sep    { color: var(--light); }
    .checkout-breadcrumb .bc-active { color: var(--black); font-weight: 500; }
    .checkout-page-title {
      font-size: clamp(26px, 3.5vw, 38px); font-weight: 700;
      letter-spacing: -1.2px; color: var(--black); margin-bottom: 36px;
    }
    .checkout-layout {
      display: grid; grid-template-columns: 1fr 360px;
      gap: 44px; align-items: start;
    }
    .checkout-steps {
      display: flex; gap: 0; margin-bottom: 36px;
      border-bottom: 1px solid rgba(0,0,0,0.08);
    }
    .checkout-step {
      display: flex; align-items: center; gap: 8px;
      padding: 12px 20px 12px 0; font-size: 13px; font-weight: 500;
      color: var(--gray); border-bottom: 2px solid transparent;
      margin-bottom: -1px; cursor: default;
    }
    .checkout-step.active { color: var(--teal); border-bottom-color: var(--teal); font-weight: 700; }
    .checkout-step.done   { color: var(--black); }
    .checkout-step-num {
      width: 22px; height: 22px; border-radius: 50%;
      background: var(--subtle); color: var(--gray);
      font-size: 11px; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
    }
    .checkout-step.active .checkout-step-num { background: var(--teal); color: var(--white); }
    .checkout-step.done   .checkout-step-num { background: var(--mint); color: var(--white); }
    .checkout-step-sep { display: flex; align-items: center; padding: 0 8px; color: var(--light); font-size: 16px; }
    .form-section {
      background: var(--white); border: 1px solid rgba(0,0,0,0.08);
      border-radius: var(--r-xl); padding: 28px; margin-bottom: 20px;
    }
    .form-section-title {
      font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 20px;
      display: flex; align-items: center; gap: 9px;
    }
    .form-section-title svg { width: 16px; height: 16px; color: var(--teal); }
    .f-row { display: flex; gap: 16px; margin-bottom: 16px; }
    .f-row:last-child { margin-bottom: 0; }
    .f-field { display: flex; flex-direction: column; gap: 6px; flex: 1; }
    .f-field label {
      font-size: 12px; font-weight: 700; color: var(--black);
      text-transform: uppercase; letter-spacing: 0.5px;
    }
    .f-field input,
    .f-field select,
    .f-field textarea {
      padding: 12px 16px; border: 1.5px solid rgba(0,0,0,0.12);
      border-radius: var(--r-md); font-family: 'Inter', sans-serif;
      font-size: 14px; color: var(--black); background: var(--white);
      outline: none; transition: border-color .18s;
    }
    .f-field input:focus,
    .f-field select:focus,
    .f-field textarea:focus { border-color: var(--teal); }
    .f-field input::placeholder { color: var(--light); }
    .del-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .del-card {
      border: 1.5px solid rgba(0,0,0,0.1); border-radius: var(--r-lg);
      padding: 16px 18px; cursor: pointer; transition: all .18s;
      display: flex; gap: 14px; align-items: flex-start;
    }
    .del-card:hover { border-color: var(--teal); }
    .del-card.sel   { border-color: var(--teal); background: rgba(47,164,215,.04); }
    .del-card-icon  {
      width: 36px; height: 36px; border-radius: var(--r-sm);
      background: rgba(47,164,215,.09); display: flex;
      align-items: center; justify-content: center; color: var(--teal); flex-shrink: 0;
    }
    .del-card.sel .del-card-icon { background: var(--teal); color: var(--white); }
    .del-card-icon svg { width: 17px; height: 17px; }
    .del-card h4   { font-size: 13px; font-weight: 700; color: var(--black); margin-bottom: 3px; }
    .del-card p    { font-size: 12px; color: var(--gray); line-height: 1.5; margin-bottom: 6px; }
    .del-price     { font-size: 13px; font-weight: 700; color: var(--teal); }
    .billing-toggle { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; cursor: pointer; }
    .billing-toggle input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--teal); cursor: pointer; }
    .billing-toggle label { font-size: 13px; color: var(--black); cursor: pointer; }
    .pay-placeholder {
      text-align: center; padding: 32px 24px;
      background: var(--subtle); border-radius: var(--r-lg);
    }
    .pay-icon {
      width: 52px; height: 52px; background: rgba(47,164,215,.1);
      border-radius: var(--r-md); display: flex; align-items: center;
      justify-content: center; color: var(--teal); margin: 0 auto 14px;
    }
    .pay-icon svg { width: 24px; height: 24px; }
    .pay-placeholder h4 { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
    .pay-placeholder p  { font-size: 13px; color: var(--gray); line-height: 1.75; font-weight: 300; }
    .btn-place-order {
      display: flex; align-items: center; justify-content: center; gap: 9px; width: 100%;
      background: var(--yellow); color: var(--black);
      border: none; padding: 18px 24px; border-radius: var(--r-pill);
      font-family: 'Inter', sans-serif; font-weight: 700; font-size: 16px;
      cursor: pointer; transition: all .25s; text-decoration: none; margin-top: 24px;
    }
    .btn-place-order:hover { background: var(--amber); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,176,64,.42); }
    .btn-place-order svg { width: 18px; height: 18px; }
    .btn-back-to-cart {
      display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; margin-top: 10px;
      background: transparent; color: var(--black); border: 1.5px solid rgba(0,0,0,0.15);
      padding: 0 24px; height: 56px; border-radius: var(--r-pill); font-family: 'Inter', sans-serif;
      font-weight: 500; font-size: 14px; cursor: pointer; transition: all .2s; text-decoration: none;
    }
    .btn-back-to-cart:hover { border-color: var(--black); background: var(--black); color: var(--white); }
    .btn-back-to-cart svg { width: 15px; height: 15px; flex-shrink: 0; }
    .checkout-summary-panel {
      background: var(--white); border: 1px solid rgba(0,0,0,0.08);
      border-radius: var(--r-xl); padding: 24px; position: sticky; top: 92px;
    }
    .checkout-summary-title { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 18px; }
    .checkout-summary-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 18px; }
    .checkout-summary-item  { display: flex; align-items: flex-start; gap: 12px; }
    .cs-item-icon {
      width: 38px; height: 38px; flex-shrink: 0; background: rgba(0, 127, 115, .08);
      border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; color: var(--teal);
    }
    .cs-item-icon svg { width: 16px; height: 16px; }
    .cs-item-name  { font-size: 13px; font-weight: 600; color: var(--black); }
    .cs-item-sub   { font-size: 11px; color: var(--gray); margin-top: 2px; }
    .cs-item-price { font-size: 13px; font-weight: 700; color: var(--black); white-space: nowrap; }
    .checkout-summary-divider { height: 1px; background: rgba(0,0,0,0.08); margin: 14px 0; }
    .checkout-summary-row {
      display: flex; justify-content: space-between;
      font-size: 13px; color: var(--gray); margin-bottom: 8px;
    }
    .checkout-summary-row span:last-child { color: var(--black); font-weight: 500; }
    .checkout-summary-row.shipping span:last-child { color: var(--teal); }
    .checkout-summary-total {
      display: flex; justify-content: space-between; align-items: baseline;
      font-size: 15px; font-weight: 700; color: var(--black); margin-top: 12px;
    }
    .checkout-summary-total span:last-child { font-family: 'Nunito', serif; font-size: 22px; color: var(--teal); }
    .checkout-summary-vat { font-size: 11px; color: var(--gray); margin-top: 4px; text-align: right; }
    .order-success {
      display: none; text-align: center; padding: 60px 24px;
      background: var(--subtle); border-radius: var(--r-xl);
    }
    .order-success.show { display: block; }
    .order-success-icon {
      width: 68px; height: 68px; border-radius: 50%;
      background: var(--teal); display: flex; align-items: center;
      justify-content: center; color: var(--white); margin: 0 auto 22px;
    }
    .order-success-icon svg { width: 32px; height: 32px; }
    .order-success h2 { font-size: 28px; letter-spacing: -1px; color: var(--black); margin-bottom: 12px; }
    .order-success p  { font-size: 15px; color: var(--gray); font-weight: 300; line-height: 1.75; max-width: 500px; margin: 0 auto 28px; }
    .success-badge {
      display: inline-flex; align-items: center; gap: 7px;
      background: rgba(47,164,215,.08); color: var(--teal);
      border-radius: var(--r-pill); padding: 8px 18px;
      font-size: 13px; font-weight: 700; margin-bottom: 28px;
    }
    .success-badge svg { width: 14px; height: 14px; }

    /* ===========================================
       RESPONSIVE — NEW PAGES
    =========================================== */
    @media (max-width: 960px) {
      .checkout-page   { padding: 90px 24px 80px; }
      .checkout-layout { grid-template-columns: 1fr; }
      .checkout-summary-panel { position: static; order: -1; }
    }
    @media (max-width: 900px) {
      .cart-page   { padding: 90px 24px 80px; }
      .cart-layout { grid-template-columns: 1fr; }
      .cart-summary-panel { position: static; }
    }
    @media (max-width: 560px) {
      .del-grid { grid-template-columns: 1fr; }
      .f-row    { flex-direction: column; }
    }
    @media (max-width: 600px) {
      .cart-item { grid-template-columns: auto 1fr; }
      .cart-item-price { grid-column: 2; }
    }

.nav-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(0,0,0,0.2);
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-cart-btn:hover {
  background: transparent;
  color: var(--black);
  transform: translateY(-2px);
}
.nav-cart-btn svg { width: 26px; height: 26px; position: relative; left: -1px; top: 1px; }
.nav-cart-badge {
  position: absolute; top: -5px; right: -5px; min-width: 24px; height: 24px;
  background: var(--teal); color: var(--white); border-radius: 999px;
  font-size: 13px; font-weight: 700; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; padding: 0 4px;
}

@media (max-width: 600px) {
  .nav-cta {
    width: 59px; height: 59px; min-width: 59px;
    padding: 0; border-radius: 50%;
    gap: 0; justify-content: center; align-items: center;
    overflow: hidden; flex-shrink: 0;
    font-size: 0;   /* hides the bare text node */
    letter-spacing: 0;
  }
  .nav-cta svg { width: 26px; height: 26px; flex-shrink: 0; }
}

.nav-cta {
  margin-left: auto;
  margin-right: 8px;
}

@media (max-width: 480px) {
  .checkout-steps {
    flex-direction: column;
    gap: 0;
    border-bottom: none;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-bottom: 28px;
  }
  .checkout-step {
    padding: 13px 16px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    border-left: 3px solid transparent;
    margin-bottom: 0;
  }
  .checkout-step:last-of-type {
    border-bottom: none;
  }
  .checkout-step.active {
    border-left-color: var(--teal);
    border-bottom-color: rgba(0,0,0,0.06);
    background: rgba(47,164,215,0.04);
  }
  .checkout-step-sep {
    display: none;
  }
}

/* ─── Model-preview thumbnails ─────────────────────────────────────────
 * Rendered by assets/js/model-preview.js — a PNG data-URL of the uploaded
 * 3D file that replaces the generic document icon in file lists, summary
 * cards, cart rows, and the checkout sidebar. */
.file-thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
.fli-icon:has(.file-thumb),
.sfl-icon:has(.file-thumb),
.cart-item-icon.has-thumb,
.cs-item-icon.has-thumb {
  background: var(--subtle);
  overflow: hidden;
  padding: 0;
}
.summary-file-card-name .file-thumb {
  width: 28px; height: 28px;
  border-radius: 6px;
  flex-shrink: 0;
  object-fit: cover;
}

/* Step 2: per-row "−10% mennyiségi kedvezmény" note under the price cell. */
.sfl-price-col .sfl-discount {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.02em;
}

/* Discount pill shown in step 03 summary card file-price-row. */
.discount-pill {
  display: inline-block;
  padding: 2px 9px;
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  background: rgba(47,164,215,0.10);
  border-radius: var(--r-pill);
  letter-spacing: 0.02em;
  vertical-align: middle;
}

/* Cart: −10% pill wrapper, sits below the "/ db" unit line. */
.cart-price-discount { margin-top: 6px; text-align: right; }


/* Checkout: stack price + discount pill vertically inside cs-item-price. */
.cs-item-price { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.cs-item-discount { line-height: 1; }

/* Checkout summary — stay readable at narrow widths (< ~370 px). */
.checkout-summary-item .cs-item-body {
  flex: 1 1 auto;
  min-width: 0;
}
.checkout-summary-item .cs-item-name { overflow-wrap: anywhere; }
.checkout-summary-item .cs-item-price { flex-shrink: 0; }

@media (max-width: 420px) {
  .checkout-summary-item { gap: 8px; }
  .cs-item-icon { width: 32px; height: 32px; }
  .cs-item-name { font-size: 12.5px; }
  .cs-item-sub  { font-size: 10.5px; }
  .cs-item-price { font-size: 12.5px; }
}
