:root {
    --primary-color: #6366f1;
    --secondary-color: #4f46e5;
    --accent-color: #ec4899;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --bg-white: #ffffff;
    --bg-gray: #f1f5f9;
    --text-main: #1e293b;
    --text-light: #64748b;
    --text-white: #ffffff;
    --text-gray: #475569;
    --border-light: #e2e8f0;
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --container-width: 1280px;
    --gap: 32px;
    --gap-sm: 16px;
    --gap-lg: 48px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    --font-display: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}    
/* end */

body {
    background: var(--bg-light);
    color: var(--text-main);
    font-family: var(--font-main);
    min-height: 100vh;
    margin: 0;
    padding: 100px 0 0 0; /* Only top padding for fixed header */
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
}

/* Main content area that pushes footer to bottom */
body > *:not(footer) {
    flex: 0 0 auto;
}

body > section:last-of-type:not(footer) {
    flex: 1 0 auto;
}
/* Header ve Navigasyon */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

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

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

.logo img {
    height: 56px;
    width: auto;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.company-name {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: -0.02em;
}

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

nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
    background: var(--bg-gray);
    border-radius: 50px;
    padding: 8px;
}

nav ul li a {
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 12px 20px;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    position: relative;
}

nav ul li a.active {
    background: var(--bg-white);
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
}

nav ul li a:hover {
    background: var(--bg-white);
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-color);
    background: none;
    border: none;
    padding: 8px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.menu-toggle:hover {
    background: var(--bg-gray);
    color: var(--secondary-color);
}

.menu-toggle i {
    transition: var(--transition);
}

.menu-toggle.active i {
    transform: rotate(90deg);
}

/* Hero Bölümü */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    color: var(--text-white);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero .container {
    text-align: center;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(-10px) rotate(-1deg); }
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-white);
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
    line-height: 1.1;
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Hero Button Centering */
.hero .btn {
    display: inline-block;
    margin: 0 auto;
    text-align: center;
}


.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color) 0%, #f97316 100%);
    color: var(--text-white);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

/* Sayfa Başlıkları */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-white);
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    margin: 80px 0 40px 0;
    padding: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    position: relative;
    z-index: 1;
}

h1, h2, h3 {
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.3;
}

/* Özellikler Bölümü */
.features {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.features h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-main);
    position: relative;
    letter-spacing: -0.02em;
}

.features h2:after {
    content: '';
    display: block;
    width: 120px;
    height: 6px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    margin: 24px auto 0;
    border-radius: 50px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--gap);
    margin-top: 80px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.02) 0%, rgba(236, 72, 153, 0.02) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(99, 102, 241, 0.2);
}

.feature-item i {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    display: inline-block;
    transition: var(--transition);
}

.feature-item:hover i {
    transform: scale(1.1) rotate(5deg);
}

.feature-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-main);
    letter-spacing: -0.01em;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Ürünler Bölümü */
.products {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    margin-bottom: 50px;
    padding: 50px 0;
}


/* CTA Bölümü */
.cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" fill-opacity="1" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,202.7C672,203,768,181,864,186.7C960,192,1056,224,1152,218.7C1248,213,1344,171,1392,149.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-white);
    position: relative;
    z-index: 1;
}

.cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: rgba(255,255,255,0.9);
    position: relative;
    z-index: 1;
}

/* Kategori Butonları */
.category-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    padding: 24px;
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.category-btn {
    background: var(--bg-gray);
    color: var(--text-main);
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    border: none;
    min-width: 120px;
    text-align: center;
}

.category-btn.active,
.category-btn:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

/* Product Placeholder Images */
.placeholder-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    border: 2px dashed rgba(99, 102, 241, 0.3);
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.1) 0%, 
        rgba(236, 72, 153, 0.1) 100%);
    transition: var(--transition);
}

.placeholder-image i {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.7;
    transition: var(--transition);
}

.placeholder-image:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.2) 0%, 
        rgba(236, 72, 153, 0.2) 100%);
}

.placeholder-image:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.components-placeholder {
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.1) 0%, 
        rgba(99, 102, 241, 0.1) 100%);
    border-color: rgba(16, 185, 129, 0.3);
}

.components-placeholder i {
    color: var(--success-color);
}

.components-placeholder:hover {
    border-color: var(--success-color);
}

.accessories-placeholder {
    background: linear-gradient(135deg, 
        rgba(236, 72, 153, 0.1) 0%, 
        rgba(245, 158, 11, 0.1) 100%);
    border-color: rgba(236, 72, 153, 0.3);
}

