/* Pesto Bumba — spletna trgovina za pse in mačke */

:root {
  --font-heading: 'Nunito', 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;

  --color-bg: oklch(0.96 0.02 85);
  --color-surface: oklch(0.99 0.01 85);
  --color-surface-alt: oklch(0.92 0.035 80);

  --color-primary-darkest: oklch(0.22 0.04 150);
  --color-primary-dark: oklch(0.30 0.06 150);
  --color-primary-dark-2: oklch(0.34 0.06 150);
  --color-primary: oklch(0.52 0.10 148);
  --color-primary-hover: oklch(0.46 0.10 148);
  --color-primary-text: oklch(0.42 0.09 148);
  --color-price: oklch(0.32 0.07 148);
  --color-accent-light: oklch(0.85 0.05 140);
  --color-sale: oklch(0.52 0.10 45);

  --color-text: oklch(0.24 0.02 90);
  --color-text-body: oklch(0.28 0.02 90);
  --color-text-muted: oklch(0.45 0.02 90);
  --color-text-light: oklch(0.55 0.02 90);
  --color-border: oklch(0.85 0.03 85);

  --color-header-text: oklch(0.98 0.01 85);
  --color-header-text-muted: oklch(0.90 0.02 85);
  --color-footer-text: oklch(0.80 0.02 85);
  --color-footer-text-dim: oklch(0.70 0.02 85);
  --color-footer-border: oklch(0.40 0.05 150);

  --color-pattern-a: oklch(0.90 0.04 130);
  --color-pattern-b: oklch(0.94 0.03 85);

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --shadow-card: 0 4px 18px rgba(0, 0, 0, 0.06);
  --shadow-header: 0 2px 12px rgba(0, 0, 0, 0.1);
  --shadow-toast: 0 6px 20px rgba(0, 0, 0, 0.2);

  --container-max: 1400px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--color-primary-text);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

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

p {
  margin: 0;
}

button {
  font-family: var(--font-body);
}

[hidden] {
  display: none !important;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 5%;
  padding-right: 5%;
}

.container--narrow {
  max-width: 900px;
}

.container--article {
  max-width: 800px;
}

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

.site-header {
  background: var(--color-primary-dark);
  padding: 16px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-header);
  flex-wrap: wrap;
  gap: 16px;
}

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

.brand:hover {
  text-decoration: none;
}

.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-primary-dark);
  font-size: 19px;
  flex-shrink: 0;
}

.brand__name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: var(--color-header-text);
}

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

.main-nav a {
  color: var(--color-header-text-muted);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--color-accent-light);
  text-decoration: none;
}

.main-nav a[aria-current="page"] {
  color: var(--color-header-text);
  font-weight: 700;
}

.cart-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: white;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
}

.cart-link:hover {
  background: var(--color-primary-hover);
  color: white;
  text-decoration: none;
}

.cart-link[aria-current="page"] {
  background: var(--color-primary-hover);
}

.cart-badge {
  background: white;
  color: var(--color-primary-dark);
  border-radius: var(--radius-pill);
  min-width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  padding: 0 6px;
  font-weight: 800;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 30px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--color-primary);
  color: white;
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--color-price);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-surface-alt);
  color: var(--color-price);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 11px 20px;
  font-size: 14px;
}

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

.hero {
  padding: 70px 5%;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.hero__content {
  flex: 1;
  min-width: 320px;
}

.hero__media {
  flex: 1;
  min-width: 320px;
  height: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: repeating-linear-gradient(135deg, var(--color-pattern-a) 0px, var(--color-pattern-a) 14px, var(--color-pattern-b) 14px, var(--color-pattern-b) 28px);
}

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

.eyebrow {
  display: inline-block;
  background: var(--color-pattern-a);
  color: var(--color-price);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
}

.hero h1 {
  font-size: 52px;
  line-height: 1.1;
  margin: 22px 0 20px;
}

.hero__lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 480px;
  margin: 0 0 32px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Highlights strip ---------- */

.highlights {
  background: var(--color-surface-alt);
  padding: 36px 5%;
}

.highlights__grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  text-align: center;
}

.highlights__item {
  flex: 1;
  min-width: 200px;
}

