
:root {
    --primary-color: #2c5530;
    --secondary-color: #f0f0f0;
    --text-color: #333;
    --font-family: 'Roboto', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-color);
    background-color: #fefefe;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}


@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Inter:wght@400;500;600;700&display=swap');


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.header__title {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0;
}


.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}


.nav__list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav__link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 17px;
    padding: 8px 16px;
    border-radius: 6px;
    transition: var(--transition);
}

.nav__link:hover,
.nav__link.active {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    padding: 12px 10px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle__line {
    width: 100%;
    height: 3px;
    background: var(--text-color);
    border-radius: 2px;
    transition: var(--transition);
}


.menu-toggle.active .menu-toggle__line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active .menu-toggle__line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-toggle__line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}


.button {
    min-width: 44px;
    min-height: 44px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.button--primary {
    background: var(--primary-color);
    color: white;
}

.button--primary:hover {
    background: #1e3a23;
    transform: translateY(-2px);
}

.button--primary:active {
    transform: scale(0.98);
}


.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
}

.nav-overlay.active {
    display: block;
}


.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 997;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #1e3a23;
    transform: scale(1.1);
}

.scroll-top:active {
    transform: scale(0.95);
}


.personal {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4a7c59 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
}

.personal__text {
    font-size: 1.5rem;
    font-weight: 600;
}


.section {
    margin-bottom: 3rem;
}

.section__title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}


.card {
    background: white;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.1);
}

.card--gift {
    border-left: 5px solid var(--primary-color);
}

.card__image {
    border-radius: 8px;
    margin-bottom: 1rem;
}

.card__title {
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 0.75rem;
}

.card__text {
    color: #666;
    margin-bottom: 1rem;
}

.card__list {
    list-style: none;
    margin-bottom: 1rem;
}

.card__item {
    margin-bottom: 0.5rem;
    color: #555;
}

.card__price {
    font-size: 1.75rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.card__price s {
    color: #999;
    font-size: 1rem;
    margin-left: 0.5rem;
}


.link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dotted var(--primary-color);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.link:hover {
    color: #1e3a22;
    border-bottom-style: solid;
}

.link--more {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}


.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
    margin-top: 2rem;
}

.advantage-card {
    background: white;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.advantage-card--main {
    grid-column: 1 / 3;
    grid-row: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background: linear-gradient(135deg, #f8fff9 0%, #ffffff 100%);
    border: 2px solid var(--primary-color);
}


.feature {
    text-align: center;
    padding: 1.5rem;
}


.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem 0;
    text-align: center;
    margin-top: 3rem;
    border-radius: 12px 12px 0 0;
}

.footer__list {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 1.5rem;
    margin-top: 1rem;
}


@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}