:root {
  --blue: #0b2a6f;
  --blue-2: #143f91;
  --blue-3: #061843;
  --gold: #c9a44c;
  --gold-2: #e5c56d;
  --ink: #17213b;
  --muted: #667085;
  --line: #dbe3ef;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --warm: #fff8ea;
  --coral: #d96f4c;
  --mint: #7fc9bd;
  --shadow: 0 18px 45px rgba(11, 42, 111, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--blue);
  color: #fff;
  border-radius: 6px;
}

.skip-link:focus {
  top: 16px;
}

.top-strip {
  background: var(--blue-3);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.89rem;
}

.top-strip .wrap {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(219, 227, 239, 0.86);
  backdrop-filter: blur(18px);
}

.nav-row {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(201, 164, 76, 0.24);
  font-weight: 900;
}

.brand-name {
  display: block;
  font-size: 1.15rem;
  font-weight: 850;
  letter-spacing: 0;
  color: var(--blue);
}

.brand-tagline {
  display: block;
  margin-top: -2px;
  color: var(--muted);
  font-size: 0.82rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--blue);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: auto;
  background: currentColor;
  content: "";
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  transform: rotate(45deg);
  background: var(--blue);
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: translateY(-2px) rotate(-45deg);
  background: var(--blue);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav a {
  padding: 9px 8px;
  border-radius: 6px;
  color: #263552;
  font-size: 0.9rem;
  font-weight: 650;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--blue);
  background: #eef3ff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gold);
  color: var(--blue-3);
  box-shadow: 0 12px 25px rgba(201, 164, 76, 0.28);
}

.btn-primary:hover {
  background: var(--gold-2);
}

.btn-blue {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 28px rgba(11, 42, 111, 0.22);
}

.btn-blue:hover {
  background: var(--blue-2);
}

.btn-light {
  background: #fff;
  color: var(--blue);
  border-color: rgba(255, 255, 255, 0.52);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--line);
}

.btn-block {
  width: 100%;
}

.hero {
  position: relative;
  min-height: min(680px, calc(100svh - 112px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--blue-3);
}

.hero picture,
.hero .hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 24, 67, 0.92), rgba(6, 24, 67, 0.68) 42%, rgba(6, 24, 67, 0.18) 78%),
    linear-gradient(0deg, rgba(6, 24, 67, 0.28), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 44px 0 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--gold-2);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  color: var(--blue);
  letter-spacing: 0;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4.6vw, 4.25rem);
  max-width: 860px;
}

.hero p {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-item {
  padding: 22px 16px;
  background: #fff;
  text-align: center;
}

.trust-item strong {
  display: block;
  color: var(--blue);
  font-size: 1.55rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 82px 0;
}

.section-soft {
  background: var(--soft);
}

.section-warm {
  background: var(--warm);
}

.section-blue {
  background: linear-gradient(135deg, var(--blue), var(--blue-3));
  color: #fff;
}

.section-blue h2,
.section-blue h3 {
  color: #fff;
}

.section-blue p,
.section-blue .section-lead {
  color: rgba(255, 255, 255, 0.78);
}

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

.section-title {
  max-width: 760px;
}

.section-title h2 {
  font-size: clamp(1.85rem, 4vw, 3.15rem);
}

.section-lead {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(11, 42, 111, 0.07);
  overflow: hidden;
}

.feature-card,
.service-card,
.testimonial,
.faq-item,
.admin-panel {
  padding: 24px;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.icon-tile {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 8px;
  background: #eef3ff;
  color: var(--blue);
  font-weight: 900;
}

.category-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
}

.category-card img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  background: var(--soft);
}

.category-card .card-body {
  padding: 20px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 42px;
  align-items: center;
}

.split-media {
  min-height: 460px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.check-list,
.plain-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 30px;
  color: #344054;
}

.check-list li::before,
.plain-list li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: rgba(201, 164, 76, 0.2);
  content: "✓";
  font-size: 0.78rem;
  font-weight: 900;
}

.steps {
  counter-reset: steps;
}

.step {
  position: relative;
  padding-top: 58px;
}

.step::before {
  position: absolute;
  left: 24px;
  top: 24px;
  counter-increment: steps;
  content: counter(steps, decimal-leading-zero);
  color: var(--gold);
  font-weight: 900;
  font-size: 1.2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  min-height: 220px;
  border: 0;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  background: var(--soft);
  cursor: zoom-in;
  box-shadow: 0 14px 32px rgba(11, 42, 111, 0.11);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1.1;
  object-fit: cover;
  transition: transform 0.24s ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-caption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(6, 24, 67, 0.82);
  color: #fff;
  text-align: left;
}

.gallery-caption strong,
.gallery-caption span {
  display: block;
}

.gallery-caption span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter-btn {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #344054;
  font-weight: 800;
  cursor: pointer;
}

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(6, 24, 67, 0.88);
}