.highlights__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  color: var(--color-primary-dark);
}

.highlights__text {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-top: 6px;
}

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

.section {
  padding: 80px 5%;
}

.section--alt {
  background: var(--color-surface-alt);
}

.section__title {
  font-size: 34px;
  text-align: center;
  margin: 0 0 10px;
}

.section__subtitle {
  font-family: var(--font-body);
  color: var(--color-text-muted);
  text-align: center;
  margin: 0 0 44px;
}

/* ---------- Category cards ---------- */

.category-grid {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
}

.category-card {
  width: 280px;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  display: block;
}

.category-card:hover {
  text-decoration: none;
}

.category-card__img {
  height: 160px;
  background: repeating-linear-gradient(135deg, var(--color-pattern-a) 0px, var(--color-pattern-a) 12px, var(--color-pattern-b) 12px, var(--color-pattern-b) 24px);
  overflow: hidden;
}

.category-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card__body {
  padding: 18px;
}

.category-card__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: var(--color-text);
}

.category-card__desc {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* ---------- Product cards ---------- */

.product-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.product-grid--catalog {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  justify-content: initial;
  padding-bottom: 40px;
}

.product-card {
  width: 270px;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}

.product-grid--catalog .product-card {
  width: auto;
}

.badge-sale {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--color-sale);
  color: white;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  z-index: 2;
}

.product-card__img {
  height: 150px;
  background: repeating-linear-gradient(135deg, var(--color-pattern-a) 0px, var(--color-pattern-a) 12px, var(--color-pattern-b) 12px, var(--color-pattern-b) 24px);
  overflow: hidden;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__body {
  padding: 18px;
}

.product-card__meta {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-primary-text);
  text-transform: uppercase;
}

.product-card__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-text);
  min-height: 40px;
  margin-top: 6px;
}

.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 10px 0 14px;
}

.price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 19px;
  color: var(--color-price);
}

.price-old {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-light);
  text-decoration: line-through;
}

/* ---------- Filter chips ---------- */

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

.filters + .filters {
  margin-bottom: 36px;
}

.chip {
  background: var(--color-surface);
  color: var(--color-price);
  border: 1px solid var(--color-border);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
}

.chip--active {
  background: var(--color-primary);
  color: white;
  border-color: transparent;
  font-weight: 700;
}

/* ---------- Blog / article cards ---------- */

.blog-grid {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
}

.blog-grid--full {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.blog-card {
  width: 340px;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  display: block;
}

.blog-card:hover {
  text-decoration: none;
}

.blog-grid--full .blog-card {
  width: auto;
}

.blog-card__img {
  height: 170px;
  background: repeating-linear-gradient(135deg, var(--color-pattern-a) 0px, var(--color-pattern-a) 12px, var(--color-pattern-b) 12px, var(--color-pattern-b) 24px);
  overflow: hidden;
}

.blog-grid--full .blog-card__img {
  height: 190px;
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__body {
  padding: 20px;
}

.blog-grid--full .blog-card__body {
  padding: 22px;
}

.blog-card__tag {
  color: var(--color-primary-text);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
}

.blog-card__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: var(--color-text);
  margin-top: 8px;
}

.blog-grid--full .blog-card__title {
  font-size: 19px;
  margin: 10px 0 8px;
}

.blog-card__excerpt {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

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

.testimonials {
  background: var(--color-primary-dark);
  padding: 70px 5%;
}

.testimonials__title {
  color: var(--color-header-text);
  text-align: center;
  font-size: 30px;
  margin: 0 0 40px;
}

.testimonials__grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial-card {
  width: 320px;
  background: var(--color-primary-dark-2);
  border-radius: var(--radius-md);
  padding: 26px;
  text-align: left;
}

.testimonial-card p {
  font-family: var(--font-body);
  color: oklch(0.92 0.02 85);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 14px;
}

.testimonial-card__author {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-accent-light);
  font-size: 14px;
}

/* ---------- Newsletter ---------- */

.newsletter {
  padding: 70px 5%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.newsletter__title {
  font-size: 28px;
  margin: 0 0 12px;
}

.newsletter__text {
  font-family: var(--font-body);
  color: var(--color-text-muted);
  margin: 0 0 26px;
}

.newsletter__form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.input {
  padding: 14px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--color-surface);
  color: var(--color-text-body);
}

.newsletter__input {
  width: 280px;
}

.form-msg {
  font-family: var(--font-body);
  color: var(--color-primary-text);
  margin-top: 14px;
  font-weight: 600;
}

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

.site-footer {
  background: var(--color-primary-dark);
  color: var(--color-header-text-muted);
  padding: 60px 5% 30px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-col--brand {
  flex: 1.4;
  min-width: 220px;
}

.footer-col {
  flex: 1;
  min-width: 160px;
}

.footer-col--contact {
  flex: 1.2;
  min-width: 200px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  color: var(--color-header-text);
  margin-bottom: 12px;
}

.footer-col__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-header-text);
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  color: var(--color-footer-text);
  font-family: var(--font-body);
  font-size: 13px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--color-accent-light);
}

