/* ==========================
   Racing Shop v1.1
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',sans-serif;
    background:#0b0b0b;
    color:#fff;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* HEADER */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;

    background:rgba(0,0,0,.45);

    backdrop-filter:blur(16px);

    border-bottom:1px solid rgba(255,255,255,.08);

    transition:.3s;
    box-shadow:0 10px 30px rgba(0,0,0,.35);
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo{
    display:flex;
    align-items:center;
    text-decoration:none;
    color:#fff;
}

.logo{
    display:flex;
    align-items:center;
    text-decoration:none;
    color:#fff;
}

.logo-icon{
    width:60px;
    height:60px;
    font-size:24px;

    border-radius:50%;
    background:#e00000;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    margin-right:12px;
    box-shadow:0 0 18px rgba(224,0,0,.35);
}

.logo-text{
    display:flex;
    flex-direction:column;
}

.logo-text span{
    font-weight:800;
    letter-spacing:2px;
}

.logo-text small{
    color:#bbb;
}

nav{
    display:flex;
    gap:35px;
}

nav a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

nav a:hover{
    color:#e00000;
}

/* HERO */

.hero{
    min-height:100vh;
    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.82) 0%,
        rgba(0,0,0,.58) 45%,
        rgba(0,0,0,.25) 100%
    ),
    url("../img/hero.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:650px;
    padding-top:120px;
}

.badge{
    display:inline-block;
    padding:10px 18px;
    background:#e00000;
    border-radius:30px;
    margin-bottom:25px;
}

.hero h1{
    font-size:60px;
    line-height:1.1;
    margin-bottom:25px;
}

.hero h1 span{
    color:#ff2a2a;
}

.hero p{
    color:#ddd;
    font-size:20px;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.btn-red{

    background:#e00000;

    color:#fff;

    padding:17px 38px;

    border-radius:40px;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

    box-shadow:0 10px 35px rgba(224,0,0,.35);

}

.btn-red:hover{

    transform:translateY(-4px);

    background:#ff1b1b;

    box-shadow:0 18px 45px rgba(255,0,0,.55);

}
.btn-dark{
    padding:16px 34px;
    border-radius:40px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-red{
    background:#e00000;
    color:white;
}

.btn-dark{
    border:2px solid white;
    color:white;
}

.btn-red:hover{
    transform:translateY(-3px);
    box-shadow:0 0 20px rgba(255,0,0,.4);
}

.btn-dark:hover{
    background:white;
    color:black;
}/* ==========================
   ADVANTAGES
========================== */

.advantages{
    padding:100px 0;
    background:#111;
}

.advantages h2,
.steps h2,
.contact h2{
    text-align:center;
    font-size:42px;
    margin-bottom:60px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.card{

    background:rgba(25,25,25,.92);

    border:1px solid rgba(255,255,255,.06);

    border-radius:22px;

    padding:40px 30px;

    transition:.35s;

    overflow:hidden;

}

.card:hover{

    transform:translateY(-12px);

    border-color:#ff2d2d;

    box-shadow:0 18px 40px rgba(255,0,0,.18);

}
.card:hover{
    transform:translateY(-10px);
    border-color:#e00000;
}

.card i{
    font-size:52px;
    color:#e00000;
    margin-bottom:20px;
}

.card h3{
    margin-bottom:15px;
}

/* ==========================
   STEPS
========================== */

.steps{
    padding:100px 0;
    background:#0b0b0b;
}

.steps-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.step{
    background:#181818;
    padding:30px;
    border-radius:20px;
    text-align:center;
}

.step span{
    width:60px;
    height:60px;
    background:#e00000;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    border-radius:50%;
    font-size:24px;
    font-weight:700;
}

/* ==========================
   CONTACT
========================== */

.contact{
    padding:100px 0;
    background:#111;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.contact-info p{
    margin-bottom:30px;
    color:#ccc;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
    font-size:18px;
}

.contact-item i{
    color:#e00000;
    font-size:24px;
}

form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

input,
textarea{
    padding:18px;
    border:none;
    border-radius:12px;
    background:#222;
    color:#fff;
    font-size:16px;
}

input:focus,
textarea:focus{
    outline:2px solid #e00000;
}

button{
    border:none;
    cursor:pointer;
}

/* ==========================
   FOOTER
========================== */

footer{
    background:#000;
    text-align:center;
    padding:30px 0;
    color:#888;
}

/* ==========================
   MOBILE
========================== */

@media(max-width:900px){

    nav{
        display:none;
    }

    .hero h1{
        font-size:42px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .advantages h2,
    .steps h2,
    .contact h2{
        font-size:32px;
    }

}/* ==========================
   ПОПУЛЯРНІ БРЕНДИ
========================== */

.brands{
    background:#0f0f0f;
    padding:90px 0;
}

.brands h2{
    text-align:center;
    font-size:42px;
    color:#fff;
    margin-bottom:60px;
}

.brands-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.brand-card{
    height:120px;
    background:linear-gradient(145deg,#1c1c1c,#141414);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#fff;
    font-size:22px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;

    transition:.35s;
}

.brand-card:hover{
    transform:translateY(-8px) scale(1.03);
    background:#e30613;
    border-color:#ff4040;
    box-shadow:0 20px 40px rgba(227,6,19,.35);
}

@media(max-width:900px){

.brands-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.brands-grid{

grid-template-columns:1fr;

}

.brands h2{

font-size:32px;

}

}/* ===== Категории ===== */

.categories{
    padding:90px 0;
    background:#141414;
}

.categories h2{
    text-align:center;
    color:#fff;
    font-size:42px;
    margin-bottom:60px;
}

.categories-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;

}

.category-card{

    background:#1d1d1d;

    border-radius:18px;

    padding:40px 20px;

    text-align:center;

    color:#fff;

    font-size:46px;

    transition:.35s;

    border:1px solid rgba(255,255,255,.08);

}

.category-card span{

    display:block;

    margin-top:20px;

    font-size:22px;

    font-weight:700;

}

.category-card:hover{

    transform:translateY(-10px);

    background:#e30613;

    box-shadow:0 20px 45px rgba(227,6,19,.35);

    cursor:pointer;

}