/* --- TEMEL STİLLER --- */
:root {
    --primary-color: #FF6600;
    --background-color: #0A0A0A;
    --surface-color: #141414;
    --border-color: rgba(255, 255, 255, 0.1);
    --text-color: #EAEAEA;
    --text-muted-color: #888;
    --font-main: 'Satoshi', sans-serif;
}
@import url('https://fonts.googleapis.com/css2?family=Satoshi:wght@400;500;700&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); background-color: var(--background-color); color: var(--text-color); cursor: none; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
a, button { cursor: none; }
.content { margin-left: 100px; }
.section-title { font-size: 48px; text-align: center; margin-bottom: 60px; }
.reveal { opacity: 0; }
.page-section { padding: 150px 0; }

/* --- BİLEŞEN STİLLERİ --- */
.cursor { position: fixed; width: 20px; height: 20px; border: 1px solid var(--text-color); border-radius: 50%; left: 0; top: 0; pointer-events: none; transform: translate(-50%, -50%); transition: width 0.2s, height 0.2s, background-color 0.2s, backdrop-filter 0.2s; z-index: 9999; }
.cursor.hover { width: 60px; height: 60px; background-color: rgba(255, 102, 0, 0.2); border: none; backdrop-filter: blur(5px); }
.brand-logo { position: fixed; top: 30px; left: 30px; font-size: 24px; font-weight: 700; text-decoration: none; z-index: 1001; background: linear-gradient(90deg, var(--primary-color), #ff8c42, #e85d04); background-size: 200% auto; color: #FFF; background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: gradient-text 5s linear infinite; }
@keyframes gradient-text { to { background-position: 200% center; } }
.brand-logo span { font-weight: 400; }
.sidebar-nav { position: fixed; top: 50%; left: 20px; transform: translateY(-50%); background-color: rgba(20, 20, 20, 0.5); backdrop-filter: blur(10px); border: 1px solid var(--border-color); border-radius: 50px; padding: 10px; z-index: 1000; }
.sidebar-nav ul { list-style: none; }
.sidebar-nav .nav-link { display: flex; justify-content: center; align-items: center; width: 50px; height: 50px; margin: 5px 0; color: var(--text-muted-color); text-decoration: none; font-size: 18px; border-radius: 50%; transition: all 0.3s ease; position: relative; overflow: hidden; }
.sidebar-nav .nav-link:hover, .sidebar-nav .nav-link.active { background-color: var(--primary-color); color: var(--background-color); }
.sidebar-nav .nav-link::after { content: attr(data-tooltip); position: absolute; left: 120%; top: 50%; transform: translateY(-50%); background-color: var(--surface-color); color: var(--text-color); padding: 8px 12px; border-radius: 8px; font-size: 14px; white-space: nowrap; z-index: 10000; opacity: 0; transition: opacity 0.2s ease; pointer-events: none;}
.sidebar-nav .nav-link.show-tooltip::after { opacity: 1; }
.nav-link .cart-count { position: absolute; top: 5px; right: 5px; background-color: var(--primary-color); color: var(--background-color); border-radius: 50%; width: 18px; height: 18px; font-size: 12px; font-weight: 700; display: flex; justify-content: center; align-items: center; border: 1px solid var(--background-color); }
.nav-link.user-avatar { padding: 0; }
.user-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; transition: transform 0.3s ease; }
.nav-link.user-avatar:hover img { transform: scale(1.1); }
.btn { display: inline-block; background: var(--primary-color); color: var(--background-color) !important; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 16px; border: none; overflow: hidden; position: relative; height: 54px; line-height: 54px; padding: 0 30px; }
.btn-text-wrapper { display: block; transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1); }
.btn-text { display: flex; align-items: center; justify-content: center; }
.btn-text i { margin-left: 10px; }
.btn:hover .btn-text-wrapper { transform: translateY(-100%); }
.btn-view { background-color: rgba(255, 255, 255, 0.9); color: var(--background-color); text-decoration: none; padding: 12px 20px; border-radius: 50px; font-weight: 700; transition: background-color 0.3s; }
.btn-view:hover { background-color: #fff; }
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(10, 10, 10, 0.8); backdrop-filter: blur(8px); display: none; justify-content: center; align-items: center; z-index: 9998; opacity: 0; visibility: hidden; }
.modal-content { background-color: var(--surface-color); border: 1px solid var(--border-color); padding: 30px; border-radius: 20px; width: 90%; max-width: 800px; position: relative; box-shadow: 0 20px 50px rgba(0,0,0,0.5); display: flex; flex-direction: column; max-height: 90vh; }
.close-modal { position: absolute; top: 15px; right: 20px; background: none; border: none; color: var(--text-muted-color); font-size: 30px; transition: color 0.3s; }
.close-modal:hover { color: var(--text-color); }
.modal-body { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; overflow-y: auto; }
.modal-body img { width: 100%; border-radius: 15px; }
.modal-text-content { display: flex; flex-direction: column; }
.modal-body h2 { font-size: 32px; margin-bottom: 10px; }
.modal-price { font-size: 24px; font-weight: 700; color: var(--primary-color); margin-bottom: 15px; }
.modal-description { line-height: 1.7; color: var(--text-muted-color); margin-top: 15px; }
.modal-body .product-tag { margin-bottom: 15px; }
.modal-body .btn { margin-top: 20px; }
.loading { color: var(--text-color); text-align: center; width: 100%; padding: 50px 0; font-size: 1.2rem; }
.modal-rating-summary { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.stars { color: #ffc107; font-size: 1.2rem; }
.review-count { color: var(--text-muted-color); }
.modal-reviews-section { grid-column: 1 / -1; margin-top: 30px; border-top: 1px solid var(--border-color); padding-top: 30px; }
.modal-reviews-section h3 { font-size: 22px; margin-bottom: 20px; }
.review-item { display: flex; gap: 15px; margin-bottom: 20px; }
.review-avatar img { width: 40px; height: 40px; border-radius: 50%; }
.review-content .stars { font-size: 1rem; }
.review-content p { margin: 5px 0 0 0; line-height: 1.6; }
.review-author { font-weight: 700; }
.site-footer { padding: 30px 0; margin-left: 100px; border-top: 1px solid var(--border-color); background-color: var(--background-color); }
.site-footer .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-copyright, .footer-contact a { color: var(--text-muted-color); font-size: 14px; text-decoration: none; transition: color 0.3s ease; }
.footer-contact a:hover { color: var(--primary-color); }
.footer-socials { display: flex; gap: 15px; }
.footer-socials a { color: var(--text-muted-color); font-size: 20px; text-decoration: none; transition: color 0.3s ease, transform 0.3s ease; }
.footer-socials a:hover { color: var(--primary-color); transform: scale(1.1); }
.footer-credit-link { color: var(--text-muted-color); text-decoration: none; font-weight: 700; transition: all 0.3s ease; }
.footer-credit-link:hover { color: var(--primary-color); text-shadow: 0 0 8px var(--primary-color); }
#notification-container { position: fixed; top: 20px; right: 20px; z-index: 10002; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.toast-notification { background-color: var(--surface-color); color: var(--text-color); padding: 15px 20px; border-radius: 10px; border: 1px solid var(--border-color); border-left: 4px solid var(--primary-color); box-shadow: 0 5px 15px rgba(0,0,0,0.3); display: flex; align-items: center; gap: 10px; opacity: 0; }
.toast-notification i { color: var(--primary-color); }
.footer-language-switcher a { color: var(--text-muted-color); text-decoration: none; font-weight: 700; transition: color 0.3s ease; }
.footer-language-switcher a:hover, .footer-language-switcher a.active { color: var(--primary-color); }
.footer-language-switcher span { margin: 0 5px; color: var(--border-color); }

/* --- BÖLÜM STİLLERİ --- */
.hero-section { height: 100vh; display: flex; justify-content: center; align-items: center; text-align: center; position: relative; overflow: hidden; }
#particles-js { position: absolute; width: 100%; height: 100%; z-index: 0; }
.hero-section .container { z-index: 1; }
.hero-section h1 { font-size: clamp(2.5rem, 7vw, 6rem); font-weight: 700; line-height: 1.1; margin-bottom: 30px; overflow: hidden; }
.reveal-text span { display: inline-block; opacity: 0; transform: translateY(100%); }
.hero-section p { font-size: 1.2rem; color: var(--text-muted-color); max-width: 600px; margin: 0 auto 40px auto; }
.features-section { padding: 150px 0; position: relative; transition: background-color 0.5s ease; }
.features-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; opacity: 0; transition: opacity 0.5s ease; }
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(200px, auto); gap: 20px; position: relative; z-index: 1; }
.bento-item { background-color: var(--surface-color); border: 1px solid var(--border-color); border-radius: 20px; padding: 2px; position: relative; overflow: hidden; transition: transform 0.3s ease, opacity 0.4s ease; }
.bento-grid:hover .bento-item:not(:hover) { opacity: 0.7; transform: scale(0.98); }
.bento-item::before { content: ''; position: absolute; top: 50%; left: 50%; width: 200%; height: 200%; background: conic-gradient(from 0deg, transparent, var(--hover-color, var(--primary-color)), transparent); transform: translate(-50%, -50%); opacity: 0; transition: opacity 0.4s ease; animation: rotate 4s linear infinite paused; }
.bento-item:hover::before { opacity: 1; animation-play-state: running; }
@keyframes rotate { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }
.item-content-wrapper { background-color: var(--surface-color); border-radius: 18px; width: 100%; height: 100%; padding: 28px; display: flex; flex-direction: column; justify-content: center; }
.bento-item > .item-content-wrapper > * { position: relative; z-index: 2; }
.bento-item i { font-size: 24px; color: var(--primary-color); margin-bottom: 15px; }
.bento-item h3 { font-size: 20px; margin-bottom: 10px; }
.bento-item p { color: var(--text-muted-color); line-height: 1.6; }
.item-1 { grid-column: 1 / 2; grid-row: 1 / 3; } .item-2 { grid-column: 2 / 3; grid-row: 1 / 2; } .item-4 { grid-column: 3 / 4; grid-row: 1 / 3; } .item-3 { grid-column: 2 / 3; grid-row: 2 / 3; }
.item-3.cosmic-bg .item-content-wrapper { background-color: #000; background-image: radial-gradient(ellipse at 20% 80%, rgba(255, 102, 0, 0.3), transparent 50%), radial-gradient(ellipse at 80% 30%, rgba(74, 144, 226, 0.3), transparent 50%); background-size: 200% 200%; animation: cosmic-bg-animation 15s ease-in-out infinite alternate; text-align: center; align-items: center; }
.item-3.cosmic-bg h3 { text-shadow: 0 0 15px rgba(255, 255, 255, 0.8); }
@keyframes cosmic-bg-animation { from { background-position: 0% 0%; } to { background-position: 100% 100%; } }
.item-3:hover::before { opacity: 0; }
.announcements-section { padding: 100px 0; }
.announcement-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
.announcement-card { background-color: var(--surface-color); border: 1px solid var(--border-color); border-radius: 20px; padding: 30px; display: flex; flex-direction: column; gap: 15px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.announcement-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.announcement-header h3 { font-size: 24px; margin-bottom: 5px; color: var(--text-color); }
.announcement-meta { font-size: 14px; color: var(--text-muted-color); }
.announcement-content p { color: var(--text-muted-color); line-height: 1.7; }
.products-section { padding: 100px 0; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 20px; }
.product-card { background-color: var(--surface-color); border: 1px solid var(--border-color); border-radius: 20px; overflow: hidden; height: 400px; position: relative; box-shadow: 0 0 0 rgba(255, 102, 0, 0); transition: box-shadow 0.4s ease; }
.product-card:hover { box-shadow: 0 0 30px rgba(255, 102, 0, 0.2); }
.product-image { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }
.product-card:hover .product-image { transform: scale(1.05); }
.product-info { position: absolute; bottom: 0; left: 0; width: 100%; padding: 20px; display: flex; justify-content: space-between; align-items: flex-end; background: linear-gradient(to top, rgba(10, 10, 10, 0.95), transparent); transform: translateY(0); transition: transform 0.4s ease; }
.product-tag { background-color: rgba(255, 255, 255, 0.1); backdrop-filter: blur(5px); padding: 5px 10px; border-radius: 8px; font-size: 12px; font-weight: 500; margin-bottom: 10px; display: inline-block; }
.product-info h3 { font-size: 24px; }
.card-overlay { position: absolute; top: 20px; right: 20px; display: flex; flex-direction: column; gap: 10px; opacity: 0; transform: translateX(10px); transition: all 0.3s ease-out; }
.product-card:hover .card-overlay { opacity: 1; transform: translateX(0); }
.icon-btn { background: rgba(26, 26, 26, 0.7); backdrop-filter: blur(5px); border: 1px solid var(--border-color); color: var(--text-color); border-radius: 50%; width: 45px; height: 45px; font-size: 16px; display: flex; justify-content: center; align-items: center; transition: all 0.3s ease; }
.icon-btn:hover { background-color: var(--primary-color); color: var(--background-color); border-color: var(--primary-color); }
.team-section { padding: 100px 0; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; justify-items: center; }
.team-card { position: relative; width: 250px; height: 300px; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding: 20px; border-radius: 20px; overflow: hidden; border: 1px solid var(--border-color); }
.team-card-content { text-align: center; z-index: 2; }
.team-card img { width: 120px; height: 120px; border-radius: 50%; border: 3px solid var(--primary-color); margin-bottom: 15px; }
.team-card h3 { font-size: 22px; }
.team-card p { color: var(--text-muted-color); margin-bottom: 15px; }
.team-card .social-links a { color: var(--text-muted-color); font-size: 18px; margin: 0 8px; transition: color 0.3s; }
.team-card .social-links a:hover { color: var(--primary-color); }
.team-card-glow { position: absolute; top: 50%; left: 50%; width: 300px; height: 300px; background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%); transform: translate(-50%, -50%); opacity: 0; transition: opacity 0.4s ease; }
.team-card:hover .team-card-glow { opacity: 0.2; }
.testimonials-section { padding: 150px 0; overflow-x: hidden; }
.marquee-container { display: flex; margin: 20px 0; -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent); mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent); }
.marquee-track { display: flex; flex-shrink: 0; animation: marquee 40s linear infinite; }
.marquee-container.reverse .marquee-track { animation-direction: reverse; }
.marquee-container:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.testimonial-card { background-color: var(--surface-color); border: 1px solid var(--border-color); border-radius: 15px; padding: 25px; margin: 0 15px; width: 400px; flex-shrink: 0; }
.testimonial-card p { font-size: 1.1rem; font-style: italic; margin-bottom: 15px; }
.testimonial-card span { font-weight: 700; color: var(--primary-color); }
.faq-section { padding: 100px 0 150px 0; }
.faq-accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.faq-item details { background-color: var(--surface-color); border: 1px solid var(--border-color); border-radius: 15px; padding: 20px; transition: background-color 0.3s ease; overflow: hidden; }
.faq-item details[open] { background-color: #1a1a1a; }
.faq-item summary { display: flex; justify-content: space-between; align-items: center; font-size: 18px; font-weight: 500; cursor: none; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { color: var(--primary-color); font-size: 20px; transition: transform 0.3s ease-out; }
.faq-item details[open] summary i { transform: rotate(45deg); }
.faq-content { overflow: hidden; }
.faq-item p { color: var(--text-muted-color); line-height: 1.7; padding-top: 15px; }

/* --- SAYFAYA ÖZEL STİLLER --- */
.store-section { padding: 150px 0; }
.store-header { text-align: center; margin-bottom: 50px; }
.store-header p { font-size: 1.2rem; color: var(--text-muted-color); margin-top: -40px; }
.controls-wrapper { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; margin-bottom: 50px; }
.controls-form { display: flex; justify-content: space-between; align-items: center; width: 100%; flex-wrap: wrap; gap: 20px; }
.filter-bar { display: flex; justify-content: center; align-items: center; gap: 10px; background-color: var(--surface-color); padding: 8px; border-radius: 50px; border: 1px solid var(--border-color); }
.filter-bar button { background: none; border: none; cursor: none; text-decoration: none; color: var(--text-muted-color); font-family: var(--font-main); font-weight: 500; font-size: 14px; padding: 8px 18px; border-radius: 50px; transition: all 0.3s ease; }
.filter-bar button:hover { color: var(--text-color); }
.filter-bar button.active { background-color: var(--primary-color); color: var(--background-color); font-weight: 700; }
.search-and-sort { display: flex; align-items: center; gap: 20px; }
.search-bar { position: relative; display: flex; align-items: center; }
.search-bar input { background-color: var(--surface-color); border: 1px solid var(--border-color); border-radius: 50px; color: var(--text-color); font-family: var(--font-main); font-size: 16px; padding: 10px 45px 10px 20px; width: 250px; transition: border-color 0.3s; }
.search-bar input:focus { outline: none; border-color: var(--primary-color); }
.search-bar button { position: absolute; right: 5px; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--text-muted-color); font-size: 16px; padding: 8px 10px; }
.sort-bar select { background-color: var(--surface-color); color: var(--text-color); border: 1px solid var(--border-color); border-radius: 50px; padding: 10px 40px 10px 20px; font-family: var(--font-main); font-size: 16px; cursor: none; -webkit-appearance: none; -moz-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23888' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; }
.pagination { display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 60px; }
.pagination a { text-decoration: none; color: var(--text-muted-color); font-weight: 500; border: 1px solid var(--border-color); width: 40px; height: 40px; display: flex; justify-content: center; align-items: center; border-radius: 50%; transition: all 0.3s ease; }
.pagination a:hover { color: var(--text-color); border-color: var(--primary-color); }
.pagination a.active { background-color: var(--primary-color); color: var(--background-color); border-color: var(--primary-color); font-weight: 700; }
.profile-section { padding: 150px 0; }
.profile-header { display: flex; align-items: center; gap: 30px; margin-bottom: 60px; padding-bottom: 40px; border-bottom: 1px solid var(--border-color); }
.profile-avatar img { width: 120px; height: 120px; border-radius: 50%; border: 3px solid var(--primary-color); }
.profile-info h1 { font-size: 36px; margin: 0; }
.profile-info p { font-size: 18px; color: var(--text-muted-color); }
.profile-content h2 { font-size: 28px; margin-bottom: 30px; border-left: 3px solid var(--primary-color); padding-left: 15px; }
.profile-tabs-container { margin-top: 50px; }
.profile-tabs { display: inline-flex; gap: 10px; background-color: var(--surface-color); padding: 8px; border-radius: 50px; border: 1px solid var(--border-color); margin-bottom: 40px; }
.tab-button { background: none; border: none; color: var(--text-muted-color); padding: 10px 25px; font-size: 16px; font-weight: 500; border-radius: 50px; transition: all 0.3s ease; }
.tab-button:hover { color: var(--text-color); }
.tab-button.active { background-color: var(--primary-color); color: var(--background-color); font-weight: 700; }
.tab-pane { display: none; }
.tab-pane.active { display: block; }
.table-tickets { width: 100%; border-collapse: collapse; }
.table-tickets th, .table-tickets td { padding: 15px; text-align: left; border-bottom: 1px solid var(--border-color); }
.table-tickets thead { color: var(--text-muted-color); font-size: 14px; text-transform: uppercase; }
.btn-view-ticket { background: var(--surface-color); border: 1px solid var(--border-color); padding: 8px 15px; border-radius: 50px; color: var(--text-color); text-decoration: none; transition: all 0.3s ease; }
.btn-view-ticket:hover { background-color: var(--primary-color); border-color: var(--primary-color); color: var(--background-color); }
.badge.status-açık { background-color: #28a745; }
.badge.status-cevaplandı { background-color: #ffc107; color: #000; }
.badge.status-kapandı { background-color: #6c757d; }
.star-rating { display: flex; flex-direction: row-reverse; justify-content: flex-end; font-size: 2em; }
.star-rating input { display: none; }
.star-rating label { color: #444; cursor: pointer; transition: color 0.2s; }
.star-rating input:checked ~ label, .star-rating:not(:checked) > label:hover, .star-rating:not(:checked) > label:hover ~ label { color: #ffc107; }
#review-form .form-control { background-color: var(--background-color); border: 1px solid var(--border-color); color: var(--text-color); }
#join-affiliate-program-btn { height: auto; line-height: normal; padding: 12px 25px; font-size: 15px; margin-top: 20px; }
.cart-section { padding: 150px 0; }
.cart-items-grid { display: flex; flex-direction: column; gap: 15px; }
.cart-item { display: grid; grid-template-columns: 100px 1fr auto auto; gap: 20px; align-items: center; background-color: var(--surface-color); border: 1px solid var(--border-color); border-radius: 15px; padding: 15px; }
.cart-item-image img { width: 100px; height: 60px; object-fit: cover; border-radius: 8px; }
.cart-item-info h3 { font-size: 20px; margin: 0; }
.cart-item-info .tag { font-size: 12px; color: var(--text-muted-color); }
.cart-item-price { font-size: 18px; font-weight: 700; text-align: right; }
.cart-item-remove .remove-btn { background: none; border: 1px solid #ff4d4d; color: #ff4d4d; width: 35px; height: 35px; border-radius: 50%; font-size: 16px; transition: all 0.3s ease; }
.cart-item-remove .remove-btn:hover { background-color: #ff4d4d; color: var(--text-color); transform: scale(1.1); }
.cart-summary { margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--border-color); display: flex; flex-direction: column; align-items: flex-end; gap: 15px; }
.cart-summary .total { font-size: 24px; font-weight: 700; }
.cart-summary .total span { color: var(--primary-color); }
.ticket-view-section { padding: 150px 0; }
.chat-container { max-width: 900px; margin: 0 auto; background-color: var(--surface-color); border: 1px solid var(--border-color); border-radius: 20px; overflow: hidden; }
.chat-box { padding: 20px; max-height: 60vh; overflow-y: auto; display: flex; flex-direction: column; gap: 20px; }
.chat-message { display: flex; flex-direction: column; max-width: 75%; }
.message-author { font-size: 0.9rem; font-weight: 500; margin-bottom: 5px; }
.message-content { padding: 15px; border-radius: 15px; line-height: 1.6; }
.message-time { font-size: 0.75rem; color: var(--text-muted-color); margin-top: 8px; }
.user-reply { align-self: flex-start; }
.user-reply .message-author { color: var(--text-color); }
.user-reply .message-content { background-color: #2a2a2e; border-radius: 0 15px 15px 15px; }
.user-reply .message-time { text-align: left; }
.admin-reply { align-self: flex-end; }
.admin-reply .message-author { text-align: right; color: var(--primary-color); }
.admin-reply .message-content { background-color: var(--primary-color); color: var(--background-color); font-weight: 500; border-radius: 15px 0 15px 15px; }
.admin-reply .message-time { text-align: right; }
.reply-box { padding: 20px; border-top: 1px solid var(--border-color); }
.reply-box .form-control { background-color: var(--background-color); border: 1px solid var(--border-color); color: var(--text-color); resize: vertical; }
.ticket-create-section { padding: 150px 0; }
.form-container { max-width: 800px; margin: 0 auto; background-color: var(--surface-color); border: 1px solid var(--border-color); padding: 40px; border-radius: 20px; }
.form-group { margin-bottom: 25px; }
.form-group label { display: block; font-size: 16px; font-weight: 500; margin-bottom: 10px; color: var(--text-muted-color); }
.form-control { width: 100%; background-color: var(--background-color); border: 1px solid var(--border-color); border-radius: 10px; padding: 15px; color: var(--text-color); font-family: var(--font-main); font-size: 16px; transition: border-color 0.3s, box-shadow 0.3s; }
.form-control:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.2); }
textarea.form-control { resize: vertical; }
.form-actions { display: flex; justify-content: flex-end; gap: 15px; margin-top: 30px; }
.btn.btn-secondary { background-color: #333; color: var(--text-color); }
.btn.btn-secondary:hover { background-color: #444; }
.form-error { background-color: #ff4d4d20; border: 1px solid #ff4d4d; color: #ff4d4d; padding: 15px; border-radius: 10px; margin-bottom: 20px; }
.kb-section .store-header { margin-bottom: 60px; }
.kb-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
.kb-category-card { background-color: var(--surface-color); border: 1px solid var(--border-color); border-radius: 20px; padding: 30px; }
.kb-category-card h3 { font-size: 24px; margin-bottom: 10px; border-left: 3px solid var(--primary-color); padding-left: 15px; }
.kb-category-card p { color: var(--text-muted-color); margin-bottom: 20px; min-height: 48px; }
.kb-article-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.kb-article-list li a { color: var(--text-color); text-decoration: none; display: flex; align-items: center; gap: 10px; padding: 8px; border-radius: 8px; transition: background-color 0.3s, color 0.3s; }
.kb-article-list li a:hover { background-color: rgba(255,255,255,0.05); color: var(--primary-color); }
.kb-article-section .container { max-width: 800px; }
.kb-article-header { text-align: center; margin-bottom: 50px; }
.back-to-kb { color: var(--text-muted-color); text-decoration: none; display: inline-block; margin-bottom: 20px; transition: color 0.3s; }
.back-to-kb:hover { color: var(--primary-color); }
.kb-article-breadcrumb { color: var(--primary-color); font-weight: 700; }
.kb-article-header h1 { font-size: 42px; }
.kb-article-meta { font-size: 14px; color: var(--text-muted-color); }
.kb-article-content { background-color: var(--surface-color); border: 1px solid var(--border-color); border-radius: 20px; padding: 40px; line-height: 1.8; }
.kb-article-content h1, .kb-article-content h2, .kb-article-content h3 { margin-top: 30px; margin-bottom: 15px; }
.kb-article-content ol, .kb-article-content ul { padding-left: 20px; margin-bottom: 20px; }
.kb-article-content li { margin-bottom: 10px; }
.kb-article-content a { color: var(--primary-color); }

/* --- MOBİL UYUMLULUK --- */
.mobile-menu-toggle { display: none; }
@media (max-width: 992px) {
    .content { margin-left: 0; padding: 0 20px; }
    .container { padding: 0 20px; }
    .brand-logo { left: 50%; transform: translateX(-50%); top: 20px; }
    .sidebar-nav { left: -100px; transition: left 0.4s cubic-bezier(0.76, 0, 0.24, 1); }
    .sidebar-nav.active { left: 20px; }
    .mobile-menu-toggle { display: flex; position: fixed; top: 20px; left: 20px; z-index: 1002; background: var(--surface-color); border: 1px solid var(--border-color); color: var(--text-color); width: 50px; height: 50px; border-radius: 50%; justify-content: center; align-items: center; font-size: 20px; }
    .site-footer { margin-left: 0; }
    .site-footer .container { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
    .section-title { font-size: 36px; }
    .hero-section h1 { font-size: clamp(2rem, 10vw, 3rem); }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-item { grid-column: auto !important; grid-row: auto !important; }
    .product-grid { grid-template-columns: 1fr; }
    .announcement-grid, .team-grid, .kb-grid { grid-template-columns: 1fr; }
    .controls-form { justify-content: center; }
    .modal-body { grid-template-columns: 1fr; text-align: center; }
    .profile-header { flex-direction: column; text-align: center; }
    .admin-link { margin-left: 0 !important; margin-top: 20px; }
    .profile-tabs { justify-content: center; flex-wrap: wrap; }
    .cart-item { grid-template-columns: 80px 1fr; grid-template-areas: "image info" "image price" "image remove"; }
    .cart-item-image { grid-area: image; }
    .cart-item-info { grid-area: info; }
    .cart-item-price { grid-area: price; text-align: left; margin-top: 10px; }
    .cart-item-remove { grid-area: remove; justify-self: start; margin-top: 10px; }
}

/* --- YENİ EKLENEN VİDEO STİLLERİ --- */
.modal-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    width: 100%;
    border-radius: 15px; /* Resimle aynı yuvarlaklık */
    margin-bottom: 20px; /* Alttaki içerikle arasında boşluk */
}
.modal-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* Eğer video varsa, 2 sütunlu yapıyı tek sütuna düşür */
.modal-body:has(.modal-video-wrapper) {
    grid-template-columns: 1fr;
}


/* --- YENİ ÜRÜN DETAY SAYFASI STİLLERİ --- */
.script-details-section .container {
    max-width: 1100px;
}
.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
.details-media {
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
}
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.details-image {
    width: 100%;
    height: auto;
    display: block;
}
.details-info {
    display: flex;
    flex-direction: column;
}
.details-category {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
}
.details-title {
    font-size: 42px;
    margin: 0;
    margin-bottom: 20px;
    line-height: 1.2;
}
.details-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}
.details-rating .stars {
    color: #ffc107;
    font-size: 1.3rem;
}
.details-rating .review-count {
    color: var(--text-muted-color);
}
.purchase-box {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 25px;
    margin-top: auto; /* Kutuyu en alta yaslar */
}
.details-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.purchase-box .btn {
    width: 100%;
    padding: 0 25px; /* Buton yüksekliğini koru */
}
.details-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}
.script-description h2 {
    font-size: 28px;
    margin-bottom: 20px;
}
.script-description {
    line-height: 1.8;
    color: var(--text-muted-color);
}
.script-description p,
.script-description ul,
.script-description ol {
    margin-bottom: 20px;
}
.script-description h3 {
    font-size: 22px;
    color: var(--text-color);
    margin-top: 30px;
    margin-bottom: 15px;
}
.script-description ul, .script-description ol {
    padding-left: 20px;
}
.script-description li {
    margin-bottom: 10px;
}
.script-description a {
    color: var(--primary-color);
}
.reviews-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}
.review-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.review-item {
    display: flex;
    gap: 15px;
}
.review-avatar img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}
.review-content {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 15px;
    width: 100%;
}
.review-content .stars.small { font-size: 1rem; }
.review-content p { margin: 8px 0; line-height: 1.6; }
.review-author { font-weight: 700; }
.review-time {
    font-size: 12px;
    color: var(--text-muted-color);
}
/* Mobil Cihazlar İçin */
@media (max-width: 992px) {
    .details-grid {
        grid-template-columns: 1fr;
    }
    .details-info {
        margin-top: 20px;
    }
    .purchase-box {
        margin-top: 20px;
    }
    .details-content-wrapper {
        grid-template-columns: 1fr;
    }
    .reviews-section {
        margin-top: 30px;
    }
}