
@import url('https://fonts.googleapis.com/css2?family=Momo+Signature&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.4;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 10px;
    object-fit: cover;
    aspect-ratio: 9/14;
    width: 100%;
    height: auto;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 4px;
    background: #eee;
    cursor: pointer;
}

.btn-primary {
    background: #000;
    color: #fff;
    margin: 10px 0px;
    border-radius: 5px;
}

.btn-secondary {
    background: #f2f2f2;
}

/* HEADER */
.site-header {
    border-bottom: 1px solid #e5e5e5;
}

.top-bar {
    background: #111;
    color: #fff;
    font-size: 13px;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    padding: 6px 16px;
}

.header-main {
    padding: 12px 0;
}

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

.logo strong {
    font-size: 22px;
	font-family: "Momo Signature", cursive;
}

.main-nav ul {
    display: flex;
    gap: 18px;
	list-style: none;
}

.header-actions {
    display: flex;
    gap: 14px;
    position: relative;
}
.header-actions > a{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    align-items: center;
	width: 25px;
	height: 25px;
}

.cart-count {
    background: red;
    color: #fff;
    font-size: 12px;
    border-radius: 50%;
    padding: 2px 6px;
    position: absolute;
    top: -6px;
    right: -10px;
}

.benefits{
    position: relative;
    margin: 20px 0px;
}
.benefit img, h2{
	margin: 0px 0px 10px 0px;
}

a.category-card span{
	margin: 10px 0px 0px 0px;
	font-weight: bold;
	display: flex;
}

/* HERO */
.hero {
    padding: 60px 0;
    background: #f7f7f7;
    text-align: center;
}

.hero h1 {
    font-size: 34px;
    margin-bottom: 12px;
}

.hero-subtitle {
    margin-bottom: 20px;
    color: #666;
}

/* GRIDS */
.products-grid,
.categories-grid,
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

/* PRODUCT CARD */
.product-card {
    border: 1px solid #eee;
    padding: 10px;
}

.product-card h3 {
    font-size: 16px;
    margin: 8px 0;
}

.price {
    font-weight: bold;
}

/* FOOTER */
.site-footer {
    background: #111;
    color: #ccc;
    margin-top: 60px;
	padding: 20px 0px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    padding: 40px 16px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 10px;
}
.footer-col h4#footer__logo{
	font-family: "Momo Signature", cursive;
}
.footer-col ul{
	list-style: none;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 10px 0;
    font-size: 13px;
    text-align: center;
}

/* FORMS */
input, select, textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    margin-top: 4px;
}

label {
    display: block;
    margin-bottom: 12px;
}

/* TABLE */
table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 8px;
    border-bottom: 1px solid #eee;
}

div.who_dev{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 20px 0px 0px 0px;
}
a#edgesection{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0.7;
    padding: 15px 10px;
    background: white;
    color: black;
    font-weight: bold;
    border-radius: 10px;
    width: fit-content;
    transition: all 1s;
    text-decoration: none;
}
a#edgesection img{
    position: relative;
    width: 25px;
    height: 25px;
    aspect-ratio: initial;
    border-radius: 0px;
    object-fit: initial;
    display: initial;
}
a#edgesection span{
    font-size: 120%;
    line-height: normal;
}

hr{
    /* color: red; */
    margin: 10px 0px;
    opacity: 0.3;
}

.opt-page { line-height: 1.6; }

/* Hero секция */
.opt-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/assets/images/hero-bg.jpg') center/cover;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}
.opt-hero h1 { font-size: 3rem; margin-bottom: 20px; }
.subtitle { font-size: 1.2rem; opacity: 0.9; margin-bottom: 40px; }

/* Сетка преимуществ */
.opt-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: -50px auto 60px;
}
.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s;
}
.feature-card:hover { transform: translateY(-10px); }
.feature-icon { font-size: 40px; display: block; margin-bottom: 15px; }

/* Детали */
.bg-light { background: #f8f9fa; padding: 80px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }

.check-list { list-style: none; padding: 0; }
.check-list li { margin-bottom: 12px; position: relative; padding-left: 30px; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: #27ae60; font-weight: bold; }

.btn-wa { background: #25D366; color: white; padding: 15px 30px; display: inline-block; border-radius: 8px; text-decoration: none; font-weight: bold; }

/* MOBILE */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
	.grid-2 { grid-template-columns: 1fr; }
    .opt-hero h1 { font-size: 2rem; }
    .opt-features { margin-top: 20px; padding: 0 20px; }
}
