:root {
  /* Pastel luxe palette (soft blush + rose gold) */
  --bg: #f5d9d5;
  --surface: #fff7f6;
  --text: #3a2830;
  --muted: #796771;
  --accent: #c69aa7;
  --accent-strong: #a06b79;
  --border: #e6c2c9;
  --focus: #6b7d8a;
  --shadow-soft: 0 16px 36px rgba(88, 60, 70, 0.12);
  --shadow: 0 28px 64px rgba(88, 60, 70, 0.18);
  --logo-bg: #ffe2dc;
  /* [TBD] Optional hero background image */
  --hero-image: url("/img/hero.png");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial,
    sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

main {
  background: var(--bg);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  padding: 0.5rem 1rem;
  background: var(--text);
  color: #ffffff;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 226, 220, 0.95);
  border-bottom: 1px solid rgba(255, 210, 202, 0.9);
  transition: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 0.75rem 1rem;
  max-width: min(1200px, 92%);
  margin: 0 auto;
  min-height: 72px;
  height: 72px;
  transition: none;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 56px;
}

.brand img {
  height: 56px;
  width: auto;
  display: block;
  transform: none;
  transition: none;
}

.dc-desktop-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-left: 2rem;
  font-size: 0.9rem;
}

.dc-desktop-nav a {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--text);
  background: rgba(255, 255, 255, 0.35);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.dc-desktop-nav a.is-active,
.dc-mobile-links a.is-active {
  background: var(--accent);
  color: #fff8f7;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(155, 102, 120, 0.35);
}

.dc-desktop-nav a:hover,
.dc-desktop-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.8);
  color: var(--accent-strong);
}

.dc-nav-btn {
  background: var(--accent);
  color: #fff8f7;
  border-color: var(--accent);
}


.dc-mobile-toggle {
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 10px 12px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}

.dc-burger {
  display: block;
  width: 26px;
  height: 2px;
  background: rgba(0, 0, 0, 0.55);
  position: relative;
}

.dc-burger::before,
.dc-burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 26px;
  height: 2px;
  background: rgba(0, 0, 0, 0.55);
}

.dc-burger::before {
  top: -7px;
}

.dc-burger::after {
  top: 7px;
}

.dc-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 9999;
  display: none;
  justify-items: start;
  align-items: stretch;
}

body.dc-menu-open {
  overflow: hidden;
}

body.dc-menu-open .dc-mobile-overlay {
  display: grid;
}

.dc-mobile-panel {
  width: 90vw;
  max-width: 520px;
  height: 100%;
  background: rgba(255, 255, 255, 0.94);
  border-top-right-radius: 28px;
  border-bottom-right-radius: 28px;
  box-shadow: 20px 0 60px rgba(0, 0, 0, 0.22);
  transform: translateX(-100%);
  transition: transform 320ms ease;
  position: relative;
  padding: 20px;
}

body.dc-menu-open .dc-mobile-panel {
  transform: translateX(0);
}

.dc-mobile-panel::after {
  content: "";
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.45);
  opacity: 0.35;
  pointer-events: none;
}

.dc-mobile-close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: 0;
  background: transparent;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.6);
}

.dc-mobile-links {
  height: calc(100% - 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.dc-mobile-links a {
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.85);
  padding: 10px 12px;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.dc-mobile-links a:hover,
.dc-mobile-links a:focus-visible {
  background: rgba(0, 0, 0, 0.06);
  outline: none;
}

.dc-mobile-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.dc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.dc-btn-wa {
  background: rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.85);
}

.dc-btn-call {
  background: rgba(255, 226, 220, 0.8);
  color: rgba(0, 0, 0, 0.85);
}

@media (max-width: 899px) {
  .dc-mobile-toggle {
    display: inline-flex;
  }
}

@media (min-width: 900px) {
  .dc-mobile-panel {
    width: 48vw;
    max-width: none;
  }
  .dc-desktop-nav {
    display: flex;
  }
  .dc-mobile-toggle {
    display: none;
  }
}

@media (max-width: 899px) {
  .dc-desktop-nav {
    display: none;
  }
}

.video-test {
  width: 100%;
  max-width: 720px;
  border-radius: 16px;
  display: block;
  margin: 16px 0;
}



.btn-pill {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
}

.btn-pill-outline {
  border-color: var(--accent);
  color: var(--accent-strong);
  background: transparent;
}

.btn-pill-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff8f7;
  box-shadow: var(--shadow-soft);
}

