:root{
  --bg:#000000;
  --card:#111111;
  --ink:#ffffff;
  --muted:#a0a0a0;
  --line:#333333;
  --brand:#4a90e2;
  --accent:#6c5ce7;
  --radius:16px;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font:500 16px/1.55 'Inter', system-ui, Segoe UI, Roboto, Arial, sans-serif;
  overflow-x: hidden;
}
a{text-decoration:none;color:inherit}
.container{max-width:1160px;margin:0 auto;padding:0 20px}
.header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(0,0,0,0.95);
  backdrop-filter:saturate(180%) blur(20px);
  border-bottom:1px solid var(--line);
  transition: var(--transition);
}
.header.scrolled {
  padding: 5px 0;
  background: rgba(0,0,0,0.98);
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}
.header .bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
  transition: var(--transition);
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  position: relative;
}
.logo{
  width:40px;
  height:40px;
  border-radius:12px;
  background:linear-gradient(135deg, var(--brand), var(--accent));
  display:grid;
  place-items:center;
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.logo::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
}
.brand:hover .logo::after {
  transform: translateX(100%);
  transition: transform 0.6s ease;
}
.brand:hover .logo {
  transform: rotate(15deg);
  box-shadow: 0 6px 16px rgba(74, 144, 226, 0.5);
}
.brand h1{
  margin:0;
  font-size:20px;
  letter-spacing:.4px;
  background: linear-gradient(90deg, #fff, var(--brand));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.nav{
  display:flex;
  align-items:center;
  gap:8px;
}
.pill{
  padding:10px 16px;
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--muted);
  font-size:14px;
  background:rgba(30,30,30,0.7);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  overflow: hidden;
}
.pill::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(108, 92, 231, 0.1));
  opacity: 0;
  transition: var(--transition);
}
.pill:hover::before {
  opacity: 1;
}
.pill:hover {
  color: var(--ink);
  border-color: var(--brand);
  transform: translateY(-2px);
}
.btn{
  padding:12px 24px;
  border-radius:999px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  color:#fff;
  border:0;
  font-weight:700;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: inline-grid;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}
.btn:hover::before {
  left: 100%;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(74, 144, 226, 0.3);
}

.hero{
  position: relative;
  border-bottom:1px solid var(--line);
  background: linear-gradient(135deg, #000, #111);
  overflow: hidden;
}
.banner {
  max-width: 1200px;
  margin: 40px auto;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: url('https://images.unsplash.com/photo-1585435557343-3b092031d5ad?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80') center / cover no-repeat;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  transition: var(--transition);
}
.banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.6);
}
.banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(17,17,17,0.8));
  z-index: 1;
}
.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 700px;
  padding: 0 20px;
}
.banner h1 {
  font-size: 48px;
  margin: 0 0 20px;
  background: linear-gradient(90deg, #fff, var(--brand));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.banner p {
  font-size: 18px;
  margin: 0 0 30px;
  color: #e0e0e0;
  line-height: 1.6;
}
.banner .btn {
  font-size: 16px;
  padding: 14px 32px;
}

.section{
  padding:80px 0;
  border-bottom:1px solid var(--line);
  position: relative;
}
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
}
.section h2{
  margin:0 0 20px 0;
  font-size:36px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  border-radius: 3px;
}
.section p.lead{
  margin:0 0 30px 0;
  color:var(--muted);
  font-size: 18px;
  max-width: 800px;
  line-height: 1.7;
}
.grid{display:grid;gap:24px}
.features{grid-template-columns:repeat(3,minmax(0,1fr))}
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:24px;
  display:flex;
  gap:16px;
  align-items:flex-start;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--brand), var(--accent));
  opacity: 0;
  transition: var(--transition);
}
.card:hover::before {
  opacity: 1;
}
.card:hover {
  transform: translateY(-10px);
  border-color: rgba(74, 144, 226, 0.3);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}
.ic{
  width:50px;
  height:50px;
  flex:0 0 50px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background:linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(108, 92, 231, 0.1));
  border:1px solid rgba(74, 144, 226, 0.2);
  color:var(--brand);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.ic::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.card:hover .ic::after {
  transform: translateX(100%);
}
.card:hover .ic {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.2), rgba(108, 92, 231, 0.2));
}
.card h3{
  margin:0 0 10px 0;
  font-size:18px;
  font-weight: 600;
}
.card p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height: 1.6;
}

.products{grid-template-columns:repeat(4,minmax(0,1fr))}
.prod{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:20px;
  overflow:hidden;
  display:grid;
  transition: var(--transition);
  position: relative;
}
.prod::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.05), rgba(108, 92, 231, 0.05));
  opacity: 0;
  transition: var(--transition);
}
.prod:hover::before {
  opacity: 1;
}
.prod:hover {
  transform: translateY(-10px);
  border-color: rgba(74, 144, 226, 0.3);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}
