@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

:root {
  --color-black: #000000;
  --color-dark: #1a1a1a;
  --color-gray-dark: #2a2a2a;
  --color-gray: #666666;
  --color-gray-light: #999999;
  --color-white: #ffffff;
  --color-off-white: #f5f5f5;
  --container-width: min(1200px, 95vw);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--color-white);
  color: var(--color-black);
  line-height: 1.6;
  font-size: 16px;
}

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

a:hover, a:focus {
  opacity: 0.8;
}

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

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-black);
  border-bottom: none;
}

.navbar {
  width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--color-white);
  margin-right: 2rem;
  flex-shrink: 0;
  min-width: fit-content;
}

.brand-logo {
  height: 38px;
  width: auto;
  display: block;
}

.brand-title {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  white-space: nowrap;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 0.1rem;
}

nav {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex: 1;
  justify-content: center;
  flex-wrap: nowrap;
}

nav a {
  font-weight: 500;
  color: var(--color-white);
  padding: 0.5rem 0.6rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: opacity 0.2s ease;
  position: relative;
  white-space: nowrap;
  text-align: center;
}

nav a span {
  white-space: normal;
  text-align: center;
}

nav a:hover, nav a:focus {
  opacity: 0.7;
}

.nav-actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  margin-left: 1.5rem;
  flex-shrink: 0;
}

.nav-icon {
  width: 24px;
  height: 24px;
  color: var(--color-white);
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.nav-icon:hover {
  opacity: 0.7;
}

/* Mobile menu button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile menu */
.mobile-nav {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: var(--color-black);
  z-index: 999;
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-height: calc(100vh - 60px);
  overflow-y: auto;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 1rem 0;
  color: var(--color-white);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  opacity: 0.7;
}

.btn, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}

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

.btn:hover {
  background: var(--color-gray-dark);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
}

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

main {
  padding-bottom: 4rem;
}

.section {
  width: var(--container-width);
  margin: 0 auto;
  padding: 4rem 0;
  position: relative;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero-with-bg {
  position: relative;
  background-image: url('../images/hero-main.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  margin: 0;
  width: 100%;
  max-width: 100%;
}

.section.hero-with-bg {
  width: 100%;
  max-width: 100%;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

.hero-with-bg .hero-copy {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gray);
  font-weight: 500;
}

.hero-copy h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0;
  color: var(--color-black);
  font-weight: 600;
  line-height: 1.2;
}

.hero-copy p {
  color: var(--color-gray);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.hero-media {
  width: 100%;
}

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

.product-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 4rem 0;
}

.showcase-item {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

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

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gray);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0;
  color: var(--color-black);
  font-weight: 600;
}

.tab-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 1rem;
}

.tab-nav a {
  font-weight: 500;
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.tab-nav a.active,
.tab-nav a:hover {
  color: var(--color-black);
  border-bottom-color: var(--color-black);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--color-white);
  border: 1px solid #e0e0e0;
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.product-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-card h2 {
  font-family: 'Inter', sans-serif;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-black);
}

.product-price {
  font-weight: 600;
  color: var(--color-black);
  font-size: 1rem;
}

.product-rating {
  display: flex;
  gap: 0.2rem;
  margin-top: 0.5rem;
}

.star {
  width: 16px;
  height: 16px;
  color: #fbbf24;
}

.sale-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #dc2626;
  color: var(--color-white);
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 10;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.tile {
  background: var(--color-white);
  border: 1px solid #e0e0e0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.2s ease;
}

.tile:hover {
  transform: translateY(-4px);
}

.tile h3 {
  font-family: 'Playfair Display', serif;
  margin: 0;
  font-size: 1.5rem;
  color: var(--color-black);
}

.muted {
  color: var(--color-gray);
}

.footer {
  background: var(--color-black);
  color: var(--color-white);
  padding: 3.5rem 0 2rem;
}

.footer-inner {
  width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

.footer h4 {
  font-family: 'Playfair Display', serif;
  margin-top: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--color-white);
}

.footer nav {
  display: grid;
  gap: 0.6rem;
  flex-direction: column;
}

.footer nav a {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.875rem;
  padding: 0;
  line-height: 1.5;
}

