/* Autoservis Plus — global styles (self-contained, no external fonts/CDN) */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: oklch(97% 0.004 240);
  font-family: system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  color: oklch(20% 0.01 250);
}

a {
  transition: opacity 0.15s ease;
}
a:hover {
  opacity: 0.85;
}

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

button {
  font-family: inherit;
}

.heading-font {
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(24% 0.012 250);
  border-bottom: 1px solid oklch(34% 0.02 250);
}
.site-header .bar {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-mark {
  width: 36px;
  height: 36px;
  background: oklch(55% 0.16 250);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.brand-mark span {
  width: 14px;
  height: 14px;
  border: 3px solid #fff;
  border-radius: 2px;
}
.brand-title {
  font-weight: 700;
  font-size: 21px;
  color: #fff;
  letter-spacing: 0.3px;
  line-height: 1;
}
.brand-title em {
  font-style: normal;
  color: oklch(68% 0.16 250);
}
.brand-sub {
  font-size: 9.5px;
  color: oklch(65% 0.01 250);
  letter-spacing: 1.8px;
}
.main-nav {
  display: flex;
  gap: 2px;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}
.main-nav a {
  padding: 9px 13px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: oklch(78% 0.01 250);
  background: transparent;
  white-space: nowrap;
}
.main-nav a.active {
  color: #fff;
  background: oklch(34% 0.03 250);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: none;
}
.phone-link {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: oklch(88% 0.01 250);
  font-size: 13px;
  font-weight: 600;
}
.phone-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: oklch(65% 0.18 145);
}
.cart-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: oklch(32% 0.02 250);
  text-decoration: none;
}
.cart-icon {
  width: 18px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 2px;
  position: relative;
  top: 2px;
}
.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  background: oklch(60% 0.19 25);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.cart-badge.show {
  display: flex;
}

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

.site-footer {
  background: oklch(22% 0.012 250);
  color: oklch(78% 0.01 250);
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
}
.footer-grid .brand-title {
  font-size: 22px;
}
.footer-about {
  font-size: 13.5px;
  line-height: 1.7;
  color: oklch(70% 0.01 250);
  margin-top: 12px;
  max-width: 280px;
}
.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links a {
  color: oklch(70% 0.01 250);
  text-decoration: none;
  font-size: 13.5px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 13.5px;
  color: oklch(70% 0.01 250);
}
.footer-contact a {
  color: oklch(70% 0.01 250);
  text-decoration: none;
}
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 24px 32px;
  border-top: 1px solid oklch(32% 0.02 250);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: oklch(58% 0.01 250);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Hero / sections shared ---------- */

.hero {
  background: linear-gradient(135deg, oklch(20% 0.014 250), oklch(28% 0.02 252));
}
.hero-home {
  position: relative;
  overflow: hidden;
}
.hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero-home .hero-grid {
  padding: 88px 24px 96px;
}
.hero-media {
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: oklch(65% 0.16 250);
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.badge-open {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: oklch(32% 0.03 250);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 600;
  color: oklch(72% 0.16 145);
  letter-spacing: 0.4px;
  margin-bottom: 20px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: oklch(68% 0.18 145);
}
.h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.06;
  color: #fff;
  margin: 0 0 20px;
}
.hero p {
  font-size: 17px;
  line-height: 1.6;
  color: oklch(78% 0.01 250);
  max-width: 520px;
  margin: 0 0 32px;
}
.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  padding: 14px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  display: inline-block;
}
.btn-primary {
  background: oklch(55% 0.16 250);
  color: #fff;
}
.btn-outline {
  background: transparent;
  border: 1.5px solid oklch(45% 0.02 250);
  color: #fff;
}
.btn-dark {
  background: oklch(24% 0.012 250);
  color: #fff;
}

.stats-strip {
  background: oklch(24% 0.012 250);
}
.stats-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}
.stat-label {
  font-size: 13px;
  color: oklch(65% 0.01 250);
}

