/* ============================================
   style.css — LildrugShop (тёмно-красный неон)
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Arial', sans-serif;
}

body {
    background: #0d0d0d;
    color: #e0e0e0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ----- НАВИГАЦИЯ ----- */
nav {
    background: #0a0a0a;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #8b0000;
    box-shadow: 0 0 30px rgba(139, 0, 0, 0.3);
    flex-wrap: wrap;
}

.logo {
    font-size: 32px;
    font-weight: 900;
    color: #ff1a1a;
    text-shadow: 0 0 20px #ff1a1a, 0 0 40px #8b0000;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    color: #ff6666;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.2);
}

.nav-links a:hover {
    color: #ff0000;
    text-shadow: 0 0 25px #ff0000;
}

.nav-links .btn {
    background: #8b0000;
    padding: 8px 22px;
    border-radius: 30px;
    color: #fff !important;
    border: 1px solid #ff1a1a;
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.5);
}

.nav-links .btn:hover {
    background: #cc0000;
    box-shadow: 0 0 30px #cc0000;
}

/* ----- ОСНОВНОЙ КОНТЕЙНЕР ----- */
.container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
    flex: 1;
}

/* ----- HERO БЛОК ----- */
.hero {
    text-align: center;
    padding: 80px 20px 60px;
    background: radial-gradient(circle at 30% 30%, #1a0505, #0a0000);
    border-radius: 20px;
    border: 1px solid #8b0000;
    box-shadow: 0 0 60px rgba(139, 0, 0, 0.2);
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 56px;
    color: #ff1a1a;
    text-shadow: 0 0 30px #ff1a1a, 0 0 60px #8b0000;
    margin-bottom: 10px;
}

.hero .subtitle {
    font-size: 20px;
    color: #ff9999;
    margin: 15px 0 25px;
}

.btn-main {
    display: inline-block;
    background: #8b0000;
    color: #fff;
    padding: 14px 45px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border: 1px solid #ff1a1a;
    box-shadow: 0 0 30px rgba(139, 0, 0, 0.6);
    transition: 0.3s;
}

.btn-main:hover {
    background: #cc0000;
    box-shadow: 0 0 50px #cc0000;
    transform: scale(1.05);
}

/* ----- СТАТИСТИКА ----- */
.stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 30px 0 50px;
}

.stat-item {
    text-align: center;
    background: #110505;
    padding: 18px 30px;
    border-radius: 12px;
    border: 1px solid #8b0000;
    min-width: 120px;
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.1);
}

.stat-item .num {
    font-size: 34px;
    font-weight: 900;
    color: #ff1a1a;
    text-shadow: 0 0 20px #ff1a1a;
}

.stat-item .label {
    color: #ff9999;
    font-size: 13px;
    margin-top: 5px;
}

/* ----- БЛОК "ПОЧЕМУ МЫ" ----- */
.why-block {
    text-align: center;
    margin: 50px 0 40px;
}

.why-block h2 {
    color: #ff1a1a;
    text-shadow: 0 0 20px #ff1a1a;
    font-size: 32px;
}

.why-block .sub {
    color: #ff9999;
    font-size: 18px;
    margin: 5px 0 25px;
}

.why-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.why-item {
    background: #110505;
    padding: 25px 20px;
    border-radius: 14px;
    border: 1px solid #8b0000;
    width: 200px;
    transition: 0.3s;
}

.why-item:hover {
    border-color: #ff1a1a;
    box-shadow: 0 0 30px rgba(139, 0, 0, 0.4);
}

.why-item .icon {
    font-size: 38px;
    margin-bottom: 10px;
}

.why-item h4 {
    color: #ff6666;
    font-size: 18px;
}

.why-item p {
    color: #bb8888;
    font-size: 13px;
    margin-top: 8px;
}

/* ----- КАТАЛОГ ----- */
.catalog-header {
    text-align: center;
    margin: 60px 0 10px;
}

.catalog-header h2 {
    color: #ff1a1a;
    text-shadow: 0 0 20px #ff1a1a;
    font-size: 32px;
}

.catalog-header p {
    color: #ff9999;
    font-size: 16px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.product-card {
    background: #110505;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #8b0000;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: #ff1a1a;
    box-shadow: 0 0 35px rgba(139, 0, 0, 0.4);
}

.product-card h3 {
    color: #ff1a1a;
    font-size: 20px;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
}

.product-card .desc {
    color: #bb8888;
    font-size: 14px;
    margin: 8px 0 12px;
}

.product-card .price {
    font-size: 26px;
    font-weight: 900;
    color: #ff6666;
    margin-bottom: 12px;
}

.btn-small {
    display: inline-block;
    background: #8b0000;
    color: #fff;
    padding: 8px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #ff1a1a;
    transition: 0.3s;
}

.btn-small:hover {
    background: #cc0000;
    box-shadow: 0 0 25px #cc0000;
}

/* ----- ОТЗЫВЫ ----- */
.reviews-header {
    text-align: center;
    margin: 60px 0 10px;
}

.reviews-header h2 {
    color: #ff1a1a;
    text-shadow: 0 0 20px #ff1a1a;
    font-size: 32px;
}

.review {
    background: #110505;
    padding: 18px 25px;
    border-radius: 12px;
    border-left: 4px solid #ff1a1a;
    margin: 15px 0;
    box-shadow: 0 0 10px rgba(139, 0, 0, 0.1);
}

.review .author {
    font-weight: 700;
    color: #ff6666;
    font-size: 16px;
}

.review .stars {
    color: #ffcc00;
    letter-spacing: 2px;
    margin: 4px 0;
}

.review .text {
    color: #ccaaaa;
}

/* ----- СОЦИАЛЬНЫЕ СЕТИ ----- */
.social-section {
    margin: 50px 0 30px;
    text-align: center;
}

.social-section h2 {
    color: #ff1a1a;
    text-shadow: 0 0 20px #ff1a1a;
    font-size: 28px;
    margin-bottom: 20px;
}

.social-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.social-item {
    background: #110505;
    padding: 18px 25px;
    border-radius: 12px;
    border: 1px solid #8b0000;
    min-width: 160px;
    transition: 0.3s;
}

.social-item:hover {
    border-color: #ff1a1a;
    box-shadow: 0 0 25px rgba(139, 0, 0, 0.3);
}

.social-item .name {
    color: #ff6666;
    font-weight: 700;
    font-size: 18px;
}

.social-item .desc {
    color: #bb8888;
    font-size: 13px;
    margin: 6px 0;
}

.social-item .link {
    color: #ff1a1a;
    text-decoration: none;
    font-weight: 600;
}

.social-item .link:hover {
    text-shadow: 0 0 15px #ff1a1a;
}

/* ----- ФУТЕР ----- */
footer {
    background: #0a0000;
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid #8b0000;
    margin-top: 50px;
    color: #884444;
}

footer .socials a {
    color: #ff6666;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 600;
}

footer .socials a:hover {
    color: #ff1a1a;
    text-shadow: 0 0 15px #ff1a1a;
}