/* ==========================================================================
   J&J Party Rentals — design system
   Palette pulled from the logo: sky blue background, blue→pink "J&J"
   gradient, purple wordmark, yellow/coral/purple balloon accents.
   ========================================================================== */

:root {
  --blue: #2f9bd6;
  --blue-dark: #1f6fa3;
  --pink: #ef5b83;
  --yellow: #f4b400;
  --purple: #5b4a8a;
  --purple-dark: #443a68;

  --bg: #fafcff;
  --surface: #ffffff;
  --border: #e2edf5;
  --text: #2b2b3d;
  --text-muted: #6b7280;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 3px rgba(43, 43, 61, 0.06);
  --shadow-md: 0 6px 20px rgba(43, 43, 61, 0.08);

  --gradient-brand: linear-gradient(135deg, var(--blue) 0%, var(--pink) 100%);

  --max-width: 1160px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

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

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  color: var(--purple-dark);
}

.nav-brand img {
  width: 44px;
  height: 44px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue-dark);
  border-bottom-color: var(--pink);
}

.nav-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  color: var(--purple-dark);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 3px;
}

.lang-btn {
  border: none;
  background: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
}

.lang-btn.active {
  color: #fff;
  background: var(--purple-dark);
}

.nav-cart .cart-count {
  background: var(--pink);
  color: #fff;
  font-size: 0.75rem;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--purple-dark);
  padding: 4px 8px;
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 20px 16px;
    display: none;
  }

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

  .nav-links a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-links .lang-switch {
    margin-top: 14px;
  }
}

@media (min-width: 761px) {
  .nav-links .lang-switch {
    margin-left: 8px;
  }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--surface);
  color: var(--purple-dark);
  border: 1.5px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue-dark);
}

.btn-block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

.hero {
  padding: 56px 0 40px;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 1 1 380px;
}

.hero-copy .eyebrow {
  color: var(--pink);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.1;
  margin: 10px 0 16px;
  color: var(--purple-dark);
}

.hero-copy p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 46ch;
  margin: 0 0 26px;
}

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

.hero-media {
  flex: 1 1 260px;
  display: flex;
  justify-content: center;
}

.hero-media img {
  width: min(320px, 80%);
  filter: drop-shadow(0 12px 24px rgba(43, 43, 61, 0.12));
}

/* ---------- Section headings ---------- */

.section {
  padding: 44px 0;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.section-head h2 {
  font-size: 1.6rem;
  margin: 0;
  color: var(--purple-dark);
}

.section-head p {
  color: var(--text-muted);
  margin: 4px 0 0;
}

.section-link {
  font-weight: 700;
  color: var(--blue-dark);
  text-decoration: none;
  white-space: nowrap;
}

.section-link:hover {
  text-decoration: underline;
}

/* ---------- About / owner ---------- */

.about-panel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.about-panel::before {
  content: "“";
  position: absolute;
  top: -46px;
  right: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13rem;
  line-height: 1;
  color: var(--blue);
  opacity: 0.06;
  pointer-events: none;
}

.about-media {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.about-avatar {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-brand);
  color: #fff;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--surface);
  outline: 3px solid var(--border);
  object-fit: cover;
}

.about-badge {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--purple-dark);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.about-copy {
  position: relative;
  flex: 1 1 380px;
}

.about-copy .eyebrow {
  color: var(--pink);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
}

.about-copy h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 10px 0 14px;
  color: var(--purple-dark);
}

.about-intro {
  font-weight: 700;
  color: var(--text);
  margin: 0 0 14px;
}

.about-quote {
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--text);
  margin: 0 0 14px;
  padding-left: 18px;
  border-left: 3px solid var(--pink);
}

.about-copy > p:not(.about-intro):not(.about-quote) {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 22px;
  max-width: 56ch;
}

.about-signature {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--purple-dark);
  margin: 0;
}

