:root {
    --primary: #D60000;
    --primary-dark: #990000;
    --primary-light: #FF4D4D;
    
    --bg-body: #050505;          
    --bg-surface: #121212;       
    --bg-surface-light: #1E1E1E; 
    --bg-overlay: rgba(0,0,0,0.85);
    
    --text-main: #FFFFFF;        
    --text-muted: #B0B0B0;       
    --text-dark: #000000;        
    
    --border-color: #2A2A2A;
    --container: 1200px;
    --radius: 8px;
    --radius-lg: 16px;
    
    --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.5);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.7);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.8);
    --shadow-hover: 0 15px 35px -5px rgba(214, 0, 0, 0.25); 
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-head: 'Playfair Display', serif;
    --font-body: 'Manrope', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body { 
    font-family: var(--font-body); 
    color: var(--text-main); 
    line-height: 1.6; 
    background: radial-gradient(circle at 50% 0%, #300000 0%, #000000 80%);
    background-color: #000; 
    background-attachment: fixed; 
    -webkit-font-smoothing: antialiased; 
}

h1, h2, h3, h4, h5 { font-family: var(--font-head); color: #fff; line-height: 1.2; font-weight: 700; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font-body); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }
.bg-light { background-color: transparent; }
.center { text-align: center; }

/* Tipografi */
.section-tag { 
    display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; 
    text-transform: uppercase; color: var(--primary); margin-bottom: 12px; position: relative; padding-left: 40px; 
}
.section-tag::before { content: ''; position: absolute; left: 0; top: 50%; width: 30px; height: 1px; background: var(--primary); }
.section-title { font-size: 2.75rem; margin-bottom: 20px; color: #fff; text-shadow: 0 4px 10px rgba(0,0,0,0.8); }
.section-desc { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* --- Header --- */
.header { 
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; 
    background: rgba(10, 10, 10, 0.9); 
    backdrop-filter: blur(12px); 
    box-shadow: var(--shadow-sm); 
    border-bottom: 1px solid rgba(255,255,255,0.05); 
    transition: var(--transition); 
}
.header-top { background: #000; color: #ccc; padding: 10px 0; font-size: 0.85rem; border-bottom: 1px solid #1a1a1a; }
.header-top .container { display: flex; justify-content: space-between; align-items: center; }
.header-info, .header-actions { display: flex; gap: 24px; align-items: center; }
.info-item { display: flex; align-items: center; gap: 8px; color: #ccc; }
.info-item:hover { color: var(--primary); }
.info-item i { width: 15px; height: 15px; color: var(--primary); }

.language-selector { position: relative; }
.current-lang { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1); color: #fff; padding: 6px 12px; border-radius: 4px; cursor: pointer; display: flex; align-items: center; gap: 8px; font-size: 0.85rem; transition: var(--transition); }
.current-lang:hover { background: rgba(255,255,255,0.2); }
.lang-dropdown { 
    position: absolute; top: 120%; right: 0; width: 140px; 
    background: var(--bg-surface); border: 1px solid var(--border-color); 
    border-radius: 8px; box-shadow: var(--shadow-lg); padding: 8px 0; display: none; overflow: hidden; 
}
.lang-option { padding: 10px 16px; color: var(--text-main); cursor: pointer; display: flex; align-items: center; gap: 10px; font-weight: 500; }
.lang-option:hover { background: var(--primary); color: #fff; }
.lang-dropdown.show { display: block; animation: fadeIn 0.2s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Navbar */
.navbar { padding: 16px 0; }
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.brand { display: flex; align-items: center; gap: 12px; }

/* LOGO AYARI */
.brand-logo {
    height: 50px; 
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

.brand-text h1 { font-size: 1.6rem; color: #fff; margin: 0; }
.brand-text span { font-size: 0.7rem; font-weight: 700; color: #888; letter-spacing: 2px; display: block; }

.nav-menu { display: flex; gap: 32px; }
.nav-link { font-weight: 600; color: #ddd; font-size: 0.95rem; position: relative; }
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px; background: var(--primary); transition: var(--transition); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 16px; }
.cta-btn { 
    background: var(--primary); color: #fff; border: none; padding: 12px 24px; border-radius: 30px; 
    font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: var(--transition); 
    box-shadow: 0 4px 15px rgba(214,0,0,0.3); 
}
.cta-btn:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(214,0,0,0.5); }
.mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #fff; }

/* --- Hero --- */
.hero { height: 85vh; min-height: 650px; margin-top: 104px; display: flex; align-items: center; position: relative; color: #fff; }
.hero-bg { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background: url('https://images.unsplash.com/photo-1615937651188-80b4f755c1a1?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat; 
    z-index: -2; animation: zoomIn 30s infinite alternate; opacity: 0.4; 
}
@keyframes zoomIn { from { transform: scale(1); } to { transform: scale(1.1); } }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(0deg, #000 0%, rgba(0,0,0,0.3) 100%); z-index: -1; }
.hero-content { position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 20px; background: rgba(214,0,0,0.1); border: 1px solid var(--primary); border-radius: 50px; color: #fff; font-weight: 600; font-size: 0.9rem; margin-bottom: 24px; box-shadow: 0 0 10px rgba(214,0,0,0.3); }
.hero-title { font-size: 4rem; margin-bottom: 24px; color: #fff; text-shadow: 0 5px 15px rgba(0,0,0,1); }
.hero-desc { font-size: 1.15rem; color: #ddd; margin-bottom: 40px; max-width: 600px; font-weight: 300; }
.hero-buttons { display: flex; gap: 16px; margin-bottom: 60px; }

.btn { padding: 14px 32px; border-radius: 6px; font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; transition: var(--transition); font-size: 1rem; }
.btn-primary { background: var(--primary); color: #fff; border: 2px solid var(--primary); }
.btn-primary:hover { background: transparent; color: #fff; box-shadow: 0 0 15px var(--primary); }
.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,0.4); color: #fff; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

.hero-stats { display: flex; align-items: center; background: rgba(10,10,10,0.8); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); padding: 24px 40px; border-radius: 12px; width: fit-content; }
.stat-item { text-align: center; padding: 0 20px; }
.stat-number { display: block; font-size: 1.8rem; font-weight: 700; color: var(--primary); font-family: var(--font-head); }
.stat-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: #aaa; }
.stat-separator { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* --- About Section --- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.text-block p { margin-bottom: 20px; color: var(--text-muted); }
.features-grid-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.feature-mini { display: flex; gap: 16px; }
.icon-box { width: 48px; height: 48px; background: rgba(214,0,0,0.1); color: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid rgba(214,0,0,0.2); }
.feature-mini h4 { font-size: 1rem; margin-bottom: 4px; color: #fff; }
.feature-mini p { font-size: 0.85rem; color: #888; line-height: 1.4; }
.about-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border-color); }
.about-image img { transition: transform 0.7s; width: 100%; }
.about-image:hover img { transform: scale(1.05); }
.image-badge { position: absolute; bottom: 30px; left: 30px; right: 30px; background: rgba(10,10,10,0.95); padding: 20px; border-radius: 12px; display: flex; align-items: center; gap: 16px; box-shadow: var(--shadow-md); border: 1px solid #333; }
.image-badge i { color: var(--primary); width: 32px; height: 32px; fill: var(--primary); }
.image-badge strong { color: #fff; }
.image-badge span { color: #aaa; }

/* --- Products --- */
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-top: 50px; }
.product-card { 
    background: var(--bg-surface); padding: 40px; border-radius: var(--radius-lg); 
    border: 1px solid var(--border-color); transition: var(--transition); position: relative; 
    overflow: hidden; display: flex; flex-direction: column; 
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}
.product-card:hover { 
    transform: translateY(-10px); border-color: var(--primary); 
    box-shadow: var(--shadow-hover); 
}
.product-card.featured { background: linear-gradient(145deg, #1A0505 0%, #0a0a0a 100%); border: 2px solid var(--primary); }
.product-card.featured::before { content: ''; position: absolute; top: 0; right: 0; width: 100px; height: 100px; background: linear-gradient(135deg, transparent 50%, var(--primary) 50%); opacity: 0.2; }
.featured-badge { position: absolute; top: 20px; right: 20px; background: var(--primary); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; text-transform: uppercase; }

.card-icon { width: 64px; height: 64px; background: rgba(255,255,255,0.05); color: #fff; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; transition: var(--transition); }
.product-card:hover .card-icon { background: var(--primary); color: #fff; transform: rotateY(180deg); box-shadow: 0 0 20px var(--primary-light); }
.product-card:hover .card-icon i { transform: rotateY(-180deg); }

.product-card h3 { font-size: 1.5rem; margin-bottom: 12px; color: #fff; }
.product-card p { color: var(--text-muted); margin-bottom: 24px; flex-grow: 1; font-size: 0.95rem; }
.card-list li { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; color: #ddd; font-weight: 500; font-size: 0.95rem; }
.card-list li i { width: 18px; height: 18px; color: var(--primary); }

/* --- Services --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.service-box { 
    background: var(--bg-surface); padding: 40px 30px; border-radius: var(--radius-lg); text-align: center; 
    box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--border-color); 
}
.service-box:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: var(--shadow-hover); }
.s-icon { width: 60px; height: 60px; margin: 0 auto 24px; color: var(--primary); background: rgba(214,0,0,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.service-box:hover .s-icon { background: var(--primary); color: #fff; }
.service-box h3 { font-size: 1.25rem; margin-bottom: 16px; color: #fff; }
.service-box p { font-size: 0.95rem; color: var(--text-muted); }

/* --- Quality (Dark) --- */
.dark-section { background: rgba(0,0,0,0.3); border-top: 1px solid #333; }
.light { color: #fff !important; }
.quality-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 2; }
.quality-list { margin-top: 40px; display: grid; gap: 30px; }
.q-item { display: flex; gap: 20px; }
.q-icon { width: 50px; height: 50px; background: rgba(255,255,255,0.05); color: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid #333; }
.q-item h4 { color: #fff; font-size: 1.1rem; margin-bottom: 4px; }
.q-item p { color: #aaa; font-size: 0.95rem; }
.certificates-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cert-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.1); padding: 30px; border-radius: 16px; text-align: center; transition: var(--transition); backdrop-filter: blur(10px); }
.cert-card:hover { background: rgba(255,255,255,0.05); transform: translateY(-5px); border-color: var(--primary); }
.cert-card i { width: 40px; height: 40px; color: var(--primary); margin-bottom: 16px; }
.cert-card h4 { color: #fff; margin-bottom: 6px; font-size: 1.1rem; }
.cert-card p { color: #888; font-size: 0.85rem; }

/* --- Contact --- */
.contact-container { display: grid; grid-template-columns: 1fr 1.5fr; background: var(--bg-surface); box-shadow: var(--shadow-lg); border-radius: var(--radius-lg); overflow: hidden; margin-top: 40px; border: 1px solid var(--border-color); }
.contact-sidebar { background: #000; padding: 60px 40px; color: #fff; border-right: 1px solid #222; }
.contact-sidebar .section-tag { color: var(--primary); }
.contact-sidebar h2 { color: #fff; font-size: 2rem; }
.contact-sidebar p { color: #aaa; }
.c-block { display: flex; gap: 16px; margin-top: 32px; }
.c-block i { color: var(--primary); width: 24px; height: 24px; flex-shrink: 0; margin-top: 4px; }
.c-block strong { color: #fff; display: block; margin-bottom: 4px; }
.c-block p, .c-block a { color: #aaa; font-size: 0.95rem; display: block; }

.contact-main { padding: 60px; background: var(--bg-surface); }
.whatsapp-box { background: rgba(37, 211, 102, 0.05); border: 1px solid rgba(37, 211, 102, 0.2); padding: 24px; border-radius: 12px; margin-bottom: 40px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.wa-header { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.wa-header i { color: #25D366; }
.wa-header h4 { color: #25D366; margin: 0; font-size: 1.1rem; }
.wa-desc { color: #aaa; font-size: 0.9rem; margin: 0; }
.wa-btn { background: #2E7D32; color: #fff; padding: 12px 24px; border-radius: 6px; font-weight: 600; display: flex; align-items: center; gap: 8px; font-size: 0.95rem; }
.wa-btn:hover { background: #1B5E20; box-shadow: 0 0 15px rgba(46, 125, 50, 0.4); }

/* Formlar */
.modern-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; color: #fff; }
.form-group input, .form-group select, .form-group textarea { 
    width: 100%; padding: 14px; border: 1px solid #333; border-radius: 8px; 
    font-family: var(--font-body); font-size: 1rem; 
    background: #1a1a1a; color: #fff; transition: var(--transition); 
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(214,0,0,0.2); background: #000; }
.submit-btn { width: 100%; padding: 16px; background: var(--primary); color: #fff; border: none; border-radius: 8px; font-weight: 700; cursor: pointer; font-size: 1rem; letter-spacing: 1px; transition: var(--transition); }
.submit-btn:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(214,0,0,0.3); }

/* --- Footer --- */
.footer { background: #000; color: #888; padding: 80px 0 30px; border-top: 2px solid var(--primary); }
.footer-bottom { text-align: center; font-size: 0.9rem; color: #555; }

/* --- Mobile Menu & Modal --- */
.mobile-menu-overlay, .modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); backdrop-filter: blur(5px); z-index: 2000; display: none; }
.mobile-menu-overlay { justify-content: flex-start; }
.mobile-menu-content { width: 300px; height: 100%; background: #111; padding: 30px; box-shadow: 10px 0 30px rgba(0,0,0,0.5); animation: slideRight 0.3s ease; border-right: 1px solid #333; }
@keyframes slideRight { from { transform: translateX(-100%); } to { transform: translateX(0); } }
.mobile-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; color: #fff; }
.mobile-links li { border-bottom: 1px solid #333; margin-bottom: 15px; padding-bottom: 15px; }
.mobile-links a { font-size: 1.2rem; font-weight: 600; color: #fff; display: block; }
#closeMobileMenu { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #fff; }

.modal { align-items: center; justify-content: center; }
.modal-content { background: var(--bg-surface); width: 90%; max-width: 450px; padding: 40px; border-radius: 16px; position: relative; animation: zoomModal 0.3s ease; border: 1px solid #333; color: #fff; }
@keyframes zoomModal { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-item { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; }
.modal-item .icon { width: 50px; height: 50px; background: rgba(214,0,0,0.1); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.modal-item .label { display: block; font-size: 0.9rem; color: #aaa; }
.modal-item .value { font-size: 1.2rem; font-weight: 700; color: #fff; }
.close-modal { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #fff; }

/* Notification */
.notification { position: fixed; bottom: 30px; right: 30px; background: #222; color: #fff; padding: 16px 24px; border-radius: 8px; box-shadow: var(--shadow-lg); transform: translateY(200%); transition: transform 0.4s; z-index: 3000; border: 1px solid #444; }
.notification.show { transform: translateY(0); }
.notification.success { border-left: 4px solid #2E7D32; }
.notification.error { border-left: 4px solid #D32F2F; }

/* --- Seçim Modalı Stilleri --- */
.selection-modal-content { max-width: 650px; }
.selection-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.selection-btn { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px 20px; border: 2px solid #333; background: #111; border-radius: 12px; cursor: pointer; transition: all 0.3s; position: relative; overflow: hidden; }
.selection-btn i { width: 48px; height: 48px; color: var(--primary); margin-bottom: 16px; transition: 0.3s; }
.selection-btn .btn-title { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.selection-btn .btn-desc { font-size: 0.9rem; color: #888; line-height: 1.4; }
.selection-btn.wholesale:hover { border-color: var(--primary); background: #1a0505; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(214, 0, 0, 0.2); }
.hover-indicator { position: absolute; bottom: 15px; opacity: 0; transform: translateY(10px); transition: 0.3s; }
.hover-indicator i { width: 20px; height: 20px; margin: 0; }
.selection-btn.wholesale:hover .hover-indicator { opacity: 1; transform: translateY(0); }
.selection-btn.retail.disabled { cursor: not-allowed; background: #111; border-color: #222; opacity: 0.5; }
.badge-soon { position: absolute; top: 15px; right: 15px; background: #444; color: #fff; font-size: 0.7rem; font-weight: 800; padding: 4px 10px; border-radius: 20px; letter-spacing: 1px; z-index: 10; }

/* --- Toptan Ürün Seçim Modalı --- */
.wholesale-content { max-width: 800px; height: 90vh; display: flex; flex-direction: column; padding: 0; overflow: hidden; background: #111; border: 1px solid #333; }
.step-container { display: flex; flex-direction: column; height: 100%; overflow: hidden; }
.modal-header-center { padding: 20px; text-align: center; border-bottom: 1px solid #333; background: #151515; flex-shrink: 0; }
.modal-header-center h3 { color: #fff; }
.modal-header-center p { color: #aaa; }

.category-tabs { display: flex; gap: 10px; padding: 15px 20px; background: #111; overflow-x: auto; white-space: nowrap; border-bottom: 1px solid #333; flex-shrink: 0; }
.cat-tab { padding: 8px 16px; border: 1px solid #333; border-radius: 20px; background: #000; cursor: pointer; font-size: 0.9rem; font-weight: 600; color: #aaa; transition: 0.2s; }
.cat-tab.active, .cat-tab:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

.products-grid-scroll { 
    flex: 1; overflow-y: auto; padding: 20px; display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(160px, 190px)); 
    gap: 15px; background: #0a0a0a; min-height: 0; justify-content: center; 
}

/* ============ DÜZENLENEN KART STİLİ ============ */
.product-select-card { 
    border: 1px solid #333; 
    background: #151515; 
    border-radius: 8px; 
    padding: 15px 10px; 
    cursor: pointer; 
    transition: 0.2s; 
    position: relative; 
    
    /* EŞİT BOYUT İÇİN */
    height: 180px; 
    width: 100%;
    
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: flex-start; /* İçerikleri yukarıdan hizala */
    text-align: center; 
}

.product-select-card:hover { border-color: var(--primary); background: #1f0a0a; }
.product-select-card.selected { background: #2a0505; border-color: var(--primary); box-shadow: 0 4px 10px rgba(214,0,0,0.2); }
.check-icon { position: absolute; top: 10px; right: 10px; width: 20px; height: 20px; background: var(--primary); color: #fff; border-radius: 50%; display: none; align-items: center; justify-content: center; z-index: 10; }
.product-select-card.selected .check-icon { display: flex; }

/* ============ DÜZENLENEN RESİM STİLİ ============ */
.p-img {
    width: 90px;
    height: 90px;
    object-fit: contain; /* Görüntü bozulmadan sığdır */
    margin-bottom: 12px;
    transition: transform 0.2s;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}
.product-select-card:hover .p-img {
    transform: scale(1.1);
}

.p-name { 
    font-size: 0.9rem; 
    font-weight: 600; 
    color: #fff; 
    line-height: 1.3;
    
    /* Metin taşmasını önle */
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Maksimum 2 satır */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.selection-bar { padding: 15px 20px; border-top: 1px solid #333; background: #151515; display: flex; justify-content: space-between; align-items: center; flex-shrink: 0; }
.selection-summary { font-weight: 700; color: #fff; font-size: 1.1rem; }
.btn-proceed { background: #fff; color: #000; border: none; padding: 10px 24px; border-radius: 6px; font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: 0.3s; }
.btn-proceed:disabled { background: #333; color: #666; cursor: not-allowed; }
.btn-proceed:not(:disabled):hover { background: var(--primary); color: #fff; }

.modal-header-left { padding: 20px; border-bottom: 1px solid #333; display: flex; align-items: center; gap: 15px; flex-shrink: 0; background: #151515; }
.modal-header-left h3 { color: #fff; margin: 0; }
.back-btn { background: none; border: none; cursor: pointer; display: flex; align-items: center; gap: 5px; font-weight: 600; color: #aaa; }
.selected-items-preview { padding: 15px 20px; background: #0a0a0a; border-bottom: 1px solid #333; font-size: 0.9rem; color: #aaa; max-height: 100px; overflow-y: auto; flex-shrink: 0; }
.scrollable-form { flex: 1; overflow-y: auto; padding: 20px; }

/* --- "DİĞER" KISMI YENİ TASARIM --- */
.custom-request-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.custom-req-content {
    width: 100%;
    max-width: 450px; 
    text-align: center;
    background: #151515; 
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid #333;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5); 
}

.custom-req-icon {
    width: 70px;
    height: 70px;
    background: rgba(214, 0, 0, 0.1); 
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid rgba(214, 0, 0, 0.2);
}
.custom-req-icon i {
    width: 32px;
    height: 32px;
}

.custom-req-content h4 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-family: var(--font-head);
}

.custom-req-content p {
    color: #aaa;
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.custom-req-content textarea {
    width: 100%;
    height: 120px;
    background: #0a0a0a;
    border: 1px solid #333;
    color: #fff;
    padding: 16px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    resize: none;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.custom-req-content textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(214, 0, 0, 0.2);
    background: #050505;
    outline: none;
}

/* Butonu tam genişlik yap */
.custom-req-content .btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 1rem;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 992px) { 
    .header-top, .nav-menu, .nav-right .cta-btn { display: none; } 
    .nav-right { margin-left: auto; } 
    .mobile-toggle { display: block; } 
    .hero-title { font-size: 2.8rem; } 
    .about-grid, .contact-container, .quality-wrapper, .certificates-wrapper { grid-template-columns: 1fr; } 
    .hero-stats { width: 100%; flex-wrap: wrap; justify-content: center; gap: 20px; } 
    .stat-separator { display: none; } 
    .footer-content { grid-template-columns: 1fr; gap: 40px; } 
    .selection-grid { grid-template-columns: 1fr; }
}
@media (max-width: 576px) { 
    .hero-title { font-size: 2.2rem; } 
    .section-title { font-size: 2rem; } 
    .section { padding: 60px 0; } 
    .modal-content { padding: 25px; } 
}