/* Base Styles */
:root {
    --primary-color: #1e88e5;
    --primary-dark: #1565c0;
    --primary-light: #64b5f6;
    --secondary-color: #424242;
    --text-color: #333;
    --text-light: #666;
    --text-lighter: #999;
    --background-color: #fff;
    --background-light: #f9f9f9;
    --background-alt: #f2f7fd;
    --border-color: #e0e0e0;
    --success-color: #43a047;
    --error-color: #e53935;
    --warning-color: #fb8c00;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-500: #9e9e9e;
    --gray-600: #757575;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --transition: all 0.3s ease;
    --container-width: 1200px;
}

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

body {
    font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
}

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 {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

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

.btn:active {
    transform: translateY(1px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

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

.btn-secondary:hover {
    background-color: #333;
}

.btn-tertiary {
    background-color: var(--gray-300);
    color: var(--text-color);
}

.btn-tertiary:hover {
    background-color: var(--gray-400);
    color: var(--text-color);
}

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

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

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

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(30, 136, 229, 0.2);
}

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

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

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.full-width {
    grid-column: 1 / -1;
}

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

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    margin-right: 0.5rem;
}

/* Header */
header {
    padding: 1rem 0;
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

nav ul {
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

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

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

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

#cartCount {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.8rem;
    border-radius: 50%;
    margin-left: 0.5rem;
}

/* Hero Section */
.hero {
    background-color: var(--background-alt);
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--text-light);
}

/* Advantages Section */
.advantages {
    padding: 5rem 0;
    background-color: white;
}

.advantages h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.advantage-item {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background-color: var(--background-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.advantage-icon {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.advantage-item h3 {
    margin-bottom: 1rem;
}

.advantage-item p {
    color: var(--text-light);
}

/* Statistics */
.statistics {
    display: flex;
    justify-content: space-between;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    flex: 1;
    min-width: 180px;
}

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

.stat-text {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* CTA Block */
.cta-block {
    text-align: center;
    padding: 3rem;
    background-color: var(--background-alt);
    border-radius: var(--radius-lg);
    margin-top: 3rem;
}

.cta-block h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-block p {
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Products Section */
.about-products {
    padding: 5rem 0;
    background-color: var(--background-light);
}

.about-products h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.about-products p {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.product-guarantees,
.company-history {
    margin-top: 2.5rem;
}

.product-guarantees h3,
.company-history h3 {
    margin-bottom: 1rem;
}

.product-guarantees ul {
    padding-left: 1.5rem;
    list-style-type: disc;
}

.product-guarantees li {
    margin-bottom: 0.5rem;
}

/* Products Section */
.products {
    padding: 5rem 0;
}

.products h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

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

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

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

.product-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.product-actions {
    display: flex;
    gap: 1rem;
}

/* Consultation Section */
.consultation {
    padding: 5rem 0;
    background-color: var(--background-alt);
}

.consultation h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.consultation p {
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.consultation-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.consultation-form button {
    width: 100%;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-column h3 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-column p {
    color: var(--gray-300);
    margin-bottom: 1.5rem;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

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

.footer-column ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

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

.social-links a:hover {
    background-color: var(--primary-color);
}

.social-links svg {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* Product Details Page */
.product-details {
    padding: 3rem 0 5rem;
}

.breadcrumbs {
    margin-bottom: 2rem;
    color: var(--text-light);
}

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

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

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

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

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

.product-info-detailed h1 {
    margin-bottom: 1rem;
}

.product-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.product-availability {
    color: var(--success-color);
}

.product-price-block {
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.vat-info {
    color: var(--text-lighter);
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.product-short-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.product-actions-large {
    margin-bottom: 2rem;
}

.quantity-selector {
    margin-bottom: 1.5rem;
}

.quantity-selector label {
    margin-bottom: 0.75rem;
}

.quantity-buttons {
    display: flex;
    align-items: center;
    width: fit-content;
}

.quantity-buttons button {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    background-color: white;
    color: var(--text-color);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-buttons button:hover {
    background-color: var(--gray-100);
}

.quantity-minus {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.quantity-plus {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.quantity-buttons input {
    width: 60px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-left: none;
    border-right: none;
    text-align: center;
    font-size: 1rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
}

.add-to-cart-large {
    flex: 1;
}

.buy-now {
    flex: 1;
    background-color: var(--success-color);
}

.buy-now:hover {
    background-color: #388e3c;
}

.product-guarantee {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
}

/* Product Tabs */
.product-tabs {
    margin-bottom: 4rem;
}

.tabs-header {
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.tab-button {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.tab-button:hover {
    color: var(--primary-color);
}

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

.tab-content {
    display: none;
}

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

.tab-content h2 {
    margin-bottom: 2rem;
}

.specs-table {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.specs-row {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}

.specs-row:last-child {
    border-bottom: none;
}

.specs-label {
    width: 30%;
    padding: 1rem;
    font-weight: 500;
    background-color: var(--gray-100);
}

.specs-value {
    width: 70%;
    padding: 1rem;
}

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

.feature-item {
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background-color: var(--background-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item h3 {
    margin-bottom: 0.75rem;
}

.documents-list {
    margin-bottom: 3rem;
}

.document-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
}

.document-item:hover {
    background-color: var(--gray-100);
}

.document-item svg {
    color: var(--primary-color);
}

.certificate-block h3 {
    margin-bottom: 1.5rem;
}

.certificates {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.certificate {
    padding: 0.75rem 1.5rem;
    background-color: var(--background-alt);
    border-radius: var(--radius-sm);
    font-weight: 500;
}

/* Related Products */
.related-products {
    margin-top: 4rem;
}

.related-products h2 {
    margin-bottom: 2rem;
}

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

.related-product {
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.related-product:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.related-product img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.related-product h3 {
    margin-bottom: 0.5rem;
}

.related-product p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cookie-content p {
    margin-bottom: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 2rem;
    background-color: var(--success-color);
    color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* Reading Progress Bar */
.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: var(--primary-color);
    z-index: 9999;
    transition: width 0.1s;
}

/* Daily Tip */
.daily-tip {
    position: fixed;
    top: 80px;
    right: 20px;
    width: 300px;
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 900;
    overflow: hidden;
}

.daily-tip-content {
    padding: 1.5rem;
    position: relative;
}

.daily-tip h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.daily-tip p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.tip-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: var(--text-lighter);
}

.tip-close:hover {
    color: var(--text-color);
}

/* Cart Page */
.cart-section {
    padding: 3rem 0 5rem;
}

.empty-cart {
    text-align: center;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.empty-cart-icon {
    color: var(--text-lighter);
}

.empty-cart h2 {
    margin-bottom: 0.5rem;
}

.empty-cart p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.cart-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
    padding: 1rem;
    border-bottom: 2px solid var(--border-color);
    font-weight: 600;
}

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

.cart-item-product {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

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

.cart-item-details h3 {
    margin-bottom: 0.5rem;
}

.cart-item-details p {
    color: var(--text-light);
    margin-bottom: 0;
}

.cart-item-quantity .quantity-control {
    display: flex;
    align-items: center;
    width: fit-content;
}

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

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

.cart-summary {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: var(--radius-md);
}

.cart-subtotal,
.cart-tax,
.cart-total {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.cart-subtotal,
.cart-tax {
    border-bottom: 1px solid var(--border-color);
}

.cart-total {
    font-weight: 700;
    font-size: 1.2rem;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.cart-recommendations {
    margin-top: 5rem;
}

.cart-recommendations h2 {
    margin-bottom: 2rem;
}

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

.recommendation-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.recommendation-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.recommendation-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.recommendation-info {
    flex: 1;
}

.recommendation-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.recommendation-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.recommendation-price {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

/* Checkout Page */
.checkout-section {
    padding: 3rem 0 5rem;
}

.checkout-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
}

.checkout-form-container {
    padding: 2rem;
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.checkout-form-container h2 {
    margin-bottom: 2rem;
}

.checkout-summary {
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    align-self: start;
    position: sticky;
    top: 100px;
}

.checkout-summary h2 {
    margin-bottom: 2rem;
}

.checkout-items {
    margin-bottom: 2rem;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.checkout-item-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.checkout-item-info p {
    color: var(--text-light);
    margin-bottom: 0;
}

.checkout-item-price {
    font-weight: 700;
}

.checkout-totals {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: var(--radius-md);
}

.checkout-subtotal,
.checkout-tax,
.checkout-total {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.checkout-subtotal,
.checkout-tax {
    border-bottom: 1px solid var(--border-color);
}

.checkout-total {
    font-weight: 700;
    font-size: 1.2rem;
}

.checkout-info {
    margin-top: 2rem;
}

.checkout-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.checkout-info-icon {
    color: var(--primary-color);
}

.checkout-info-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.checkout-empty {
    text-align: center;
    padding: 2rem 0;
    color: var(--text-light);
}

/* Success Page */
.success-section {
    padding: 4rem 0;
}

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

.success-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--success-color);
}

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

.success-info {
    margin-bottom: 3rem;
}

.success-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    padding: 1rem;
    background-color: var(--background-light);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

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

.success-info-item p {
    margin-bottom: 0;
}

.success-next-steps {
    margin-bottom: 3rem;
}

.success-next-steps h2 {
    margin-bottom: 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: left;
}

.step-item {
    position: relative;
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-item h3 {
    margin-bottom: 0.75rem;
}

.step-item p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.recommended-resources {
    padding: 4rem 0;
    background-color: var(--background-light);
}

.recommended-resources h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.recommended-resources > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.resource-card {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.resource-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.resource-card h3 {
    margin-bottom: 1rem;
}

.resource-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* About Page */
.about-hero {
    background-color: var(--background-alt);
    padding: 4rem 0;
    text-align: center;
}

.about-subtitle {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
}

.about-story {
    padding: 5rem 0;
}

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

.about-content h2 {
    margin-bottom: 2rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--background-alt);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

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

.mission-box h2 {
    margin-bottom: 1.5rem;
}

.mission-box p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.value-item h3 {
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 1rem;
    margin-bottom: 0;
}

.team-section {
    padding: 5rem 0;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.team-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-light);
}

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

.team-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.team-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.team-card h3 {
    margin-bottom: 0.25rem;
}

.team-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.team-card p:nth-child(3) {
    font-weight: 500;
    color: var(--primary-color);
}

.team-card .social-links {
    justify-content: center;
    margin-top: 1rem;
}

.certifications {
    padding: 5rem 0;
    background-color: var(--background-alt);
}

.certifications h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.certificate-item {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.certificate-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.certificate-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.certificate-item h3 {
    margin-bottom: 0.75rem;
}

.certificate-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

.clients {
    padding: 5rem 0;
}

.clients h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.clients > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.client-logo {
    padding: 1.5rem 2.5rem;
    background-color: var(--background-light);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-light);
}

.cta-section {
    padding: 5rem 0;
    background-color: var(--background-alt);
}

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.cta-box h2 {
    margin-bottom: 1.5rem;
}

.cta-box p {
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

/* Contact Page */
.contact-hero {
    background-color: var(--background-alt);
    padding: 4rem 0;
    text-align: center;
}

.contact-subtitle {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
}

.contact-info {
    padding: 5rem 0;
}

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

.contact-card {
    text-align: center;
    padding: 2.5rem;
    background-color: var(--background-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-form-section {
    padding: 5rem 0;
    background-color: var(--background-light);
}

.contact-form-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form-container h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-form-container > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: var(--text-light);
}

.offices {
    padding: 5rem 0;
}

.offices h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.office-card {
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.office-card h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.office-card p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.faq-section {
    padding: 5rem 0;
    background-color: var(--background-alt);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    margin-bottom: 1.5rem;
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

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

.faq-toggle {
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        max-width: 96%;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-grid,
    .product-content,
    .checkout-content {
        grid-template-columns: 1fr;
    }
    
    .product-content {
        gap: 2rem;
    }
    
    .checkout-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .cart-header {
        display: none;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cart-item-product {
        margin-bottom: 1rem;
    }
    
    .cart-item-price,
    .cart-item-quantity,
    .cart-item-total {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .cart-item-price::before {
        content: 'Цена:';
        color: var(--text-light);
    }
    
    .cart-item-quantity::before {
        content: 'Количество:';
        color: var(--text-light);
    }
    
    .cart-item-total::before {
        content: 'Итого:';
        color: var(--text-light);
    }
    
    .cart-item-action {
        text-align: right;
    }
    
    .cart-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .statistics {
        flex-direction: column;
    }
    
    .stat-item {
        margin-bottom: 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 2rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .product-card {
        min-width: 100%;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .cart-item-product {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .success-actions {
        flex-direction: column;
        gap: 1rem;
    }
}
