* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
:root {
    --primary: #6C63FF;
    --secondary: #FF6584;
    --accent: #36D1DC;
    --success: #4CAF50;
    --light: #F7F9FC;
    --dark: #2A2D3E;
    --card-bg: #ffffff;
    --shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(135deg, #6C63FF, #36D1DC);
    --gradient-secondary: linear-gradient(135deg, #FF6584, #FF9E7D);
    --emac-blue: #2D5BFF;
    --emac-purple: #8B5CFF;
}
body {
    background-color: #f0f2f5;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Header Styles */
header {
    background: linear-gradient(135deg, var(--emac-blue), var(--emac-purple));
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.logo {
    display: flex;
    align-items: center;
    animation: fadeIn 1s ease;
}
.logo i {
    font-size: 36px;
    margin-right: 15px;
    color: #FFD166;
    animation: pulse 2s infinite;
}
.logo h1 {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(45deg, #FFFFFF, #FFD166);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
nav ul {
    display: flex;
    list-style: none;
    gap: 10px;
}
nav li {
    margin: 0;
}
nav a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s;
    padding: 10px 20px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s;
}
nav a:hover::before, nav a.active::before {
    left: 100%;
}
nav a:hover, nav a.active {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}
/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--emac-blue), var(--emac-purple));
    color: white;
    padding: 120px 0;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23FFD166" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,197.3C1248,203,1344,149,1392,122.7L1440,96L1440,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;
    animation: wave 15s linear infinite;
}
@keyframes wave {
    0% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-30px) translateY(10px); }
    100% { transform: translateX(0) translateY(0); }
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}
.hero h2 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 800;
    animation: slideDown 1s ease;
}
.hero p {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeIn 1.5s ease;
}
.btn-hero {
    display: inline-block;
    background: var(--gradient-secondary);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.4s;
    box-shadow: 0 10px 25px rgba(255, 101, 132, 0.4);
    animation: pulse 2s infinite;
    position: relative;
    overflow: hidden;
}
.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s;
}
.btn-hero:hover::before {
    left: 100%;
}
.btn-hero:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 101, 132, 0.6);
}
@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* Main Content Layout */
.main-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    margin-bottom: 50px;
}
/* Services Section */
.services-section {
    margin-bottom: 40px;
}
.section-title {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--dark);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(135deg, var(--emac-blue), var(--emac-purple));
    border-radius: 5px;
    animation: expandLine 2s ease;
}
@keyframes expandLine {
    from { width: 0; }
    to { width: 100px; }
}
.category-tabs {
    display: flex;
    margin-bottom: 40px;
    background: var(--card-bg);
    border-radius: 15px;
    padding: 10px;
    box-shadow: var(--shadow);
    flex-wrap: wrap;
    justify-content: center;
}
.category-tab {
    padding: 15px 25px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    transition: all 0.4s;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 5px;
    min-width: 160px;
}
.category-tab.active {
    background: linear-gradient(135deg, var(--emac-blue), var(--emac-purple));
    color: white;
    box-shadow: 0 5px 15px rgba(45, 91, 255, 0.4);
    transform: translateY(-3px);
}
.category-tab:hover:not(.active) {
    background: rgba(45, 91, 255, 0.1);
}
/* Hizmetlerin YAN YANA düzeni */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
.service-card {
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 25px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(45, 91, 255, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 280px;
}
.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--emac-blue), var(--emac-purple));
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.service-icon {
    font-size: 40px;
    color: var(--emac-blue);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--emac-blue), var(--emac-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark);
    font-weight: 600;
}
.service-card p {
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
    flex-grow: 1;
    line-height: 1.5;
}
.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.service-price::before {
    content: '₺';
    font-size: 18px;
}
.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--emac-blue), var(--emac-purple));
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    text-align: center;
    font-size: 14px;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 91, 255, 0.3);
}
/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 15px;
}
.page-btn {
    padding: 10px 18px;
    background: var(--card-bg);
    border: 2px solid var(--emac-blue);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    color: var(--emac-blue);
    font-size: 14px;
}
.page-btn:hover {
    background: var(--emac-blue);
    color: white;
}
.page-btn.active {
    background: var(--emac-blue);
    color: white;
}
.page-info {
    font-weight: 600;
    color: var(--dark);
    margin: 0 15px;
    font-size: 14px;
}
/* Sidebar Tasarımı */
.sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.cart-section, .offer-section {
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 25px;
    border: 2px solid rgba(45, 91, 255, 0.1);
    transition: all 0.3s;
}
.cart-section:hover, .offer-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.cart-section h3, .offer-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 12px;
}
.cart-items {
    margin-bottom: 15px;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 10px;
}
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    background: #f8f9fa;
    transition: all 0.3s;
}
.cart-item:hover {
    background: #e9ecef;
}
.cart-item-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.cart-item-name {
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
}
.cart-item-price {
    color: var(--secondary);
    font-size: 12px;
    font-weight: 600;
}
.remove-btn {
    background: rgba(255, 101, 132, 0.1);
    border: none;
    color: var(--secondary);
    padding: 6px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s;
}
.remove-btn:hover {
    background: var(--secondary);
    color: white;
}
.cart-total {
    text-align: right;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary);
    padding-top: 15px;
    border-top: 2px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.btn-secondary {
    background: var(--gradient-secondary);
    width: 100%;
    padding: 12px;
    font-size: 14px;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}