.dc-mobile-links a:focus-visible,
.btn-pill:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.1rem;
  border-radius: 0.8rem;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff8f7;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-outline {
  border-color: var(--accent);
  color: var(--accent-strong);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(206, 152, 163, 0.12);
}

.btn:focus-visible,
.icon-btn:focus-visible,
.work-card:focus-visible,
.lightbox-nav:focus-visible,
.lightbox-close:focus-visible,
.dc-mobile-toggle:focus-visible,
.dc-mobile-close:focus-visible {
  box-shadow: 0 0 0 4px rgba(107, 125, 138, 0.2);
}

.hero {
  padding: 4.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero * {
  position: relative;
  z-index: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy p {
  font-size: 1.05rem;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.85);
}

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.hero-actions .btn-outline {
  opacity: 1;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
  background: var(--accent);
  box-shadow: var(--shadow-soft);
  border-width: 1px;
}

.hero-actions .btn-outline:hover {
  background: var(--accent-strong);
  transform: scale(1.01);
}

.hero-actions .btn-outline:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.95);
  outline-offset: 3px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  padding: 1.8rem;
  border-radius: 1.2rem;
  box-shadow: var(--shadow-soft);
  color: var(--text);
}

.page-hero {
  position: relative;
  background: linear-gradient(150deg, rgba(7, 7, 7, 0.55), rgba(7, 7, 7, 0.15)),
    url("/img/hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 0 3rem;
  color: #fff;
}

.page-hero__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 2.5rem;
}

.page-hero__label {
  display: inline-flex;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero__title {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  margin: 1rem 0 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero__subtitle {
  font-size: 1rem;
  max-width: 540px;
  margin: 0;
  line-height: 1.8;
}

.page-hero__card {
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(231, 198, 205, 0.9);
  box-shadow: var(--shadow-soft);
}

.page-hero__card ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.page-hero--services {
  background: linear-gradient(150deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.2)),
    url("/img/hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero--about {
  background: linear-gradient(150deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15)),
    url("/img/hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero--faq,
.page-hero--reviews,
.page-hero--contact {
  background: linear-gradient(150deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.12)),
    url("/img/hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero--shop {
  background: linear-gradient(150deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.18)),
    url("/img/hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section--intro {
  padding: 4rem 0;
}

.quick-links {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.quick-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.8rem;
}

.quick-card h3 {
  margin: 0;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.quick-card p {
  margin: 0;
  color: var(--muted);
}

.cta-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.trust-badge {
  margin-top: 1.25rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  background: #fffdfc;
  color: var(--muted);
  display: grid;
  gap: 0.25rem;
  font-size: 0.95rem;
}

.trust-badge strong {
  color: var(--text);
}

.trust-badge--contact {
  margin-top: 1rem;
}

.cta-panel h2 {
  margin-top: 0;
}

.hero .btn-primary,
.page-hero .btn-primary {
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.8);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.3);
}

.section {
  padding: 4.5rem 0;
  scroll-margin-top: 120px;
}

.section h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-section {
  scroll-margin-top: 120px;
  display: grid;
  gap: 0.8rem;
}

.contact-intro {
  margin: 0;
  font-size: 1rem;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid rgba(231, 198, 205, 0.8);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  list-style: none;
}

.pill-list li {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 999px;
}

.price-list,
.faq-list,
.info-list {
  padding-left: 1.25rem;
}

.work-header {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
}

.work-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.work-card {
  border: 1px solid rgba(231, 198, 205, 0.8);
  background: var(--surface);
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  padding: 0;
  display: grid;
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}

.work-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.work-card:focus-visible {
  border-color: var(--accent-strong);
}

.work-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #f4e2e6;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.work-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-media-video {
  aspect-ratio: 16 / 9;
}

.video-thumb {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f7e4e8, #e9c7cf);
  color: var(--text);
  position: relative;
}

.video-thumb.has-poster {
  background-size: cover;
  background-position: center;
}

.video-placeholder {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.video-play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(85, 58, 68, 0.25);
  position: relative;
}

.video-play::before {
  content: "";
  display: block;
  margin-left: 4px;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent var(--accent-strong);
}

.video-label {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--text);
}

