/* Base Styles & Reset */
:root {
    --primary-color: #4A6FDC;
    --primary-dark: #3b5ac8;
    --secondary-color: #F5875E;
    --secondary-dark: #e67649;
    --accent-color: #18BC9C;
    --accent-dark: #14A085;
    --text-color: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --background-color: #ffffff;
    --background-alt: #f7f9fc;
    --background-dark: #e5e9f2;
    --border-color: #e1e5ee;
    --border-light: #edf0f7;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --success-color: #28a745;
    --warning-color: #ffc107;
    --error-color: #dc3545;
    --info-color: #17a2b8;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --container-width: 1280px;
    --header-height: 80px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
}

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

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

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

ul, ol {
    list-style: none;
}

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

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

/* Typography */
.text-center {
    text-align: center;
}

.text-muted {
    color: var(--text-lighter);
}

/* Buttons */
.btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: pointer;
    text-transform: none;
    overflow: visible;
    margin: 0;
}

.btn:focus {
    outline: 0;
}

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

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

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

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

.btn-accent {
    color: #fff;
    background-color: var(--accent-color);
}

.btn-accent:hover {
    background-color: var(--accent-dark);
    color: #fff;
}

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

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

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.25rem;
}

.btn-block {
    display: block;
    width: 100%;
}

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

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

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-color);
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
    color: var(--text-color);
    background-color: #fff;
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(74, 111, 220, 0.25);
}

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

.checkbox-group input {
    margin-top: 0.3rem;
}

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -1rem;
    margin-left: -1rem;
}

.col {
    position: relative;
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--background-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

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

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

.logo {
    height: 40px;
    width: 40px;
    object-fit: cover;
    border-radius: 5px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-left: 0.75rem;
    color: var(--primary-color);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

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

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
}

.mobile-menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    position: absolute;
    left: 0;
    transition: transform 0.3s ease;
}

.mobile-menu-btn span:nth-child(1) {
    top: 0;
}

.mobile-menu-btn span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-btn span:nth-child(3) {
    bottom: 0;
}

.lang-switch {
    position: relative;
    margin-left: 1.5rem;
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.5rem 0.75rem;
    font-weight: 500;
    cursor: pointer;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.5rem;
    margin-top: 0.25rem;
    min-width: 100px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 10;
}

.lang-switch:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Main Content */
main {
    padding-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
}

