:root {
  --bg: #050505;
  --bg-soft: #111111;
  --card: #151515;
  --text: #f5f5f5;
  --muted: #b8b8b8;
  --gold: #c8a24a;
  --gold-soft: #e2c36b;
  --border: rgba(200, 162, 74, 0.18);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__logo {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.brand__name {
  display: block;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--gold-soft);
}

.brand__tag {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero {
  padding: 74px 0 56px;
  background:
    radial-gradient(circle at top right, rgba(200, 162, 74, 0.14), transparent 24%),
    radial-gradient(circle at bottom left, rgba(200, 162, 74, 0.08), transparent 20%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold-soft);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 4.7rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.hero h1 span {
  color: var(--gold-soft);
}

.hero__text {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 640px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.hero__badges span {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 14px;
  border-radius: 999px;
  color: #ececec;
  font-size: 0.93rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.hero__card,
.feature,
.catalog-card,
.testimonial,
.cta__box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.hero__card {
  padding: 20px;
}

.hero__card img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.section {
  padding: 72px 0;
}

.section--dark {
  background: var(--bg-soft);
}

.section__title {
  margin-bottom: 28px;
}

.section__title h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-bottom: 10px;
}

.section__title p {
  color: var(--muted);
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature {
  padding: 22px;
}

.feature h3 {
  color: var(--gold-soft);
  margin-bottom: 8px;
}

.feature p {
  color: var(--muted);
}

.catalog-shell {
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  gap: 14px;
  align-items: center;
}

.catalog-viewport {
  overflow: hidden;
}

.catalog-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.catalog-track::-webkit-scrollbar {
  display: none;
}

.catalog-card {
  min-width: 300px;
  max-width: 300px;
  overflow: hidden;
  flex: 0 0 auto;
}

.catalog-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.catalog-card h3 {
  padding: 16px 16px 10px;
  color: var(--gold-soft);
  font-size: 1.1rem;
}

.catalog-card__actions {
  display: flex;
  gap: 10px;
  padding: 0 16px 14px;
}

.catalog-btn {
  flex: 1;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
}

.catalog-card__cta {
  display: block;
  margin: 0 16px 16px;
  text-align: center;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #111;
  font-weight: 800;
}

.nav-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--gold-soft);
  font-size: 2rem;
  cursor: pointer;
}

.simple-carousel {
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  gap: 14px;
  align-items: center;
}

.simple-carousel__viewport {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--border);
}

.simple-carousel__track {
  display: flex;
  transition: transform 0.3s ease;
}

.simple-carousel__track img {
  min-width: 100%;
  width: 400px;
  height: 960px;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial {
  overflow: hidden;
}

.testimonial img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta {
  padding: 56px 0 80px;
}

.cta__box {
  text-align: center;
  padding: 34px;
}

.cta__box h2 {
  margin-bottom: 10px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.cta__box p {
  color: var(--muted);
  margin-bottom: 20px;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  color: var(--muted);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  font-weight: 800;
  transition: 0.25s ease;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #111;
}

.btn--primary:hover {
  transform: translateY(-2px);
}

.btn--outline,
.btn--ghost {
  border: 1px solid var(--border);
}

.btn--outline:hover,
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.04);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  z-index: 120;
  animation: whatsapp-bounce 2.2s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float__icon {
  width: 60px;
  height: 60px;
  display: block;
}

@keyframes whatsapp-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-24px);
  } }

@media (max-width: 980px) {
  .hero__grid,
  .features,
  .testimonials {
    grid-template-columns: 1fr;
  }

  .catalog-shell,
  .simple-carousel {
    grid-template-columns: 1fr;
  }
  
   .hero__media {
    order: -1;
  }

  .hero__content {
    order: 1;
  }

  .nav-btn {
    display: none;
  }

  .simple-carousel__track img {
    height: 320px;
  }
}


@media (max-width: 640px) {
   .header__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }
  
    
  .brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  transform: scale(0.82);
  transform-origin: left center;
}

  .header__actions {
    margin-left: auto;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
  }

  .instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  line-height: 0;
}

.instagram-link__icon {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
  transform: translateY(1px);
}

  .btn.btn--outline {
    padding: 0 14px;
    font-size: 0.86rem;
    min-height: 40px;
    white-space: nowrap;
  }

  .hero {
    padding-top: 48px;
  }

  .hero__badges {
    flex-direction: column;
  }

  .hero__actions,
  .footer__inner {
    width: 100%;
    flex-direction: column;
  }

  .cta__box {
    padding: 24px;
  }

  .catalog-card {
    min-width: 280px;
    max-width: 280px;
  }

  .catalog-card img {
    height: 240px;
  }
  
  
}