.prod .ph{
  aspect-ratio:1/1;
  background: linear-gradient(135deg, #111, #222);
  position: relative;
  overflow: hidden;
}
.prod .ph::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(108, 92, 231, 0.1));
}
.prod .meta{
  padding:20px;
  display:grid;
  gap:12px;
  position: relative;
  z-index: 1;
}
.meta .tag{
  font-size:12px;
  color:var(--muted);
  background: rgba(74, 144, 226, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
  width: fit-content;
}
.price{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top: 10px;
}
.price .v{
  font-weight:800;
  font-size: 20px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.price .btn {
  padding: 8px 16px;
  font-size: 14px;
}

.footer{
  padding:60px 0 30px;
  color:#f0f0f0;
  background: #0a0a0a;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
}
.footer .cols{
  display:grid;
  gap:40px;
  grid-template-columns:2fr 1fr 1fr;
}
.copy{
  border-top:1px solid var(--line);
  margin-top:40px;
  padding-top:20px;
  color:var(--muted);
  font-size:14px;
  text-align: center;
}

/* Floating particles animation */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  background: rgba(74, 144, 226, 0.3);
  border-radius: 50%;
  animation: float 15s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(100px);
    opacity: 0;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Scroll animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Pulse animation for CTA */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 144, 226, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(74, 144, 226, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(74, 144, 226, 0);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

@media (max-width:1024px){
  .features{grid-template-columns:repeat(2,minmax(0,1fr))}
  .products{grid-template-columns:repeat(2,minmax(0,1fr))}
  .banner h1 { font-size: 36px; }
  .section h2 { font-size: 30px; }
}
@media (max-width:768px){
  .nav {
    display: none;
  }
  .footer .cols { grid-template-columns: 1fr 1fr; }
  .mobile-menu-btn {
    display: block;
    background: transparent;
    border: none;
    color: var(--ink);
    font-size: 24px;
    cursor: pointer;
  }
}
@media (max-width:560px){
  .products,.features,.footer .cols{grid-template-columns:1fr}
  .banner { height: 400px; margin: 20px auto; }
  .banner h1 { font-size: 28px; }
  .section { padding: 50px 0; }
  .section h2 { font-size: 26px; }
}

/* Стили для страницы магазина */
.shop-page {
    min-height: 100vh;
}

.shop-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #000000, #111111);
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

.shop-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1585435557343-3b092031d5ad?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    opacity: 0.1;
}

.shop-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.shop-hero h1 {
    font-size: 48px;
    margin: 0 0 20px;
    background: linear-gradient(90deg, #fff, var(--brand));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.shop-hero p {
    font-size: 18px;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Основная структура магазина */
.shop-main {
    padding: 40px 0;
}

.shop-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: flex-start;
}

/* Основной контент магазина */
.shop-content {
    flex: 1;
    min-height: 500px;
}

/* Сайдбар с категориями */
.shop-sidebar {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-item {
    padding: 12px 16px;
    border-radius: 12px;
    color: var(--muted);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.category-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, var(--brand), var(--accent));
    border-radius: 3px;
    transition: var(--transition);
}

.category-item:hover {
    color: var(--ink);
    background: rgba(74, 144, 226, 0.05);
}

.category-item.active {
    color: var(--ink);
    background: rgba(74, 144, 226, 0.1);
    font-weight: 600;
}

.category-item.active::before {
    height: 20px;
}

.category-count {
    margin-left: auto;
    font-size: 12px;
    background: var(--line);
    padding: 2px 8px;
    border-radius: 10px;
    color: var(--muted);
}

.category-item.active .category-count {
    background: linear-gradient(135deg, var(--brand), var(--accent));
    color: white;
}

/* Панель управления */
.shop-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.results-count {
    color: var(--muted);
    font-size: 14px;
}

.sort-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sort-label {
    font-size: 14px;
    color: var(--muted);
}

.sort-select {
    padding: 10px 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--card);
    color: var(--ink);
    font-size: 14px;
    min-width: 180px;
    cursor: pointer;
    transition: var(--transition);
}

.sort-select:focus {
    border-color: var(--brand);
    outline: none;
}

/* Сетка продуктов */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.shop-product {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.shop-product:hover {
    transform: translateY(-5px);
    border-color: var(--brand);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.2);
}

.product-image {
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, #111, #222);
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    border-bottom: 1px solid var(--line);
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(108, 92, 231, 0.1));
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--brand), var(--accent));
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.product-icon {
    font-size: 48px;
    color: var(--brand);
    opacity: 0.7;
}

.product-content {
    padding: 20px;
}

