@font-face {
  font-family: "DM Sans";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("https://betakaryofylen.cz/cdn/fonts/dm_sans/dmsans_n4.ec80bd4dd7e1a334c969c265873491ae56018d72.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("https://betakaryofylen.cz/cdn/fonts/dm_sans/dmsans_n5.8a0f1984c77eb7186ceb87c4da2173ff65eb012e.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("https://betakaryofylen.cz/cdn/fonts/dm_sans/dmsans_n7.97e21d81502002291ea1de8aefb79170c6946ce5.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: url("https://betakaryofylen.cz/cdn/fonts/dm_sans/dmsans_i4.b8fe05e69ee95d5a53155c346957d8cbf5081c1a.woff2") format("woff2");
}
@font-face {
  font-family: Syne;
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("https://betakaryofylen.cz/cdn/fonts/syne/syne_n6.bb32f026d367099b7705b42b5340f363e530ace5.woff2") format("woff2");
}
@font-face {
  font-family: Syne;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("https://betakaryofylen.cz/cdn/fonts/syne/syne_n4.b88e400e60fde51acd23784507dc72a10cff7882.woff2") format("woff2");
}
@font-face {
  font-family: Syne;
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("https://betakaryofylen.cz/cdn/fonts/syne/syne_n5.f8d8f730cc4c65d0c494005a785069451259e500.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto Mono";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("https://betakaryofylen.cz/cdn/fonts/roboto_mono/robotomono_n5.29a963c13062654edff960e0fc0769528bdca7e5.woff2") format("woff2");
}

:root {
  --color-background: #e6e6e6;
  --color-foreground: #282828;
  --color-foreground-secondary: #616161;
  --color-foreground-title: #282828;
  --color-button: #ffffff;
  --color-button-hover: #eeeeee;
  --color-button-text: #282828;
  --color-button-secondary: #282828;
  --color-button-secondary-hover: #000;
  --color-button-secondary-text: #fff;
  --font-body: "DM Sans", sans-serif;
  --font-heading: Syne, sans-serif;
  --font-subtitle: "Roboto Mono", monospace;
  --font-body-scale: 1.6;
  --border-radius: 10px;
  --border-radius-btn: 100px;
  --max-width: 1440px;
  --spacing: 5rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 10px; height: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: calc(var(--font-body-scale) * 1rem);
  line-height: 1.5;
  color: var(--color-foreground);
  background: var(--color-background);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

.announcement-bar {
  background: #282828;
  color: #e6e6e6;
  text-align: center;
  padding: 8px 16px;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid #d3d3d3;
}

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

.header__logo img {
  height: 40px;
  width: auto;
}

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

.header__nav a {
  font-family: var(--font-subtitle);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-foreground);
  position: relative;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-foreground);
  transition: width 0.2s ease;
}

.header__nav a:hover::after { width: 100%; }

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__actions a, .header__actions button {
  font-family: var(--font-subtitle);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: none;
  border: none;
  color: var(--color-foreground);
  display: flex;
  align-items: center;
  gap: 4px;
}

.header__icon {
  padding: 4px;
}

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-foreground);
  color: #fff;
  font-size: 1rem;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  padding: 0 4px;
  margin-left: -8px;
  margin-top: -14px;
}

.mobile-menu-btn { display: none; }

.main-content { flex: 1; }

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

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero--full {
  min-height: 100vh;
  max-height: 100vh;
}

.page-hero-banner {
  min-height: 70vh;
  max-height: 90vh;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
}

.hero__content {
  position: relative;
  max-width: 700px;
  padding: 0 24px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.hero__subtitle {
  font-family: var(--font-subtitle);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 16px;
  opacity: 0.9;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 6vw, 6.4rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero__title strong {
  font-weight: 600;
  color: #ffca00;
}

.hero__desc {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0.9;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-subtitle);
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 14px 40px;
  border-radius: var(--border-radius-btn);
  border: none;
  transition: all 0.2s ease;
}

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

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

.btn--secondary {
  background: var(--color-button-secondary);
  color: var(--color-button-secondary-text);
}

.btn--secondary:hover {
  background: var(--color-button-secondary-hover);
}

.btn--light {
  background: #fff;
  color: #282828;
}

.btn--light:hover {
  background: #f1f1f1;
}

.btn--outline {
  background: transparent;
  border: 1px solid currentColor;
}

.section {
  padding: var(--spacing) 0;
}

.section--tight { padding: 3rem 0; }

.section-subtitle {
  font-family: var(--font-subtitle);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-foreground-secondary);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 48px;
}

.section-title.left { text-align: left; }

.intro-block {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 40px 0;
}

.intro-block__image {
  flex: 0 0 45%;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.intro-block__text {
  flex: 1;
}

.intro-block__text h3 {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.intro-block__text p {
  color: var(--color-foreground-secondary);
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.feature-horizontal {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 60px 0;
}

.feature-horizontal--reverse {
  flex-direction: row-reverse;
}

.feature-horizontal__image {
  flex: 0 0 45%;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.feature-horizontal__image img {
  width: 100%;
  display: block;
  border-radius: var(--border-radius);
}

.feature-horizontal__content {
  flex: 1;
}

.feature-horizontal__badge {
  font-family: var(--font-subtitle);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-foreground-secondary);
  margin-bottom: 12px;
}

.feature-horizontal__title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.feature-horizontal__desc {
  color: var(--color-foreground-secondary);
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  background: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  text-align: center;
  padding-bottom: 32px;
}

.feature-card__image {
  width: 100%;
  object-fit: cover;
}

.feature-card h4 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  margin: 20px 20px 8px;
}

.feature-card p {
  color: var(--color-foreground-secondary);
  font-size: 1.4rem;
  line-height: 1.6;
  margin: 0 20px;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}

.product-showcase__gallery {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.product-showcase__info {
  max-width: 500px;
}

.product-showcase__vendor {
  font-family: var(--font-body);
  font-size: 1.4rem;
  color: var(--color-foreground-secondary);
  margin-bottom: 8px;
}

.product-showcase__title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.product-showcase__subtitle {
  font-family: var(--font-subtitle);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-foreground-secondary);
  margin-bottom: 16px;
}

.product-showcase__desc {
  color: var(--color-foreground-secondary);
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.price__current {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 600;
}

.price__compare {
  font-size: 1.6rem;
  color: #878787;
  text-decoration: line-through;
}

.price__badge {
  font-family: var(--font-subtitle);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: #282828;
  color: #fff;
  padding: 2px 8px;
  border-radius: 30px;
}

.qty-selector {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.qty-selector button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #d3d3d3;
  background: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-selector input {
  width: 50px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  font-family: inherit;
}

.add-to-cart-btn {
  width: 100%;
  max-width: 300px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
}

.product-card__image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.product-card__image-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-card__image-hover { opacity: 1; }

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-subtitle);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: #282828;
  color: #fff;
  padding: 4px 10px;
  border-radius: 30px;
}

.product-card__body {
  padding: 16px;
}

.product-card__title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__price {
  font-size: 1.6rem;
  font-weight: 500;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.blog-card {
  background: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.blog-card__image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.blog-card__body {
  padding: 20px;
}

.blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 12px;
}

.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #d3d3d3;
  padding: 20px 0;
}

.faq-item__question {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.3;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-foreground);
  cursor: pointer;
}

.faq-item__question span {
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-item__question span { transform: rotate(45deg); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-item__answer {
  max-height: 2000px;
}

.faq-item__answer p {
  padding-top: 12px;
  color: var(--color-foreground-secondary);
  font-size: 1.5rem;
  line-height: 1.7;
}

.cta-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.cta-section__content {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 0 24px;
}

.cta-section__title {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 5vw, 5.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.newsletter {
  background: #fff;
  border-radius: var(--border-radius);
  padding: 48px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.newsletter__title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.newsletter__desc {
  color: var(--color-foreground-secondary);
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.newsletter__form {
  display: flex;
  gap: 12px;
  max-width: 450px;
  margin: 0 auto;
}

.newsletter__input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid #d3d3d3;
  border-radius: var(--border-radius-btn);
  font-size: 1.4rem;
  font-family: inherit;
  outline: none;
}

.newsletter__input:focus { border-color: #282828; }

.footer {
  background: #ffffff;
  color: #282828;
  padding: 60px 0 30px;
  margin-top: auto;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer__brand h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #282828;
}

.footer__brand p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #616161;
}

.footer__col h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: #282828;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer__col a {
  display: block;
  font-size: 1.4rem;
  color: #616161;
  padding: 6px 0;
  transition: opacity 0.2s ease;
}

.footer__col a:hover { opacity: 0.7; }

.footer__bottom {
  max-width: var(--max-width);
  margin: 40px auto 0;
  padding: 20px 24px 0;
  border-top: 1px solid #d3d3d3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  color: #616161;
}

.footer__payment-icons {
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: var(--font-subtitle);
  font-size: 1rem;
  text-transform: uppercase;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 420px;
  max-width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-drawer.open { right: 0; }

.cart-drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-drawer__overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #d3d3d3;
}

.cart-drawer__header h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
}

.cart-drawer__close {
  background: none;
  border: none;
  font-size: 2.4rem;
  color: var(--color-foreground);
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}

.cart-drawer__empty {
  text-align: center;
  padding: 60px 20px;
}

.cart-drawer__empty h4 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.cart-drawer__empty p {
  color: var(--color-foreground-secondary);
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}

.cart-item__image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item__info { flex: 1; }

.cart-item__name {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.cart-item__price {
  font-size: 1.4rem;
  color: var(--color-foreground-secondary);
  margin-bottom: 8px;
}

.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-item__qty button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #d3d3d3;
  background: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item__remove {
  background: none;
  border: none;
  color: #999;
  font-size: 1.2rem;
  text-decoration: underline;
  margin-top: 8px;
}

.cart-drawer__footer {
  padding: 20px 24px;
  border-top: 1px solid #d3d3d3;
}

.cart-drawer__total {
  display: flex;
  justify-content: space-between;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.cart-drawer__total strong {
  font-family: var(--font-heading);
  font-size: 1.8rem;
}

.cart-drawer__checkout {
  width: 100%;
}

.cart-drawer__free-shipping {
  text-align: center;
  font-size: 1.2rem;
  color: #4caf50;
  margin-bottom: 12px;
}

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

.page-hero__breadcrumb {
  font-size: 1.2rem;
  color: var(--color-foreground-secondary);
  margin-bottom: 16px;
}

.page-hero__breadcrumb a { text-decoration: underline; }

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 5vw, 5.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.page-content h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 600;
  margin: 48px 0 16px;
}

.page-content h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  margin: 32px 0 12px;
}

.page-content p {
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--color-foreground-secondary);
  margin-bottom: 16px;
}

.page-content ul { margin-bottom: 16px; }
.page-content li {
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--color-foreground-secondary);
  list-style: disc;
  margin-left: 20px;
}

.contact-form {
  max-width: 600px;
}

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

.form-group label {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--color-foreground);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid #d3d3d3;
  border-radius: var(--border-radius);
  font-size: 1.5rem;
  font-family: inherit;
  outline: none;
  background: #fff;
}

