/* home.css — только то, что уникально для главной. Общее — в main.css. */

body.page-home { padding: 40px 20px; }

.bg-glow {
    position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.12) 0%, transparent 70%);
    pointer-events: none; z-index: 0;
}
.page-home .wrap { max-width: 820px; width: 100%; text-align: center; position: relative; z-index: 1; animation: fadeIn 0.7s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.logo { margin-bottom: 20px; position: relative; display: inline-block; }
.logo img { width: 260px; height: auto; position: relative; z-index: 1;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.25)) drop-shadow(0 0 40px rgba(255,107,0,0.2)) drop-shadow(0 4px 12px rgba(0,0,0,0.3)); }
.logo::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 280px; height: 100px; background: radial-gradient(ellipse, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%; z-index: 0; animation: glowPulse 3s ease-in-out infinite; }
@keyframes glowPulse { 0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); } 50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); } }
.logo-fallback { display: none; font-size: 52px; font-weight: 800; letter-spacing: 3px; text-shadow: 0 0 30px rgba(255,255,255,0.3); }
.logo-fallback span { color: #FF6B00; text-shadow: 0 0 40px rgba(255,107,0,0.5); }
.tagline-main { font-size: 24px; font-weight: 600; line-height: 1.3; margin-bottom: 16px; color: #fff; }
.tagline-main strong { color: #FF6B00; }
.tagline-sub { font-size: 16px; line-height: 1.6; margin-bottom: 36px; color: rgba(255,255,255,0.75); max-width: 520px; margin-left: auto; margin-right: auto; }
.divider { width: 60px; height: 3px; background: linear-gradient(90deg, transparent, #FF6B00, transparent); margin: 0 auto 36px; border-radius: 2px; }
.links { display: flex; flex-direction: column; gap: 14px; max-width: 380px; margin: 0 auto 36px; }
.btn { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 16px 28px; border-radius: 60px; font-size: 17px; font-weight: 600; text-decoration: none; transition: all 0.25s ease; border: none; cursor: pointer; }
.btn-site { background: linear-gradient(135deg, #FF4500, #FF8C00); color: #fff; box-shadow: 0 8px 30px rgba(255,69,0,0.35); font-size: 18px; padding: 18px 32px; }
.btn-site:hover { transform: translateY(-3px); box-shadow: 0 14px 44px rgba(255,69,0,0.5); }
.btn-site .icon { font-size: 24px; }
.btn-vk { background: #0077FF; color: #fff; box-shadow: 0 4px 16px rgba(0,119,255,0.3); }
.btn-vk:hover { background: #0066DD; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,119,255,0.45); }
.btn-tg { background: linear-gradient(135deg, #1DA1F2, #0b7bc1); color: #fff; box-shadow: 0 4px 16px rgba(29,161,242,0.3); }
.btn-tg:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(29,161,242,0.45); }
.btn i { font-size: 20px; }
.features { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.feature { display: flex; align-items: center; gap: 6px; font-size: 14px; color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); padding: 10px 18px; border-radius: 30px; border: 1px solid rgba(255,255,255,0.08); backdrop-filter: blur(4px); }
.feature .emoji { font-size: 16px; }
.popular-categories { margin-top: 54px; }
.popular-categories h2, .faq h2, .products-showcase h2 { font-size: 24px; margin-bottom: 24px; font-weight: 700; }
.categories-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.category-card { display: flex; align-items: center; gap: 12px; padding: 18px 20px; border-radius: 18px; text-decoration: none; color: #fff; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); transition: all .25s ease; backdrop-filter: blur(8px); }
.category-card:hover { transform: translateY(-2px); background: rgba(255,255,255,0.1); border-color: rgba(255,107,0,0.4); box-shadow: 0 8px 28px rgba(255,107,0,0.12); }
.cat-icon { font-size: 22px; }
.stats { display: flex; justify-content: center; gap: 18px; margin-top: 54px; flex-wrap: wrap; }
.stat-item { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 22px 18px; min-width: 160px; }
.stat-number { font-size: 30px; font-weight: 800; color: #FF6B00; margin-bottom: 6px; }
.stat-label { font-size: 13px; line-height: 1.4; color: rgba(255,255,255,0.72); }
.faq { margin-top: 60px; text-align: left; }
.faq-item { margin-bottom: 24px; padding: 22px; border-radius: 18px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.06); }
.faq-item h3 { font-size: 17px; margin-bottom: 10px; color: #fff; }
.faq-item p { color: rgba(255,255,255,0.72); line-height: 1.7; font-size: 15px; }
.seo-text { margin-top: 50px; text-align: left; color: rgba(255,255,255,0.45); font-size: 13px; line-height: 1.8; }
.seo-text p { margin-bottom: 16px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.live-status { margin-top: -10px; margin-bottom: 28px; font-size: 14px; color: rgba(255,255,255,0.72); }

.products-showcase { margin-top: 54px; text-align: left; }
.product-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 480px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 760px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1040px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }
.product-mini-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 16px; text-align: center; }
.product-mini-card img { width: 100%; height: 200px; object-fit: cover; border-radius: 10px; margin-bottom: 12px; }
.product-mini-card .title { font-size: 15px; line-height: 1.45; color: rgba(255,255,255,0.9); margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-mini-card .price { font-weight: 800; font-size: 18px; color: #FF6B00; margin-bottom: 12px; }
.product-mini-card .buy-btn { display: block; font-size: 14px; font-weight: 600; background: #FF6B00; color: #fff; text-decoration: none; padding: 12px; border-radius: 20px; }

@media (max-width: 480px) {
    .logo img { width: 200px; } .logo::before { width: 220px; height: 80px; }
    .tagline-main { font-size: 20px; } .tagline-sub { font-size: 14px; padding: 0 10px; }
    .btn { padding: 14px 22px; font-size: 15px; } .btn-site { font-size: 16px; padding: 16px 26px; }
    .features { gap: 8px; } .feature { font-size: 12px; padding: 8px 14px; }
    .categories-grid { grid-template-columns: 1fr; } .stats { flex-direction: column; } .stat-item { width: 100%; }
    .popular-categories h2, .faq h2, .products-showcase h2 { font-size: 20px; }
    .popular-categories, .stats, .faq, .seo-text, .products-showcase { margin-top: 42px; }
    .faq-item { padding: 18px; }
}