.accessories-placeholder i {
    color: var(--accent-color);
}

.accessories-placeholder:hover {
    border-color: var(--accent-color);
}

/* Desktop placeholder styling */
.desktop-placeholder {
    background: linear-gradient(135deg, var(--success-color), #059669);
    border: 3px solid var(--success-color);
    color: var(--text-white);
}

.desktop-placeholder:hover {
    border-color: #059669;
}

/* Modern Footer */
footer {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1e293b 100%);
    color: var(--text-white);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: auto;
}

/* Product Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideInUp 0.4s ease;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 25px 30px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
}

.modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.close-modal {
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
}

.modal-product-info {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    align-items: start;
}

.modal-product-image {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 2px solid rgba(99, 102, 241, 0.1);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-product-image img {
    max-width: 100%;
    max-height: 250px;
    object-fit: contain;
    border-radius: 10px;
}

.modal-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    min-height: 200px;
    width: 100%;
}

.modal-placeholder i {
    font-size: 4rem;
    color: white;
    opacity: 0.9;
}

.modal-product-details h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.modal-specs {
    background: rgba(99, 102, 241, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid var(--primary-color);
}

.modal-specs h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0 0 15px 0;
}

.modal-specs ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-specs li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    font-size: 1.05rem;
    color: var(--text-main);
    position: relative;
    padding-left: 20px;
}

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

.modal-specs li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.modal-category {
    margin: 20px 0;
}

.category-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), #f472b6);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-price {
    background: linear-gradient(135deg, var(--success-color), #059669);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    margin: 20px 0;
    text-align: center;
}

.price-label {
    font-size: 1rem;
    opacity: 0.9;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-left: 10px;
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.modal-btn-primary {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
    min-width: 200px;
}

.modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    background: linear-gradient(135deg, #20b858, #0f7963);
    color: white;
    text-decoration: none;
}

.modal-btn-secondary {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 120px;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10px;
        max-height: 95vh;
    }
    
    .modal-product-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .modal-product-image {
        min-height: 150px;
    }
    
    .modal-placeholder i {
        font-size: 3rem;
    }
    
    .modal-product-details h3 {
        font-size: 1.5rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-btn-primary,
    .modal-btn-secondary {
        min-width: 100%;
        justify-content: center;
    }
    
    .modal-header {
        padding: 20px 25px;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 20px;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Product item click cursor */
.product-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Modern Footer */

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.footer-logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    border-radius: var(--border-radius-sm);
    margin-right: 15px;
    box-shadow: var(--shadow);
}

.footer-company-name {
    color: var(--text-white);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    font-family: var(--font-display);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-links h3,
.footer-contact h3 {
    color: var(--text-white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    font-family: var(--font-display);
}

.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    margin-top: 8px;
    border-radius: 2px;
}

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

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-contact p i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.footer-contact p a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact p a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin: 0;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

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

/* Responsive Footer */
@media (max-width: 768px) {
    /* Header mobile positioning */
    header {
        position: relative;
        z-index: 100;
    }
    
    /* Body adjustments for mobile */
    body {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        padding: 0; /* Remove all padding since header is not fixed */
    }
    
    footer {
        position: relative;
        padding: 30px 0 15px;
        z-index: 1;
        margin-top: auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-logo-container {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}
/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 100;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    background: #20b858;
}
/* Tüm sayfa içeriklerini ortala ve düzenle */
section, .products {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.page-header h1, h1, h2, h3 {
    text-align: center;
}
/* Removed duplicated variables/reset block to avoid conflicts */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    background-size: cover;
    background-position: center;
    color: var(--text-white);
    text-align: center;
    padding: 100px 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-white);
}

/* Features Section */
.features {
    background-color: var(--bg-white);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
    padding: 80px 0;
    margin: 40px 0;
    border-radius: var(--border-radius);
}

.features h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
}

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

.feature-item {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

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

.cta h2 {
    color: var(--text-white);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

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

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

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-size: cover;
    background-position: center;
    color: var(--text-white);
    text-align: center;
    padding: 60px 0;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--text-white);
}

/* Modern About Page */
.about-content {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    margin-bottom: 120px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.about-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50px;
}

.about-text h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--text-main);
    letter-spacing: -0.02em;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 24px;
    text-align: justify;
}

.about-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 48px 0 20px;
    color: var(--primary-color);
    letter-spacing: -0.01em;
    position: relative;
    padding-left: 24px;
}