.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
}
.section-tight {
  padding: 72px 24px;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
}
.h2-left {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 32px;
  text-align: left;
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid oklch(90% 0.006 240);
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-icon {
  width: 44px;
  height: 44px;
  background: oklch(93% 0.03 250);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-ring {
  width: 18px;
  height: 18px;
  border: 3px solid oklch(50% 0.16 250);
  border-radius: 50%;
}
.icon-rect {
  width: 20px;
  height: 14px;
  border: 3px solid oklch(50% 0.16 250);
  border-radius: 2px;
}
.icon-square {
  width: 20px;
  height: 20px;
  border: 3px solid oklch(50% 0.16 250);
}
.icon-tall {
  width: 14px;
  height: 18px;
  border: 3px solid oklch(50% 0.16 250);
  border-radius: 2px;
}
.service-title {
  font-weight: 700;
  font-size: 18px;
}
.service-desc {
  font-size: 14px;
  color: oklch(45% 0.02 250);
  line-height: 1.55;
}

.shop-block {
  background: #fff;
  border-top: 1px solid oklch(90% 0.006 240);
  border-bottom: 1px solid oklch(90% 0.006 240);
}
.shop-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.shop-media {
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
}
.shop-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  color: oklch(30% 0.015 250);
}
.check-list li::before {
  content: "\2713";
  color: oklch(55% 0.16 250);
  font-weight: 700;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-item {
  padding: 8px;
}
.why-title {
  font-size: 22px;
  font-weight: 700;
  color: oklch(24% 0.012 250);
  margin-bottom: 8px;
}
.why-desc {
  font-size: 14px;
  color: oklch(45% 0.02 250);
  line-height: 1.6;
}

.cta-strip {
  background: oklch(24% 0.012 250);
}
.cta-row {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.cta-row-tight {
  padding: 56px 24px;
}
.cta-row h2 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}
.cta-row-tight h2 {
  font-size: 26px;
  margin: 0;
}
.cta-row p {
  color: oklch(70% 0.01 250);
  font-size: 15px;
  margin: 0;
}

/* ---------- Generic content pages ---------- */

.page-hero {
  background: oklch(24% 0.012 250);
  padding: 44px 24px;
}
.page-hero .eyebrow {
  color: oklch(65% 0.16 250);
}
.page-hero h1 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.page-hero p {
  color: oklch(70% 0.01 250);
  font-size: 15px;
  margin: 10px 0 0;
  max-width: 640px;
}

.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 24px 90px;
  line-height: 1.7;
  font-size: 15px;
}
.legal h1 {
  font-size: 34px;
  font-weight: 700;
  margin: 0 0 24px;
}
.legal .updated {
  color: oklch(45% 0.02 250);
}
.legal h2 {
  font-size: 19px;
  font-weight: 700;
  margin: 32px 0 10px;
}
.legal a {
  color: oklch(50% 0.16 250);
}

/* ---------- Diagnostika/Udrzba/Oprava detail cards ---------- */

.info-card {
  background: #fff;
  border: 1px solid oklch(90% 0.006 240);
  border-radius: 10px;
  padding: 24px;
}
.info-card-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}
.info-card-desc {
  font-size: 14px;
  color: oklch(45% 0.02 250);
  line-height: 1.6;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step-num {
  font-size: 32px;
  font-weight: 700;
  color: oklch(55% 0.16 250);
}
.step-title {
  font-weight: 600;
  font-size: 15px;
  margin: 8px 0 4px;
}
.step-desc {
  font-size: 13.5px;
  color: oklch(45% 0.02 250);
  line-height: 1.5;
}

.price-table {
  background: #fff;
  border: 1px solid oklch(90% 0.006 240);
  border-radius: 10px;
  overflow: hidden;
}
.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 16px 24px;
  border-bottom: 1px solid oklch(92% 0.006 240);
  font-size: 14.5px;
  align-items: center;
}
.price-row:last-child {
  border-bottom: none;
}
.price-row span:last-child {
  font-weight: 700;
}
.price-note {
  font-size: 12.5px;
  color: oklch(50% 0.02 250);
  margin-top: 12px;
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pkg-card {
  background: #fff;
  border: 1px solid oklch(90% 0.006 240);
  border-radius: 10px;
  padding: 28px;
}
.pkg-card.dark {
  background: oklch(24% 0.012 250);
  color: #fff;
  border: none;
}
.pkg-name {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 6px;
}
.pkg-price {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 14px;
}
.pkg-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13.5px;
  color: oklch(35% 0.015 250);
}
.pkg-card.dark .pkg-list {
  color: oklch(80% 0.01 250);
}