.work-caption {
  padding: 0.75rem 1rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(26, 16, 20, 0.7);
  display: grid;
  place-items: center;
  padding: 1.5rem;
  z-index: 2000;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
}

.lightbox-panel {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  width: min(960px, 100%);
  display: grid;
  gap: 1rem;
  box-shadow: var(--shadow);
  z-index: 1;
}

.lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  border: 1px solid var(--border);
  background: #ffffff;
  border-radius: 999px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
  pointer-events: auto;
}

.lightbox-media {
  border-radius: 0.8rem;
  overflow: hidden;
  background: #fef7f7;
  display: grid;
  place-items: center;
}

.lightbox-media img,
.lightbox-media video {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  background: #0b0b0b;
}

.lightbox-controls {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.lightbox-nav {
  flex: 1;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: #ffffff;
  color: var(--accent-strong);
  padding: 0.65rem 1.2rem;
  min-height: 44px;
  font-weight: 600;
  cursor: pointer;
}

.lightbox-nav:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.enquiry-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 0.65rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(231, 198, 205, 0.85);
  font: inherit;
  background: #fffdfc;
}

textarea {
  resize: vertical;
}

.span-2 {
  grid-column: span 2;
}

.consent {
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
}

.form-message {
  margin-top: 1rem;
  color: var(--accent-strong);
  font-weight: 600;
}

.enquiry-form .btn-primary {
  margin-top: 1.25rem;
}

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

.contact-grid > * {
  min-width: 0;
}

.contact-grid p,
.footer-contact p,
.footer-social p {
  margin: 0;
}

.contact-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-actions a,
.footer-contact a,
.footer-social a {
  overflow-wrap: anywhere;
}

.muted {
  color: var(--muted);
}

.site-footer {
  padding: 2rem 0;
  background: #f2d7dc;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  align-items: center;
}

.footer-brand img {
  width: 130px;
}

.shop-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  align-items: start;
}

.shop-layout > * {
  min-width: 0;
}

.shop-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.25rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--shadow-soft);
}

.product-image {
  width: 100%;
  min-height: 220px;
  border: 1px dashed var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fdeff0;
  display: grid;
  place-items: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.product-image-placeholder {
  width: 100%;
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 1rem;
  text-align: center;
  color: var(--muted);
}

.product-card > * {
  min-width: 0;
}

.product-card h2,
.product-card p {
  margin: 0;
}

.price {
  font-weight: 700;
  color: var(--accent-strong);
}

.customisation-label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-weight: 600;
}

.customisation-input {
  min-height: 70px;
}

.customisation-note,
.summary-note {
  margin: 0.3rem 0 0;
  font-size: 0.9rem;
}

.quantity-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-top: auto;
}

.qty-input {
  width: 70px;
}

.cart-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 90px;
  box-shadow: var(--shadow-soft);
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cart-item {
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
  display: grid;
  gap: 0.4rem;
}

.cart-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cart-item-header {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-weight: 600;
}

.cart-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.icon-btn {
  border: 1px solid var(--border);
  background: #ffffff;
  border-radius: 0.4rem;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
}

.icon-btn:hover {
  border-color: var(--accent);
}

.icon-btn:focus-visible {
  border-color: var(--accent-strong);
}

.discount-panel {
  border: 1px dashed var(--border);
  border-radius: 0.75rem;
  padding: 1rem;
  display: grid;
  gap: 0.6rem;
  background: #fffafb;
}

