/* Основные стили */
:root {
    --primary-color: #3f51b5;
    --primary-dark: #2c387e;
    --primary-light: #6573c3;
    --secondary-color: #f50057;
    --secondary-dark: #ab003c;
    --secondary-light: #f73378;
    --dark-color: #333;
    --light-color: #fff;
    --gray-color: #f4f5f7;
    --gray-dark: #e1e2e6;
    --text-color: #333;
    --border-color: #ddd;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --error-color: #f44336;
    --border-radius: 6px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --header-height: 80px;
    --font-heading: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-body: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

/* Кнопки */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: var(--primary-dark);
    color: var(--light-color);
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-secondary {
    background-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn:disabled {
    background-color: var(--gray-dark);
    cursor: not-allowed;
}

/* Формы */
form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: var(--light-color);
    transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(63, 81, 181, 0.2);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.required {
    color: var(--secondary-color);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 4px;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Шапка */
header {
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

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

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

.logo img {
    height: 50px;
    width: auto;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--dark-color);
    font-weight: 600;
    padding: 10px 0;
    position: relative;
}

nav a:hover,
nav a.active {
    color: var(--primary-color);
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.cart-link {
    position: relative;
    display: flex;
    align-items: center;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--secondary-color);
    color: var(--light-color);
    font-size: 12px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Главный раздел */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--light-color);
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    color: var(--light-color);
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Секция преимуществ */
.advantages {
    background-color: var(--gray-color);
    padding: 80px 0;
}

.advantages h2 {
    text-align: center;
    margin-bottom: 50px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.advantage-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

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

.advantage-card .icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.advantage-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.advantage-card p {
    color: #666;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
    text-align: center;
}

.stat-item {
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.1rem;
    color: #666;
}

.cta-center {
    text-align: center;
}

/* О услугах */
.about-services {
    padding: 70px 0;
}

.about-services h2 {
    text-align: center;
    margin-bottom: 30px;
}

.text-content {
    max-width: 900px;
    margin: 0 auto;
}

.text-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Секция услуг */
.services {
    background-color: #fff;
    padding: 80px 0;
}

.services h2 {
    text-align: center;
    margin-bottom: 20px;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #666;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.product-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background-color: var(--light-color);
    transition: var(--transition);
}

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

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 10px;
}

.product-info h3 a {
    color: var(--dark-color);
}

.product-info h3 a:hover {
    color: var(--primary-color);
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

/* Ключевые метрики */
.metrics-overview {
    background-color: var(--gray-color);
    padding: 80px 0;
}

.metrics-overview h2 {
    text-align: center;
    margin-bottom: 50px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.metric-item {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.metric-item h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.metric-item h3 span {
    font-size: 1rem;
    font-weight: normal;
    color: #666;
}

.metric-item ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 15px;
}

.metric-item ul li {
    margin-bottom: 8px;
}

/* Пример отчета */
.report-preview {
    padding: 80px 0;
}

.report-preview h2 {
    text-align: center;
    margin-bottom: 50px;
}

.report-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.report-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.report-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blurred {
    filter: blur(5px);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.overlay p {
    color: var(--light-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.report-features {
    list-style: none;
}

.report-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.report-features li svg {
    color: var(--success-color);
    flex-shrink: 0;
}

/* Форма запроса */
.request-form {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 80px 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
}

.form-container h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 10px;
}

.form-container > p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.form-disclaimer {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
}

/* Отзывы */
.testimonials {
    padding: 80px 0;
    background-color: var(--gray-color);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    display: none;
}

.testimonial-content {
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-info {
    flex: 1;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    color: #666;
    margin-bottom: 0;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gray-dark);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
}

.prev-testimonial,
.next-testimonial {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    transition: var(--transition);
}

.prev-testimonial:hover,
.next-testimonial:hover {
    color: var(--primary-color);
}

/* FAQ */
.faq {
    padding: 80px 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 50px;
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-header {
    background-color: var(--light-color);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.accordion-icon {
    transition: var(--transition);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 20px;
    max-height: 500px;
}

/* Счетчик просмотров */
.page-view-counter {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 100;
}

.counter-container {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 8px 12px;
    border-radius: 30px;
    box-shadow: var(--box-shadow);
    font-size: 0.9rem;
}

.counter-icon {
    display: flex;
}

/* Cookie согласие */
.cookie-consent {
    position: fixed;
    left: 0;
    bottom: -200px;
    width: 100%;
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
    transition: bottom 0.3s ease;
}

.cookie-consent.show {
    bottom: 0;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cookie-consent p {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.cookie-link {
    color: #aaa;
    font-size: 0.9rem;
    text-decoration: underline;
}

.cookie-link:hover {
    color: var(--light-color);
}

/* Уведомления */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    transform: translateX(150%);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 400px;
}

.notification-close {
    background: none;
    border: none;
    color: var(--light-color);
    cursor: pointer;
    padding: 5px;
}

/* Подвал */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-column h4 {
    color: var(--light-color);
    margin-bottom: 20px;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #aaa;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--light-color);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #aaa;
    margin-bottom: 15px;
}

.contact-info li svg {
    color: var(--primary-color);
    margin-top: 4px;
}

.contact-info li a {
    color: #aaa;
}

.contact-info li a:hover {
    color: var(--light-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}

/* Страница продукта */
.product-details {
    padding: 60px 0;
}

.breadcrumbs {
    margin-bottom: 30px;
    color: #666;
}

.breadcrumbs a {
    color: #666;
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.product-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.product-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.product-info h1 {
    margin-bottom: 15px;
}

.product-description {
    margin-top: 30px;
}

.product-features {
    margin: 20px 0;
    padding: 20px;
    background-color: var(--gray-color);
    border-radius: var(--border-radius);
}

.product-features ul {
    list-style: disc;
    padding-left: 20px;
}

.product-features li {
    margin-bottom: 8px;
}

.delivery-info {
    margin-top: 20px;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
}

/* Табы на странице продукта */
.product-details-tabs {
    padding: 30px 0 60px;
}

.tab-headers {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.tab-header {
    padding: 15px 30px;
    cursor: pointer;
    font-weight: 600;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.tab-header.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

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

.process-step {
    padding: 20px;
    background-color: var(--gray-color);
    border-radius: var(--border-radius);
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 15px;
}

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

.audience-item {
    padding: 25px;
    background-color: var(--gray-color);
    border-radius: var(--border-radius);
    text-align: center;
}

.audience-item svg {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.audience-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.cta-box {
    margin-top: 40px;
    padding: 30px;
    background-color: var(--primary-light);
    color: var(--light-color);
    border-radius: var(--border-radius);
    text-align: center;
}

.cta-box h3 {
    color: var(--light-color);
    margin-bottom: 15px;
}

.cta-box .btn {
    background-color: var(--light-color);
    color: var(--primary-color);
    margin-top: 15px;
}

.cta-box .btn:hover {
    background-color: var(--gray-color);
}

/* Похожие товары */
.related-products {
    padding: 60px 0;
    background-color: var(--gray-color);
}

.related-products h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.related-product-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    padding-bottom: 20px;
}

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

.related-product-image {
    height: 200px;
    overflow: hidden;
}

.related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.related-product-card:hover .related-product-image img {
    transform: scale(1.05);
}

.related-product-card h3 {
    padding: 0 15px;
    margin-top: 15px;
    font-size: 1.1rem;
}

.related-product-card h3 a {
    color: var(--dark-color);
}

.related-product-card h3 a:hover {
    color: var(--primary-color);
}

.related-product-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin: 10px 0 15px;
}

/* CTA секция */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--light-color);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--light-color);
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.cta-section .btn {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.cta-section .btn:hover {
    background-color: var(--gray-color);
}

.cta-section .btn-secondary {
    background-color: transparent;
    border: 2px solid var(--light-color);
    color: var(--light-color);
}

.cta-section .btn-secondary:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.note {
    font-size: 0.9rem;
    margin-top: 20px;
    opacity: 0.8;
}

/* Большой отзыв */
.testimonial-highlight {
    padding: 70px 0;
}

.testimonial-highlight h2 {
    text-align: center;
    margin-bottom: 40px;
}

.testimonial-large {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
}

/* Корзина */
.cart-section {
    padding: 60px 0;
}

.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: flex-start;
}

.cart-items {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow);
}

.cart-headers {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 40px;
    padding: 0 0 15px;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
}

.cart-item {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 40px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
}

.cart-item-details h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.cart-item-details .cart-item-price {
    color: #666;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    margin-right: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
    float: left;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background-color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 700;
}

.quantity-input {
    width: 40px;
    text-align: center;
    margin: 0 10px;
    padding: 5px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.cart-item-total {
    font-weight: 600;
    color: var(--primary-color);
}

.remove-item {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    transition: var(--transition);
}

.remove-item:hover {
    color: var(--error-color);
}

.empty-cart-message {
    text-align: center;
    padding: 40px 0;
}

.empty-cart-message svg {
    color: #999;
    margin-bottom: 20px;
}

.empty-cart-message p {
    margin-bottom: 20px;
    color: #666;
}

.cart-summary {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.cart-summary h2 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.summary-item.total {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    font-size: 1.2rem;
    font-weight: 700;
}

.cart-summary button {
    width: 100%;
    margin-bottom: 15px;
}

.cart-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 20px;
}

/* Оформление заказа */
.checkout-section {
    padding: 60px 0;
}

.checkout-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: flex-start;
}

.checkout-form {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.checkout-form h2 {
    margin-top: 30px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.checkout-form h2:first-child {
    margin-top: 0;
}

.order-summary {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.order-summary h2 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.order-items {
    margin-bottom: 20px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.order-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.order-item-name {
    display: flex;
    flex-direction: column;
}

.order-item-quantity {
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
}

.order-item-price {
    font-weight: 600;
}

.order-totals {
    margin-bottom: 20px;
}

.order-total-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.order-total-item.total {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    font-size: 1.2rem;
    font-weight: 700;
}

.order-note {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.order-note h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.order-note ol {
    padding-left: 20px;
}

.order-note li {
    margin-bottom: 10px;
}

.secure-checkout {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    color: #666;
}

.secure-icon {
    color: var(--success-color);
}

/* Страница успешного оформления заказа */
.success-section {
    padding: 80px 0;
}

.success-message {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 50px 30px;
    box-shadow: var(--box-shadow);
}

.success-icon {
    color: var(--success-color);
    margin-bottom: 20px;
}

.success-message h1 {
    margin-bottom: 20px;
}

.success-message p {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 40px;
}

.next-steps h2 {
    margin-bottom: 20px;
}

.next-steps ol {
    padding-left: 20px;
}

.next-steps li {
    margin-bottom: 15px;
}

.success-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.additional-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-block {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.info-block h3 {
    margin-bottom: 20px;
}

.info-block ul {
    list-style: disc;
    padding-left: 20px;
}

.info-block li {
    margin-bottom: 10px;
}

/* Страница "Вам также может понравиться" */
.might-like {
    padding: 60px 0;
    background-color: var(--gray-color);
}

.might-like h2 {
    text-align: center;
    margin-bottom: 40px;
}

/* Страница контактов */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--light-color);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: var(--light-color);
    margin-bottom: 15px;
}

.contact-info-section {
    padding: 60px 0;
}

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

.contact-info-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info-card h3 {
    margin-bottom: 15px;
}

.contact-info-card p {
    color: #666;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--gray-color);
    color: var(--primary-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
}

.contact-form-section {
    padding: 60px 0;
    background-color: var(--gray-color);
}

.contact-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    align-items: flex-start;
}

.contact-form {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
}

.contact-info {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-info-item .info-icon {
    margin-bottom: 0;
}

.info-text {
    flex: 1;
}

.info-text h3 {
    margin-bottom: 10px;
}

.company-info {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.map-section {
    padding-bottom: 80px;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.map-container {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--gray-color);
    color: #666;
    text-align: center;
}

.map-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* Страница О нас */
.about-mission {
    padding: 80px 0;
}

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

.mission-text h2 {
    margin-bottom: 30px;
}

.mission-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-story {
    background-color: var(--gray-color);
    padding: 80px 0;
}

.about-story h2 {
    text-align: center;
    margin-bottom: 60px;
}

.story-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 120px;
    height: 100%;
    width: 2px;
    background-color: var(--primary-color);
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.timeline-marker {
    width: 100px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: right;
    padding-right: 40px;
    margin-top: 5px;
}

.timeline-content {
    flex: 1;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 15px;
    left: -29px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 4px solid var(--light-color);
    box-shadow: 0 0 0 2px var(--primary-color);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.team-section {
    padding: 80px 0;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.team-member img {
    width: 100%;
    height: auto;
    display: block;
}

.team-member h3 {
    margin-top: 20px;
    margin-bottom: 5px;
    padding: 0 15px;
}

.team-member p {
    padding: 0 15px;
    color: #666;
    margin-bottom: 15px;
}

.team-member p:nth-of-type(1) {
    color: var(--primary-color);
    font-weight: 600;
}

.team-member .social-links {
    margin-top: 15px;
    margin-bottom: 20px;
}

.values-section {
    padding: 80px 0;
    background-color: var(--gray-color);
}

.values-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.value-card h3 {
    margin-bottom: 15px;
}

.stats-section {
    padding: 80px 0;
}

.stats-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 40px;
    text-align: center;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
}

.partners-section {
    padding: 80px 0;
    background-color: var(--gray-color);
}

.partners-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.partners-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-item {
    text-align: center;
}

.partner-logo {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.partner-name {
    font-weight: 600;
    color: var(--dark-color);
}

/* Специальная отметка */
.special-note {
    margin-top: 30px;
    padding: 20px;
    background-color: #fff9c4;
    border-left: 4px solid var(--warning-color);
    border-radius: 4px;
}

/* Медиа-запросы */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cart-container,
    .checkout-container,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .product-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mission-text {
        order: 2;
    }
    
    .mission-image {
        order: 1;
    }
    
    .report-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .additional-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .success-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .story-timeline::before {
        left: 80px;
    }
    
    .timeline-marker {
        width: 60px;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cart-headers {
        display: none;
    }
    
    .cart-item-image {
        float: none;
        margin-bottom: 10px;
    }
    
    .cart-item-details {
        text-align: center;
    }
    
    .cart-item-quantity {
        justify-content: center;
    }
    
    .cart-item-total {
        text-align: center;
    }
    
    .remove-item {
        margin: 0 auto;
        display: block;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }
}