.repair-item {
  background: #fff;
  border: 1px solid oklch(90% 0.006 240);
  border-radius: 10px;
  padding: 32px;
  display: grid;
  grid-template-columns: 0.9fr 1.5fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 20px;
}
.repair-media {
  aspect-ratio: 16/10;
  border-radius: 8px;
  overflow: hidden;
}
.repair-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.repair-title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
}
.repair-desc {
  font-size: 14.5px;
  color: oklch(40% 0.015 250);
  line-height: 1.6;
  margin: 0 0 12px;
}
.repair-price {
  font-size: 16px;
  font-weight: 700;
  color: oklch(55% 0.16 250);
}

.about-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-media {
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
}
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-media.square {
  aspect-ratio: 4/3;
}
.about-media p,
.about-grid p {
  font-size: 14.5px;
  line-height: 1.7;
  color: oklch(35% 0.015 250);
  margin: 0 0 14px;
}

.values-block {
  background: #fff;
  border-top: 1px solid oklch(90% 0.006 240);
  border-bottom: 1px solid oklch(90% 0.006 240);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-item {
  text-align: center;
  padding: 12px;
}
.value-icon {
  width: 48px;
  height: 48px;
  background: oklch(93% 0.03 250);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.value-title {
  font-weight: 700;
  font-size: 15.5px;
  margin-bottom: 6px;
}
.value-desc {
  font-size: 13.5px;
  color: oklch(45% 0.02 250);
  line-height: 1.5;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-media {
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
}
.gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Produkty (shop) ---------- */

.filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-btn {
  border: 1px solid oklch(88% 0.006 240);
  background: #fff;
  color: oklch(24% 0.012 250);
  padding: 9px 16px;
  border-radius: 20px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
}
.filter-btn.active {
  background: oklch(24% 0.012 250);
  color: #fff;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: #fff;
  border: 1px solid oklch(90% 0.006 240);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-media {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-cat {
  font-size: 11px;
  font-weight: 700;
  color: oklch(55% 0.16 250);
  letter-spacing: 0.5px;
}
.product-name {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.3;
  flex: 1;
}
.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}
.product-price {
  font-size: 20px;
  font-weight: 700;
}
.add-btn {
  background: oklch(24% 0.012 250);
  color: #fff;
  border: none;
  padding: 9px 14px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: oklch(24% 0.012 250);
  color: #fff;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  z-index: 100;
  display: none;
}
.toast.show {
  display: block;
}

/* ---------- Rady (articles) ---------- */

.article-card {
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid oklch(90% 0.006 240);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.article-media {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-tag {
  font-size: 11px;
  font-weight: 700;
  color: oklch(55% 0.16 250);
  letter-spacing: 0.5px;
}
.article-title {
  font-weight: 700;
  font-size: 16px;
}
.article-desc {
  font-size: 13.5px;
  color: oklch(45% 0.02 250);
  line-height: 1.55;
}

/* ---------- Kontakt ---------- */

.contact-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-grid h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 20px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border: 1px solid oklch(85% 0.006 240);
  border-radius: 7px;
  font-size: 14px;
  font-family: inherit;
}
.contact-form textarea {
  resize: vertical;
}
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: oklch(45% 0.02 250);
  line-height: 1.5;
}
.consent-label input {
  margin-top: 2px;
}
.submit-btn {
  background: oklch(55% 0.16 250);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  margin-top: 6px;
}
.success-box {
  background: oklch(94% 0.04 145);
  border: 1px solid oklch(80% 0.08 145);
  border-radius: 8px;
  padding: 20px;
  font-size: 14.5px;
  color: oklch(30% 0.06 145);
}
.error-box {
  background: oklch(95% 0.05 25);
  border: 1px solid oklch(80% 0.1 25);
  border-radius: 8px;
  padding: 20px;
  font-size: 14.5px;
  color: oklch(35% 0.1 25);
  margin-bottom: 14px;
}
.hidden {
  display: none !important;
}
.map-box {
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
}
.map-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-card {
  background: #fff;
  border: 1px solid oklch(90% 0.006 240);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14.5px;
}
.contact-card a {
  color: oklch(50% 0.16 250);
  text-decoration: none;
}
.contact-card strong {
  display: block;
  margin-bottom: 2px;
}
.contact-card .muted {
  color: oklch(45% 0.02 250);
}

/* ---------- Kosik (cart) ---------- */

.cart-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 100px;
}
.cart-page h1 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 28px;
}
.cart-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  align-items: start;
}
.cart-lines {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-line {
  background: #fff;
  border: 1px solid oklch(90% 0.006 240);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.cart-thumb {
  width: 64px;
  height: 64px;
  flex: none;
  border-radius: 8px;
  object-fit: cover;
  background: oklch(90% 0.006 240);
}
.cart-line-name {
  font-weight: 600;
  font-size: 14.5px;
}
.cart-line-price {
  font-size: 13px;
  color: oklch(45% 0.02 250);
  margin-top: 2px;
}
.qty-group {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid oklch(85% 0.006 240);
  background: #fff;
  cursor: pointer;
  font-size: 15px;
}
.qty-val {
  width: 28px;
  text-align: center;
  font-weight: 600;
}
.line-subtotal {
  width: 80px;
  text-align: right;
  font-weight: 700;
  font-size: 16px;
}
.remove-btn {
  background: none;
  border: none;
  color: oklch(55% 0.18 25);
  font-size: 13px;
  cursor: pointer;
  font-weight: 600;
}
.summary-card {
  background: #fff;
  border: 1px solid oklch(90% 0.006 240);
  border-radius: 10px;
  padding: 24px;
  position: sticky;
  top: 100px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14.5px;
  margin-bottom: 10px;
  color: oklch(45% 0.02 250);
}
.summary-total {
  border-top: 1px solid oklch(90% 0.006 240);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: oklch(20% 0.01 250);
}
.checkout-btn {
  width: 100%;
  background: oklch(55% 0.16 250);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}
.summary-note {
  font-size: 12px;
  color: oklch(50% 0.02 250);
  margin-top: 12px;
  line-height: 1.5;
}
.empty-cart {
  background: #fff;
  border: 1px solid oklch(90% 0.006 240);
  border-radius: 10px;
  padding: 64px 24px;
  text-align: center;
}
.empty-cart-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.empty-cart-desc {
  font-size: 14px;
  color: oklch(45% 0.02 250);
  margin-bottom: 22px;
}

/* ---------- Cookie consent banner ---------- */

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: 560px;
  margin: 0 auto;
  background: oklch(20% 0.012 250);
  color: oklch(88% 0.01 250);
  border-radius: 10px;
  padding: 18px 20px;
  font-size: 13.5px;
  line-height: 1.55;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  z-index: 200;
  display: none;
}
.cookie-banner.show {
  display: block;
}
.cookie-banner a {
  color: oklch(75% 0.14 250);
}
.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.cookie-actions button {
  border: none;
  padding: 9px 16px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.cookie-accept {
  background: oklch(55% 0.16 250);
  color: #fff;
}
.cookie-reject {
  background: oklch(32% 0.02 250);
  color: #fff;
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .hero-grid,
  .shop-grid,
  .about-grid,
  .contact-grid,
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .card-grid-3,
  .card-grid-4,
  .why-grid,
  .values-grid,
  .step-grid,
  .pkg-grid,
  .gallery-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .repair-item {
    grid-template-columns: 1fr;
  }
  .h1 {
    font-size: 38px;
  }
}
@media (max-width: 600px) {
  .card-grid-3,
  .card-grid-4,
  .why-grid,
  .values-grid,
  .step-grid,
  .pkg-grid,
  .gallery-grid,
  .product-grid,
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .h1 {
    font-size: 30px;
  }
}
