/* Base */
:root {
    --primary: #3a7bd5;
    --primary-dark: #2f62a6;
    --secondary: #5f4b8b;
    --secondary-dark: #473669;
    --text: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --background: #ffffff;
    --background-light: #f8f9fa;
    --background-dark: #eeeeee;
    --border: #dddddd;
    --border-light: #eeeeee;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #17a2b8;
    --shadow: rgba(0, 0, 0, 0.1);
    --radius: 4px;
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --header-height: 80px;
}

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

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

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    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;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
}

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

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

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

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

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

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--background);
    box-shadow: 0 2px 10px var(--shadow);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

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

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

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

nav ul {
    display: flex;
    list-style: none;
}

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

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

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

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

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

.cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    margin-left: 5px;
}

/* Hero Section */
.hero {
    background-color: var(--primary);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background-color: var(--background-light);
}

.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 20px;
    background-color: var(--background);
    border-radius: var(--radius);
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
}

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

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

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

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

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

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

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

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

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

.about-products p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    text-align: justify;
    margin-bottom: 1.5rem;
}

.quality-guarantee {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 30px;
    background-color: var(--background-light);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.quality-guarantee h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.certificates {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.certificates span {
    background-color: var(--background);
    padding: 8px 15px;
    border-radius: var(--radius);
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: var(--background-light);
}

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

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

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

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

.product-image {
    position: relative;
    height: 200px;
    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);
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: 500;
}

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

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    height: 3rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 15px;
    height: 4.8rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

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

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

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-actions .btn {
    flex: 1;
    min-width: 120px;
}

.summary-block {
    background-color: #f0f8ff;
    padding: 20px;
    border-radius: var(--radius);
    margin: 30px 0;
    border-left: 4px solid var(--primary);
}

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

.summary-block p {
    margin-bottom: 0;
}

/* Footer */
footer {
    background-color: #202945;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
}

.footer-logo p {
    opacity: 0.8;
}

.footer-links h3 {
    margin-bottom: 20px;
    position: relative;
}

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

.footer-links ul {
    list-style: none;
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-contact h3 {
    margin-bottom: 20px;
    position: relative;
}

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

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 10px;
    opacity: 0.7;
}

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

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

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

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

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #ffffff;
    border-radius: var(--radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    max-width: 450px;
    margin: 0 auto;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.5s ease;
}

.cookie-consent.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content h3 {
    margin-bottom: 10px;
}

.cookie-content p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* Product Detail */
.product-detail {
    padding: 80px 0;
}

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

.product-detail .product-image {
    height: auto;
    border-radius: var(--radius);
    overflow: hidden;
}

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

.product-detail .product-info h1 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.product-meta {
    margin: 20px 0;
}

.product-meta p {
    margin-bottom: 10px;
    color: var(--text-light);
}

.product-meta p span {
    font-weight: 500;
    color: var(--text);
    display: inline-block;
    width: 120px;
}

.product-detail .product-price {
    margin: 20px 0;
    display: flex;
    align-items: center;
}

.price-label {
    font-weight: 500;
    margin-right: 10px;
}

.product-detail .price {
    font-size: 1.8rem;
}

.quantity {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.qty-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-light);
    border: 1px solid var(--border);
    cursor: pointer;
    font-size: 1.2rem;
}

.qty-btn.decrease {
    border-radius: var(--radius) 0 0 var(--radius);
}

.qty-btn.increase {
    border-radius: 0 var(--radius) var(--radius) 0;
}

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

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

.product-detail .btn {
    padding: 12px 20px;
    margin-right: 10px;
}

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

.product-description h2 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.product-description h3 {
    margin: 30px 0 15px;
    font-size: 1.3rem;
}

.product-description p {
    margin-bottom: 20px;
}

.product-description ul {
    margin: 20px 0;
    padding-left: 20px;
}

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

/* Cart */
.cart-section {
    padding: 80px 0;
}

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

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

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
}

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

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

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

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

.cart-item-price {
    color: var(--primary);
    font-weight: 500;
    margin: 10px 0;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    max-width: 120px;
}

.cart-remove {
    color: var(--danger);
    cursor: pointer;
    transition: var(--transition);
    background: none;
    border: none;
    font-size: 1rem;
}

.cart-remove:hover {
    text-decoration: underline;
}

.cart-summary {
    background-color: var(--background);
    border-radius: var(--radius);
    box-shadow: 0 2px 10px var(--shadow);
    padding: 20px;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.cart-summary h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-light);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

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

.cart-actions .btn {
    width: 100%;
    margin-bottom: 10px;
}

.cart-empty {
    text-align: center;
    padding: 40px;
    grid-column: span 2;
    background-color: var(--background);
    border-radius: var(--radius);
    box-shadow: 0 2px 10px var(--shadow);
}

.cart-empty svg {
    margin-bottom: 20px;
    color: var(--text-lighter);
}

.cart-empty h3 {
    margin-bottom: 10px;
}

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

