Beroot Store72503933
← Блог

Test

Test
<!DOCTYPE html>
<html lang="mn">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EcoFlow Mongolia | Beroot</title>

<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">

<style>
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter',sans-serif;
}

body{
    background:#fff;
    color:#222;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

header{
    background:#fff;
    padding:20px 0;
    box-shadow:0 2px 10px rgba(0,0,0,.05);
    position:sticky;
    top:0;
    z-index:100;
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:28px;
    font-weight:800;
    color:#00A651;
}

.menu{
    display:flex;
    gap:30px;
}

.menu a{
    text-decoration:none;
    color:#333;
    font-weight:500;
}

.hero{
    background:linear-gradient(135deg,#111,#222);
    color:white;
    padding:100px 0;
}

.hero-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.hero h1{
    font-size:54px;
    line-height:1.1;
    margin-bottom:20px;
}

.hero p{
    font-size:18px;
    line-height:1.7;
    opacity:.9;
}

.btn{
    display:inline-block;
    background:#00A651;
    color:white;
    padding:16px 30px;
    border-radius:8px;
    text-decoration:none;
    margin-top:30px;
    font-weight:600;
}

.hero img{
    width:100%;
}

.section{
    padding:80px 0;
}

.section-title{
    text-align:center;
    font-size:40px;
    margin-bottom:50px;
}

.products{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    border:1px solid #eee;
    border-radius:16px;
    overflow:hidden;
    transition:.3s;
}

.card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 40px rgba(0,0,0,.1);
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.card-body{
    padding:20px;
}

.card h3{
    margin-bottom:10px;
}

.price{
    color:#00A651;
    font-size:24px;
    font-weight:700;
    margin-top:15px;
}

.features{
    background:#f8f9fb;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.feature{
    background:white;
    padding:30px;
    border-radius:16px;
}

.feature h4{
    margin-bottom:10px;
}

.cta{
    background:#00A651;
    color:white;
    text-align:center;
    padding:80px 20px;
}

.cta h2{
    font-size:42px;
    margin-bottom:15px;
}

.cta .btn{
    background:white;
    color:#00A651;
}

footer{
    background:#111;
    color:#ccc;
    padding:50px 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

@media(max-width:768px){

.hero-content{
    grid-template-columns:1fr;
}

.hero h1{
    font-size:40px;
}

.menu{
    display:none;
}
}
</style>
</head>
<body>

<header>
<div class="container nav">
    <div class="logo">EcoFlow Mongolia</div>

    <div class="menu">
        <a href="#">Нүүр</a>
        <a href="#">Бүтээгдэхүүн</a>
        <a href="#">Төслүүд</a>
        <a href="#">Тусламж</a>
        <a href="#">Холбоо барих</a>
    </div>
</div>
</header>

<section class="hero">
<div class="container hero-content">

<div>
    <h1>Цахилгаан тасарсан ч амьдрал үргэлжилнэ</h1>

    <p>
        EcoFlow албан ёсны борлуулагч.
        Зөөврийн цахилгаан станц, нарны эрчим хүчний шийдэл,
        гэр, оффис, аялал болон онцгой нөхцөлд зориулсан найдвартай эрчим хүч.
    </p>

    <a href="#products" class="btn">
        Бүтээгдэхүүн үзэх
    </a>
</div>

<div>
    <img src="https://images.unsplash.com/photo-1509391366360-2e959784a276" alt="">
</div>

</div>
</section>

<section class="section" id="products">
<div class="container">

<h2 class="section-title">
Онцлох бүтээгдэхүүн
</h2>

<div class="products">

<div class="card">
    <img src="https://images.unsplash.com/photo-1518770660439-4636190af475">
    <div class="card-body">
        <h3>RIVER 3 Plus</h3>
        <p>Авсаархан UPS болон аяллын зориулалттай.</p>
        <div class="price">899,000₮</div>
    </div>
</div>

<div class="card">
    <img src="https://images.unsplash.com/photo-1497436072909-f5e4be5f4a5a">
    <div class="card-body">
        <h3>DELTA 3 1000 Air</h3>
        <p>Гэр болон оффисын нөөц тэжээл.</p>
        <div class="price">1,499,000₮</div>
    </div>
</div>

<div class="card">
    <img src="https://images.unsplash.com/photo-1466611653911-95081537e5b7">
    <div class="card-body">
        <h3>DELTA 3 1500</h3>
        <p>Өндөр хүчин чадалтай эрчим хүчний шийдэл.</p>
        <div class="price">2,359,000₮</div>
    </div>
</div>

<div class="card">
    <img src="https://images.unsplash.com/photo-1473341304170-971dccb5ac1e">
    <div class="card-body">
        <h3>DELTA 3 2000 Air</h3>
        <p>Өрхийн иж бүрэн нөөц цахилгаан.</p>
        <div class="price">2,499,000₮</div>
    </div>
</div>

</div>

</div>
</section>

<section class="section features">
<div class="container">

<h2 class="section-title">
Яагаад EcoFlow гэж?
</h2>

<div class="feature-grid">

<div class="feature">
    <h4>⚡ Хурдан цэнэглэлт</h4>
    <p>0-80% хүртэл богино хугацаанд цэнэглэнэ.</p>
</div>

<div class="feature">
    <h4>☀️ Нарны эрчим хүч</h4>
    <p>Нарны хавтангаар цэнэглэх боломжтой.</p>
</div>

<div class="feature">
    <h4>🔋 LiFePO4 батерей</h4>
    <p>Урт насжилттай, аюулгүй технологи.</p>
</div>

<div class="feature">
    <h4>🏠 Гэрийн UPS</h4>
    <p>Цахилгаан тасарсан үед автоматаар шилжинэ.</p>
</div>

</div>

</div>
</section>

<section class="cta">
<h2>Өнөөдөр EcoFlow-той танилцаарай</h2>
<p>0₮ урьдчилгаа • 12 сар хүртэл лизинг</p>

<a href="#" class="btn">
Үнэ авах
</a>
</section>

<footer>
<div class="container footer-grid">

<div>
    <h3>EcoFlow Mongolia</h3>
    <p>Албан ёсны борлуулагч</p>
</div>

<div>
    <p>📍 Улаанбаатар хот</p>
    <p>📞 7250-3999</p>
    <p>✉️ support@beroot.mn</p>
</div>

</div>
</footer>

</body>
</html>