.lightbox.open {
  display: grid;
}

.lightbox-inner {
  width: min(980px, 100%);
  max-height: 90svh;
}

.lightbox img {
  width: 100%;
  max-height: 78svh;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}

.lightbox-caption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  color: #fff;
}

.lightbox-close {
  position: fixed;
  right: 20px;
  top: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

.form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: #263552;
  font-size: 0.92rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
}

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

.form-note,
.status-message {
  color: var(--muted);
  font-size: 0.92rem;
}

.status-message {
  min-height: 22px;
}

.cta-band {
  padding: 52px 0;
  background: linear-gradient(135deg, var(--blue), #0f3480);
  color: #fff;
}

.cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-row h2 {
  color: #fff;
  font-size: clamp(1.65rem, 4vw, 2.55rem);
}

.cta-row p {
  max-width: 680px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.page-hero {
  padding: 92px 0 76px;
  background:
    linear-gradient(120deg, rgba(11, 42, 111, 0.95), rgba(11, 42, 111, 0.74)),
    url("../images/hero-celebration-kart.png?v=2") center/cover;
  color: #fff;
}

.page-hero h1 {
  max-width: 860px;
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 4.45rem);
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
}

.contact-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #eef3ff;
  color: var(--blue);
  font-weight: 900;
}

.map-frame {
  min-height: 360px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(11, 42, 111, 0.78), rgba(201, 164, 76, 0.5)),
    url("../images/customer-projects.png") center/cover;
  color: #fff;
  text-align: center;
}

.reviews {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: stretch;
}

.review-score {
  display: grid;
  place-items: center;
  min-height: 260px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  text-align: center;
}

.review-score strong {
  display: block;
  color: var(--gold-2);
  font-size: 4rem;
  line-height: 1;
}

.footer {
  padding: 56px 0 24px;
  background: #071a47;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.footer h2,
.footer h3 {
  color: #fff;
}

.footer h3 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.footer ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 650;
  display: grid;
  gap: 10px;
}

.floating-actions a {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
  font-weight: 950;
  overflow: hidden;
}

.float-whatsapp {
  background:
    #128c7e
    url("https://upload.wikimedia.org/wikipedia/commons/5/5e/WhatsApp_icon.png")
    center / 36px 36px
    no-repeat;
  color: transparent;
  font-size: 0;
}

.float-call {
  background: var(--blue);
  color: transparent;
  font-size: 0;
}

.float-call::before {
  width: 25px;
  height: 25px;
  background: #fff;
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20fill%3D%27black%27%20d%3D%27M6.62%2010.79c1.44%202.83%203.76%205.14%206.59%206.59l2.2-2.2c.27-.27.67-.36%201.02-.24%201.12.37%202.33.57%203.57.57.55%200%201%20.45%201%201V20c0%20.55-.45%201-1%201C10.61%2021%203%2013.39%203%204c0-.55.45-1%201-1h3.5c.55%200%201%20.45%201%201%200%201.24.2%202.45.57%203.57.11.35.03.74-.25%201.02l-2.2%202.2Z%27/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20fill%3D%27black%27%20d%3D%27M6.62%2010.79c1.44%202.83%203.76%205.14%206.59%206.59l2.2-2.2c.27-.27.67-.36%201.02-.24%201.12.37%202.33.57%203.57.57.55%200%201%20.45%201%201V20c0%20.55-.45%201-1%201C10.61%2021%203%2013.39%203%204c0-.55.45-1%201-1h3.5c.55%200%201%20.45%201%201%200%201.24.2%202.45.57%203.57.11.35.03.74-.25%201.02l-2.2%202.2Z%27/%3E%3C/svg%3E") center / contain no-repeat;
}

.admin-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.admin-menu {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 10px;
}

.admin-menu a {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--blue);
  font-weight: 800;
}

.admin-panel + .admin-panel {
  margin-top: 22px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  background: #fff;
}

th,
td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--blue);
  background: #eef3ff;
  font-size: 0.88rem;
}

td {
  color: #344054;
  font-size: 0.92rem;
}

.empty-state {
  padding: 18px;
  color: var(--muted);
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: 8px;
}