.discount-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.discount-row input {
  flex: 1;
  min-width: 160px;
}

.discount-message {
  font-size: 0.9rem;
  color: var(--muted);
  min-height: 1.1rem;
}

.cart-summary {
  display: grid;
  gap: 0.4rem;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.summary-row.total {
  font-weight: 700;
}

.demo-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.trust-strip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.checkout-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}

.checkout-grid > * {
  min-width: 0;
}

.checkout-summary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.summary-totals {
  display: grid;
  gap: 0.5rem;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
}

.delivery-options {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1rem;
  margin: 1.5rem 0;
  display: grid;
  gap: 0.75rem;
}

.payment-options {
  border: 1px dashed rgba(231, 198, 205, 0.85);
  border-radius: 0.75rem;
  padding: 1rem;
  margin: 1.5rem 0;
  display: grid;
  gap: 0.75rem;
  background: #fffaf9;
}

.payment-panel {
  background: #ffffff;
  border: 1px solid rgba(231, 198, 205, 0.75);
  border-radius: 0.75rem;
  padding: 1rem;
  display: grid;
  gap: 0.75rem;
}

.payment-fields {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.success-panel {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #d9bcc5;
  background: #fbecef;
  display: grid;
  gap: 0.75rem;
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.summary-row span:last-child,
.cart-item-header span:last-child {
  text-align: right;
}

.btn.disabled {
  pointer-events: none;
  opacity: 0.6;
}

@media (min-width: 600px) {
  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .work-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .work-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  /* Mobile */
  .hero,
  .page-hero {
    padding: 2.75rem 0 2rem;
    background-position: top;
  }

  .hero-inner,
  .page-hero__inner {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    align-items: stretch;
  }

  .hero-copy h1,
  .page-hero__title {
    font-size: 2rem;
    letter-spacing: 0.05em;
    line-height: 1.25;
  }

  .hero-copy p,
  .page-hero__subtitle {
    font-size: 0.98rem;
    line-height: 1.6;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
    padding: 0.85rem 1rem;
  }

  .hero-actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    box-shadow: var(--shadow-soft);
  }

  .hero-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.4);
  }

  .hero-actions .btn + .btn {
    margin-top: 0.6rem;
  }

  .page-hero__card {
    order: 2;
    width: 100%;
    margin-top: 0;
    box-shadow: var(--shadow);
  }

  .page-hero__card ul {
    padding-left: 1.1rem;
  }

  .page-hero__label {
    margin-bottom: 0.5rem;
  }

  .section,
  .shop-layout,
  .checkout-grid,
  .work-grid,
  .quick-links,
  .contact-grid,
  .grid {
    grid-template-columns: 1fr;
  }

  .span-2 {
    grid-column: span 1;
  }

  .shop-layout {
    grid-template-columns: 1fr;
  }

  .cart-panel {
    position: static;
    top: auto;
  }

  .cta-panel,
  .card,
  .hero-card {
    width: 100%;
  }

  .contact-actions .btn {
    min-height: 48px;
  }

  .site-footer {
    padding: 2.5rem 0 2rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact,
  .footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
  }

  .footer-inner a {
    display: inline-block;
    line-height: 1.6;
    padding: 0.25rem 0.35rem;
    width: 100%;
    max-width: 260px;
  }
  body {
    overflow-x: hidden;
  }
}

@media (max-width: 420px) {
  .page-hero__card {
    display: none;
  }
}

@media (max-width: 768px) {
  .dc-desktop-nav {
    display: none !important;
  }

  .dc-mobile-toggle {
    display: inline-flex !important;
  }

  .page-hero__inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    align-items: stretch !important;
  }

  .page-hero__card {
    width: 100% !important;
    max-width: none !important;
    margin-top: 8px !important;
  }

  .hero-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  .hero-actions .btn {
    width: 100% !important;
    justify-content: center !important;
    min-height: 44px !important;
  }
}