.product-category {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.product-specs {
    font-size: 13px;
    color: var(--brand);
    margin-bottom: 10px;
    font-weight: 500;
}

.product-description {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.price-main {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-old {
    font-size: 14px;
    color: var(--muted);
    text-decoration: line-through;
    margin-left: 8px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.rating-stars {
    color: #ffd700;
}

.rating-count {
    font-size: 12px;
    color: var(--muted);
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 8px 12px;
}

.quantity-btn {
    background: none;
    border: none;
    color: var(--ink);
    cursor: pointer;
    padding: 4px;
    transition: var(--transition);
}

.quantity-btn:hover {
    color: var(--brand);
}

.quantity-input {
    background: none;
    border: none;
    color: var(--ink);
    text-align: center;
    width: 40px;
    font-size: 14px;
}

/* Пагинация */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-btn {
    padding: 10px 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--card);
    color: var(--ink);
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.pagination-btn:hover,
.pagination-btn.active {
    background: linear-gradient(135deg, var(--brand), var(--accent));
    border-color: transparent;
    color: white;
}

.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Баннер промо */
.shop-promo {
    background: linear-gradient(135deg, var(--brand), var(--accent));
    padding: 30px;
    border-radius: 20px;
    margin: 30px 0;
    text-align: center;
    color: white;
    width: 100%;
}

.promo-title {
    font-size: 24px;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.promo-text {
    font-size: 14px;
    margin: 0 0 15px 0;
    opacity: 0.9;
}

/* Счетчик в корзине */
.cart-count {
    background: var(--brand);
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    margin-left: 4px;
    min-width: 18px;
    height: 18px;
    width: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Ссылки в футере */
.footer-link {
    color: var(--muted);
    transition: var(--transition);
    font-size: 14px;
}

.footer-link:hover {
    color: var(--brand);
}

/* Адаптивность */
@media (max-width: 1024px) {
    .shop-container {
        grid-template-columns: 240px 1fr;
        gap: 30px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .shop-hero h1 {
        font-size: 36px;
    }
    
    .shop-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .shop-sidebar {
        position: static;
    }
    
    .category-list {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .category-item {
        flex: 1;
        min-width: 140px;
        justify-content: center;
        text-align: center;
    }
    
    .shop-controls {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .nav {
        display: none;
    }
}

@media (max-width: 560px) {
    .shop-hero {
        padding: 80px 0 40px;
    }
    
    .shop-hero h1 {
        font-size: 28px;
    }
    
    .category-list {
        flex-direction: column;
    }
    
    .product-actions {
        grid-template-columns: 1fr;
    }
    
    .shop-promo {
        padding: 20px;
    }
    
    .promo-title {
        font-size: 20px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Стили для страницы доставки */
.shipping-page {
    min-height: 100vh;
}

.shipping-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #000000, #111111);
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

.shipping-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1607082348824-0a96f2a4b9da?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    opacity: 0.1;
}

.shipping-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.shipping-hero h1 {
    font-size: 48px;
    margin: 0 0 20px;
    background: linear-gradient(90deg, #fff, var(--brand));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.shipping-hero p {
    font-size: 18px;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Основной контент */
.shipping-main {
    padding: 80px 0;
}

.shipping-grid {
    display: grid;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.shipping-section {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.shipping-section:hover {
    transform: translateY(-5px);
    border-color: var(--brand);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.1);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(108, 92, 231, 0.1));
    border-bottom: 1px solid var(--line);
}

.section-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--brand), var(--accent));
    border-radius: 12px;
    color: white;
    font-size: 20px;
}

.section-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
}

.shipping-content {
    padding: 24px;
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(74, 144, 226, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--brand);
}

.feature-item i {
    color: var(--brand);
    font-size: 14px;
}

.feature-item span {
    font-size: 14px;
    color: var(--ink);
    font-weight: 500;
}

/* Disclaimer */
.disclaimer {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    padding: 16px;
    margin-top: 20px;
}

.disclaimer p {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

/* Warning Box */
.warning-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 87, 87, 0.1);
    border: 1px solid rgba(255, 87, 87, 0.3);
    border-radius: 12px;
}

.warning-box i {
    color: #ff5757;
    font-size: 24px;
    margin-top: 2px;
}

.warning-box h3 {
    margin: 0 0 8px 0;
    font-size: 16px;
    color: #ff5757;
    font-weight: 600;
}

.warning-box p {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}

/* Delivery Timeline */
.delivery-timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.delivery-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: rgba(74, 144, 226, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(74, 144, 226, 0.1);
}

.delivery-location {
    display: flex;
    align-items: center;
    gap: 12px;
}

.delivery-location i {
    color: var(--brand);
    font-size: 16px;
}

.delivery-location span {
    font-weight: 600;
    color: var(--ink);
}

.delivery-time {
    background: linear-gradient(135deg, var(--brand), var(--accent));
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.delivery-note {
    background: rgba(74, 144, 226, 0.05);
    border-radius: 8px;
    padding: 16px;
}

.delivery-note p {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

/* Payment Methods */
.payment-methods {
    display: grid;
    gap: 16px;
    margin-top: 20px;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(74, 144, 226, 0.05);
    border: 1px solid rgba(74, 144, 226, 0.1);
    border-radius: 12px;
    transition: var(--transition);
}

.payment-method:hover {
    transform: translateX(5px);
    border-color: var(--brand);
}

.payment-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--brand), var(--accent));
    border-radius: 12px;
    color: white;
    font-size: 20px;
}

.payment-info h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
}

.payment-info p {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, var(--brand), var(--accent));
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: white;
    margin-top: 40px;
}

.cta-content i {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.cta-content h3 {
    font-size: 28px;
    margin: 0 0 12px 0;
    font-weight: 700;
}

.cta-content p {
    font-size: 16px;
    margin: 0 0 24px 0;
    opacity: 0.9;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta .btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-cta .btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Адаптивность */
@media (max-width: 768px) {
    .shipping-hero h1 {
        font-size: 36px;
    }
    
    .shipping-main {
        padding: 50px 0;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .delivery-item {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .payment-method {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-cta {
        padding: 30px 20px;
    }
    
    .cta-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 560px) {
    .shipping-hero {
        padding: 80px 0 40px;
    }
    
    .shipping-hero h1 {
        font-size: 28px;
    }
    
    .shipping-content {
        padding: 20px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .warning-box {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-cta {
        padding: 24px 16px;
    }
    
    .cta-content h3 {
        font-size: 20px;
    }
    
    .cta-content i {
        font-size: 36px;
    }
}

/* Стили для страницы About */
.about-page {
    min-height: 100vh;
}

.about-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #000000, #111111);
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1559757148-5c350d0d3c56?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    opacity: 0.1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin: 0 0 20px;
    background: linear-gradient(90deg, #fff, var(--brand));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.about-hero p {
    font-size: 18px;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Основной контент */
.about-main {
    padding: 80px 0;
}

.about-section {
    margin-bottom: 80px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 36px;
    margin: 0 0 20px 0;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.about-content .lead {
    font-size: 18px;
    color: var(--ink);
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 500;
}

.about-content p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Mission Stats */
.mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 24px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-5px);
    border-color: var(--brand);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
}

/* About Image */
.about-image {
    display: grid;
    place-items: center;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--brand), var(--accent));
    border-radius: 20px;
    display: grid;
    place-items: center;
    color: white;
    font-size: 80px;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.image-placeholder:hover::before {
    transform: translateX(100%);
}

/* Values Section */
.values-section {
    margin-bottom: 80px;
}

.values-section h2 {
    text-align: center;
    font-size: 36px;
    margin: 0 0 50px 0;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    transform: scaleX(0);
    transition: var(--transition);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--brand);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(108, 92, 231, 0.1));
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: var(--brand);
    font-size: 28px;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--brand), var(--accent));
    color: white;
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 18px;
    margin: 0 0 12px 0;
    font-weight: 600;
    color: var(--ink);
}

.value-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* Process Section */
.process-section {
    margin-bottom: 80px;
}

.process-section h2 {
    text-align: center;
    font-size: 36px;
    margin: 0 0 50px 0;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.process-steps {
    display: grid;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 30px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    transition: var(--transition);
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--brand), var(--accent));
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: var(--transition);
}

.process-step:hover::before {
    opacity: 1;
}

.process-step:hover {
    transform: translateX(10px);
    border-color: var(--brand);
}

.step-number {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--brand), var(--accent));
    -webkit-background-clip: text;
    min-width: 60px;
}

.step-content h3 {
    font-size: 18px;
    margin: 0 0 12px 0;
    font-weight: 600;
    color: var(--ink);
}

.step-content p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* Categories Section */
.categories-section {
    margin-bottom: 80px;
}

.categories-section h2 {
    text-align: center;
    font-size: 36px;
    margin: 0 0 50px 0;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.category-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05), rgba(108, 92, 231, 0.05));
    opacity: 0;
    transition: var(--transition);
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--brand);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--brand), var(--accent));
    border-radius: 20px;
    display: grid;
    place-items: center;
    color: white;
    font-size: 32px;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    transform: rotate(10deg) scale(1.1);
}

