/* Основные стили */
:root {
    --primary-color: #1a2639;
    --secondary-color: #c4a77d;
    --accent-color: #ff8c42;
    --dark-color: #121212;
    --light-color: #f5f5f5;
    --text-color: #333333;
    --light-text-color: #777777;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --error-color: #f44336;
    --warning-color: #ff9800;
    --info-color: #2196f3;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 4px;
    --font-main: 'Roboto', 'Arial', sans-serif;
    --font-heading: 'Montserrat', 'Arial', sans-serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-color);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

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

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

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

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

section {
    padding: 60px 0;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.btn:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

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

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

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

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

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

.hidden {
    display: none !important;
}

/* Заголовок */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    object-fit: cover;
    border-radius: 50%;
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--primary-color);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    position: relative;
    font-weight: 600;
    padding: 5px 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

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

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

/* Герой-секция */
.hero {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 100px 0;
    background-image: linear-gradient(rgba(26, 38, 57, 0.8), rgba(26, 38, 57, 0.8)), url('https://images.unsplash.com/photo-1635272743272-d49bbb9dcb1c');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    position: relative;
}

.hero .btn {
    position: relative;
    z-index: 1;
}

/* Преимущества */
.advantages {
    background-color: white;
    padding: 80px 0;
}

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

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

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

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.advantage-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.advantage-item h3 {
    margin-bottom: 15px;
}

