/* Stahovanie Expres — shared stylesheet */

:root {
  --font-heading: 'Segoe UI Semibold', 'Poppins', 'Trebuchet MS', system-ui, -apple-system, sans-serif;
  --font-body: 'Segoe UI', 'Poppins', system-ui, -apple-system, sans-serif;

  --bg: oklch(97% 0.012 70);
  --text: oklch(22% 0.02 260);
  --text-soft: oklch(38% 0.02 260);
  --text-mid: oklch(40% 0.02 260);
  --text-muted: oklch(45% 0.02 260);
  --text-muted2: oklch(50% 0.02 260);
  --text-dark2: oklch(30% 0.02 260);
  --text-dark3: oklch(35% 0.02 260);

  --orange: oklch(60% 0.16 45);
  --orange-dark: oklch(45% 0.16 45);
  --orange-bg: oklch(93% 0.05 45);
  --orange-tint1: oklch(93% 0.03 45);
  --orange-tint2: oklch(90% 0.03 45);

  --blue-bg: oklch(93% 0.05 250);
  --blue-text: oklch(45% 0.16 250);
  --blue-tint1: oklch(90% 0.03 250);
  --blue-tint2: oklch(86% 0.03 250);

  --navy: oklch(22% 0.02 260);
  --navy-border: oklch(35% 0.02 260);
  --white-soft: oklch(99% 0.005 70);
  --border: oklch(90% 0.01 70);
  --border-soft: oklch(92% 0.01 70);
  --border-strong: oklch(85% 0.01 70);

  --footer-text: oklch(90% 0.01 70);
  --footer-text2: oklch(80% 0.01 70);
  --footer-text3: oklch(78% 0.01 70);
  --footer-text4: oklch(70% 0.01 70);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */

.top-strip {
  background: var(--navy);
  color: oklch(96% 0.005 70);
  font-size: 13px;
  padding: 6px 24px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white-soft);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-badge {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}

.logo-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 19px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 600;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark2);
}

.nav-links a.active { color: var(--orange); }

.nav-cta {
  text-decoration: none;
  background: var(--orange);
  color: #fff !important;
  padding: 9px 16px;
  border-radius: 8px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--border-strong);
  background: #fff;
  cursor: pointer;
  font-size: 18px;
}

@media (max-width: 860px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white-soft);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px;
    gap: 16px;
    display: none;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.2);
    z-index: 40;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .top-strip { display: none; }
}

/* ---------- Buttons & badges ---------- */

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  padding: 15px 26px;
  border-radius: 9px;
  font-size: 15px;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-sm { padding: 12px 20px; font-size: 14px; }
.btn-block { display: block; width: 100%; }