.category-card h3 {
    font-size: 20px;
    margin: 0 0 16px 0;
    font-weight: 600;
    color: var(--ink);
}

.category-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.category-list li {
    padding: 8px 0;
    color: var(--muted);
    font-size: 14px;
    border-bottom: 1px solid var(--line);
    position: relative;
    padding-left: 20px;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand);
    font-weight: bold;
}

/* Commitment Section */
.commitment-section {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 60px;
    text-align: center;
}

.commitment-content h2 {
    font-size: 32px;
    margin: 0 0 24px 0;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.commitment-content p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 30px;
}

.commitment-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(74, 144, 226, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--brand);
}

.feature i {
    color: var(--brand);
    font-size: 14px;
}

.feature span {
    font-size: 14px;
    color: var(--ink);
    font-weight: 500;
}

/* About CTA */
.about-cta {
    background: linear-gradient(135deg, var(--brand), var(--accent));
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 32px;
    margin: 0 0 16px 0;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    margin: 0 0 30px 0;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Адаптивность */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .commitment-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 36px;
    }
    
    .about-main {
        padding: 50px 0;
    }
    
    .mission-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .commitment-section {
        padding: 30px 20px;
    }
    
    .about-cta {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 200px;
    }
}

@media (max-width: 560px) {
    .about-hero {
        padding: 80px 0 40px;
    }
    
    .about-hero h1 {
        font-size: 28px;
    }
    
    .about-content h2,
    .values-section h2,
    .process-section h2,
    .categories-section h2 {
        font-size: 28px;
    }
    
    .value-card,
    .category-card {
        padding: 24px 20px;
    }
    
    .commitment-content h2 {
        font-size: 24px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
}

/* Стили для страницы Contact */
.contact-page {
    min-height: 100vh;
}

.contact-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #000000, #111111);
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    opacity: 0.1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin: 0 0 20px;
    background: linear-gradient(90deg, #fff, var(--brand));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.contact-hero p {
    font-size: 18px;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Основной контент */
.contact-main {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* Контактная информация */
.contact-info h2 {
    font-size: 36px;
    margin: 0 0 16px 0;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.contact-info .lead {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateX(5px);
    border-color: var(--brand);
}

.method-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(108, 92, 231, 0.1));
    border-radius: 12px;
    color: var(--brand);
    font-size: 20px;
    flex-shrink: 0;
}

.method-info h3 {
    font-size: 18px;
    margin: 0 0 8px 0;
    font-weight: 600;
    color: var(--ink);
}

.method-info p {
    font-size: 14px;
    color: var(--muted);
    margin: 0 0 8px 0;
}

.method-link {
    color: var(--brand);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.method-link:hover {
    color: var(--accent);
}

.response-time,
.operating-hours {
    background: linear-gradient(135deg, var(--brand), var(--accent));
    color: white;
    padding: 6px 12px;
    width: fit-content;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

/* FAQ Section */
.faq-section {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px;
}

.faq-section h3 {
    font-size: 18px;
    margin: 0 0 20px 0;
    font-weight: 600;
    color: var(--ink);
}

.faq-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(74, 144, 226, 0.05);
    border-radius: 8px;
    color: var(--muted);
    text-decoration: none;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.faq-link:hover {
    background: rgba(74, 144, 226, 0.1);
    color: var(--ink);
    border-left-color: var(--brand);
    transform: translateX(5px);
}

.faq-link i {
    color: var(--brand);
    font-size: 14px;
    width: 16px;
}

/* Форма обратной связи */
.contact-form-container {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 40px;
    position: sticky;
    top: 120px;
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-header h2 {
    font-size: 28px;
    margin: 0 0 12px 0;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.form-header p {
    color: var(--muted);
    margin: 0;
    font-size: 14px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--ink);
    font-size: 14px;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 2px;
    accent-color: var(--brand);
}

.checkbox-group label {
    font-weight: normal;
    font-size: 13px;
    line-height: 1.4;
}

.link {
    color: var(--brand);
    text-decoration: none;
}

.link:hover {
    color: var(--accent);
}

.submit-btn {
    margin-top: 10px;
    padding: 14px 24px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* Support Features */
.support-features {
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.support-feature {
    text-align: center;
    padding: 30px 20px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    transition: var(--transition);
}

.support-feature:hover {
    transform: translateY(-5px);
    border-color: var(--brand);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(108, 92, 231, 0.1));
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: var(--brand);
    font-size: 24px;
    transition: var(--transition);
}

.support-feature:hover .feature-icon {
    background: linear-gradient(135deg, var(--brand), var(--accent));
    color: white;
    transform: scale(1.1);
}

.support-feature h3 {
    font-size: 16px;
    margin: 0 0 12px 0;
    font-weight: 600;
    color: var(--ink);
}

.support-feature p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
}

/* Tracking CTA */
.tracking-cta {
    background: linear-gradient(135deg, var(--brand), var(--accent));
    border-radius: 20px;
    padding: 30px;
    color: white;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.cta-icon {
    font-size: 48px;
    opacity: 0.9;
}

.cta-text h3 {
    font-size: 24px;
    margin: 0 0 8px 0;
    font-weight: 700;
}

.cta-text p {
    margin: 0;
    opacity: 0.9;
    font-size: 14px;
}

.tracking-cta .btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-left: auto;
}

.tracking-cta .btn.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Уведомления */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 1000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification.success {
    border-left: 4px solid #00d26a;
}

.notification.error {
    border-left: 4px solid #ff5757;
}

.notification i {
    font-size: 18px;
}

.notification.success i {
    color: #00d26a;
}

.notification.error i {
    color: #ff5757;
}

.notification span {
    flex: 1;
    font-size: 14px;
    color: var(--ink);
}

.notification-close {
    background: none;
    border: none;
    color: var(--muted);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: var(--transition);
}

.notification-close:hover {
    color: var(--ink);
    background: rgba(255,255,255,0.1);
}

/* Адаптивность */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-container {
        position: static;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .tracking-cta .btn.secondary {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 36px;
    }
    
    .contact-main {
        padding: 50px 0;
    }
    
    .contact-info h2 {
        font-size: 28px;
    }
    
    .contact-form-container {
        padding: 30px 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

@media (max-width: 560px) {
    .contact-hero {
        padding: 80px 0 40px;
    }
    
    .contact-hero h1 {
        font-size: 28px;
    }
    
    .contact-info h2,
    .form-header h2 {
        font-size: 24px;
    }
    
    .support-feature {
        padding: 24px 16px;
    }
    
    .tracking-cta {
        padding: 24px 20px;
    }
    
    .cta-text h3 {
        font-size: 20px;
    }
    
    .cta-icon {
        font-size: 36px;
    }
}

/* Стили для страницы корзины */
.cart-page {
    min-height: 100vh;
}

.cart-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #000000, #111111);
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

.cart-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1607082350899-7e105aa886ae?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    opacity: 0.1;
}

.cart-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cart-hero h1 {
    font-size: 48px;
    margin: 0 0 20px;
    background: linear-gradient(90deg, #fff, var(--brand));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.cart-hero p {
    font-size: 18px;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Основной контент */
.cart-main {
    padding: 80px 0;
}

.cart-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* Левая колонка - Форма заказа */
.order-form-container {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 40px;
    position: sticky;
    top: 100px;
}

/* Индикатор шагов */
.form-steps {
    margin-bottom: 40px;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.step-indicator::before {

}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-number {
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--line);
    display: grid;
    place-items: center;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 8px;
    transition: var(--transition);
}

.step.active .step-number {
    background: linear-gradient(135deg, var(--brand), var(--accent));
    border-color: transparent;
    color: white;
}

.step-label {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
    text-align: center;
}

.step.active .step-label {
    color: var(--ink);
}

/* Шаги формы */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.step-header {
    margin-bottom: 32px;
    text-align: center;
}

.step-header h2 {
    font-size: 28px;
    margin: 0 0 8px 0;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.step-header p {
    color: var(--muted);
    margin: 0;
    font-size: 14px;
}

/* Секции формы */
.form-section {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    font-size: 16px;
    margin: 0 0 20px 0;
    font-weight: 600;
    color: var(--ink);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--ink);
    font-size: 14px;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

/* Опции доставки */
.shipping-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shipping-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.shipping-option:hover {
    border-color: var(--brand);
}

.shipping-option input[type="radio"] {
    accent-color: var(--brand);
}

.option-content {
    flex: 1;
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.option-name {
    font-weight: 600;
    color: var(--ink);
}

.option-price {
    font-weight: 700;
    color: var(--brand);
}

.option-desc {
    font-size: 12px;
    color: var(--muted);
}

/* Методы оплаты */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.payment-method:hover {
    border-color: var(--brand);
}

.payment-method input[type="radio"] {
    accent-color: var(--brand);
}

.method-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.method-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(108, 92, 231, 0.1));
    border-radius: 8px;
    color: var(--brand);
    font-size: 16px;
}

.method-info {
    display: flex;
    flex-direction: column;
}

.method-name {
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 2px;
}

.method-desc {
    font-size: 12px;
    color: var(--muted);
}

/* Детали Bitcoin платежа */
.payment-details {
    background: rgba(74, 144, 226, 0.05);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.payment-info h4 {
    margin: 0 0 12px 0;
    font-size: 16px;
    color: var(--ink);
    font-weight: 600;
}

.payment-info p {
    margin: 0 0 16px 0;
    font-size: 14px;
    color: var(--muted);
}

.bitcoin-address {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
    font-family: monospace;
    font-size: 12px;
}

.bitcoin-address code {
    flex: 1;
    color: var(--ink);
}

.copy-btn {
    background: none;
    border: none;
    color: var(--brand);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: var(--transition);
}

.copy-btn:hover {
    background: rgba(74, 144, 226, 0.1);
}

.payment-amount {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.bitcoin-amount {
    color: var(--brand);
    font-weight: 700;
}

.amount-usd {
    color: var(--muted);
}

/* Подтверждение заказа */
.order-summary-large {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.summary-section {
    margin-bottom: 20px;
}

.summary-section:last-child {
    margin-bottom: 0;
}

.summary-section h4 {
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}

.summary-content p {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}

.privacy-notice {
    background: rgba(74, 144, 226, 0.05);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.notice-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.notice-header i {
    color: var(--brand);
    font-size: 18px;
}

.notice-header h4 {
    margin: 0;
    font-size: 16px;
    color: var(--ink);
    font-weight: 600;
}

.privacy-notice p {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}

/* Действия формы */
.form-actions {
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.form-actions .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-actions .btn.secondary {
    background: rgba(74, 144, 226, 0.1);
    color: var(--brand);
}

.form-actions .btn.secondary:hover {
    background: rgba(74, 144, 226, 0.2);
}

/* Правая колонка - Корзина */
.cart-summary-container {
    position: sticky;
    top: 100px;
}

.cart-summary {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 30px;
}

.cart-summary h3 {
    font-size: 20px;
    margin: 0 0 24px 0;
    font-weight: 700;
    color: var(--ink);
    text-align: center;
}

/* Товары в корзине */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 12px;
    transition: var(--transition);
}

.cart-item:hover {
    border-color: var(--brand);
}

.item-image {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(108, 92, 231, 0.1));
    border-radius: 8px;
    color: var(--brand);
    font-size: 18px;
    flex-shrink: 0;
}

.item-details {
    flex: 1;
}

.item-details h4 {
    margin: 0 0 4px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}

.item-specs {
    font-size: 12px;
    color: var(--muted);
    display: block;
    margin-bottom: 4px;
}

.item-price {
    font-size: 14px;
    color: var(--brand);
    font-weight: 600;
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 4px;
    width: fit-content;
}

.quantity-btn {
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    color: var(--ink);
    cursor: pointer;
    border-radius: 4px;
    display: grid;
    place-items: center;
    transition: var(--transition);
}

.quantity-btn:hover {
    background: var(--brand);
    color: white;
}

.quantity {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    min-width: 20px;
    text-align: center;
}

.item-total {
    font-weight: 700;
    color: var(--ink);
    font-size: 14px;
    min-width: 60px;
    text-align: right;
}

.item-remove {
    background: none;
    border: none;
    color: var(--muted);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: var(--transition);
}

.item-remove:hover {
    color: #ff5757;
    background: rgba(255, 87, 87, 0.1);
}

/* Промо-код */
.promo-code {
    margin-bottom: 24px;
}

.promo-input {
    display: flex;
    gap: 8px;
}

.promo-input input {
    flex: 1;
    padding: 12px 16px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--ink);
    font-size: 14px;
}

.promo-input .btn {
    white-space: nowrap;
    padding: 12px 16px;
}

/* Итоги заказа */
.order-totals {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--muted);
}

.total-row.grand-total {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    padding-top: 12px;
    border-top: 1px solid var(--line);
}

.discount {
    color: #00d26a;
}

/* Бейджи безопасности */
.security-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 8px;
    background: rgba(74, 144, 226, 0.05);
    border-radius: 8px;
    text-align: center;
}

.badge i {
    color: var(--brand);
    font-size: 14px;
}

.badge span {
    font-size: 10px;
    color: var(--muted);
    font-weight: 500;
}

/* Уведомление корзины */
.cart-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
}

.cart-notice i {
    color: #ffc107;
    font-size: 16px;
    margin-top: 2px;
}

.cart-notice p {
    margin: 0;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.4;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .cart-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .order-form-container,
    .cart-summary-container {
        position: static;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .security-badges {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cart-hero h1 {
        font-size: 36px;
    }
    
    .cart-main {
        padding: 50px 0;
    }
    
    .order-form-container,
    .cart-summary {
        padding: 24px 20px;
    }
    
    .step-indicator::before {
        left: 20%;
        right: 20%;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .cart-item {
        flex-wrap: wrap;
    }
    
    .item-quantity {
        order: 3;
        margin-left: auto;
    }
    
    .item-total {
        order: 4;
    }
    
    .item-remove {
        order: 5;
    }
}

@media (max-width: 560px) {
    .cart-hero {
        padding: 80px 0 40px;
    }
    
    .cart-hero h1 {
        font-size: 28px;
    }
    
    .step-indicator::before {
        display: none;
    }
    
    .step {
        flex: none;
    }
    
    .step-label {
        display: none;
    }
    
    .cart-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .item-details {
        text-align: center;
    }
    
    .item-quantity {
        margin-left: 0;
    }
    
    .security-badges {
        grid-template-columns: 1fr;
    }
    
    .promo-input {
        flex-direction: column;
    }
}

/* Стили для страницы товара */
.product-page {
    min-height: 100vh;
}

.product-hero {
    padding: 40px 0 20px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--muted);
}

.breadcrumb a {
    color: var(--muted);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--brand);
}

.breadcrumb i {
    font-size: 10px;
    opacity: 0.6;
}

.breadcrumb span {
    color: var(--ink);
    font-weight: 500;
}

/* Основной контент */
.product-main {
    padding: 40px 0 80px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* Левая колонка - Галерея */
.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image {
    margin-bottom: 16px;
}

.image-container {
    position: relative;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1/1;
    display: grid;
    place-items: center;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--brand), var(--accent));
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.image-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.thumbnail {
    background: var(--card);
    border: 2px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    aspect-ratio: 1/1;
}

.thumbnail.active {
    border-color: var(--brand);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 13px;
    color: var(--muted);
}

.feature i {
    color: var(--brand);
    font-size: 14px;
}

/* Правая колонка - Информация */
.product-info {
    padding-top: 20px;
}

.product-header {
    margin-bottom: 24px;
}

.product-category {
    display: block;
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.product-title {
    font-size: 32px;
    margin: 0 0 16px 0;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.stars {
    display: flex;
    gap: 2px;
    color: #ffd700;
}

.rating-value {
    font-weight: 600;
    color: var(--ink);
}

.review-count {
    color: var(--muted);
    font-size: 14px;
}

.review-link {
    color: var(--brand);
    text-decoration: none;
    font-size: 14px;
}

.review-link:hover {
    text-decoration: underline;
}

/* Цена */
.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
justify-content: flex-start;
    flex-wrap: wrap;
}

.current-price {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.original-price {
    font-size: 18px;
    color: var(--muted);
    text-decoration: line-through;
}

.discount-badge {
    background: #00d26a;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

/* Спецификации */
.product-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 12px;
}

.spec {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.spec strong {
    color: var(--ink);
}

.spec span {
    color: var(--muted);
}

/* Описание */
.product-description {
    margin-bottom: 24px;
}

.product-description p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* Вариации */
.product-variations {
    margin-bottom: 24px;
}

.variation-group {
    margin-bottom: 16px;
}

.variation-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 12px;
}

.variation-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.variation-option {
    flex: 1;
    min-width: 120px;
    padding: 16px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.variation-option.active {
    border-color: var(--brand);
    background: rgba(74, 144, 226, 0.05);
}

.variation-option:hover {
    border-color: var(--brand);
}

.option-name {
    display: block;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
}

.option-price {
    display: block;
    font-size: 14px;
    color: var(--brand);
    font-weight: 600;
}

/* Секция покупки */
.purchase-section {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.quantity-selector label {
    font-weight: 600;
    color: var(--ink);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 8px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    color: var(--ink);
    cursor: pointer;
    border-radius: 8px;
    display: grid;
    place-items: center;
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--brand);
    color: white;
}

.qty-input {
    width: 50px;
    background: none;
    border: none;
    color: var(--ink);
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

.qty-input:focus {
    outline: none;
}

.action-buttons {
    display: flex;
    gap: 12px;
}

.action-buttons .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
}

.action-buttons .btn.secondary {
    background: rgba(74, 144, 226, 0.1);
    color: var(--brand);
}

.action-buttons .btn.secondary:hover {
    background: rgba(74, 144, 226, 0.2);
}

/* Мета информация */
.product-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--muted);
}

.meta-item i {
    color: var(--brand);
    width: 16px;
}

/* Социальные сети */
.social-share {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.social-share span {
    font-size: 14px;
    color: var(--muted);
}

.share-buttons {
    display: flex;
    gap: 8px;
}

.share-btn {
    width: 36px;
    height: 36px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--muted);
    cursor: pointer;
    transition: var(--transition);
    display: grid;
    place-items: center;
}

.share-btn:hover {
    background: var(--brand);
    color: white;
    border-color: var(--brand);
}

/* Детальная информация */
.product-details {
    margin-bottom: 80px;
}

.details-tabs {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
}

.tabs-nav {
    display: flex;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    overflow-x: auto;
}

.tab-btn {
    flex: 1;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--muted);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    min-width: 140px;
}

.tab-btn.active {
    color: var(--brand);
    border-bottom: 2px solid var(--brand);
}

.tab-btn:hover {
    color: var(--ink);
    background: rgba(74, 144, 226, 0.05);
}

.tabs-content {
    padding: 40px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-pane h3 {
    font-size: 24px;
    margin: 0 0 16px 0;
    color: var(--ink);
    font-weight: 700;
}

.tab-pane h4 {
    font-size: 18px;
    margin: 24px 0 12px 0;
    color: var(--ink);
    font-weight: 600;
}

.tab-pane p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.tab-pane ul {
    color: var(--muted);
    line-height: 1.7;
    padding-left: 20px;
    margin-bottom: 20px;
}

.tab-pane li {
    margin-bottom: 8px;
}

/* Спецификации */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-item strong {
    color: var(--ink);
}

.spec-item span {
    color: var(--muted);
}

/* Инструкция по использованию */
.usage-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tab-pane .step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    background: linear-gradient(135deg, var(--brand), var(--accent));
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
}

.step-content p {
    margin: 0;
}

/* Отзывы */
.reviews-summary {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--bg);
    border-radius: 16px;
}

.overall-rating {
    text-align: center;
}

.rating-score {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.rating-count {
    color: var(--muted);
    font-size: 14px;
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.rating-bar span:first-child {
    width: 50px;
    color: var(--muted);
}

/*
.bar {
    flex: 1;
    height: 8px;
    background: var(--line);
    border-radius: 4px;
    overflow: hidden;
}
*/

.fill {
    height: 100%;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    border-radius: 4px;
}

.rating-bar span:last-child {
    width: 30px;
    text-align: right;
    color: var(--muted);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.review {
    padding: 24px;
    background: var(--bg);
    border-radius: 12px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.reviewer {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reviewer strong {
    color: var(--ink);
}

.review-stars {
    display: flex;
    gap: 2px;
    color: #ffd700;
    font-size: 12px;
}

.review-date {
    color: var(--muted);
    font-size: 14px;
}

.review p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

/* Информация о доставке */
.shipping-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.shipping-option {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg);
    border-radius: 12px;
}

.shipping-option i {
    color: var(--brand);
    font-size: 20px;
    margin-top: 2px;
}

.shipping-option strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ink);
}

.shipping-option p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

/* Рекомендуемые товары */
.related-products {
    margin-top: 80px;
}

.section-title {
    font-size: 32px;
    text-align: center;
    margin: 0 0 40px 0;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.related-product {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.related-product:hover {
    transform: translateY(-5px);
    border-color: var(--brand);
}

.product-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(108, 92, 231, 0.1));
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: var(--brand);
    font-size: 32px;
}

.related-product .category {
    display: block;
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.related-product h3 {
    font-size: 16px;
    margin: 0 0 12px 0;
    font-weight: 600;
    color: var(--ink);
}

.related-product .rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
    font-size: 12px;
}

.related-product .rating i {
    color: #ffd700;
}

.related-product .rating span {
    color: var(--muted);
}

.related-product .price {
    font-size: 20px;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 16px;
}

.related-product .btn {
    width: 100%;
    padding: 12px;
    font-size: 14px;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-gallery {
        position: static;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-summary {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .product-main {
        padding: 40px 0 60px;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .current-price {
        font-size: 28px;
    }
    
    .tabs-nav {
        flex-direction: column;
    }
    
    .tab-btn {
        min-width: auto;
        text-align: left;
    }
    
    .tabs-content {
        padding: 24px 20px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .variation-options {
        flex-direction: column;
    }
    
    .product-features {
        grid-template-columns: 1fr;
    }
    
    .review-header {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 560px) {
    .product-hero {
        padding: 30px 0 15px;
    }
    
    .image-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .social-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .quantity-selector {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .quantity-controls {
        align-self: stretch;
        justify-content: space-between;
    }
}

/* Исправленная сетка продуктов для магазина */
.shop-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.shop-product-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.shop-product-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.2);
}

.shop-product-image {
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, #111, #222);
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    border-bottom: 1px solid var(--line);
}

.shop-product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(108, 92, 231, 0.1));
}

.shop-product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--brand), var(--accent));
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.shop-product-icon {
    font-size: 48px;
    color: var(--brand);
    opacity: 0.7;
}

.shop-product-body {
    padding: 20px;
}

.shop-product-category {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shop-product-name {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1.4;
    color: var(--ink);
}

.shop-product-specs {
    font-size: 13px;
    color: var(--brand);
    margin-bottom: 10px;
    font-weight: 500;
}

.shop-product-desc {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 15px;
    line-height: 1.5;
}

.shop-product-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.shop-product-price {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.shop-product-old-price {
    font-size: 14px;
    color: var(--muted);
    text-decoration: line-through;
    margin-left: 8px;
}

.shop-product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.shop-rating-stars {
    color: #ffd700;
}

.shop-rating-count {
    font-size: 12px;
    color: var(--muted);
}

.shop-product-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.shop-quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 8px 12px;
}

.shop-quantity-btn {
    background: none;
    border: none;
    color: var(--ink);
    cursor: pointer;
    padding: 4px;
    transition: var(--transition);
}

.shop-quantity-btn:hover {
    color: var(--brand);
}

.shop-quantity-input {
    background: none;
    border: none;
    color: var(--ink);
    text-align: center;
    width: 40px;
    font-size: 14px;
}

/* Адаптивность для магазина */
@media (max-width: 1024px) {
    .shop-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .shop-products-grid {
        grid-template-columns: 1fr;
    }
    
    .shop-product-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .shop-products-grid {
        grid-template-columns: 1fr;
    }
}

/* Стили для страницы благодарности */
.thank-you-page {
    min-height: 100vh;
}

.thank-you-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #000000, #111111);
    border-bottom: 1px solid var(--line);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.thank-you-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1559757148-5c350d0d3c56?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    opacity: 0.05;
}

.thank-you-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

/* Анимация успеха */
.success-animation {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 40px;
}

.success-icon {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00d26a, #00b359);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    font-size: 48px;
    transform: scale(0);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
}

.success-circle {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid #00d26a;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
    animation: pulseCircle 2s infinite;
}

@keyframes pulseCircle {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.thank-you-content h1 {
    font-size: 48px;
    margin: 0 0 20px;
    background: linear-gradient(90deg, #fff, var(--brand));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.thank-you-content p {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Детали заказа */
.order-details {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
}

.order-info {
    display: grid;
    gap: 16px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item .label {
    color: var(--muted);
    font-weight: 500;
}

.info-item .value {
    color: var(--ink);
    font-weight: 600;
}

/* Таймлайн заказа */
.order-timeline {
    padding: 80px 0;
    background: var(--bg);
}

.order-timeline h2 {
    text-align: center;
    font-size: 36px;
    margin: 0 0 60px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.timeline {
    display: grid;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 30px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    transition: var(--transition);
    position: relative;
}

.timeline-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--brand), var(--accent));
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: var(--transition);
}

.timeline-step:hover::before {
    opacity: 1;
}

.timeline-step:hover {
    transform: translateX(10px);
    border-color: var(--brand);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(108, 92, 231, 0.1));
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: var(--brand);
    font-size: 24px;
    flex-shrink: 0;
    transition: var(--transition);
}

.timeline-step:hover .step-icon {
    background: linear-gradient(135deg, var(--brand), var(--accent));
    color: white;
    transform: scale(1.1);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 20px;
    margin: 0 0 8px;
    color: var(--ink);
    font-weight: 600;
}

.step-content p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.step-status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-status.current {
    background: linear-gradient(135deg, var(--brand), var(--accent));
    color: white;
}

.step-status.upcoming {
    background: rgba(74, 144, 226, 0.1);
    color: var(--brand);
    border: 1px solid rgba(74, 144, 226, 0.2);
}

.step-status.completed {
    background: rgba(0, 210, 106, 0.1);
    color: #00d26a;
    border: 1px solid rgba(0, 210, 106, 0.2);
}

/* Информация о доставке */
.shipping-info {
    padding: 80px 0;
    background: var(--card);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.shipping-info .shipping-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.shipping-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 16px;
    transition: var(--transition);
}

.shipping-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(108, 92, 231, 0.1));
    border-radius: 20px;
    display: grid;
    place-items: center;
    color: var(--brand);
    font-size: 28px;
    transition: var(--transition);
}

.shipping-card:hover .card-icon {
    background: linear-gradient(135deg, var(--brand), var(--accent));
    color: white;
    transform: scale(1.1);
}

.shipping-card h3 {
    font-size: 18px;
    margin: 0 0 12px;
    color: var(--ink);
    font-weight: 600;
}

.shipping-card p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

/* Сводка заказа */
.order-summary {
    padding: 80px 0;
    background: var(--bg);
}

.order-summary h2 {
    text-align: center;
    font-size: 36px;
    margin: 0 0 50px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.summary-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.summary-items,
.summary-totals {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 30px;
}

.summary-items h3,
.summary-totals h3 {
    font-size: 20px;
    margin: 0 0 24px;
    color: var(--ink);
    font-weight: 600;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.ordered-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ordered-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg);
    border-radius: 12px;
    border: 1px solid var(--line);
}

.item-image {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(108, 92, 231, 0.1));
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: var(--brand);
    font-size: 18px;
    flex-shrink: 0;
}

.item-details {
    flex: 1;
}

.item-details h4 {
    font-size: 16px;
    margin: 0 0 4px;
    color: var(--ink);
    font-weight: 600;
}

.item-specs {
    display: block;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 4px;
}

.item-quantity {
    font-size: 12px;
    color: var(--brand);
    font-weight: 500;
}

.item-price {
    font-weight: 700;
    color: var(--ink);
    font-size: 16px;
}

/* Итоги заказа */
.total-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--muted);
}

.total-row.grand-total {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    padding-top: 12px;
    border-top: 1px solid var(--line);
}

.discount {
    color: #00d26a;
}

.shipping-address {
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.shipping-address h4 {
    font-size: 14px;
    margin: 0 0 12px;
    color: var(--ink);
    font-weight: 600;
}

.shipping-address p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

/* CTA поддержки */
.support-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--brand), var(--accent));
    color: white;
}

.cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 32px;
    margin: 0 0 16px;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    margin: 0 0 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
}

.cta-buttons .btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature i {
    font-size: 24px;
    opacity: 0.9;
}

.feature strong {
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
}

.feature span {
    font-size: 14px;
    opacity: 0.8;
}

/* Продолжить покупки */
.continue-shopping {
    padding: 80px 0;
    background: var(--bg);
}

.shopping-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.shopping-cta h2 {
    font-size: 36px;
    margin: 0 0 16px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.shopping-cta p {
    font-size: 18px;
    color: var(--muted);
    margin: 0 0 30px;
    line-height: 1.6;
}

.shopping-cta .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.shopping-cta .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
}

.shopping-cta .btn.secondary {
    background: rgba(74, 144, 226, 0.1);
    color: var(--brand);
}

.shopping-cta .btn.secondary:hover {
    background: rgba(74, 144, 226, 0.2);
}

/* Адаптивность */
@media (max-width: 1024px) {
    .shipping-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .summary-container {
        grid-template-columns: 1fr;
    }
    
    .cta-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .thank-you-hero {
        padding: 100px 0 60px;
    }
    
    .thank-you-content h1 {
        font-size: 36px;
    }
    
    .order-timeline,
    .shipping-info,
    .order-summary,
    .support-cta,
    .continue-shopping {
        padding: 60px 0;
    }
    
    .timeline-step {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .shipping-grid {
        grid-template-columns: 1fr;
    }
    
    .ordered-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 200px;
    }
}

@media (max-width: 560px) {
    .thank-you-hero {
        padding: 80px 0 40px;
    }
    
    .thank-you-content h1 {
        font-size: 28px;
    }
    
    .order-timeline h2,
    .order-summary h2,
    .shopping-cta h2 {
        font-size: 28px;
    }
    
    .success-animation {
        width: 80px;
        height: 80px;
    }
    
    .success-icon {
        font-size: 32px;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}