.about-signature span {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

@media (max-width: 760px) {
  .about-panel {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .about-quote {
    text-align: left;
  }

  .about-copy > p:not(.about-intro):not(.about-quote) {
    max-width: none;
  }
}

/* ---------- Promo banner ---------- */

.promo-banner {
  background: var(--gradient-brand);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 36px;
}

.promo-banner strong {
  font-size: 1.05rem;
}

.promo-banner span {
  opacity: 0.92;
  font-size: 0.92rem;
}

/* ---------- Bundle cards ---------- */

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.bundle-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
}

.bundle-tag {
  position: absolute;
  top: -12px;
  left: 22px;
  background: var(--yellow);
  color: #4a3600;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

.bundle-card h3 {
  margin: 6px 0 4px;
  font-size: 1.2rem;
  color: var(--purple-dark);
}

.bundle-guests {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue-dark);
  background: #eaf6fd;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin: 0 0 12px;
}

.bundle-note {
  margin: 6px 0 0;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--text-muted);
}

.bundle-note a {
  color: var(--blue-dark);
  font-weight: 700;
  text-decoration: underline;
}

.bundle-extras {
  margin: 14px 0 4px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
}

.bundle-extras strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--purple-dark);
  margin-bottom: 4px;
}

.bundle-extras ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.bundle-extras li {
  padding: 3px 0;
}

.bundle-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 6px 0 14px;
}

.bundle-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue-dark);
}

.bundle-price-old {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.bundle-items {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  color: var(--text-muted);
  font-size: 0.92rem;
  flex: 1;
}

.bundle-items li {
  padding: 5px 0 5px 22px;
  position: relative;
}

.bundle-items li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: 700;
}

.bundle-table-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  margin: 0 0 14px;
}

.bundle-table-select {
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}

/* ---------- Category shortcuts ---------- */

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

.cat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.cat-card .cat-icon {
  font-size: 1.8rem;
}

.cat-card strong {
  display: block;
  color: var(--purple-dark);
  margin-bottom: 2px;
}

.cat-card span {
  font-size: 0.86rem;
  color: var(--text-muted);
}

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

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-card .service-icon {
  font-size: 1.8rem;
}

.service-card strong {
  color: var(--purple-dark);
}

.service-card span:last-child {
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* ---------- Shop page ---------- */

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.filter-btn {
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--text);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  cursor: pointer;
}

.filter-btn.active {
  background: var(--gradient-brand);
  border-color: transparent;
  color: #fff;
}

.item-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.item-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.item-card .item-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.item-card h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  color: var(--purple-dark);
}

.item-dims {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0 0 8px;
}

.item-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0 0 14px;
  flex: 1;
}

.item-details {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 0.88rem;
  flex: 1;
}

.item-details li {
  padding: 3px 0 3px 18px;
  position: relative;
}

.item-details li::before {
  content: "•";
  position: absolute;
  left: 2px;
  color: var(--pink);
  font-weight: 800;
}

.item-extras {
  margin: 0 0 14px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
}

.item-extras strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--purple-dark);
  margin-bottom: 4px;
}

.item-extras ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.item-extras li {
  padding: 3px 0;
}

.extra-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.extra-option input[type="checkbox"] {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  accent-color: var(--blue-dark);
  cursor: pointer;
}

.extra-name {
  flex: 1;
}

.extra-price {
  font-weight: 700;
  color: var(--blue-dark);
  font-size: 0.85rem;
}

.item-stock {
  font-size: 0.78rem;
  color: var(--blue-dark);
  background: #eaf6fd;
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  width: fit-content;
}

.item-mode {
  margin-bottom: 12px;
}

.item-mode label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}

.item-mode select {
  width: 100%;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
}

.item-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.item-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--blue-dark);
}

.item-price small {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.qty-stepper button {
  background: var(--bg);
  border: none;
  width: 30px;
  height: 30px;
  font-size: 1rem;
  cursor: pointer;
  color: var(--purple-dark);
}

.qty-stepper input {
  width: 34px;
  text-align: center;
  border: none;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-size: 0.92rem;
  -moz-appearance: textfield;
}

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

.item-add-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.item-add-row .btn {
  flex: 1;
  padding: 10px 16px;
  font-size: 0.88rem;
}

.added-flash {
  font-size: 0.8rem;
  color: #1e9e5a;
  font-weight: 700;
  margin-top: 8px;
  height: 1em;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.added-flash.show {
  opacity: 1;
}

/* ---------- Catering page ---------- */

.catering-hero {
  padding: 48px 0 8px;
  text-align: center;
}

.catering-hero .eyebrow {
  color: var(--pink);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
}

.catering-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.1;
  margin: 10px 0 14px;
  color: var(--purple-dark);
}

.catering-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 56ch;
  margin: 0 auto;
}