.about-text h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.about-text blockquote {
    background: var(--bg-gray);
    border-left: 4px solid var(--accent-color);
    padding: 24px 32px;
    margin: 32px 0;
    font-style: italic;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-main);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    position: relative;
}

.about-text blockquote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent-color);
    font-family: serif;
    line-height: 1;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: rotate(2deg);
    transition: var(--transition);
}

.about-image:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    opacity: 0;
    transition: var(--transition);
    border-radius: var(--border-radius-lg);
}

.about-image:hover::after {
    opacity: 1;
}
/* Modern Values Section */
.values {
    position: relative;
    z-index: 1;
}

.values h2 {
    text-align: center;
    margin-bottom: 24px;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.values h2::after {
    content: '';
    display: block;
    width: 120px;
    height: 6px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    margin: 24px auto 80px;
    border-radius: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    padding: 48px 32px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.02) 0%, rgba(236, 72, 153, 0.02) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.value-item:hover::before {
    opacity: 1;
}

.value-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(99, 102, 241, 0.2);
}

.value-item i {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 32px;
    display: inline-block;
    transition: var(--transition);
    position: relative;
}

.value-item:hover i {
    transform: scale(1.1) rotate(5deg);
}

.value-item i::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: 50%;
    z-index: -1;
    transition: var(--transition);
    opacity: 0;
}

.value-item:hover i::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-main);
    letter-spacing: -0.01em;
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}
/* Products Page - legacy block removed in favor of normalized layout */
/* Products layout normalization */
.products .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.products .product-item {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e8eef5;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    padding: 16px 16px 14px 16px;
    height: 100%;
    position: relative;
}

.products .product-image {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7fafd;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}

.products .product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.products .product-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    text-align: center;
}

.products .product-details h3 {
    margin: 0 0 6px 0;
    font-size: 1.15rem;
    color: var(--primary-color);
    text-align: center;
}

.products .product-details ul {
    margin: 0 0 10px 0;
    padding: 0 0 0 18px;
    list-style: disc;
    color: var(--text-main);
    text-align: left;
}

.products .product-details li {
    margin-bottom: 4px;
}

/* Ensure product cards are visible regardless of animation state */
.product-item { opacity: 1 !important; }

/* Category badges (no HTML change required) */
.products .product-item::after {
    content: attr(data-badge);
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #fff;
    background: var(--primary-color);
    border-radius: 999px;
}
.products .product-item.laptop::after { content: "Laptop"; }
.products .product-item.desktop::after { content: "Masaüstü"; }
.products .product-item.components::after { content: "Bileşen"; }
.products .product-item.accessories::after { content: "Aksesuar"; }

/* Disable animations on product items */
.product-item.animate { animation: none !important; opacity: 1 !important; }

/* Product price and CTA */
.products .product-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.05rem;
    text-align: center;
    margin: 6px 0 10px 0;
}

.products .product-cta {
    display: inline-block;
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 0.98rem;
    margin-top: auto;
    text-align: center;
    min-width: 140px;
}

/* Ad-like card accents */
.products .product-item::before {
    content: "";
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin-bottom: 12px;
}

.products .product-item:hover {
    box-shadow: 0 10px 24px rgba(0,0,0,0.10);
    transform: translateY(-2px);
    transition: var(--transition);
}

.products .product-details ul {
    border-top: 1px dashed #e3e9f0;
    padding-top: 10px;
}

/* Contact Page */
.contact {
    background-color: var(--text-white);
}

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

.contact-info h2,
.contact-form h2,
.map-container h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    min-width: 30px;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.social-media {
    margin-top: 30px;
}

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

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

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--light-gray-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.map-container {
    margin-top: 40px;
}

.map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Page Social Media Icons */
.modern-info-item.social {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}

.modern-info-item.social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    font-size: 16px;
}

.modern-info-item.social a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.modern-info-item.social a i {
    font-size: 16px;
    line-height: 1;
}

.modern-info-item.social a.x-logo svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.modern-info-item.social a.x-logo {
    font-size: 16px;
}