@media (max-width: 1080px) {
  .header-actions {
    display: none;
  }

  .main-nav a {
    padding: 9px 8px;
    font-size: 0.88rem;
  }

  .grid-4,
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .top-strip {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .main-nav a {
    padding: 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 74px 0 82px;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(6, 24, 67, 0.94), rgba(6, 24, 67, 0.76));
  }

  .trust-row,
  .grid-3,
  .grid-4,
  .gallery-grid,
  .split,
  .reviews,
  .admin-layout {
    grid-template-columns: 1fr 1fr;
  }

  .split {
    align-items: start;
  }

  .split-media {
    min-height: 340px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-row,
  .section-head,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-menu {
    position: static;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 24px, 1180px);
  }

  .brand-tagline {
    display: none;
  }

  .brand-name {
    font-size: 1rem;
  }

  .main-nav.open,
  .trust-row,
  .grid-2,
  .grid-3,
  .grid-4,
  .gallery-grid,
  .split,
  .reviews,
  .footer-grid,
  .form-grid,
  .admin-layout,
  .admin-menu {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .hero-actions,
  .cta-row .btn,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .page-hero {
    padding: 66px 0 58px;
  }

  .gallery-item {
    min-height: 230px;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
  }

  .floating-actions a {
    width: 48px;
    height: 48px;
  }
}

/* ═══════════════════════════════════════════════════
   PRODUCTS
═══════════════════════════════════════════════════ */
.product-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.product-filter-bar .filter-label {
  align-self: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--muted);
  min-width: 100px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(11, 42, 111, 0.07);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.product-card:hover {
  box-shadow: 0 18px 42px rgba(11, 42, 111, 0.14);
  transform: translateY(-2px);
}

.product-img-wrap {
  width: 100%;
  aspect-ratio: 1.4;
  overflow: hidden;
  background: var(--soft);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.24s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.04);
}

.product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px;
  gap: 6px;
}

.product-cat {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  background: #eef3ff;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-name {
  margin: 4px 0 0;
  font-size: 1.03rem;
  color: var(--blue);
  line-height: 1.28;
}

.product-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
  flex: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.product-price {
  font-size: 1.22rem;
  font-weight: 900;
  color: var(--blue);
}

.product-price small {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
}

.btn-add-cart {
  padding: 9px 14px;
  font-size: 0.88rem;
  min-height: 38px;
}

/* ═══════════════════════════════════════════════════
   CART TOAST
═══════════════════════════════════════════════════ */
.ck-toast {
  position: fixed;
  bottom: 88px;
  right: 18px;
  z-index: 900;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(11, 42, 111, 0.28);
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.ck-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   CART BADGE
═══════════════════════════════════════════════════ */
.cart-link {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border-radius: 20px;
  background: var(--gold);
  color: var(--blue-3);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
}

/* ═══════════════════════════════════════════════════
   CART PAGE
═══════════════════════════════════════════════════ */
.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.cart-empty {
  padding: 72px 0;
  text-align: center;
}

.cart-empty-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  background: #fff;
}

.cart-table th,
.cart-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.cart-table th {
  background: #eef3ff;
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 900;
  text-align: left;
}

.cart-product-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-product-info img {
  width: 62px;
  height: 52px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  background: var(--soft);
}

.cart-product-info strong {
  display: block;
  color: var(--blue);
  font-size: 0.95rem;
}

.cart-unit {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 2px;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 4px;
}

.qty-btn {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--blue);
  font-size: 1.1rem;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: #eef3ff;
}

.qty-input {
  width: 52px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 5px 6px;
  font-size: 0.92rem;
}

.cart-remove {
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 6px;
  background: #fff0ee;
  color: #c0392b;
  font-size: 0.9rem;
  cursor: pointer;
}

.cart-summary {
  padding: 24px;
  position: sticky;
  top: 96px;
}

.cart-summary h3 {
  margin-bottom: 18px;
  font-size: 1.15rem;
  color: var(--blue);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: #344054;
  font-size: 0.95rem;
}

.summary-total {
  font-size: 1.08rem;
  border-bottom: none;
}

.total-amount {
  color: var(--blue);
  font-size: 1.15rem;
}

.summary-note {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 12px 0 18px;
}

/* ═══════════════════════════════════════════════════
   CHECKOUT PAGE
═══════════════════════════════════════════════════ */
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 32px;
  align-items: start;
}

.checkout-form-section h2 {
  margin-bottom: 22px;
  font-size: 1.55rem;
}

.checkout-summary {
  position: sticky;
  top: 96px;
}

.summary-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 0;
}

.summary-table th,
.summary-table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
  text-align: left;
  vertical-align: top;
}

.summary-table th {
  background: #eef3ff;
  color: var(--blue);
  font-weight: 900;
}

.summary-total-row td {
  background: #fff8ea;
  color: var(--blue);
  font-size: 1rem;
}

.order-confirm {
  padding: 52px 32px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.confirm-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.confirm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

/* ═══════════════════════════════════════════════════
   ADMIN — PRODUCT FORM
═══════════════════════════════════════════════════ */
.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  background: #eef3ff;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — PRODUCTS / CART / CHECKOUT
═══════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .checkout-summary {
    position: static;
  }
}

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

  .cart-summary {
    position: static;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-add-cart {
    width: 100%;
    justify-content: center;
  }

  .confirm-actions {
    flex-direction: column;
  }

  .confirm-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