/* Статистика */
.stats-block {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

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

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

.stat-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* CTA Блок */
.cta-block {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
    color: white;
}

.cta-block h3 {
    color: white;
    margin-bottom: 20px;
}

/* О товарах */
.about-products {
    background-color: var(--light-color);
    padding: 80px 0;
}

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

.about-products p {
    text-align: justify;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Товары */
.products {
    background-color: white;
    padding: 80px 0;
}

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

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

.product-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    background-color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.product-card h3 {
    padding: 15px;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.product-card .price {
    padding: 0 15px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.product-card .description {
    padding: 0 15px;
    margin-bottom: 15px;
    color: var(--light-text-color);
    flex-grow: 1;
}

.product-actions {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.product-actions .btn {
    flex: 1;
}

/* Карточки товаров в блоке "Сопутствующие товары" */
.product-card.small {
    display: flex;
    flex-direction: column;
}

.product-card.small img {
    height: 200px;
}

.product-card.small h3 {
    font-size: 1rem;
    min-height: 60px;
}

.products-grid.related {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

/* Подписка на новости */
.newsletter {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.newsletter h2 {
    color: white;
    margin-bottom: 20px;
}

.newsletter p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter input[type="email"] {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 16px;
}

.newsletter button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    background-color: var(--secondary-color);
}

.newsletter button:hover {
    background-color: var(--accent-color);
}

/* Футер */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    margin-bottom: 10px;
    color: #cccccc;
}

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

.footer-col ul li a {
    color: #cccccc;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

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

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

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

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2a2a2a;
    color: #888888;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* Уведомления */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--success-color);
    color: white;
    padding: 15px 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transform: translateX(200%);
    transition: transform 0.3s ease;
}

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

/* Страница товара */
.product-details {
    padding: 60px 0;
    background-color: white;
}

.breadcrumbs {
    margin-bottom: 30px;
    color: var(--light-text-color);
}

.breadcrumbs a {
    color: var(--light-text-color);
}

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

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

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

.product-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

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

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

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.stars {
    color: #ffc107;
    margin-right: 10px;
}

.rating-count {
    color: var(--light-text-color);
}

.product-availability {
    margin-bottom: 20px;
    color: var(--success-color);
    font-weight: 600;
}

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

.product-description h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.product-description ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.product-description ul li {
    margin-bottom: 5px;
}

.quantity-selector {
    margin-bottom: 20px;
}

.quantity-selector label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    width: fit-content;
}

.quantity-btn {
    background-color: var(--light-color);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-btn:hover {
    background-color: var(--border-color);
}

.quantity-controls input {
    width: 60px;
    border: none;
    text-align: center;
    padding: 10px 0;
    -moz-appearance: textfield;
}

.quantity-controls input::-webkit-outer-spin-button,
.quantity-controls input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-meta {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--light-text-color);
}

.product-meta p {
    margin-bottom: 5px;
}

/* Табы на странице товара */
.product-details-tabs {
    background-color: var(--light-color);
    padding: 60px 0;
}

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

.tab-btn {
    padding: 15px 30px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

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

.tab-btn.active::after {
    width: 100%;
}

.tab-content {
    display: none;
}

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

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.specs-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
}

.specs-table td:first-child {
    font-weight: 600;
    width: 30%;
}

/* Отзывы */
.reviews-summary {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.rating-big {
    text-align: center;
    padding: 20px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    min-width: 200px;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stars-big {
    color: #ffc107;
    font-size: 1.5rem;
    margin: 10px 0;
}

.rating-breakdown {
    flex: 1;
}

.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.rating-label {
    width: 80px;
}

.bar-container {
    flex: 1;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    margin: 0 15px;
}

.bar {
    height: 100%;
    background-color: #ffc107;
    border-radius: 5px;
}

.rating-count {
    width: 30px;
    text-align: right;
}

.reviews-list {
    margin-bottom: 30px;
}

.review-item {
    padding: 20px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-author {
    font-weight: 600;
}

.review-date {
    color: var(--light-text-color);
}

.load-more-reviews {
    display: block;
    margin: 0 auto;
}

/* Доставка и оплата */
.delivery-info h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.delivery-info ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.delivery-info ul li {
    margin-bottom: 5px;
}

/* Сопутствующие товары */
.related-products {
    padding: 60px 0;
    background-color: white;
}

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

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

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

.cart-empty p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.cart-table th {
    padding: 15px;
    text-align: left;
    border-bottom: 2px solid var(--border-color);
    font-weight: 600;
}

.cart-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.product-info {
    display: flex;
    align-items: center;
}

.cart-controls {
    display: inline-flex;
}

.product-total {
    font-weight: 600;
}

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

.remove-item:hover {
    transform: scale(1.1);
}

.cart-summary {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.cart-total h3 {
    margin-bottom: 20px;
}

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

.total-final {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.checkout-btn {
    display: block;
    width: 100%;
    margin-bottom: 15px;
}

.continue-shopping {
    display: block;
    width: 100%;
    text-align: center;
}

.cart-actions {
    text-align: right;
}

/* Рекомендуемые товары */
.recommended-products {
    padding: 60px 0;
    background-color: var(--light-color);
}

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

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

.checkout-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.checkout-form-container {
    padding-right: 30px;
}

.form-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(26, 38, 57, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.checkout-terms {
    margin-bottom: 30px;
}

.form-actions {
    text-align: right;
}

.order-summary-container {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
}

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

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

.order-item-name {
    flex: 1;
}

.order-item-quantity {
    font-weight: 600;
    color: var(--light-text-color);
}

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

.checkout-empty {
    text-align: center;
    padding: 60px 0;
}

.checkout-empty p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Успешное оформление заказа */
.success-section {
    padding: 80px 0;
    background-color: white;
}

.success-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.success-message {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.success-info {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    text-align: left;
}

.contact-list {
    margin-top: 15px;
}

.contact-list li {
    margin-bottom: 10px;
}

.contact-list i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.success-actions {
    margin-top: 30px;
}

/* О нас */
.about-hero {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 100px 0;
    background-image: linear-gradient(rgba(26, 38, 57, 0.8), rgba(26, 38, 57, 0.8)), url('https://images.unsplash.com/photo-1596935884413-260a972dab44');
    background-size: cover;
    background-position: center;
    position: relative;
}

.about-hero h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
}

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

.about-story {
    padding: 80px 0;
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 30px;
}

.about-content p {
    margin-bottom: 20px;
}

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

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

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

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

.mission-item {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.mission-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.mission-item h3 {
    margin-bottom: 15px;
}

.about-team {
    padding: 80px 0;
    background-color: white;
}

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

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

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

.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(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3 {
    margin: 20px 0 5px;
}

.team-member p {
    padding: 0 20px;
    margin-bottom: 15px;
}

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

.team-member .social-links {
    justify-content: center;
    margin: 15px 0 20px;
}

.about-achievements {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.about-achievements h2 {
    color: white;
    margin-bottom: 50px;
}

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

.achievement-item {
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.achievement-item:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.2);
}

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

.about-partners {
    padding: 80px 0;
    background-color: white;
}

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

.partners-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

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

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

.partner-item h3 {
    margin-bottom: 20px;
    text-align: center;
}

.partner-item ul {
    list-style: disc;
    margin-left: 20px;
}

.partner-item ul li {
    margin-bottom: 10px;
}

.cta-section {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

/* Контакты */
.contact-hero {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 100px 0;
    background-image: linear-gradient(rgba(26, 38, 57, 0.8), rgba(26, 38, 57, 0.8)), url('https://images.unsplash.com/photo-1581059574673-3548639c3f28');
    background-size: cover;
    background-position: center;
    position: relative;
}

.contact-hero h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
}

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

.contact-info {
    padding: 80px 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-details h2 {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 20px;
}

.contact-text h3 {
    margin-bottom: 5px;
}

.contact-text p {
    margin-bottom: 5px;
    color: var(--light-text-color);
}

.contact-form-container h2 {
    margin-bottom: 30px;
}

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

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

.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%;
    background-color: #e9e9e9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--light-text-color);
    text-align: center;
    padding: 20px;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.faq-section {
    padding: 80px 0;
    background-color: white;
}

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

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-item.active .faq-question {
    background-color: var(--primary-color);
    color: white;
}

.faq-item.active .faq-question h3 {
    color: white;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .product-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 20px;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .checkout-content {
        grid-template-columns: 1fr;
    }
    
    .checkout-form-container {
        padding-right: 0;
    }
}

@media (max-width: 576px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .advantages-grid,
    .stats-block,
    .products-grid,
    .mission-grid,
    .team-grid,
    .achievements-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter form {
        flex-direction: column;
    }
    
    .newsletter input[type="email"] {
        border-radius: var(--border-radius);
        margin-bottom: 10px;
    }
    
    .newsletter button {
        border-radius: var(--border-radius);
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-table, 
    .cart-table thead, 
    .cart-table tbody, 
    .cart-table th, 
    .cart-table td, 
    .cart-table tr {
        display: block;
    }
    
    .cart-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    .cart-table tr {
        margin-bottom: 20px;
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius);
    }
    
    .cart-table td {
        border: none;
        border-bottom: 1px solid var(--border-color);
        position: relative;
        padding-left: 50%;
    }
    
    .cart-table td:before {
        position: absolute;
        top: 15px;
        left: 15px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        font-weight: 600;
    }
    
    .cart-table td:nth-of-type(1):before { content: "Товар"; }
    .cart-table td:nth-of-type(2):before { content: "Цена"; }
    .cart-table td:nth-of-type(3):before { content: "Количество"; }
    .cart-table td:nth-of-type(4):before { content: "Итого"; }
    .cart-table td:nth-of-type(5):before { content: ""; }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}