/* Hero Section */
.hero {
    background-color: var(--background-alt);
    padding: 5rem 0;
    text-align: center;
    background-image: linear-gradient(135deg, rgba(74, 111, 220, 0.1) 0%, rgba(245, 135, 94, 0.1) 100%);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

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

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

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

.advantage-card {
    padding: 2rem;
    background-color: var(--background-alt);
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.advantage-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.advantage-icon svg {
    width: 30px;
    height: 30px;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 4rem;
    margin-bottom: 3rem;
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

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

/* Graph Section */
.graph-section {
    padding: 5rem 0;
    background-color: var(--background-alt);
}

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

.graph-container {
    max-width: 900px;
    margin: 0 auto;
    height: 400px;
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

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

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

.feature-item {
    padding: 2rem;
    background-color: var(--background-alt);
    border-radius: var(--radius-md);
}

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

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

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

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

.product-card {
    background-color: var(--background-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.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;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-badge {
    font-size: 0.8rem;
    color: var(--primary-color);
    background-color: rgba(74, 111, 220, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
}

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

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

/* Call to Action */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

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

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

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

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

.footer-col h4 {
    margin-bottom: 1.5rem;
    position: relative;
}

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

.footer-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    border-radius: 5px;
}

.footer-col p {
    margin-bottom: 0.75rem;
}

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

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

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

.footer-col address {
    font-style: normal;
}

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

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

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

.copyright {
    margin-top: 1.5rem;
    color: var(--text-light);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--background-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 500px;
    width: calc(100% - 4rem);
    z-index: 9999;
}

.cookie-content h3 {
    margin-bottom: 1rem;
}

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

.cookie-buttons .btn {
    flex-grow: 1;
}

/* Product Detail Page */
.breadcrumbs {
    margin-bottom: 2rem;
    color: var(--text-light);
}

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

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

.product-detail {
    padding: 5rem 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.product-gallery {
    position: relative;
}

.main-image {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.main-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.product-info h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-badges {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.badge {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: var(--radius-sm);
}

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

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

.product-description {
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.product-tabs {
    margin-bottom: 4rem;
}

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

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

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

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

.tab-pane {
    display: none;
}

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

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

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-text h4 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

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

.benefit-card {
    padding: 2rem;
    background-color: var(--background-alt);
    border-radius: var(--radius-md);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    background-color: rgba(74, 111, 220, 0.1);
    border-radius: 50%;
    margin-bottom: 1.25rem;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
}

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

.spec-group {
    padding: 2rem;
    background-color: var(--background-alt);
    border-radius: var(--radius-md);
}

.spec-group h4 {
    margin-bottom: 1.25rem;
    color: var(--primary-color);
}

.spec-group ul li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.25rem;
}

.spec-group ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.product-flow {
    margin-bottom: 4rem;
}

.product-flow h3 {
    margin-bottom: 2rem;
    text-align: center;
}

.flow-chart {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.flow-step {
    text-align: center;
    flex: 1;
    min-width: 150px;
    max-width: 200px;
}

.flow-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(74, 111, 220, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.flow-icon svg {
    width: 35px;
    height: 35px;
}

.flow-arrow {
    color: var(--primary-color);
    width: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.flow-arrow svg {
    width: 24px;
    height: 24px;
}

.other-products {
    margin-top: 4rem;
}

.other-products h3 {
    margin-bottom: 2rem;
    text-align: center;
}

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

.slider-card {
    background-color: var(--background-alt);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.slider-card h4 {
    margin: 1rem 1.25rem 0.5rem;
}

.slider-card p {
    margin: 0 1.25rem 1rem;
    color: var(--text-light);
}

.slider-card .btn {
    margin: 0 1.25rem 1.25rem;
}

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

.cart-content {
    margin-top: 2rem;
}

.cart-empty {
    text-align: center;
    padding: 3rem;
    background-color: var(--background-alt);
    border-radius: var(--radius-lg);
}

.empty-cart-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: var(--text-light);
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

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

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

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

.product-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

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

.product-info h4 {
    margin-bottom: 0.5rem;
}

.quantity-col {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-input {
    width: 60px;
    padding: 0.5rem;
    text-align: center;
}

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

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

.cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.cart-summary {
    flex: 1;
    min-width: 300px;
    background-color: var(--background-alt);
    padding: 2rem;
    border-radius: var(--radius-md);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1rem;
}

.cart-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    flex: 2;
}

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

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

.recommended-card {
    background-color: var(--background-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.recommended-image {
    height: 180px;
    overflow: hidden;
}

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

.recommended-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.recommended-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.recommended-price {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
}

.recommended-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

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

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

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

.order-summary {
    background-color: var(--background-alt);
    padding: 2rem;
    border-radius: var(--radius-md);
    height: fit-content;
}

.order-items {
    margin: 1.5rem 0;
}

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

.order-totals {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.order-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: 600;
}

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

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

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

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

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

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

.success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.success-icon svg {
    width: 40px;
    height: 40px;
}

.success-message h1 {
    margin-bottom: 1.5rem;
}

.success-message p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

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

.what-next {
    padding: 4rem 0;
    background-color: var(--background-alt);
    text-align: center;
}

.what-next h2 {
    margin-bottom: 3rem;
}

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

.step-card {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.recommendations {
    padding: 5rem 0;
}

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

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

.recommendation-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: var(--background-alt);
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.recommendation-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

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

.recommendation-info {
    flex-grow: 1;
}

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

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

/* Contact Page */
.page-header {
    background-color: var(--background-alt);
    padding: 4rem 0;
    text-align: center;
    background-image: linear-gradient(135deg, rgba(74, 111, 220, 0.1) 0%, rgba(245, 135, 94, 0.1) 100%);
}

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

.page-header p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: var(--background-alt);
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(74, 111, 220, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 25px;
    height: 25px;
}

.contact-details {
    flex-grow: 1;
}

.contact-details h3 {
    margin-bottom: 0.75rem;
}

.social-contact {
    margin-top: auto;
}

.contact-form-container {
    background-color: var(--background-alt);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
}

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

.contact-form-container p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

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

.form-success {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon {
    width: 70px;
    height: 70px;
    background-color: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.success-icon svg {
    width: 35px;
    height: 35px;
}

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

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

.map-container {
    height: 400px;
    background-color: var(--background-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f0f3f8;
}

.map-icon {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-icon svg {
    width: 40px;
    height: 40px;
}

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

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

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

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

.accordion-header {
    width: 100%;
    background-color: var(--background-alt);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    transition: var(--transition);
}

.accordion-header:hover {
    background-color: var(--background-dark);
}

.accordion-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

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

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

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

/* About Page */
.about-intro {
    padding: 5rem 0;
}

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

.about-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-content h2:first-child {
    margin-top: 0;
}

.about-company-image {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

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

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

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

.value-card {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(74, 111, 220, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.value-icon svg {
    width: 30px;
    height: 30px;
}

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

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

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.25rem;
    color: var(--text-light);
}

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

.team-card {
    background-color: var(--background-alt);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.team-card h3 {
    margin: 1.5rem 1.5rem 0.5rem;
}

.team-card p {
    margin: 0 1.5rem;
}

.team-card .social-links {
    margin: 1.5rem;
}

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

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

.industry-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.industry-item {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.industry-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(74, 111, 220, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.industry-icon svg {
    width: 30px;
    height: 30px;
}

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

.testimonial-card {
    background-color: var(--background-color);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: rgba(74, 111, 220, 0.1);
    line-height: 1;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

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

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

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

.certification-card {
    background-color: var(--background-alt);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.certification-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(74, 111, 220, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.certification-icon svg {
    width: 30px;
    height: 30px;
}

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

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

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

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

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

.cta-buttons .btn-primary:hover {
    background-color: var(--background-alt);
}

.cta-buttons .btn-secondary {
    background-color: transparent;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Notification */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
    z-index: 9999;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    :root {
        --container-width: 1140px;
    }
}

@media (max-width: 992px) {
    :root {
        --container-width: 960px;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid,
    .checkout-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --container-width: 720px;
        --header-height: 70px;
    }

    .container {
        padding: 0 1.5rem;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.125rem;
    }

    .advantage-grid,
    .feature-list {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .product-flow .flow-chart {
        flex-direction: column;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .cart-header,
    .cart-row {
        grid-template-columns: 2fr 1fr 1fr 0.5fr;
    }

    .price-col {
        display: none;
    }

    .cart-actions {
        flex-direction: column;
    }

    .checkout-form {
        grid-template-columns: 1fr;
    }

    .about-stats {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    :root {
        --container-width: 100%;
        --header-height: 60px;
    }

    .container {
        padding: 0 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .products-grid,
    .recommended-grid {
        grid-template-columns: 1fr;
    }

    .cart-header,
    .cart-row {
        grid-template-columns: 2fr 1fr 0.5fr;
    }

    .quantity-col {
        flex-direction: column;
    }

    .subtotal-col {
        display: none;
    }

    .form-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .success-actions {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
    }
}