/* WhatsApp Butonu */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-button i {
    font-size: 1.5rem;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

/* Modern Responsive Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .features h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    header {
        padding: 16px 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }
    
    body {
        padding: 80px 0 250px 0; /* Reduced padding for mobile */
    }
    
    header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid var(--border-light);
        box-shadow: var(--shadow-lg);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }
    
    nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    nav ul {
        background: transparent;
        flex-direction: column;
        gap: 0;
        padding: 16px;
        margin: 0;
        border-radius: 0;
    }
    
    nav ul li {
        margin: 0;
        width: 100%;
    }
    
    nav ul li a {
        padding: 16px 20px;
        width: 100%;
        text-align: left;
        border-radius: var(--border-radius);
        margin-bottom: 4px;
        display: block;
        background: var(--bg-white);
        border: 1px solid var(--border-light);
    }
    
    nav ul li a.active,
    nav ul li a:hover {
        background: var(--primary-color);
        color: var(--text-white);
        border-color: var(--primary-color);
        box-shadow: var(--shadow);
    }
    
    .hero {
        padding: 80px 0;
        min-height: 70vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 32px;
    }
    
    .features {
        padding: 80px 0;
    }
    
    .features h2 {
        font-size: 2rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: var(--gap-sm);
        margin-top: 48px;
    }
    
    .feature-item {
        padding: 32px 24px;
    }
    
    .feature-item i {
        font-size: 3rem;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-grid {
        margin-bottom: 80px;
    }
    
    .about-text {
        padding: 32px 24px;
        order: 2;
    }
    
    .about-text h2 {
        font-size: 2.5rem;
        margin-bottom: 24px;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
        margin: 32px 0 16px;
    }
    
    .about-text p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .about-text blockquote {
        padding: 20px 24px;
        font-size: 1.1rem;
        margin: 24px 0;
    }
    
    .about-image {
        order: 1;
        transform: rotate(0deg);
        max-width: 300px;
        margin: 0 auto;
    }
    
    .values h2 {
        font-size: 2.5rem;
        margin-bottom: 48px;
    }
    
    .values-grid {
        gap: 24px;
    }
    
    .value-item {
        padding: 32px 24px;
    }
    

    .whatsapp-button {
        width: 56px;
        height: 56px;
        bottom: 16px;
        right: 16px;
    }
    
    .whatsapp-button i {
        font-size: 1.4rem;
    }
    
    /* Contact page social media icons responsive */
    .modern-info-item.social a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .modern-info-item.social a i {
        font-size: 14px;
    }
    
    .modern-info-item.social a.x-logo svg {
        width: 14px;
        height: 14px;
    }
    
    /* Category filter responsive */
    .category-filter {
        padding: 16px;
        gap: 8px;
    }
    
    .category-btn {
        font-size: 0.85rem;
        padding: 10px 16px;
        min-width: 100px;
    }
}

/* Modern Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero h1, .hero p {
    opacity: 0;
}

.hero h1.animate {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero p.animate {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.feature-item.animate {
    animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.product-item.animate {
    animation: slideInLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.feature-item:nth-child(1).animate, .product-item:nth-child(1).animate {
    animation-delay: 0.1s;
}

.feature-item:nth-child(2).animate, .product-item:nth-child(2).animate {
    animation-delay: 0.2s;
}

.feature-item:nth-child(3).animate, .product-item:nth-child(3).animate {
    animation-delay: 0.3s;
}

.feature-item:nth-child(4).animate, .product-item:nth-child(4).animate {
    animation-delay: 0.4s;
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .features h2 {
        font-size: 1.75rem;
    }
    
    .feature-item {
        padding: 24px 20px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 5px 10px;
    }

    .feature-grid,
    .values-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        padding: 80px 0;
    }
    
    .about-text {
        padding: 24px 20px;
    }
    
    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .about-text h3 {
        font-size: 1.25rem;
        margin: 24px 0 12px;
        padding-left: 20px;
    }
    
    .about-text h3::before {
        width: 3px;
        height: 20px;
    }
    
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .about-text blockquote {
        padding: 16px 20px;
        font-size: 1rem;
        margin: 20px 0;
    }
    
    .about-text blockquote::before {
        font-size: 3rem;
        top: -5px;
        left: 15px;
    }
    
    .values h2 {
        font-size: 2rem;
        margin-bottom: 32px;
    }
    
    .value-item {
        padding: 24px 20px;
    }
    
    .value-item i {
        font-size: 3rem;
        margin-bottom: 24px;
    }
    
    .value-item i::after {
        width: 60px;
        height: 60px;
    }
    
    .value-item h3 {
        font-size: 1.25rem;
        margin-bottom: 16px;
    }
    
    .value-item p {
        font-size: 0.95rem;
    }
    
    .products .product-image {
        height: 80px;
    }
    

}