.catering-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.catering-disclaimer {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 56ch;
  margin: 24px auto 0;
}

.catering-grid .item-card {
  padding: 32px 28px;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.catering-grid .item-icon {
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.catering-grid h3 {
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.catering-grid .item-dims {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue-dark);
  background: #eaf6fd;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin: 0 0 12px;
}

.catering-grid .item-desc {
  display: none;
}

.catering-grid .item-stock {
  display: none;
}

.catering-grid .item-price-row {
  margin-top: 6px;
}

.catering-grid .qty-stepper {
  display: none;
}

.catering-grid .item-price {
  font-size: 1.9rem;
}

.catering-grid .item-details {
  font-size: 0.98rem;
  line-height: 1.5;
}

.catering-grid .item-details li {
  font-weight: 600;
  color: var(--text);
}

.catering-grid .item-extras {
  margin-bottom: 20px;
}

.catering-grid .item-extras strong {
  font-size: 0.85rem;
}

.catering-grid .item-extras ul {
  font-size: 0.95rem;
}

.catering-grid .item-extras li {
  font-weight: 600;
  color: var(--text);
}

.catering-grid .extra-option input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

.catering-grid .extra-price {
  font-size: 0.95rem;
}

.catering-grid .item-add-row .btn {
  font-size: 1.02rem;
  font-weight: 800;
  padding: 13px 18px;
}

/* ---------- Cart page ---------- */

.cart-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: start;
}

.cart-layout[hidden] {
  display: none;
}

@media (max-width: 860px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
}

.cart-items {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.cart-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.cart-row:last-child {
  border-bottom: none;
}

.cart-row-info {
  flex: 1;
  min-width: 0;
}

.cart-row-info h4 {
  margin: 0 0 2px;
  font-size: 0.98rem;
  color: var(--purple-dark);
}

.cart-row-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.cart-row-price {
  font-weight: 700;
  color: var(--blue-dark);
  min-width: 70px;
  text-align: right;
}

.cart-row-remove {
  background: none;
  border: none;
  color: var(--pink);
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 6px;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.cart-empty .btn {
  margin-top: 18px;
}

.cart-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  position: sticky;
  top: 90px;
}

.cart-summary h3 {
  margin-top: 0;
  color: var(--purple-dark);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
}

.summary-row.total {
  font-weight: 800;
  font-size: 1.15rem;
  border-bottom: none;
  padding-top: 14px;
  color: var(--blue-dark);
}

/* ---------- Quote form ---------- */

.quote-form {
  margin-top: 26px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 13px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 0.94rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 480px) {
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 10px;
}

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

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  margin-top: 60px;
  padding: 40px 0 24px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--purple-dark);
}

.footer-brand img {
  width: 36px;
  height: 36px;
}

.footer-contact {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-heading {
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 6px;
}

.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.footer-socials a {
  display: inline-flex;
  color: var(--text-muted);
  transition: color 0.15s ease;
}

.footer-socials a:hover {
  color: var(--purple-dark);
}

.footer-contact a {
  color: var(--blue-dark);
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* ---------- Misc ---------- */

.page-hero {
  padding: 40px 0 12px;
}

.page-hero h1 {
  color: var(--purple-dark);
  margin: 0 0 6px;
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
}

.page-hero p {
  color: var(--text-muted);
  margin: 0;
  max-width: 60ch;
}

.confirm-box {
  text-align: center;
  padding: 80px 20px;
  max-width: 480px;
  margin: 0 auto;
}

.confirm-box img {
  width: 90px;
  margin: 0 auto 20px;
}

.confirm-box h1 {
  color: var(--purple-dark);
  margin-bottom: 10px;
}

.confirm-box p {
  color: var(--text-muted);
  margin-bottom: 26px;
}