.form-group textarea { min-height: 120px; resize: vertical; }

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

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 40px 0;
}

.benefit-card {
  background: #fff;
  border-radius: var(--border-radius);
  padding: 32px;
}

.benefit-card__number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 600;
  color: #d3d3d3;
  margin-bottom: 12px;
}

.benefit-card h4 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 1.4rem;
  color: var(--color-foreground-secondary);
  line-height: 1.6;
}

.gallery-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 20px 0;
}

.gallery-slider img {
  height: 400px;
  border-radius: var(--border-radius);
  flex-shrink: 0;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.ingredient-card {
  background: #fff;
  border-radius: var(--border-radius);
  padding: 24px;
  text-align: center;
}

.ingredient-card h4 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.ingredient-card p {
  font-size: 1.3rem;
  color: var(--color-foreground-secondary);
  line-height: 1.5;
}

.quote-block {
  text-align: center;
  padding: 40px 0;
}

.quote-block blockquote {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 600;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.4;
}

.shipping-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.shipping-table th,
.shipping-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 1.4rem;
  border-bottom: 1px solid #eee;
}

.shipping-table th {
  background: #282828;
  color: #fff;
  font-family: var(--font-subtitle);
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

.shipping-table td { border-bottom: 1px solid #eee; }

.team-intro {
  font-size: 1.8rem;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 32px;
}

.team-intro strong {
  font-weight: 700;
  color: var(--color-foreground);
}

.legal-notice {
  background: #fff;
  border-left: 3px solid #ffca00;
  padding: 20px 24px;
  border-radius: var(--border-radius);
  margin: 32px 0;
}

.legal-notice p {
  font-size: 1.4rem;
  color: var(--color-foreground-secondary);
}

@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .mobile-menu-btn { display: block; }
  .intro-block { flex-direction: column; }
  .intro-block__image { flex: none; width: 100%; }
  .feature-horizontal, .feature-horizontal--reverse { flex-direction: column; }
  .feature-horizontal__image { flex: none; width: 100%; }
  .product-showcase { grid-template-columns: 1fr; gap: 32px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .blog-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cart-drawer { width: 100vw; }
  .newsletter__form { flex-direction: column; }
  .ingredients-grid { grid-template-columns: 1fr 1fr; }
  .header__nav.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #ffffff; padding: 16px 24px; border-bottom: 1px solid #d3d3d3; z-index: 90; }
}