.btn-primary { background: var(--orange); color: #fff !important; }
.btn-dark { background: var(--navy); color: #fff !important; }
.btn-white { background: #fff; color: var(--text) !important; border: 1px solid var(--border-strong); }
.btn-white-on-orange { background: #fff; color: var(--orange-dark) !important; }

.badge {
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.badge-orange { background: var(--orange-bg); color: var(--orange-dark); }
.badge-blue { background: var(--blue-bg); color: var(--blue-text); }

.text-link {
  color: var(--orange-dark);
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
}

/* ---------- Typography helpers ---------- */

h1, h2, h3 { font-family: var(--font-heading); margin: 0; }

.eyebrow { color: var(--text-muted2); font-size: 13px; margin: 0 0 8px; }

/* ---------- Sections ---------- */

.section { padding: 72px 24px; }
.section-tight { padding: 40px 24px; }
.section-dark { background: var(--navy); color: #fff; }
.section-white { background: #fff; }
.section-orange { background: var(--orange); }

.section-title { text-align: center; margin-bottom: 44px; }
.section-title h2 { font-weight: 800; font-size: 32px; margin: 0 0 12px; }
.section-title p { color: var(--text-muted); font-size: 16px; max-width: 560px; margin: 0 auto; }

/* ---------- Hero ---------- */

.hero {
  max-width: 1240px;
  margin: 0 auto;
  padding: 72px 24px 56px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-weight: 800;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

.hero p { font-size: 18px; line-height: 1.6; color: var(--text-soft); max-width: 520px; margin: 0 0 28px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }

.hero-checks { display: flex; gap: 28px; flex-wrap: wrap; font-size: 14px; color: var(--text-soft); }

.photo-frame {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--border);
}

.photo-frame img { width: 100%; height: 100%; object-fit: cover; }

.photo-frame.frame-sm { border-radius: 16px; }
.photo-frame.frame-16-10 { aspect-ratio: 16/10; }
.photo-frame.frame-16-9 { aspect-ratio: 16/9; }

/* ---------- Feature strip ---------- */

.feature-strip {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.feature-strip__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-mid);
}

/* ---------- Grids ---------- */

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }

@media (max-width: 860px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr !important; }
  .grid-4 { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ---------- Cards ---------- */

.card {
  background: var(--white-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}

.card-link { text-decoration: none; color: inherit; display: block; }
.card-icon { font-size: 26px; margin-bottom: 14px; }
.card-title { font-family: var(--font-heading); font-weight: 700; font-size: 17px; margin-bottom: 8px; }
.card-desc { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

.value-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}
.value-card .card-icon { font-size: 24px; margin-bottom: 10px; }
.value-card .card-title { font-size: 15px; }
.value-card .card-desc { font-size: 13px; }

/* ---------- Steps ---------- */

.steps-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
@media (max-width: 860px) { .steps-grid { grid-template-columns: 1fr; } }
.step-num { font-family: var(--font-heading); font-weight: 800; font-size: 28px; color: oklch(65% 0.16 45); margin-bottom: 10px; }
.step-title { font-weight: 700; margin-bottom: 6px; }
.step-desc { font-size: 14px; color: var(--footer-text3); line-height: 1.55; }

/* ---------- Testimonials ---------- */

.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
}
.stars { color: var(--orange); margin-bottom: 10px; }
.testimonial p { font-size: 14px; line-height: 1.6; color: var(--text-dark2); margin: 0 0 14px; }
.testimonial .name { font-weight: 700; font-size: 13px; }
.testimonial .role { font-size: 12px; color: var(--text-muted2); }

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--orange);
}
.cta-band__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 56px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.cta-band__inner .cta-title { font-family: var(--font-heading); font-weight: 800; font-size: 26px; color: #fff; margin-bottom: 6px; }
.cta-band__inner .cta-sub { color: oklch(97% 0.02 45); font-size: 15px; }

.cta-band-simple { background: var(--orange); text-align: center; }
.cta-band-simple__inner { max-width: 1240px; margin: 0 auto; padding: 48px 24px; }
.cta-band-simple .cta-title { font-family: var(--font-heading); font-weight: 800; font-size: 24px; color: #fff; margin-bottom: 14px; }

/* ---------- Footer ---------- */

.site-footer { background: var(--navy); color: var(--footer-text); font-family: var(--font-body); }

.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 56px 24px 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand .logo-badge { width: 34px; height: 34px; font-size: 15px; }
.footer-brand .name { font-family: var(--font-heading); font-weight: 800; font-size: 17px; color: #fff; }
.footer-desc { font-size: 14px; line-height: 1.6; color: var(--footer-text2); max-width: 260px; margin: 0; }

.footer-col-title { font-family: var(--font-heading); font-weight: 700; color: #fff; font-size: 14px; margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-links a { color: var(--footer-text2); text-decoration: none; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--footer-text2); }

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid var(--navy-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--footer-text4);
}
.footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom-links a { color: var(--footer-text4); text-decoration: none; }

/* ---------- Forms ---------- */

.form-panel { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
.form-panel-title { font-family: var(--font-heading); font-weight: 700; font-size: 18px; margin-bottom: 18px; }

.form { display: flex; flex-direction: column; gap: 14px; }

.form input[type="text"],
.form input[type="tel"],
.form input[type="email"],
.form select,
.form textarea {
  font-family: var(--font-body);
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  font-size: 14px;
  width: 100%;
}

.form select { color: var(--text-dark2); }
.form textarea { resize: vertical; }

.form-checkline { display: flex; gap: 8px; align-items: flex-start; font-size: 12px; color: var(--text-muted); }
.form-checkline input { margin-top: 2px; }
.form-checkline a { color: var(--orange-dark); }

.form-success {
  background: var(--orange-bg);
  border-radius: 10px;
  padding: 20px;
  font-size: 14px;
  color: oklch(40% 0.16 45);
}

.contact-info { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.contact-info-row { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-row .icon { font-size: 20px; }
.contact-info-row .label { font-weight: 700; font-size: 14px; }
.contact-info-row .value { font-size: 14px; color: var(--text-muted); }

.map-placeholder {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--blue-tint1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 20px;
}
.map-placeholder span.addr { font-weight: 700; font-size: 14px; color: var(--text); }
.map-placeholder a { font-size: 13px; color: var(--orange-dark); font-weight: 700; text-decoration: none; }

/* ---------- Pricing ---------- */

.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
@media (max-width: 860px) { .pricing-grid { grid-template-columns: 1fr; } }

.pricing-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
.pricing-card--featured { background: var(--navy); color: #fff; position: relative; }
.pricing-card .plan-name { font-family: var(--font-heading); font-weight: 700; font-size: 18px; margin-bottom: 6px; }
.pricing-card .plan-sub { color: var(--text-muted); font-size: 13px; margin-bottom: 20px; }
.pricing-card--featured .plan-sub { color: var(--footer-text3); }
.pricing-card .plan-price { font-family: var(--font-heading); font-weight: 800; font-size: 32px; margin-bottom: 4px; }
.pricing-card .plan-detail { color: var(--text-muted2); font-size: 13px; margin-bottom: 22px; }
.pricing-card--featured .plan-detail { color: var(--footer-text4); }
.pricing-card ul { margin: 0 0 24px; padding-left: 18px; font-size: 14px; color: var(--text-dark3); line-height: 1.8; }
.pricing-card--featured ul { color: var(--footer-text2); }
.pricing-badge {
  position: absolute; top: -12px; right: 24px;
  background: var(--orange); color: #fff; font-size: 12px; font-weight: 700;
  padding: 5px 12px; border-radius: 20px;
}

.price-table { background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.price-table .row { display: grid; grid-template-columns: 2fr 1fr; padding: 14px 22px; border-top: 1px solid var(--border-soft); }
.price-table .row:first-child { border-top: none; background: oklch(95% 0.01 70); font-weight: 700; }

/* ---------- Blog ---------- */

.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
@media (max-width: 860px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { text-decoration: none; color: inherit; background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.blog-card .thumb { aspect-ratio: 16/10; overflow: hidden; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .body { padding: 22px; }
.blog-card .meta { font-size: 12px; color: var(--text-muted2); margin-bottom: 8px; }
.blog-card .title { font-family: var(--font-heading); font-weight: 700; font-size: 17px; margin-bottom: 8px; }
.blog-card .excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

.article { max-width: 720px; margin: 0 auto; padding: 56px 24px 72px; }
.article .back-link { color: var(--orange-dark); font-size: 13px; text-decoration: none; font-weight: 700; }
.article .meta { font-size: 13px; color: var(--text-muted2); margin: 18px 0 10px; }
.article h1 { font-weight: 800; font-size: clamp(28px, 4vw, 38px); line-height: 1.15; margin: 0 0 20px; }
.article .cover { aspect-ratio: 16/9; border-radius: 14px; overflow: hidden; margin-bottom: 28px; }
.article .cover img { width: 100%; height: 100%; object-fit: cover; }
.article .prose { font-size: 16px; line-height: 1.75; color: var(--text-dark2); }
.article .prose h2 { font-weight: 700; font-size: 20px; margin: 28px 0 12px; }
.article .prose p { margin: 0 0 16px; }
.article-cta {
  margin-top: 36px; padding: 24px; background: #fff; border: 1px solid var(--border); border-radius: 14px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.article-cta .label { font-weight: 700; }

/* ---------- Legal pages ---------- */

.legal-article { max-width: 760px; margin: 0 auto; padding: 56px 24px 80px; }
.legal-article h1 { font-weight: 800; font-size: 32px; margin: 0 0 8px; }
.legal-article .updated { color: var(--text-muted2); font-size: 13px; margin: 0 0 32px; }
.legal-article .prose { font-size: 15px; line-height: 1.75; color: var(--text-dark2); }
.legal-article .prose h2 { font-family: var(--font-heading); font-weight: 700; font-size: 18px; margin: 28px 0 10px; }
.legal-article .prose ul { padding-left: 20px; line-height: 1.9; }
.legal-article .prose a { color: var(--orange-dark); }

.legal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 36px; }
@media (max-width: 860px) { .legal-grid { grid-template-columns: 1fr; } }
.legal-box { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
.legal-box .title { font-weight: 700; font-size: 15px; margin-bottom: 10px; }
.legal-box .desc { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* ---------- Eshop ---------- */

.eshop-cart-bar { position: sticky; top: 64px; z-index: 30; display: flex; justify-content: flex-end; max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.cart-btn {
  background: var(--navy); color: #fff; border: none; padding: 12px 18px; border-radius: 30px;
  font-weight: 700; font-size: 14px; cursor: pointer; display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 20px -8px rgba(0,0,0,0.4);
}
.cart-count { background: var(--orange); border-radius: 12px; padding: 2px 8px; font-size: 12px; }

.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
@media (max-width: 860px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .product-grid { grid-template-columns: 1fr; } }

.product-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; }
.product-card .thumb { aspect-ratio: 4/3; overflow: hidden; }
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-card .body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-card .name { font-family: var(--font-heading); font-weight: 700; font-size: 15px; }
.product-card .desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; flex: 1; }
.product-card .buy-row { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; }
.product-card .price { font-family: var(--font-heading); font-weight: 800; font-size: 18px; }
.product-card .add-btn { background: var(--orange); color: #fff; border: none; padding: 10px 16px; border-radius: 8px; font-weight: 700; font-size: 13px; cursor: pointer; }

.perks-strip { background: #fff; border-top: 1px solid var(--border); }
.perks-strip__inner { max-width: 1240px; margin: 0 auto; padding: 48px 24px; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; text-align: center; }
.perk .icon { font-size: 22px; margin-bottom: 6px; }
.perk .title { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.perk .sub { font-size: 12px; color: var(--text-muted); }

.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 60; display: none; }
.cart-overlay.open { display: block; }

.cart-drawer {
  position: fixed; top: 0; right: -420px; bottom: 0; width: 420px; max-width: 100vw; background: #fff;
  z-index: 61; display: flex; flex-direction: column; box-shadow: -16px 0 40px -20px rgba(0,0,0,0.4);
  transition: right 0.25s ease;
}
.cart-drawer.open { right: 0; }

.cart-drawer__head { padding: 20px 24px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.cart-drawer__head .title { font-family: var(--font-heading); font-weight: 700; font-size: 17px; }
.cart-drawer__head button { border: none; background: none; font-size: 20px; cursor: pointer; }

.cart-drawer__body { flex: 1; overflow-y: auto; padding: 20px 24px; display: flex; flex-direction: column; gap: 16px; }
.cart-drawer__empty { color: var(--text-muted); font-size: 14px; text-align: center; padding: 40px 0; }

.cart-line { display: flex; gap: 14px; align-items: center; border-bottom: 1px solid var(--border-soft); padding-bottom: 14px; }
.cart-line .thumb { width: 56px; height: 56px; border-radius: 8px; flex-shrink: 0; overflow: hidden; }
.cart-line .thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line .info { flex: 1; }
.cart-line .name { font-weight: 700; font-size: 13px; margin-bottom: 4px; }
.cart-line .unit { font-size: 12px; color: var(--text-muted); }
.cart-line .qty-row { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.cart-line .qty-row button { width: 24px; height: 24px; border-radius: 6px; border: 1px solid var(--border-strong); background: #fff; cursor: pointer; }
.cart-line .qty-row span { font-size: 13px; font-weight: 700; min-width: 16px; text-align: center; }
.cart-line .line-right { text-align: right; }
.cart-line .line-total { font-weight: 700; font-size: 13px; margin-bottom: 8px; }
.cart-line .remove-btn { border: none; background: none; color: oklch(50% 0.14 30); font-size: 12px; cursor: pointer; }

.cart-drawer__foot { padding: 20px 24px; border-top: 1px solid var(--border); }
.cart-drawer__foot .total-row { display: flex; justify-content: space-between; font-weight: 700; font-size: 16px; margin-bottom: 14px; }

.checkout-form { flex: 1; overflow-y: auto; padding: 20px 24px; display: flex; flex-direction: column; gap: 12px; }
.checkout-form .total-note { font-size: 13px; color: var(--text-muted); }
.checkout-actions { display: flex; gap: 10px; margin-top: 8px; }
.checkout-actions .btn { flex: 1; }
.checkout-actions .btn.submit { flex: 2; }

.order-done { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px 24px; text-align: center; gap: 14px; }
.order-done .icon { font-size: 40px; }
.order-done .title { font-family: var(--font-heading); font-weight: 700; font-size: 18px; }
.order-done .desc { font-size: 14px; color: var(--text-muted); }

/* ---------- Utilities ---------- */

.text-center { text-align: center; }
.hidden { display: none !important; }