.footer-blurb {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-footer-text);
  max-width: 260px;
}

.footer-contact {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.9;
  color: var(--color-footer-text);
}

.footer-bottom {
  border-top: 1px solid var(--color-footer-border);
  margin-top: 40px;
  padding-top: 22px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-footer-text-dim);
}

/* Simple footer variant (used on inner pages) */

.site-footer--simple .footer-grid {
  justify-content: space-between;
  align-items: center;
}

.footer-simple-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-simple-links a {
  color: var(--color-footer-text);
  font-family: var(--font-body);
  font-size: 13px;
}

.footer-simple-links a:hover {
  color: var(--color-accent-light);
}

.site-footer--simple .footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-primary-darkest);
  color: white;
  padding: 18px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  z-index: 200;
}

.cookie-banner__text {
  font-family: var(--font-body);
  font-size: 14px;
  max-width: 640px;
}

.cookie-banner__text a {
  color: var(--color-accent-light);
  text-decoration: underline;
}

.cookie-banner__accept {
  background: var(--color-primary);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
}

.cookie-banner__accept:hover {
  background: var(--color-primary-hover);
}

/* ---------- Toast ---------- */

.toast {
  position: fixed;
  top: 90px;
  right: 24px;
  background: var(--color-price);
  color: white;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  z-index: 300;
  box-shadow: var(--shadow-toast);
}

/* ---------- Page header (inner pages) ---------- */

.page-header {
  padding: 50px 5% 20px;
}

.page-header--centered {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 70px;
}

.page-header h1 {
  font-size: 38px;
  margin: 0 0 8px;
}

.page-header--centered h1 {
  font-size: 40px;
  margin: 0 0 16px;
}

.page-header p {
  font-family: var(--font-body);
  color: var(--color-text-muted);
  margin: 0 0 30px;
}

.page-header--centered p {
  font-size: 17px;
  line-height: 1.7;
}

/* ---------- About page ---------- */

.about-media {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 5% 0;
}

.about-media__img {
  height: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: repeating-linear-gradient(135deg, var(--color-pattern-a) 0px, var(--color-pattern-a) 14px, var(--color-pattern-b) 14px, var(--color-pattern-b) 28px);
}

.about-media__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prose {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 5% 30px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-body);
}

.prose h2 {
  font-size: 24px;
  margin-top: 40px;
}

.prose ul, .prose ol {
  padding-left: 22px;
}

.prose li {
  margin-bottom: 6px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.value-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 22px;
}

.value-card__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  color: var(--color-price);
}

.value-card__text {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-top: 8px;
}

.stats {
  background: var(--color-surface-alt);
  padding: 60px 5%;
}

.stats__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.stats__title {
  font-size: 28px;
  margin: 0 0 30px;
}

.stats__grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}

.stats__number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 34px;
  color: var(--color-price);
}

.stats__label {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
}

.cta-center {
  padding: 60px 5%;
  text-align: center;
}

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

.legal-hero {
  padding: 60px 5% 0;
  max-width: 800px;
  margin: 0 auto;
}

.legal-hero h1 {
  font-size: 36px;
  margin: 0 0 8px;
}