.cart-empty .btn {
    padding: 12px 25px;
    font-size: 1rem;
}

/* Checkout */
.checkout-section {
    padding: 80px 0;
}

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

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

.checkout-form h2 {
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

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

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

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

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

.checkbox-group label {
    flex: 1;
}

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

.checkout-actions .btn {
    margin-right: 10px;
}

.checkout-summary {
    background-color: var(--background);
    border-radius: var(--radius);
    box-shadow: 0 2px 10px var(--shadow);
    padding: 30px;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.checkout-summary h2 {
    margin-bottom: 25px;
    font-size: 1.5rem;
}

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

.order-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
}

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

.order-item-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    overflow: hidden;
}

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

.order-item-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.order-item-price {
    color: var(--primary);
    font-weight: 500;
}

.order-total {
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 1rem;
}

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

/* Success Page */
.success-section {
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--header-height) - 300px);
}

.success-message {
    text-align: center;
    max-width: 600px;
    padding: 60px 40px;
    background-color: var(--background);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px var(--shadow);
}

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

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

.success-message p {
    color: var(--text-light);
    margin-bottom: 10px;
}

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

.success-actions .btn {
    margin: 0 10px 10px;
}

/* Notification */
.notification {
    position: fixed;
    top: 80px;
    right: 20px;
    background-color: var(--primary);
    color: white;
    padding: 15px 25px;
    border-radius: var(--radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateX(150%);
    transition: transform 0.5s ease;
}

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

.notification p {
    margin: 0;
}

/* About Page */
.about-hero {
    background-color: var(--primary);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.about-mission {
    padding: 80px 0;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.mission-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.mission-values {
    margin-top: 40px;
    padding: 30px;
    background-color: var(--background-light);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.mission-values h3 {
    margin-bottom: 20px;
    color: var(--primary);
}

.mission-values ul {
    padding-left: 20px;
}

.mission-values ul li {
    margin-bottom: 15px;
}

.team-section {
    padding: 80px 0;
    background-color: var(--background-light);
    text-align: center;
}

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

.team-member {
    background-color: var(--background);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow);
}

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

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

.team-member p {
    color: var(--text-light);
    padding: 0 20px;
    margin-bottom: 15px;
}

.team-member p:first-of-type {
    color: var(--primary);
    font-weight: 500;
}

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

.achievements-section {
    padding: 80px 0;
    text-align: center;
}

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

.achievement-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    background-color: var(--background-light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow);
}

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

.achievement-content h3 {
    margin-bottom: 10px;
}

.achievement-content p {
    color: var(--text-light);
}

.partners-section {
    padding: 80px 0;
    background-color: var(--background-light);
    text-align: center;
}

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

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

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow);
}

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

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

/* Contact Page */
.contact-hero {
    background-color: var(--primary);
    color: white;
    padding: 80px 0;
    text-align: center;
}

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

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

.contact-card {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--background);
    border-radius: var(--radius);
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
}

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

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

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

.contact-card p {
    color: var(--text);
    font-size: 1.1rem;
}

.contact-note {
    margin-top: 10px;
    font-size: 0.9rem !important;
    color: var(--text-light) !important;
}

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

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

.form-container {
    background-color: var(--background);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: 0 5px 15px var(--shadow);
}

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

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

.contact-form .btn {
    padding: 12px 25px;
    font-size: 1rem;
}

.contact-additional {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-block {
    background-color: var(--background);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow);
}

.faq-block h3 {
    margin-bottom: 20px;
    color: var(--primary);
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

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

.working-hours {
    background-color: var(--background);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow);
}

.working-hours h3 {
    margin-bottom: 20px;
    color: var(--primary);
}

.working-hours ul {
    list-style: none;
}

.working-hours ul li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
}

.working-hours ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.working-hours ul li span {
    font-weight: 500;
    display: inline-block;
    min-width: 140px;
}

.social-connect {
    background-color: var(--background);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow);
    text-align: center;
}

.social-connect h3 {
    margin-bottom: 20px;
    color: var(--primary);
}

.social-icons.large a {
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    color: white;
}

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

/* Media Queries */
@media (max-width: 992px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .product-detail-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .checkout-content {
        grid-template-columns: 1fr;
    }
    
    .cart-content {
        grid-template-columns: 1fr;
    }
    
    .cart-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    header {
        height: auto;
        padding: 15px 0;
    }
    
    header .container {
        flex-direction: column;
        align-items: center;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .advantages,
    .products,
    .about-products,
    .about-mission,
    .team-section,
    .contact-form-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav ul li {
        margin: 5px 10px;
    }
    
    .btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .advantages-grid,
    .products-grid,
    .team-grid,
    .achievements-grid,
    .partners-list {
        grid-template-columns: 1fr;
    }
    
    .stats {
        flex-direction: column;
    }
    
    .stat-item {
        margin-bottom: 20px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-detail .quantity {
        margin-bottom: 15px;
    }
}