.legal-meta {
  margin-top: 2.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumbs {
  width: var(--container-width);
  margin: 2rem auto 0;
  font-size: 0.9rem;
  color: var(--color-gray);
}

.breadcrumbs a {
  color: inherit;
}

.breadcrumbs a:hover {
  color: var(--color-black);
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  background: var(--color-white);
  color: var(--color-black);
  border-radius: 50%;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0 0.4rem;
  margin-left: 0.5rem;
  position: absolute;
  top: -8px;
  right: -8px;
}

.nav-actions a {
  position: relative;
  display: inline-flex;
}

.cart-summary {
  display: grid;
  gap: 1.5rem;
  background: var(--color-off-white);
  padding: 2rem;
  border: 1px solid #e0e0e0;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  font-size: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

.cart-total:last-of-type {
  font-weight: 700;
  font-size: 1.2rem;
  border-bottom: none;
  padding-top: 1rem;
  border-top: 2px solid var(--color-black);
}

.flex-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.policy article {
  background: var(--color-white);
  border: 1px solid #e0e0e0;
  padding: 3rem;
}

.policy article h1 {
  margin-top: 0;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
}

.policy article h2 {
  font-family: 'Playfair Display', serif;
  margin-top: 2.5rem;
  font-size: 1.8rem;
}

.legal-list {
  padding-left: 1.5rem;
  color: var(--color-gray);
  line-height: 1.8;
}

.account-card {
  background: var(--color-white);
  border: 1px solid #e0e0e0;
  padding: 2.5rem;
  display: grid;
  gap: 1.5rem;
}

.account-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.order-history {
  display: grid;
  gap: 1.5rem;
}

.order-card {
  border: 1px solid #e0e0e0;
  padding: 1.5rem;
  background: var(--color-off-white);
}

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

input, textarea, select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #e0e0e0;
  font-family: inherit;
  font-size: 1rem;
  background: var(--color-white);
  color: var(--color-black);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

label {
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 0.5rem;
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid #e0e0e0;
  background: var(--color-white);
}

table {
  width: 100%;
  border-collapse: collapse;
}

table th, table td {
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

table th {
  background: var(--color-off-white);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.notice {
  padding: 1.2rem 1.5rem;
  background: var(--color-off-white);
  color: var(--color-black);
  border: 1px solid #e0e0e0;
  margin: 1.5rem 0;
}

.article-card {
  background: var(--color-white);
  border: 1px solid #e0e0e0;
  padding: 2.5rem;
}

.article-card h1 {
  font-family: 'Playfair Display', serif;
  margin-top: 0;
  font-size: 2.5rem;
}

.article-card h2 {
  font-family: 'Playfair Display', serif;
  margin-top: 2rem;
}

.rich-text h2, .rich-text h3 {
  font-family: 'Playfair Display', serif;
  color: var(--color-black);
}

.rich-text p {
  margin-bottom: 1.5rem;
  color: var(--color-gray);
  line-height: 1.7;
}

.cookie-overlay {
  display: none;
}

.cookie-overlay.show {
  display: none;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.75rem 1.5rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  display: none;
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  transform: translateY(0);
}

.cookie-banner p {
  margin: 0;
  color: var(--color-gray);
  font-size: 0.85rem;
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-actions button {
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  white-space: nowrap;
}

.cookie-link {
  font-size: 0.85rem;
  color: var(--color-gray);
  text-decoration: underline;
  white-space: nowrap;
}

.cookie-link:hover {
  color: var(--color-black);
}

body.cookie-lock {
  overflow: auto;
}

.nav-arrows {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.nav-arrow {
  width: 32px;
  height: 32px;
  border: 1px solid #e0e0e0;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-arrow:hover {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

/* Tablet styles */
@media (max-width: 980px) {
  :root {
    --container-width: min(1200px, 95vw);
  }

  .navbar {
    padding: 1rem 1rem;
    gap: 1.5rem;
  }

  .brand {
    margin-right: 1rem;
    gap: 0.5rem;
  }

  .brand-logo {
    height: 32px;
  }

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

  nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    order: 2;
  }

  .nav-actions {
    margin-left: auto;
    gap: 1rem;
    order: 3;
  }

  .mobile-nav {
    display: none;
  }

  .nav-icon {
    width: 22px;
    height: 22px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .hero-with-bg {
    min-height: 60vh;
    background-position: center right;
    padding: 3rem 0;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }

  .product-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .cookie-banner {
    padding: 0.75rem 1rem;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .cookie-banner p {
    font-size: 0.85rem;
    min-width: auto;
  }

  .cookie-actions {
    width: auto;
    justify-content: flex-end;
  }
}

/* Mobile styles */
@media (max-width: 720px) {
  :root {
    --container-width: 100%;
  }

  html {
    font-size: 14px;
  }

  body {
    font-size: 14px;
  }

  header {
    position: sticky;
    top: 0;
  }

  .navbar {
    padding: 0.75rem 1rem;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .brand {
    margin-right: 0.5rem;
    gap: 0.5rem;
    flex-shrink: 1;
    min-width: auto;
  }

  .brand-logo {
    height: 28px;
  }

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

  .brand-subtitle {
    font-size: 0.6rem;
  }

  .mobile-menu-toggle {
    display: flex;
    order: 2;
    width: 28px;
    height: 28px;
  }

  .mobile-menu-toggle span {
    width: 20px;
    height: 2px;
  }

  .nav-actions {
    margin-left: auto;
    gap: 0.75rem;
    flex-shrink: 0;
    order: 3;
  }

  .nav-icon {
    width: 20px;
    height: 20px;
  }

  .mobile-nav {
    top: 56px;
    padding: 1rem;
  }

  .mobile-nav a {
    padding: 0.875rem 0;
    font-size: 0.85rem;
  }

  .section {
    padding: 2rem 1rem;
    width: 100%;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .hero-with-bg {
    min-height: 50vh;
    padding: 2rem 1rem;
  }

  .hero-copy {
    gap: 1rem;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 1rem;
  }

  .hero-badge {
    font-size: 0.7rem;
    margin-bottom: 0.75rem;
  }

  .hero-copy p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .hero-media {
    margin-top: 1rem;
  }

  .product-showcase {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem 0;
  }

  .showcase-item img {
    width: 100%;
    height: auto;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  .tile, .product-card-content, .article-card, .account-card, .cart-summary {
    padding: 1.25rem;
  }

  .product-card {
    margin-bottom: 1.5rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .tile-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .btn, .btn-outline {
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
    width: 100%;
    justify-content: center;
  }

  .hero-cta {
    flex-direction: column;
    gap: 0.75rem;
  }

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

  .footer {
    padding: 2.5rem 1rem 1.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .footer h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .footer nav {
    gap: 0.5rem;
  }

  .footer nav a {
    font-size: 0.85rem;
  }

  .legal-meta {
    margin-top: 2rem;
    padding-top: 1.5rem;
    font-size: 0.75rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .breadcrumbs {
    padding: 0 1rem;
    margin-top: 1rem;
    font-size: 0.85rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  input, textarea, select {
    padding: 0.75rem;
    font-size: 0.9rem;
  }

  textarea {
    min-height: 120px;
  }

  table {
    font-size: 0.85rem;
  }

  table th, table td {
    padding: 0.75rem 0.5rem;
  }

  .cookie-banner {
    padding: 0.6rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .cookie-banner p {
    font-size: 0.75rem;
    min-width: auto;
  }

  .cookie-actions {
    width: 100%;
    justify-content: flex-start;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .cookie-actions button {
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
    flex: 1;
    min-width: 80px;
  }

  .cookie-link {
    font-size: 0.75rem;
  }

  /* Улучшения для таблиц на мобильных */
  .table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Улучшения для изображений */
  img {
    height: auto;
    max-width: 100%;
  }

  /* Улучшения для touch-устройств */
  button, a, input, select, textarea {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  }

  /* Улучшения для скролла */
  * {
    -webkit-overflow-scrolling: touch;
  }
}

/* Дополнительные стили для очень маленьких экранов */
@media (max-width: 480px) {
  .hero-copy h1 {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

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

  .navbar {
    padding: 0.6rem 0.75rem;
  }

  .section {
    padding: 1.5rem 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