.form-group label i {
    color: var(--emac-blue);
    width: 16px;
}
.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    background: #f8f9fa;
}
.form-group input:focus {
    outline: none;
    border-color: var(--emac-blue);
    background: white;
}
/* Textarea sabit boyutlu */
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    background: #f8f9fa;
    resize: none;
    height: 100px;
    overflow-y: auto;
}
.form-group textarea:focus {
    outline: none;
    border-color: var(--emac-blue);
    background: white;
}
.char-counter {
    text-align: right;
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}
.char-counter.warning {
    color: var(--secondary);
}
/* Hakkımızda Bölümü - YENİ */
.about-section {
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 50px;
    margin-bottom: 50px;
    border: 1px solid rgba(45, 91, 255, 0.1);
}
.about-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
    text-align: center;
}
.about-values {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.value-item {
    text-align: center;
    max-width: 220px;
    padding: 20px;
    transition: transform 0.3s;
}
.value-item:hover {
    transform: translateY(-5px);
}
.value-item i {
    font-size: 40px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--emac-blue), var(--emac-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.value-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
}
.value-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}
/* İşleyiş Süreci Bölümü - 4 ADIM */
.process-section {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 60px 40px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}
.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--emac-blue), var(--emac-purple), var(--secondary));
}
.process-section h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--dark);
    text-align: center;
    font-weight: 700;
    position: relative;
}
.process-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--emac-blue), var(--emac-purple));
    border-radius: 2px;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    counter-reset: step-counter;
    position: relative;
}
.process-step {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(45, 91, 255, 0.1);
    z-index: 1;
}
.process-step::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--emac-blue), var(--emac-purple));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(45, 91, 255, 0.3);
    z-index: 2;
}
.process-step:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.process-icon {
    font-size: 60px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--emac-blue), var(--emac-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 5px 15px rgba(45, 91, 255, 0.2));
}
.process-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 600;
}
.process-step p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}
/* İletişim Bölümü */
.contact-section {
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 40px;
    margin-bottom: 50px;
    border: 1px solid rgba(45, 91, 255, 0.1);
}
.contact-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--dark);
    text-align: center;
}
.contact-section > p {
    text-align: center;
    margin-bottom: 30px;
    font-size: 18px;
    color: #666;
}
.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.social-link {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 25px;
    border-radius: 15px;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.4s;
    gap: 20px;
    border-left: 5px solid;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}
.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}
.social-link:hover::before {
    left: 100%;
}
.social-link:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    transition: all 0.3s;
    flex-shrink: 0;
}
.social-content {
    flex: 1;
}
.social-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}
.social-content p {
    font-size: 14px;
    color: #666;
    opacity: 0.8;
}
.social-arrow {
    font-size: 20px;
    opacity: 0.7;
    transition: all 0.3s;
}
.social-link:hover .social-arrow {
    transform: translateX(5px);
    opacity: 1;
}
/* Sosyal medya renkleri */
.whatsapp { 
    border-left-color: #25D366;
    background: linear-gradient(135deg, #25D366, #128C7E);
}
.whatsapp .social-icon { background: #25D366; }
.instagram { 
    border-left-color: #E4405F;
    background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
}
.instagram .social-icon { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.facebook { 
    border-left-color: #1877F2;
    background: linear-gradient(135deg, #1877F2, #0A5ED9);
}
.facebook .social-icon { background: #1877F2; }
.tiktok { 
    border-left-color: #000000;
    background: linear-gradient(135deg, #000000, #69C9D0, #EE1D52);
}
.tiktok .social-icon { background: #000000; }
/* Footer */
footer {
    background: linear-gradient(135deg, var(--emac-blue), var(--emac-purple));
    color: white;
    text-align: center;
    padding: 40px 0;
    margin-top: 50px;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.footer-logo {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(45deg, #FFFFFF, #FFD166);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* Modal ve bildirim stilleri */
.waiting-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}
.waiting-content {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    animation: modalAppear 0.5s ease;
    position: relative;
    overflow: hidden;
}
.waiting-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--emac-blue), var(--emac-purple), var(--secondary));
}
@keyframes modalAppear {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.waiting-content i {
    font-size: 70px;
    color: var(--emac-blue);
    margin-bottom: 25px;
    animation: pulse 2s infinite;
}
.waiting-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 700;
}
.waiting-content p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #666;
    line-height: 1.5;
}
.countdown {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary);
    margin: 25px 0;
    font-family: 'Courier New', monospace;
    text-shadow: 0 2px 10px rgba(255, 101, 132, 0.3);
    animation: countdownPulse 1s infinite;
}
@keyframes countdownPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.cooldown-counter {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--secondary);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    display: none;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}
.cooldown-counter.show {
    display: flex;
}
.cooldown-counter i {
    font-size: 20px;
}
.cooldown-time {
    font-weight: 600;
    font-size: 16px;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    background: var(--success);
    color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    transform: translateX(150%);
    transition: transform 0.3s;
}
.notification.show {
    transform: translateX(0);
}
.floating {
    animation: floating 3s ease-in-out infinite;
}
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
/* Responsive */
@media (max-width: 1200px) {
    .main-content { grid-template-columns: 1fr; }
    .sidebar { position: static; order: -1; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .social-links { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .about-values { gap: 20px; }
}
@media (max-width: 768px) {
    .header-content { flex-direction: column; gap: 15px; text-align: center; }
    nav ul { justify-content: center; flex-wrap: wrap; }
    .hero h2 { font-size: 36px; }
    .services-grid { grid-template-columns: 1fr; }
    .category-tabs { flex-direction: column; align-items: center; }
    .category-tab { width: 100%; max-width: 250px; }
    .social-links { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .process-section { padding: 40px 20px; }
    .about-section { padding: 30px 20px; }
    .about-values { gap: 15px; }
    .value-item { max-width: 160px; padding: 15px; }
}
.empty-cart {
    text-align: center;
    padding: 30px;
    color: #666;
}
.empty-cart i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}
html { scroll-behavior: smooth; }