body { font-family: 'Inter', sans-serif; margin: 0; background: #fff; cursor: none; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* КУРСОР */
.cursor { width: 22px; height: 22px; border: 2px solid #2fb45a; border-radius: 50%; position: fixed; pointer-events: none; z-index: 10000; transform: translate(-50%, -50%); transition: transform 0.1s ease-out; background: rgba(47, 180, 90, 0.1); }

/* ЗАСТАВКА */
#welcome-screen { position: fixed; inset: 0; background: #fff; z-index: 2000; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.bg-pattern { position: absolute; inset: 0; display: flex; flex-wrap: wrap; justify-content: center; opacity: 0.1; z-index: -1; overflow: hidden; }
.bg-word { font-weight: 900; font-size: 12px; margin: 10px; background: linear-gradient(135deg, #222, #2fb45a, #222); background-size: 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: shine 4s infinite linear; }
@keyframes shine { to { background-position: 200%; } }

.rbk-title { font-size: 80px; font-weight: 900; letter-spacing: -3px; margin: 10px 0; }
.rbk-info { color: #821536; font-weight: bold; font-size: 18px; margin-bottom: 30px; }
.enter-btn { background: #f1c40f; border: none; padding: 15px 40px; font-weight: 900; cursor: pointer; transition: 0.3s; }
.enter-btn:hover { background: #2fb45a; color: #fff; }

/* HEADER */
.header { padding: 20px 0; border-bottom: 1px solid #eee; background: #fff; position: sticky; top: 0; z-index: 100; }
.nav-row { display: flex; justify-content: space-between; align-items: center; }
.nav-menu { display: flex; list-style: none; gap: 30px; margin: 0; padding: 0; font-weight: 700; font-size: 13px; }

/* HERO (ВИПРАВЛЕНО КНОПКИ) */
.hero { padding: 60px 0; text-align: center; }
.main-title { font-size: 32px; margin-bottom: 40px; }
.hero-btns-row { display: flex; justify-content: center; gap: 20px; }
.h-box { width: 200px; padding: 30px 10px; border-radius: 5px; color: #fff; font-weight: 900; cursor: pointer; transition: 0.3s; }
.h-box:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.green { background: #2fb45a; }
.berry { background: #821536; }
.yellow { background: #f1c40f; color: #333; }

/* FEATURES (ВИПРАВЛЕНО ІКОНКИ В РЯД) */
.features { padding: 40px 0; background: #fafafa; }
.feature-grid { display: flex; justify-content: space-around; gap: 20px; text-align: center; }
.f-item { flex: 1; }
.f-item p { font-weight: 700; font-size: 14px; margin-top: 15px; color: #333; }

/* CATALOG TABS */
.catalog-tabs { display: flex; border: 1px solid #ddd; margin: 30px 0; border-radius: 5px; overflow: hidden; }
.c-tab { flex: 1; padding: 15px; border: none; background: #fff; font-weight: bold; color: #777; cursor: pointer; border-right: 1px solid #eee; transition: 0.3s; }
.c-tab.active { background: #2fb45a; color: #fff; }

.category-content { display: none; }
.category-content.active { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 30px; }
.p-card { border: 1px solid #eee; padding: 20px; border-radius: 5px; transition: 0.3s; }
.p-card:hover { border-color: #2fb45a; }
.p-card img { width: 100%; height: 200px; object-fit: contain; }
.p-btn { width: 100%; padding: 12px; margin-top: 15px; background: none; border: 1px solid #ddd; font-weight: bold; cursor: pointer; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(30px); transition: 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }