:root {
  --primary:       #2a0609;       /* твой бордовый */
  --dark-bg:       #2a0609;       /* основной фон hero */
  --accent:        #d4af37;
  --accent-muted:  #c9a02f;
  --dark:          #0a0a0a;
  --dark-900:      #0f0f0f;
  --light:         #f5f2ed;
  --gray:          #777;
  --transition:    all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--dark);
  color: var(--light);
  line-height: 1.5;
  overflow-x: hidden;
}

/* Навбар */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  z-index: 1000;
  padding: 1.1rem 4%;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(212,175,55,0.07);
}

.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4.5vw, 2.3rem);
  letter-spacing: 0.45em;
  color: var(--accent-muted);
  text-transform: uppercase;
}

/* Hero — как на картинке */
.hero {
  min-height: 100vh;
  background: var(--dark-bg);  /* чистый бордовый, без фото */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  max-width: 1100px;
  padding: 0 5%;
}

.logo-wrapper {
  margin-bottom: 3rem;
}

.est {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  color: #888;
  letter-spacing: 4px;
  margin-bottom: 0.8rem;
}

.main-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(5rem, 12vw, 9.5rem);
  font-weight: 900;
  letter-spacing: 0.25em;
  color: transparent;
  background: linear-gradient(90deg, #d4af37, #fff8e0, #d4af37);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 8px 40px rgba(0,0,0,0.6);
  line-height: 0.9;
}

.slogan {
  font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  font-weight: 500;
  color: #aaa;
  letter-spacing: 3px;
  margin-top: 1.2rem;
  text-transform: uppercase;
}

.cta-button {
  display: inline-block;
  margin-top: 3rem;
  padding: 1rem 3.2rem;
  background: transparent;
  border: 2px solid var(--accent-muted);
  color: var(--accent-muted);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
}

.cta-button:hover {
  background: var(--accent-muted);
  color: #000;
  border-color: transparent;
}

/* Остальные стили (продукты, сердечки, футер) — без изменений */
.products-section { padding: 7rem 4% 5rem; }
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  color: #fff;
  text-align: center;
  letter-spacing: 5px;
  margin-bottom: 4rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
  justify-content: center;
  gap: 2.2rem 1.8rem;
  max-width: 1750px;
  margin: 0 auto;
}

.card {
  background: var(--dark-900);
  border: 1px solid rgba(212,175,55,0.07);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-muted);
  box-shadow: 0 20px 50px rgba(212,175,55,0.15);
}

.card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover img {
  transform: scale(1.05);
}

.info {
  padding: 1.3rem 1rem;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 600;
}

.price {
  color: var(--accent-muted);
  font-size: 1.2rem;
  font-weight: 700;
}

/* Сердечко */
.like-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.4);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 5;
}

.like-btn:hover {
  background: rgba(0,0,0,0.6);
  transform: scale(1.1);
}

.like-btn i {
  font-size: 1.1rem;
  color: #fff;
  transition: all 0.3s ease;
}

.like-btn i.liked {
  color: #ff3366;
}

/* Кнопка избранного */
.favorites-button {
  position: fixed;
  bottom: 35px;
  right: 35px;
  width: 64px;
  height: 64px;
  background: rgba(212,175,55,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.5rem;
  box-shadow: 0 10px 30px rgba(212,175,55,0.35);
  cursor: pointer;
  z-index: 999;
  transition: all 0.4s ease;
}

.favorites-button:hover {
  transform: scale(1.15);
}

.favorites-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ff3366;
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  display: none;
}

/* Футер */
footer {
  background: var(--dark-900);
  padding: 4rem 5% 3rem;
  text-align: center;
  border-top: 1px solid rgba(212,175,55,0.06);
}

.social-links {
  margin: 1.5rem 0 2.5rem;
}

.social-links a {
  color: #666;
  font-size: 2.2rem;
  margin: 0 1.5rem;
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--accent-muted);
  transform: translateY(-4px);
}

.footer-bottom {
  color: #444;
  font-size: 0.9rem;
}

/* Адаптив */
/* Адаптив — мобильные устройства */
@media (max-width: 768px) {
  .navbar { padding: 0.9rem 5%; }
  .nav-logo { font-size: clamp(1.4rem, 5vw, 1.8rem); letter-spacing: 0.35em; }

  .hero { min-height: 80vh; } /* меньше высота на мобилке */
  .main-logo { font-size: clamp(3.2rem, 12vw, 5.5rem); letter-spacing: 0.25em; }
  .est { font-size: clamp(0.9rem, 3vw, 1.2rem); }
  .slogan { font-size: clamp(1rem, 3.5vw, 1.3rem); letter-spacing: 2px; }
  .cta-button { padding: 0.8rem 2.2rem; font-size: 0.95rem; letter-spacing: 2px; }

  .products-section { padding: 4rem 5% 3rem; }
  .section-title { font-size: clamp(2.2rem, 8vw, 3.5rem); letter-spacing: 4px; margin-bottom: 2.5rem; }

  .gallery {
    gap: 1.4rem 1rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .card img { height: 260px; }
  .info { font-size: 0.95rem; padding: 1rem 0.8rem; }
  .price { font-size: 1.05rem; }

  .like-btn { width: 32px; height: 32px; top: 10px; right: 10px; }
  .like-btn i { font-size: 1rem; }

  .favorites-button {
    width: 54px;
    height: 54px;
    bottom: 20px;
    right: 20px;
    font-size: 1.3rem;
  }

  .favorites-count {
    font-size: 0.7rem;
    width: 20px;
    height: 20px;
    top: -6px;
    right: -6px;
  }
}

@media (max-width: 480px) {
  .main-logo { font-size: clamp(2.8rem, 11vw, 4.5rem); letter-spacing: 0.2em; }
  .hero-slogan, .slogan { font-size: clamp(1.1rem, 4.5vw, 1.4rem); }
  .cta-button { padding: 0.7rem 1.8rem; font-size: 0.9rem; }

  .gallery { gap: 1.2rem 0.8rem; }
  .card img { height: 240px; }
  .info { font-size: 0.9rem; padding: 0.9rem 0.7rem; }
  .section-title { font-size: 2.4rem; margin-bottom: 2rem; }

  .favorites-button { width: 50px; height: 50px; bottom: 15px; right: 15px; font-size: 1.2rem; }
}