.legal-hero__updated {
  color: var(--color-text-light);
  font-size: 14px;
  margin: 0 0 10px;
}

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

.info-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 22px;
}

.info-card__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  color: var(--color-price);
}

.info-card__text {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-top: 8px;
}

/* ---------- Contact page ---------- */

.contact-layout {
  padding: 70px 5% 90px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.contact-layout__info {
  flex: 1;
  min-width: 280px;
}

.contact-layout__form {
  flex: 1;
  min-width: 300px;
}

.contact-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  margin-bottom: 20px;
}

.contact-card__label {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  color: var(--color-price);
}

.contact-card__value {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-body);
  margin-top: 4px;
}

.contact-card__hint {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-light);
  margin-top: 2px;
}

.form-panel {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.form-panel h2 {
  font-size: 20px;
  margin: 0 0 18px;
}

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

.form textarea.input {
  border-radius: var(--radius-sm);
  resize: vertical;
  font-family: var(--font-body);
}

.form-checkbox {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-text-muted);
}

.form-checkbox input {
  margin-top: 3px;
}

/* ---------- FAQ ---------- */

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

.faq-item {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--color-text);
}

.faq-item__sign {
  font-size: 20px;
  color: var(--color-primary-text);
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item__a {
  padding: 0 22px 20px;
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

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

.cart-section {
  padding: 50px 5% 90px;
  max-width: 1000px;
  margin: 0 auto;
}

.cart-empty {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 60px 30px;
  text-align: center;
}

.cart-empty p {
  font-family: var(--font-body);
  color: var(--color-text-muted);
  font-size: 16px;
  margin: 0 0 22px;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.cart-line {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cart-line__thumb {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: repeating-linear-gradient(135deg, var(--color-pattern-a) 0px, var(--color-pattern-a) 8px, var(--color-pattern-b) 8px, var(--color-pattern-b) 16px);
}

.cart-line__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-line__info {
  flex: 1;
  min-width: 180px;
}

.cart-line__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-text);
}

.cart-line__price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  color: var(--color-price);
  margin-top: 6px;
}

.cart-line__qty {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  font-size: 16px;
  cursor: pointer;
}

.cart-line__total {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  color: var(--color-text);
  min-width: 70px;
  text-align: right;
}

.cart-line__remove {
  background: none;
  border: none;
  color: var(--color-sale);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
}

.cart-summary {
  background: var(--color-surface-alt);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-body);
  margin-bottom: 10px;
}

.cart-summary__total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  color: var(--color-text);
  border-top: 1px solid var(--color-border);
  padding-top: 14px;
  margin-top: 14px;
}

.cart-summary__hint {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-primary-text);
  margin: 14px 0 0;
}

.cart-summary__terms {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: center;
  margin: 14px 0 0;
}

.checkout-msg {
  margin-top: 24px;
  background: var(--color-pattern-a);
  color: oklch(0.28 0.06 150);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  text-align: center;
}

/* ---------- Article ---------- */

.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 5% 90px;
}

.article__tag {
  color: var(--color-primary-text);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
}

.article h1 {
  font-size: 38px;
  margin: 12px 0 26px;
  line-height: 1.2;
}

.article__media {
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: repeating-linear-gradient(135deg, var(--color-pattern-a) 0px, var(--color-pattern-a) 14px, var(--color-pattern-b) 14px, var(--color-pattern-b) 28px);
  margin-bottom: 36px;
}

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

.article__body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-text-body);
}

.article__body p {
  margin: 0 0 18px;
}

.article__body h2 {
  font-size: 23px;
  margin-top: 36px;
  margin-bottom: 14px;
}

.article__cta {
  margin-top: 50px;
  background: var(--color-surface-alt);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
}

.article__cta-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: var(--color-text);
  margin-bottom: 14px;
}

/* ---------- Utility ---------- */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: white;
  color: var(--color-text);
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

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

@media (max-width: 640px) {
  .hero h1 {
    font-size: 38px;
  }

  .section__title {
    font-size: 27px;
  }

  .page-header h1, .article h1 {
    font-size: 28px;
  }

  .contact-layout, .cart-section {
    padding-left: 6%;
    padding-right: 6%;
  }
}
