/*
Theme Name: NameBeatz
Theme URI: 
Author: Ayşegül Aleyna Ünsal
Description: Spotify estetiğinden ilham alan, mor vurgulu, modern dark mode teması.
Version: 3.0
Text Domain: namebeatz
*/

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

/* =========================================
   1. KÖK DEĞİŞKENLER VE TEMEL SIFIRLAMA
   ========================================= */
:root {
    --color-bg: #000000;           /* Spotify Ana Koyu Arka Plan */
    --color-surface: #1E1E1E;      /* Kartlar ve Yüzeyler */
    /* --color-accent: #FF7A00;       Ateş Turuncusu */
    --color-accent: #FFFFFF;       /* Ateş Turuncusu */
    --color-primary-text: #FFFFFF; /* Beyaz Metin */
    --color-secondary-text: #B3B3B3; /* Açık Gri Metin */
    --color-highlight: #7546A1;    /* Mor Vurgu */
    --color-header-bg: #000000;    /* Header Rengi */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg);
    color: var(--color-primary-text);
    font-family: var(--font-primary);
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.1;
    color: var(--color-primary-text);
    font-family: var(--font-heading);
}

a {
    color: var(--color-primary-text); 
    text-decoration: none;
    transition: color 0.2s, opacity 0.2s;
}

a:hover {
    color: var(--color-accent);
}

.site-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5px;
}

.section-padding {
    padding: 60px 0;
}

/* =========================================
   2. HEADER (ÜST BÖLÜM)
   ========================================= */
#site-header {
    background-color: var(--color-header-bg);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 30px;
    position: relative; 
}

/* Logo */
.site-branding {
    flex-shrink: 0;
}

.site-branding .logo-icon {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.site-branding a:hover .logo-icon {
    transform: rotate(3deg) scale(1.05);
}

.site-logo-text {
    font-family: var(--font-heading) !important;
    font-weight: 500;
    letter-spacing: -1px;
    font-size: 1.0em;
    color: var(--color-primary-text);
    margin-left: 10px;
}

.site-title a {
    display: flex;
    align-items: center;
    color: var(--color-primary-text);
}

/* Navigasyon Alanı */
.header-center-area {
    display: flex; 
    align-items: center;
    gap: 30px;
    margin: 0 auto;
}

.main-menu {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu li {
    position: relative;
}

.main-menu li a {
    color: var(--color-primary-text);
    font-weight: 600;
    padding: 10px 5px;
    position: relative;
    font-size: 0.9em;
    white-space: nowrap; 
}

/* Menü Alt Çizgi Animasyonu */
.main-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--color-primary-text);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-menu li a:hover::after,
.main-menu li.current-menu-item a::after {
    width: 100%;
}

/* Alt Menü (Dropdown) */
.main-menu ul.sub-menu, 
.main-menu ul.children {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1A1A1A;
    min-width: 200px; 
    list-style: none;
    margin: 0;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7); 
    z-index: 1001; 
}

.main-menu li:hover > ul.sub-menu,
.main-menu li:hover > ul.children {
    display: block; 
}

.main-menu ul.sub-menu li a {
    padding: 8px 20px; 
    color: var(--color-secondary-text); 
    transition: background-color 0.2s, color 0.2s;
}

.main-menu ul.sub-menu li a:hover {
    background-color: #282828; 
    color: var(--color-primary-text); 
}

.main-menu ul.sub-menu li a::after {
    display: none; /* Alt menüde alt çizgi olmasın */
}

/* Header İkonlar */
.header-icons.menu-append-icons {
    display: flex; 
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.header-icon {
    font-size: 1.3rem;
    color: var(--color-primary-text);
    transition: color 0.25s ease, transform 0.25s ease;
}

.header-icon:hover {
    transform: scale(1.1);
}

/* Header Sağ Taraf (CTA) */
.header-tools.right-side-tools {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.header-cta {
    background: linear-gradient(to right, #ff4d4d, #ff9933);
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 10px 30px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 77, 77, 0.4); 
}

.header-cta:hover {
    background-color: #FF6A00;
    color: var(--color-accent);
    transform: scale(1.05);
}

/* Hamburger Menü (Varsayılan Gizli) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--color-primary-text);
    z-index: 1010;
    margin-left: 20px;
}



/* =========================================
   TOP BAR (EN ÜST ŞERİT) TASARIMI
   ======================================== */
.namebeatz-top-bar {
    background-color: #050505;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    position: relative; 
    z-index: 1001;
    
    /* Önemli: Eski border varsa iptal ediyoruz */
    border-bottom: none; 
}

/* Çizgiyi "Pseudo Element" olarak ekliyoruz */
.namebeatz-top-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    
    /* 1. ADIM: Yüksekliği 1px veriyoruz */
    height: 1px; 
    
    /* 2. ADIM: Rengi ayarlıyoruz (Gradient Turuncu) */
    background: linear-gradient(90deg, 
        rgba(5,5,5,0) 0%, 
        rgba(255, 106, 0, 0.8) 50%,  /* Ortası parlak turuncu (%80 opaklık) */
        rgba(5,5,5,0) 100%
    );

    /* 3. ADIM (SİHİR): Çizgiyi dikey eksende %50 eziyoruz */
    /* Bu sayede 0.5px gibi görünüyor */
    transform: scaleY(0.5);
    transform-origin: bottom;

    /* Hafif bir parlama (Glow) ekleyelim ama abartmadan */
    box-shadow: 0 1px 2px rgba(255, 106, 0, 0.15);
}
.nb-top-container {
    /* Bu genişlik sitenin genel genişliğiyle aynı olmalı ki Logo ile hizalansın */
    width: 100%;
    max-width: 1200px; /* Standart laptop genişliği */
    margin: 0 auto;
    padding: 0 20px;
    
    display: flex;
    justify-content: space-between; /* Sola ve sağa yasla */
    align-items: center;
}

/* --- SOL YAZI ALANI --- */
.nb-top-left {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 12px; /* Daha kibar, küçük punto */
    font-weight: 300;
    letter-spacing: 0.5px; /* Harf aralığını biraz açtık, okunaklı olsun */
    color: #e0e0e0; /* Ana metin açık gri */
    
    /* Uzun metin taşarsa "..." koysun (Mobilde patlamasın diye) */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70%; /* Ekranın %70'inden fazlasını kaplamasın */
}

/* Dillerin rengini biraz kısalım ki ana mesaj öne çıksın */
.nb-langs {
    color: #888; 
    margin-left: 5px;
}

/* --- SAĞ TRANSLATE ALANI --- */
.nb-top-right {
    display: flex;
    align-items: center;
}

/* GTranslate Dropdown Özelleştirme */
/* Varsayılan çirkin kutuyu modernize ediyoruz */
.nb-top-right select {
    background-color: transparent;
    color: #b3b3b3;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    outline: none;
    text-align: right;
    padding-right: 0;
}

.nb-top-right select:hover {
    color: #fff;
}

/* Dropdown içindeki seçenekler (Siyah zemin) */
.nb-top-right select option {
    background-color: #000;
    color: #fff;
}

/* --- MOBİL İÇİN DÜZENLEME --- */
@media (max-width: 768px) {
    .namebeatz-top-bar {
        height: auto; /* Mobilde yükseklik esnek olsun */
        padding: 5px 0;
    }
    
    .nb-top-container {
        flex-direction: column; /* Alt alta geçsinler */
        gap: 5px;
    }
    
    .nb-top-left {
        max-width: 100%;
        text-align: center;
        font-size: 11px;
        white-space: normal; /* Mobilde alt satıra inebilsin */
    }
    
    .nb-langs {
        display: none; /* Mobilde kalabalık yapmasın, dilleri gizle */
    }
}



/* =========================================
   3. ANASAYFA BİLEŞENLERİ
   ========================================= */

/* Hero Video Alanı */
.namebeatz-hero {
    position: relative; 
    min-height: 250px; 
    background: var(--color-bg); 
    overflow: hidden; 
}

.hero-video-wrapper {
    position: absolute; 
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1; 
}

.hero-video {
    width: 100%; height: 100%;
    object-fit: cover; 
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.hero-content {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%); 
    width: 100%; 
    max-width: 700px;
    padding: 0 40px; 
    text-align: center;
    z-index: 3; 
}

.hero-title {
    font-size: 1.5em;
    font-weight: 100;
    letter-spacing: -1.5px;
    margin-bottom: 15px;
    text-shadow: 0 0 20px var(--color-bg);
}

.hero-subtitle {
    font-size: 1em;
    font-weight: 100;
    color: var(--color-secondary-text);
    margin-bottom: 40px;
}

/* Güvenilir Özellikler (Trust Features) */
.trust-features-section {
    background-color: var(--color-surface);
    padding: 60px 0;
    margin-top: 80px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); 
}

.trust-features-inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-item {
    flex-basis: 25%;
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 15px;
    display: block;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 100;
    margin-bottom: 10px;
}

.feature-description {
    font-size: 0.8rem;
    font-weight: 100;
    color: var(--color-secondary-text); 
    line-height: 1.6;
}

/* Akordiyon Bölümü */
.namebeatz-accordion {
    padding-top: 10px;
    padding-bottom: 10px;
} 

.accordion-grid-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin: 0 auto;
}

.accordion-column {
    width: 50%;
}

.accordion-title {
    font-size: 1.2em;
    font-weight: 100;
    margin-bottom: 30px;
}

.accordion-item {
    margin-bottom: 10px;
    border: 1px solid #333;
    border-radius: 6px;
    background-color: var(--color-surface);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 15px 20px;
    background-color: transparent;
    color: var(--color-primary-text);
    font-size: 0.8em;
    font-weight: 100;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

.accordion-header:hover, .accordion-header.active {
    background-color: #282828;
}

.accordion-header::after {
    content: '+';
    font-size: 1.2em;
    font-weight: 900;
}

.accordion-header.active::after {
    content: '-';
}

.accordion-content {
    max-height: 0;
    font-size: 0.7em;
    font-weight: 100;
    padding: 0 0px;
    background-color: #1f1f1f;
    color: var(--color-secondary-text);
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.accordion-content.active {
    max-height: 500px;
    padding: 15px 0px;
}

/* Footer Öncesi CTA (Spotify Tarzı) */
.namebeatz-footer-cta {
    background-color: var(--color-surface); 
    margin-bottom: 0; 
    border-top: 1px solid #333; 
    position: relative; 
    overflow: hidden;
    padding: 50px 0;
    text-align: center;
}

.namebeatz-footer-cta::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 1%, transparent 60%),
                      repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 10%),
                      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 10%);
    opacity: 0.8; 
    z-index: 1; 
}

.namebeatz-footer-cta > * {
    position: relative;
    z-index: 2; 
}

.cta-title {
    font-size: 1.8em;
    font-weight: 900;
    margin-bottom: 3px;
}

.cta-subtitle {
    font-size: 0.9em;
    color: var(--color-secondary-text);
    margin-bottom: 20px;
}

.cta-buttons-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 450px;
    margin: 0 auto;
}

.cta-contact-button {
    background: linear-gradient(to right, #ff4d4d, #ff9933);
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 10px 30px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 77, 77, 0.4); 
}

.green-cta-v2 {
    background-color: var(--color-accent);
    color: var(--color-primary-text) !important; 
    padding: 10px 20px; 
    border-radius: 500px; 
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8em; 
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.4);
    transition: background-color 0.2s;
}

.green-cta-v2:hover {
    background-color: #ff9633; 
    color: var(--color-bg) !important;
}

/* =========================================
   4. SAYFA ŞABLONLARI (Hakkımda, SSS, İletişim, Fiyat)
   ========================================= */

/* Hakkımda Sayfası */
.container-narrow {
    max-width: 900px; 
    margin: 0 auto;
    padding: 0 20px;
}

.namebeatz-page-hero {
    padding: 10px 0;
    margin-bottom: 30px; 
    text-align: center;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 1.2em;
    font-weight: 100;
    color: var(--color-primary-text);
}

.identity-logo-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.about-page-brand-name {
    font-family: var(--font-heading); 
    font-size: 2em;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px; 
}

.about-content-grid p {
    font-size: 0.8em;
    color: var(--color-secondary-text);
    font-weight: 100;
}

.value-card {
    background-color: var(--color-surface); 
    padding: 25px; 
    border-radius: 6px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* Fiyatlandırma Sayfası */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 25px;
    margin: 50px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.plan-card {
    background-color: var(--color-surface); 
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    border: 2px solid var(--color-surface); 
    min-height: 450px; 
}

.plan-card:hover, .plan-card.highlight {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--color-accent); 
}

.plan-card .price {
    font-size: 2.5em;
    font-weight: 900;
}

.plan-card .feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px 0;
    border-top: 1px solid #333;
    padding-top: 20px;
    flex-grow: 1; 
}

.plan-card .feature-list li::before {
    content: '✓'; 
    color: var(--color-accent); 
    font-weight: 800;
    margin-right: 10px;
}

.plan-card .select-button {
    background-color: var(--color-primary-text); 
    color: var(--color-bg) !important; 
    padding: 15px 30px; 
    border-radius: 500px; 
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    display: block;
}

.plan-card .select-button.accent {
     background-color: var(--color-accent);
     color: var(--color-primary-text) !important;
}

/* --- GENEL İLETİŞİM SAYFASI DÜZENİ --- */

/* Ana Grid Yapısı */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr; /* 3fr yerine 2fr yaparak sağ tarafa biraz daha yer açtık */
    gap: 30px;
    align-items: start; /* Sidebar'ın form kadar uzamasını engeller, içeriği kadar yer kaplar */
}

/* --- SOL TARA (FORM ALANI) --- */
.contact-form-area {
    /*background-color: #1a1a1a; /* Koyu arka plan eklendi */
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #333; /* Hafif çerçeve */
}

.form-heading {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.main-contact-form input, 
.main-contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #2a2a2a;
    border: 1px solid #333;
    border-radius: 6px;
    color: #fff; /* Değişken yerine direkt beyaz */
    font-family: 'Montserrat', sans-serif;
    outline: none;
    box-sizing: border-box; /* Padding taşmasını önler */
}

.main-contact-form input:focus, 
.main-contact-form textarea:focus {
    border-color: #555; /* Tıklanınca çerçeve rengi */
}

.main-contact-form textarea {
    min-height: 150px; /* Mesaj kutusu varsayılan yüksekliği */
    resize: vertical;
}

/* --- SAĞ TARAF (SIDEBAR) --- */
.contact-info-sidebar {
    /*background-color: #1a1a1a;*/
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    gap: 40px; /* İki kutu (İletişim ve SSS) arasındaki boşluk */
}

/* Sidebar Başlıkları (Hem h2 hem h3 için) */
.contact-info-sidebar h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    margin-top: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* Sidebar içindeki paragraflar */
.contact-info-sidebar .info-card p {
    color: #b3b3b3 !important;
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Mail Linklerinin Rengi */
.contact-info-sidebar .info-card p a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info-sidebar .info-card p a:hover {
    color: #FFA733; /* NameBeatz Turuncusu */
}

/* İki bölümü ayıran çizgi (İlk info-card'ın altına) */
.contact-info-sidebar .info-card:first-child {
    border-bottom: 1px solid #333;
    padding-bottom: 30px;
}

/* --- BUTON STİLİ --- */
.submit-button {
    display: inline-block;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #777;
    padding: 12px 35px;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    border-color: #fff !important;
    background-color: rgba(255,255,255,0.1) !important;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(157,78,221,0.4);
}



/* SSS (FAQ) Sayfası */
.faq-item {
    border-bottom: 1px solid #333;
    padding: 20px 0;
    cursor: pointer;
    transition: background-color 0.2s;
}

.faq-question {
    font-size: 1.15em;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    color: var(--color-accent);
    font-size: 1.5em;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    color: var(--color-secondary-text);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 15px;
}




/* =========================================
   6. FOOTER & SOSYAL BAR
   ========================================= */

/* Üst Footer (Neon) */
.upper-footer-features {
    background-color: #B0F60A;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    color: #121212;
    font-weight: 500;
    padding: 20px 0;
}

/* Ana Footer */
#site-footer {
    background-color: var(--color-header-bg);
    color: var(--color-secondary-text);
    border-top: 1px solid var(--color-surface); 
    padding-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-top: 1px solid #333;
}






/* 1. Genel Bölüm ve Arkaplan Ayarları */
.namebeatz-hero {
    /* Görseldeki gibi arkaplanı siyah yapın */
    background-color: #000; 
    /* İçeriği dikey ortalamak için Flexbox kullanın */
    display: flex;
    flex-direction: column;
    align-items: center; /* Yatayda ortala */
    justify-content: center; /* Dikeyde ortala (gerekirse) */
    /* Ekranı doldurması için min-height ayarlanabilir */
    color: white; /* İçindeki tüm metinler beyaz olsun */
}

/* 2. Video Grid Konteyneri */
.video-grid-container {
    display: flex;
    gap: 15px; /* Kartlar arasındaki boşluk */
    max-width: auto; /* Maksimum genişlik */
    width: 100%;
    margin-bottom: 40px; /* CTA butonu ile arasındaki boşluk */
    justify-content: center; /* Kartları ortaya hizala */
}

/* 3. Video/Görüntü Kartları */
.video-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px; /* Yuvarlatılmış köşeler */
    flex: 0 1 190px; /* Her kart için sabit genişlik (ekran büyüklüğüne göre ayarlanabilir) */
    aspect-ratio: 9 / 16; /* Dikey video/story formatı */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.card-media {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Görüntünün kartı doldurmasını sağla */
    display: block;
}

/* Kart üzerindeki metinler ve overlay */
.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 10px; /* İç boşluk */
    color: white;
    z-index: 10; 
    /* Metinleri altta tutmak için */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7); /* Okunurluğu artırmak için gölge */
}

.card-username {
    font-size: 0.6rem;
    font-weight: 100;
    margin-top: 5px; /* Diğer metinle arasına boşluk */
}

/* Kartın alt kısmına koyu degrade ekleyerek metin okunurluğunu artırır */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Alttan üste doğru koyu degrade (gölge efekti) */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 50%);
}

/* 4. CTA Butonu (Sign up for free / Ücretsiz Kaydol) */
.cta-sign-up {
    /* Görseldeki turuncu-kırmızı degrade */
    background: linear-gradient(to right, #ff4d4d, #ff9933);
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 10px 30px;
    border: none;
    border-radius: 30px; /* Yuvarlak kenarlar */
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 77, 77, 0.4); 
}

.cta-sign-up:hover {
    box-shadow: 0 8px 20px rgba(255, 77, 77, 0.6);
    transform: translateY(-2px); /* Hafif yukarı kayma efekti */
}


/* Genel Font ve Arkaplan */
.pricing-section {
    color: #fff;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    padding-bottom: 30px;
    font-family: Arial, sans-serif; /* Sitenizin fontuyla değiştirebilirsiniz */
   /* === DÜZELTME BURADA === */
    display: flex;           /* Kutuyu esnek yap */
    flex-direction: column;  /* İçerikleri (başlık ve grid) alt alta diz */
    align-items: center;     /* Şimdi yatayda tam ortala */
    width: 100%;             /* Genişliği garantiye al */
}

/* 1. Başlık ve Toggle Alanı */
.pricing-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 500;
    font-weight: bold;
    margin-bottom: 15px;
}

.pricing-subtitle {
    font-size: 0.8rem;
    font-weight: 100;
    color: #aaa;
    margin-bottom: 30px;
}

/* Toggle Switch Stilleri */
.billing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 500;
}

.toggle-label {
    color: #ccc;
}

.save-badge {
    background-color: #333; /* Veya yeşil tonu */
    color: #fff;
    font-size: 1rem;
    font-weight: 300;
    padding: 3px 8px;
    border-radius: 5px;
    margin-left: 5px;
    font-weight: bold;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: #e91e63; /* Pembe/Kırmızı ton */
}

input:checked + .slider:before {
    transform: translateX(22px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* 2. Fiyatlandırma Kartları Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
     margin-bottom: 10px
}

/* 3. Kart Stilleri */
.pricing-card {
    background-color: #1a1a1a; /* Kart arkaplanı */
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #1a1a1a; /* Normal kenarlık */
    position: relative;
    overflow: hidden; /* Badge için */
    align-items: center; /* Kart içindeki her şeyi ortala */
}

/* === BURASI DÜZENLENDİ (KART BAŞLIĞI) === */
.pricing-card h3 {
    font-size: 1.2rem;   /* İsteğiniz üzerine düzenlendi */
    font-weight: 500;    /* İsteğiniz üzerine düzenlendi */
    margin-top: 0;
}

/* === BURASI DÜZENLENDİ (KART AÇIKLAMASI) === */
.plan-description {
    color: #bbb;
    font-size: 1rem;     /* İsteğiniz üzerine düzenlendi */
    font-weight: 300;    /* İsteğiniz üzerine düzenlendi */
    min-height: 40px; /* Açıklamaların hizalı durması için */
}

.price-info {
    margin-top: 20px;
    margin-bottom: 10px;
}

.price {
    font-size: 1.2rem;
    font-weight: 500;
    font-weight: bold;
}

.per-month {
    color: #aaa;
    font-size: 1rem;
    font-weight: 500;
    margin-left: 5px;
}

.plan-note {
    font-size: 13px;
    color: #aaa;
    min-height: 40px; /* Hizalama için */
}


/* 5. Özellik Listesi (Checkmark) */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    /* font-size: 14px; <-- Buradaki satır .features-list li'ye taşındı */
    color: #ccc;
}

/* === BURASI DÜZENLENDİ (ÖZELLİK LİSTESİ İÇERİĞİ) === */
.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 0.8rem;   /* İsteğiniz üzerine düzenlendi */
    font-weight: 100;    /* İsteğiniz üzerine düzenlendi */
}

/* Checkmark ve X ikonları */
.features-list li::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 12px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Yeşil checkmark (SVG data URI kullandım) */
.features-list li.included::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234CAF50'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
}

/* Kırmızı X (SVG data URI kullandım) */
.features-list li.excluded::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23F44336'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z'/%3E%S%3C/svg%3E");
    color: #888; /* X olanların metnini soluk yapabiliriz */
}

/* 6. Vurgulu Kart (Pro Plan) */
.pricing-card.is-popular {
    border-color: #e91e63; /* Pembe kenarlık */
    /* Hafif yukarı kaldırma efekti */
    transform: scale(1.03); 
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.15);
}

/* 7. Rozet (Badge) Stilleri */
.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 11px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    color: #000;
}

.popular-badge {
    background-color: #e91e63; /* Pembe */
    color: #fff;
}

.best-value-badge {
    background-color: #ccc; /* Gri */
    color: #000;
}

/* =========================================
    PLAY LISTLER
    ======================================== */
    
    
    /* =========================================
    DROPDOWN MENÜ TASARIMI
   ======================================== */

.suno-filter-container {
    display: flex;
    justify-content: center;
    gap: 15px; /* Dropdownlar arası boşluk */
    margin-bottom: 30px;
    padding: 0 20px;
    flex-wrap: wrap; /* Mobilde alt alta geçsin */
}

/* Kapsayıcı (Ok ikonunu konumlandırmak için) */
.suno-select-wrapper {
    position: relative;
    width: 180px; /* Dropdown genişliği */
}

/* Kutunun Kendisi (Şeffaf) */
.suno-select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    
    /* --- ŞEFFAFLIK AYARLARI --- */
    background-color: transparent;        /* Arka plan tamamen şeffaf */
    border: 1px solid rgba(0,0,0); /* Çerçeve: %30 görünürlükte beyaz çizgi */
    color: #fff;                          /* Yazı rengi: Beyaz */
    /* -------------------------- */
    
    border-radius: 8px;
    padding: 10px 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

/* Üzerine Gelince (Hover) */
.suno-select:hover {
    border-color: #000; /* Çerçeve tam beyaz olsun */
    background-color: rgba(0,0,0); 
}

/* Tıklayınca (Focus) */
.suno-select:focus {
    border-color: #000000;
    box-shadow: 0 0 0 2px rgba(0, 0, 0);
}

/* --- ÖNEMLİ: AÇILAN LİSTE RENGİ --- */
/* Bunu eklemezsen liste beyaz/sisteme göre çıkar */
.suno-select option {
    background-color: #000000; /* Liste arka planı Siyah */
    color: #ffffff; /* Liste yazısı Beyaz */
}

/* Özel Ok İşareti (CSS ile) */
.select-arrow {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #fff; /* Ok rengi turuncu */
    font-size: 0.8rem;
    pointer-events: none; /* Tıklamayı engelleme, select çalışsın */
}

/* Temizle Butonu */
.suno-reset-btn {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
    height: 42px; /* Dropdownlarla aynı yükseklik */
}
.suno-reset-btn:hover {
    background: #000000;
    color: #fff;
}

/* MOBİL UYUMLULUK */
@media (max-width: 600px) {
    .suno-select-wrapper {
        width: 100%; /* Mobilde tam genişlik */
    }
}


/* Ana Yapı */
.suno-discover-section {
    background-color: #000000;
    color: #fff;
    
    overflow: hidden;
    position: relative;
}
.suno-section-header {
    text-align: center; max-width: 700px; margin: 0 auto 40px auto; padding: 0 20px;
}
.suno-title-main { font-size: 1.5rem; font-weight: 600; margin-bottom: 10px; color:#fff; }
.suno-subtitle { font-size: 0.9rem; font-weight: 300; color: #b3b3b3; }

/* Filtre Butonları (Sadece Yazı) */
.suno-filter-container { 
    display: flex; 
    justify-content: center; 
    margin-bottom: 30px; 
    flex-wrap: wrap; }
.suno-filter-btn {
    background: transparent; 
    border: none; 
    padding: 5px 15px; 
    margin: 0 5px; c
    ursor: pointer;
    transition: all 0.3s ease; 
    font-size: 0.9rem;
    font-weight: 300;
    color: #b3b3b3;

}
.suno-filter-btn:hover, .suno-filter-btn.active {
    color: #fff; transform: scale(1.05);
}

/* --- SLIDER YAPISI --- */
.suno-slider-wrapper {
    position: relative;
    width: 100%;
    /* Butonların dışarı taşmasını önlemek için padding */
    padding: 0 50px; 
    box-sizing: border-box;
    max-width: 1300px;
    margin: 0 auto;
}

.suno-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 20px;
    -ms-overflow-style: none; scrollbar-width: none;
    scroll-behavior: smooth; /* CSS ile de destekle */
}
.suno-scroll-container::-webkit-scrollbar { display: none; }

.suno-grid { 
    display: grid;                  /* Flex yerine Grid */
    grid-template-rows: repeat(2, 1fr); /* Tam 2 satır olsun */
    grid-auto-flow: column;         /* Ögeler aşağı değil sağa doğru aksın */
    gap: 20px;                      /* Kartlar arası boşluk */
    width: max-content;             /* İçerik kadar genişle (Scroll için şart*/
    
}

/* --- OK BUTONLARI (Sadece İkon) --- */
.suno-nav-btn {
    position: absolute;
    top: 45%; 
    transform: translateY(-50%);
    width: 40px; 
    height: 40px;
    background: transparent; /* Arkaplan şeffaf */
    border: none; /* Çerçeve yok */
    color: #fff;
    cursor: pointer;
    z-index: 50;
    display: flex; 
    align-items: center; 
    justify-content: center;
    transition: all 0.3s ease;
    /* İkonların daha net görünmesi için hafif gölge ekleyelim */
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.suno-nav-btn:hover { 
    background: transparent; /* Hover'da renk değişmesin */
    transform: translateY(-50%) scale(1.2); /* Sadece biraz büyüsün */
}

.suno-nav-btn svg { 
    width: 30px; /* Arkaplan olmadığı için ikonu biraz büyüttüm */
    height: 30px; 
    fill: currentColor; 
}

/* Okların Konumu */
.prev-btn { left: 0; }
.next-btn { right: 0; }


/* --- KART TASARIMI --- */
.suno-card {
    width: 220px;           /* Genişliği küçülttük */
    /* flex: 0 0 280px;  <-- Bu satırı silebilirsin, artık grid kullanıyoruz */
    position: relative;
    display: block;
}
.suno-art-wrapper {
    position: relative; width: 100%; aspect-ratio: 1 / 1;
    border-radius: 12px; overflow: hidden; background-color: #222;
}
.suno-album-art { width: 100%; height: 100%; object-fit: cover; }

/* Play Butonu (Sadece İkon) */
.suno-play-btn {
    position: absolute; 
    width: 35px;        /* 40px yerine 35px */
    height: 35px;
    top: 10px;          /* Kenara biraz daha yaklaştıralım */
    left: 10px;
    border-radius: 50%; 
    background: transparent; /* Siyah daire kalktı */
    border: none; /* Çizgi kalktı */
    display: flex; 
    align-items: center; 
    justify-content: center;
    cursor: pointer; 
    opacity: 1; 
    z-index: 10;
    transition: all 0.3s ease;
    /* Resim açık renkse ikon kaybolmasın diye gölge */
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.suno-play-btn:hover { 
    background: transparent; /* Hover'da siyahlaşmasın */
    transform: scale(1.15); /* Hafif büyüme */
}

.suno-play-btn svg { 
   width: 24px;        /* İkonu da küçülttük */
    height: 24px;
    fill: #fff; 
    margin-left: 2px;
}

.suno-play-btn.playing svg { 
    margin-left: 0; 
}

/* İstatistikler (SOL ALT) */
.suno-stats {
    position: absolute; bottom: 12px; left: 15px; z-index: 9;
    font-size: 12px; color: #fff; font-weight: 500; display: flex; gap: 10px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

.suno-info { padding-top: 12px; display: flex; flex-direction: column; }
.suno-title {font-size: 14px; font-weight: 500; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.suno-artist { font-size: 12px; color: #aaa; margin-top: 2px; }

/* Filtreleme */
.suno-card.suno-hidden { display: none !important; }
.suno-card.suno-visible { display: block !important; animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* =========================================
   YORUMLAR BÖLÜMÜ (4'lü Grid + Responsive)
   ========================================= */

/* 1. Ana Bölüm Wrapper */
.namebeatz-review-section-wrapper {
    padding: 60px 0;
    background-color: #000;
}

/* 2. Grid Yapısı (5'li) */
.namebeatz-review-card-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 3. Kartların Genel Ayarları */
.namebeatz-review-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.namebeatz-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* --- TİP 1: Görselli Kart (Image Card) --- */
.namebeatz-image-card {
    background-color: #222;
    position: relative;
    justify-content: flex-end;
}

.namebeatz-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.namebeatz-card-footer {
    position: relative;
    z-index: 3;
    color: white;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    text-align: left;
}

.namebeatz-card-title {
    font-size: 1.2rem;
    margin: 0;
}

.namebeatz-card-artist {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* --- TİP 2: Beyaz Yazı Kartı (Text Review) --- */
.namebeatz-text-review-card {
    background-color: #ffffff;
    color: #121212;
    padding: 30px;
}

.namebeatz-rating-stars {
    color: #FFD700;
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.namebeatz-review-text {
    font-size: 0.8em;
    font-weight: 100;
    line-height: 1.6;
    font-style: italic;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 9;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.namebeatz-reviewer-footer {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.namebeatz-reviewer-name {
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #000;
    margin: 0;
}

/* --- TİP 3: Siyah Yazı Kartı (Dark Review) --- */
.namebeatz-dark-review-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    padding: 25px;
    color: #fff;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}

.namebeatz-dark-review-card .namebeatz-review-text {
    color: #e0e0e0;
    font-style: normal;
    font-weight: 500;
    font-size: 0.8em;
    font-weight: 100;
}

.namebeatz-dark-review-card .namebeatz-reviewer-footer {
    border-top-color: #444;
}


/* --- Genel Kapsayıcı /// NASIL ÇALIŞIR --- */

body, .nb-dark-wrapper {
    color: #e0e0e0 !important;
    font-family: 'Inter', sans-serif, Arial;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Sayfanın tam genişlikte siyah olması için */
.nb-dark-wrapper {
    width: 100%;
    padding-bottom: 10px;
    overflow-x: hidden;
}

/* --- Hero Bölümü --- */
.nb-hero-section {
    padding: 20px 0;
    display: flex;
    align-items: center;
}

.nb-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.nb-main-title {
    font-size: 1.5rem !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Gradient Metin Efekti */
.nb-gradient-text {
    background: linear-gradient(to right, #9d4edd, #ff4e8e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: bold;
}

.nb-hero-desc {
    font-size: 1rem;
    font-weight: 100;
    color: #a0a0a0 !important;
    margin-bottom: 0px;
    max-width: 500px;
}

/* --- Butonlar --- */
a.nb-button-primary {
    display: inline-block;
    background-color: transparent !important;
    color: #ffffff !important;
    border: 1px solid #777 !important;
    padding: 13px 30px;
    font-size: 0.8rem;
    font-weight: 100;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

a.nb-button-primary:hover {
    border-color: #fff !important;
    background-color: rgba(255,255,255,0.1) !important;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.4);
}

a.nb-button-outline {
    display: inline-block;
    background-color: transparent !important;
    color: #a0a0a0 !important;
    border: 1px solid #333 !important;
    padding: 12px 30px;
    font-size: 0.8rem;
    font-weight: 100;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 15px;
}

a.nb-button-outline:hover {
    border-color: #777 !important;
    color: #fff !important;
}

/* --- Video Alanı --- */
.nb-video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid #2a2a2c;
    height: 350px;
    background: #1a1a1d;
}

.nb-video-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.nb-video-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1d 0%, #2d2d35 100%);
    z-index: 0;
}

.nb-video-text {
    position: relative;
    z-index: 2;
    color: #a0a0a0;
    margin-top: 15px;
    font-size: 0.8rem;
    font-weight: 100;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.play-icon-circle {
    position: relative;
    z-index: 2;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #9d4edd, #ff4e8e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    font-weight: 100;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.6);
    transition: transform 0.3s;
}

.nb-video-wrapper:hover .play-icon-circle {
    transform: scale(1.1);
}

/* --- Süreç Kartları --- */
.nb-process-section {
    padding: 0px 0;
}

.nb-section-title {
    font-size: 1rem;
    font-weight: 100;
    color: #fff !important;
    margin-bottom: 0px;
    text-align: center;
}

.nb-section-subtitle {
    color: #777 !important;
    margin-bottom: 50px;
    text-align: center;
    display: block;
    font-size: 0.8rem;
    font-weight: 100;
}

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

.nb-process-card {
    background: #131316 !important;
    border: 1px solid #222 !important;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nb-process-card:hover {
    transform: translateY(-5px);
    border-color: #444 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.highlight-card {
    border-color: #9d4edd !important;
    background: linear-gradient(145deg, #131316, #1a1a20) !important;
}

.nb-card-number {
    font-size: 1.5rem;
    font-weight: 500;
    color: #1c1c21;
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
    z-index: 0;
    opacity: 0.5;
}

.nb-icon-box {
    position: relative;
    z-index: 1;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 100;
    color: #ff4e8e;
    margin-bottom: 20px;
}

.highlight-card .nb-icon-box {
    background: linear-gradient(135deg, #9d4edd, #ff4e8e);
    color: #fff;
}

.nb-process-card h3 {
    font-size: 1rem !important;
    color: #fff !important;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.nb-process-card p {
    color: #999 !important;
    font-size: 0.8rem;
    font-weight: 100;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    line-height: 1.5;
}

.nb-link-arrow {
    color: #fff !important;
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.nb-link-arrow:hover {
    gap: 12px;
    color: #ff4e8e !important;
}

/* --- CTA --- */
.nb-cta-section {
    margin-top: 0px;
    margin-bottom: 0px;
}

.nb-cta-box {
    background: linear-gradient(to right, #1a1a1f, #131316);
    border: 1px solid #222;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 100;
}

  /* --- TEMEL SIFIRLAMA & DARK MODE ---  HAKKIMIZDA */
body, .nb-about-wrapper {
    background-color: #000 !important;
    color: #fff !important;
    font-family: 'Inter', sans-serif, Arial;
    line-height: 1.5;
    overflow-x: hidden;
}

.nb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* --- HERO BÖLÜMÜ --- */
.nb-about-hero {
    text-align: center;
    padding: 80px 0 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Avatarlar */
.nb-avatars {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.nb-avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #000;
    object-fit: cover;
    margin-left: -15px;
    transition: transform 0.3s;
}
.nb-avatar-img:first-child { margin-left: 0; }
.nb-avatar-img:hover { transform: translateY(-5px); z-index: 10; }

/* Başlıklar */
.nb-hero-title,
.nb-mission-text h2 {
    font-size: 1rem;
    font-weight: 100;
    margin-bottom: 20px;
    line-height: 1.2;
}

.nb-gradient-text {
    background: linear-gradient(to right, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
    font-weight: 100;
}

.nb-hero-desc {
    color: #a1a1aa !important;
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1rem;
    font-weight: 100;
}

/* --- ORTAK BUTON STİLİ --- */
.nb-cta-orange {
        display: inline-block;
    background-color: transparent !important;
    color: #ffffff !important;
    border: 1px solid #777 !important;
    padding: 13px 30px;
    font-size: 0.8rem;
    font-weight: 100;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nb-cta-orange:hover {
    border-color: #fff !important;
    background-color: rgba(255,255,255,0.1) !important;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(157,78,221,0.4);
}

/* --- MİSYON --- */
.nb-mission-section {
    padding: 10px 0;
}

.nb-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.nb-mission-text p {
    color: #d4d4d8 !important;
    margin-bottom: 20px;
    font-size: 0.8rem;
    font-weight: 100;
    line-height: 1.7;
}

/* Albüm kapak görsel */
.nb-mission-img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.nb-mission-img-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.5s;
}

.nb-mission-img-wrapper:hover img {
    transform: scale(1.05);
}

/* Play Butonu */
.nb-play-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}
.nb-play-overlay:hover { transform: scale(1.1); }

/* --- YORUMLAR --- */
.nb-reviews-section { padding: 0 0 10px; }

.nb-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 20px;
    align-items: start;
}

.nb-review-card {
    border-radius: 16px;
    overflow: hidden;
    padding: 25px;
    position: relative;
    transition: transform 0.3s;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.nb-review-card:hover { transform: translateY(-5px); }

/* Görselli kart */
.card-image-bg { padding: 0; justify-content: flex-end; }

.card-image-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.card-content-overlay {
    position: relative;
    z-index: 2;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    width: 100%;
}

.card-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* Beyaz Kart */
.card-white {
    background-color: #fff;
    color: #000 !important;
}
.card-white .review-text {
    color: #333 !important;
    font-size: 0.9rem;
    font-weight: 100;
    font-style: italic;
}
.nb-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}
.reviewer-name {
    font-weight: 100;
    font-size: 0.9rem;
    margin-top: 20px;
    color: #000;
}

/* Siyah Kart */
.card-black {
    background-color: #111;
    border: 1px solid #333;
}
.card-black .review-text { color: #ccc !important;font-size: 0.9em;
    font-weight: 100; }


 /* --- BANNER ALANI STİLLERİ --- */

/* 1. Genel Ayarlar */
.nb-hero-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    background-color: #050505;
    box-sizing: border-box;
}

/* 2. Banner Kartı */
.nb-hero-card {
    width: 100%;
    max-width: 1200px;
    height: 500px;
    background-color: #000;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    border: 1px solid #1a1a1a;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* 3. Sol Taraf */
.nb-hero-content {
    flex: 1;
    padding: 60px;
    z-index: 10;
    max-width: 550px;
    position: relative;
}

/* Fade-up animasyon */
.animate-fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nb-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.nb-hero-desc {
    font-size: 1rem;
    font-weight: 100;
    color: #a1a1aa;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 300;
}

/* 4. Buton */
.nb-hero-btn {
  display: inline-block;
    background-color: transparent !important;
    color: #ffffff !important;
    border: 1px solid #777 !important;
    padding: 13px 30px;
    font-size: 0.8rem;
    font-weight: 100;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nb-hero-btn:hover {
      border-color: #fff !important;
    background-color: rgba(255,255,255,0.1) !important;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.4);
}

.nb-hero-btn i {
    transition: transform 0.3s ease;
}

.nb-hero-btn:hover i {
    transform: translateX(5px);
}

/* 5. Sağ Taraf */
.nb-hero-image-area {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    z-index: 1;
}

.nb-hero-bg-img {
    width: 100%;
    height: 100%;
}

/* Gradient Overlay */
.nb-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #000 10%, rgba(0,0,0,0.8) 40%, rgba(0,0,0,0) 100%);
    z-index: 2;
}


    /* =========================================
   ÜRÜNLER SAYFASI ARCHIVE-PRODUCT.PHP
   ========================================= */

/* Karanlık Mod Arka Plan */
.suno-dark-mode, body.archive.post-type-archive-product {
    background-color: #121212;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

/* Header Alanı */
.shop-header-area {
    padding: 40px 0;
    text-align: center;
    background: linear-gradient(180deg, #222 0%, #121212 100%);
}
.shop-header-area h1 { font-size: 2.5rem; color: #fff; margin-bottom: 10px; }
.shop-header-area p { color: #b3b3b3; }

/* Düzen (Layout) */
.shop-main-layout {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Sidebar (Filtreler) */
.shop-sidebar { width: 250px; flex-shrink: 0; }
.filter-title { color: #fff; border-bottom: 1px solid #333; padding-bottom: 10px; margin-bottom: 20px; font-size: 18px; }
.widget { margin-bottom: 30px; color: #b3b3b3; }
.widget a { color: #b3b3b3; text-decoration: none; }
.widget a:hover { color: #fff; }

/* Ana Ürün Alanı */
.shop-products-area { flex-grow: 1; }

/* Grid Yapısı */
.suno-shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}

/* Ürün Kartı */
.suno-product-card {
    background: #181818;
    border-radius: 8px;
    padding: 15px;
    transition: transform 0.2s ease, background 0.2s;
}
.suno-product-card:hover {
    background: #282828;
    transform: translateY(-5px);
}

/* Görsel Alanı */
.suno-product-image-wrapper {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 15px;
}
.suno-product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hover Overlay (Butonlar) */
.suno-product-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: 0.3s;
}
.suno-product-card:hover .suno-product-overlay { opacity: 1; }

/* Buton Stilleri */
.suno-overlay-btn {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    min-width: 100px;
    text-align: center;
}
.view-btn { border: 2px solid #fff; color: #fff; }
.cart-btn { background: #fff; color: #000; border: 2px solid #fff; }
.cart-btn:hover { background: #ddd; border-color: #ddd; }

/* Kart Bilgileri */
.suno-product-title { margin: 0 0 5px 0; font-size: 16px; font-weight: bold; }
.suno-product-title a { color: #fff; text-decoration: none; }
.suno-product-meta { display: flex; justify-content: space-between; font-size: 12px; color: #b3b3b3; }
.suno-product-price { color: #fff; font-weight: bold; }

/* Sayfalama */
.suno-pagination { margin-top: 40px; text-align: center; }
.suno-pagination a, .suno-pagination span {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 5px;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}
.suno-pagination .current { background: #fff; color: #000; }


/* =========================================
   ÜRÜNLER SAYFASI ARCHIVE-PRODUCT.PHP (DÜZELTİLMİŞ TAM SÜRÜM)
   ========================================= */

/* 1. GENEL AYARLAR (Karanlık Mod) */
.suno-dark-mode, 
body.archive.post-type-archive-product, 
body.tax-product_cat {
    background-color: #000 !important;
    color: #fff !important;
    font-family: 'Montserrat', sans-serif;
}

/* 2. HEADER ALANI */
.shop-header-area {
    padding: 60px 0 40px;
    text-align: center;
    background: radial-gradient(circle at center, #222 0%, #000 70%);
}
.page-title, .shop-header-area h1 { 
    font-size: 3rem; 
    color: #fff; 
    margin-bottom: 10px; 
    font-weight: 800; 
}
.woocommerce-result-count { color: #888; }

/* 3. DÜZEN (LAYOUT) */
.shop-main-layout {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    align-items: flex-start;
}

/* 4. SOL SIDEBAR */
.shop-sidebar { 
    width: 260px; 
    flex-shrink: 0; 
    background: #111;
    padding: 25px;
    border-radius: 12px;
}
.filter-title, .widget-title { color: #fff; border-bottom: 1px solid #333; padding-bottom: 15px; margin-bottom: 20px; font-size: 16px; text-transform: uppercase; letter-spacing: 1px; }
.widget { margin-bottom: 30px; color: #b3b3b3; }
.widget a { color: #b3b3b3; text-decoration: none; }
.widget a:hover { color: #fff; }

/* 5. SAĞ ÜRÜN ALANI */
.shop-products-area { flex-grow: 1; }

/* Sıralama Kutusu */
.woocommerce-ordering select {
    background-color: #111;
    color: #fff;
    border: 1px solid #333;
    padding: 10px 20px;
    border-radius: 30px;
    outline: none;
    cursor: pointer;
}

/* 6. GRID YAPISI */
.suno-shop-grid, ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important;
    gap: 30px !important;
    margin-top: 20px !important;
}

/* Float temizleme */
ul.products li.product {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important; /* Padding'i kartın içinden yöneteceğiz */
}

/* 7. ÜRÜN KARTI TASARIMI */
.suno-product-card, ul.products li.product {
    /*background: #121212 !important;*/
    border-radius: 12px;
    padding: 15px !important;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.suno-product-card:hover, ul.products li.product:hover {
    /*background: #1a1a1a !important;*/
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* --- GÖRSEL AYARI (GÜNCELLENDİ: Küçültme & Padding) --- */
.suno-product-image-wrapper img, ul.products li.product img {
    width: 90% !important; /* Kartın %90'ı kadar genişlik */
    margin: 10px auto 15px auto !important; /* Ortala ve boşluk bırak */
    display: block !important;
    border-radius: 12px !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3) !important;
    aspect-ratio: 1/1 !important;
    object-fit: cover !important;
}

/* Görsel Hover Efekti */
ul.products li.product:hover img {
    transform: scale(1.02); /* Hafif yakınlaşma */
    box-shadow: 0 8px 20px rgba(0,0,0,0.5) !important;
}

/* Kart Bilgileri */
.suno-product-title a, .woocommerce-loop-product__title {
    color: #fff !important;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}
.price { color: #ccc !important; font-weight: 500; font-size: 1rem; display: block; margin-bottom: 15px; }

/* 8. ÖZEL SEPETE EKLE BUTONU (Turuncu Gradient) */
.suno-overlay-btn.cart-btn, 
ul.products li.product .button,
.add_to_cart_button {
    background: linear-gradient(to right, #ff4d4d, #ff9933) !important;
    color: white !important;
    font-size: 14px !important;
    font-weight: bold !important;
    padding: 12px 30px !important;
    border: none !important;
    border-radius: 30px !important;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease !important;
    box-shadow: 0 5px 15px rgba(255, 77, 77, 0.4) !important;
    text-decoration: none !important;
    display: inline-block !important;
    margin-top: 10px;
    text-transform: uppercase;
}

/* Hover Efekti (Tamamlandı) */
.suno-overlay-btn.cart-btn:hover, 
ul.products li.product .button:hover,
.add_to_cart_button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 77, 77, 0.6) !important;
    background: linear-gradient(to right, #ff6666, #ffaa44) !important; /* Kodun eksik kısmı burasıydı */
    color: #fff !important;
}



/* =========================================
   7. RESPONSIVE DÜZENLEMELER (HEPSİ BURADA)
   ========================================= */

/* --- 1024px (Tablet Yatay / Küçük Laptop) --- */
@media (max-width: 1024px) {
    /* Header */
    .header-inner { padding: 10px 20px; }
    .header-tools.right-side-tools { display: none; }
    .menu-toggle { display: block; }
    
    .header-center-area {
        position: absolute; top: 100%; left: 0; width: 100%;
        background-color: var(--color-header-bg);
        flex-direction: column; align-items: flex-start; 
        padding: 20px 30px; display: none; z-index: 990;
    }
    .header-inner.toggled .header-center-area { display: flex; }
    .main-menu { flex-direction: column; width: 100%; }
    .main-menu li { width: 100%; }
    
    /* Hero */
    .hero-content { max-width: 600px; }
    
    /* Shop Grid (3 Sütun) */
    html body .spotify-dark-mode .shop-main-layout .shop-products-area ul.products.custom-product-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    .spotify-dark-mode .shop-main-layout {
        grid-template-columns: 1fr !important; /* Sidebar kalkar veya alta geçer */
    }

    /* Ürün Sayfası */
    .spotify-product-image { flex: 0 0 350px; max-width: 350px; }
    
    /* Fiyatlandırma */
    .pricing-grid {
        /* BURASI ÖNEMLİ: Sütun sayısını 1'e düşürüyoruz */
        grid-template-columns: 1fr; 
        
        /* Kartlar mobilde çok yayılmasın diye max genişlik verip ortalıyoruz */
        max-width: 500px; 
        margin-left: auto;
        margin-right: auto;
        gap: 40px; /* Mobilde araları biraz daha açtık */
    }

    .pricing-card {
        /* Mobilde iç boşluğu biraz kısalım */
        padding: 30px 20px;
    }

    .namebeatz-review-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Ana Düzen: Kenar boşluklarını daralt */
    .shop-main-layout {
        gap: 20px;
        padding: 30px 15px;
    }
    
    /* Başlık boyutunu biraz küçült */
    .page-title, .shop-header-area h1 {
        font-size: 2.5rem;
    }

    /* Sidebar genişliğini biraz kıs */
    .shop-sidebar {
        width: 220px;
        padding: 20px;
    }
    
    /* Grid yapısını sıkılaştır */
    ul.products {
        gap: 20px !important;
    }
}

/* --- 768px (Tablet Dikey) --- */
@media (max-width: 768px) {
     /* Genel */
    .section-padding { padding: 50px 15px; }
    
    /* Header */
    .site-logo-text { font-size: 1.2em; }
    
    /* Accordion */
    .accordion-grid-wrapper { flex-direction: column; width: 100%; }
    .accordion-column { width: 100%; }

    /* About */
    .about-content-grid { grid-template-columns: 1fr; }
    
    /* Shop Grid (2 Sütun) */
    html body .spotify-dark-mode .shop-main-layout .shop-products-area ul.products.custom-product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    /* Ürün Sayfası (Dikey Yerleşim) */
    .single-product-layout-wrapper { flex-direction: column; gap: 20px; margin: 20px 0; }
    .spotify-product-image, .spotify-product-details { flex: 0 0 100%; max-width: 100%; }
    .product-description-footer-section { position: relative; margin-top: 20px; padding: 0 15px; }
    
    /* Footer */
    .footer-grid, .contact-grid { grid-template-columns: 1fr; }
    .footer-bottom-bar { flex-direction: column-reverse; gap: 15px; text-align: center; }

    /* Fiyatlandırma */
    .pricing-grid {
        /* BURASI ÖNEMLİ: Sütun sayısını 1'e düşürüyoruz */
        grid-template-columns: 1fr; 
        
        /* Kartlar mobilde çok yayılmasın diye max genişlik verip ortalıyoruz */
        max-width: 500px; 
        margin-left: auto;
        margin-right: auto;
        gap: 40px; /* Mobilde araları biraz daha açtık */
    }

    .pricing-card {
        /* Mobilde iç boşluğu biraz kısalım */
        padding: 30px 20px;
    }

    .namebeatz-review-card-grid {
        grid-template-columns: 1fr;
    }
    .namebeatz-review-card {
        height: auto; /* Mobilde içerik kadar uzasın */
        min-height: 350px;
    }

    /* Ana Düzen: Sidebar'ı yukarı, ürünleri aşağı al (Alt alta diz) */
    .shop-main-layout {
        flex-direction: column;
    }

    /* Sidebar'ı tam genişlik yap */
    .shop-sidebar {
        width: 100%;
        margin-bottom: 30px;
    }

    /* Ürünleri yan yana 2 tane olacak şekilde zorla */
    ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    /* Buton yazı boyutunu biraz küçült taşmasın */
    .suno-overlay-btn.cart-btn, 
    ul.products li.product .button,
    .add_to_cart_button {
        padding: 10px 15px !important;
        font-size: 11px !important;
        width: 100%; /* Butonu tam genişlik yap */
    }

    /* Resim paddingini mobilde biraz azalt */
    ul.products li.product img {
        width: 100% !important; /* Resmi kartın kenarlarına yaklaştır */
        margin: 5px auto 10px auto !important;
    }
.suno-nav-btn { display: none; }
.suno-slider-wrapper { padding: 0 20px; }
.shop-main-layout { flex-direction: column; }
.shop-sidebar { width: 100%; margin-bottom: 30px; }
.suno-shop-grid { grid-template-columns: repeat(2, 1fr); }


 .trust-features-inner { grid-template-columns: 1fr; gap: 30px; }
        .footer-widgets-area { grid-template-columns: 1fr; gap: 40px; }
        .footer-links-group { gap: 20px; }
        .footer-bottom-bar { flex-direction: column; text-align: center; }
 .single-product div.product {
        flex-direction: column; /* Mobilde alt alta sırala */
        padding: 20px;
    }
    
    .single-product div.product div.images,
    .single-product div.product div.summary {
        flex: 1 1 100%; /* Tam genişlik */
    }

    .single-product .product_title {
        font-size: 1.8rem;
    }
    
    .single-product form.cart {
        flex-direction: column;
        align-items: stretch;
    }
    
    .single-product button.single_add_to_cart_button {
        width: 100%;
    }

    .namebeatz-custom-description-area {
        padding: 0 10px;
  
    
}

}
/* --- 480px (Mobil) --- */
@media (max-width: 480px) {
    /* Header */
    .site-logo-text { font-size: 0.5em; }
    
    /* Hero */
    .hero-title { font-size: 1.5em; }
    
    /* Trust Features */
    .trust-features-inner { flex-direction: column; }
    .feature-item { flex-basis: 100%; text-align: left; display: flex; }
    .feature-icon { margin-right: 15px; }
    
    /* Shop Grid (1 Sütun) */
    html body .spotify-dark-mode .shop-main-layout .shop-products-area ul.products.custom-product-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Fiyatlandırma */
    .pricing-grid {
        /* BURASI ÖNEMLİ: Sütun sayısını 1'e düşürüyoruz */
        grid-template-columns: 1fr; 
        
        /* Kartlar mobilde çok yayılmasın diye max genişlik verip ortalıyoruz */
        max-width: 500px; 
        margin-left: auto;
        margin-right: auto;
        gap: 40px; /* Mobilde araları biraz daha açtık */
    }

    .pricing-card {
        /* Mobilde iç boşluğu biraz kısalım */
        padding: 15px 20px;
        max-width: 300px;
    }

    .namebeatz-review-card-grid {
        grid-template-columns: 1fr;
    }
    .namebeatz-review-card {
        height: auto; /* Mobilde içerik kadar uzasın */
        min-height: 350px;
    }
    
    /* Footer Features */
    .upper-footer-features { grid-template-columns: 1fr 1fr; }

 

    /* Başlıkları iyice küçült */
    .page-title, .shop-header-area h1 {
        font-size: 2rem;
    }
    .shop-header-area {
        padding: 30px 0;
    }

    /* Ürünleri TEK SÜTUN yap (Daha rahat görünmesi için) */
    ul.products {
        grid-template-columns: 1fr !important; /* Yan yana 1 ürün */
        gap: 20px !important;
    }

    /* Veya "App Tarzı" olsun istersen üstteki 1fr yerine:
       grid-template-columns: repeat(2, 1fr) !important; 
       yapabilirsin ama butonlar sığmayabilir. 1fr en garantisidir.
    */

    /* Sidebar başlıklarını ortala */
    .filter-title, .widget-title {
        text-align: center;
    }

    /* Sepete Ekle butonunu parmakla basmaya uygun hale getir */
    .suno-overlay-btn.cart-btn, 
    ul.products li.product .button,
    .add_to_cart_button {
        padding: 12px 0 !important; /* Dikey padding */
        font-size: 13px !important;
    }
    
    /* Sıralama kutusunu tam genişlik yap */
    .woocommerce-ordering, .woocommerce-ordering select {
        width: 100%;
        margin-bottom: 15px;
    }
    
    

    
}




/*FOOTER*/

    /* --- FOOTER & TRUST AREA STİLLERİ --- */
    
    /* 1. Güven Özellikleri Alanı */
    .trust-features-section {
        background-color: #050505;
        padding: 50px 0; /* Boşluğu biraz azalttım */
        border-top: 1px solid #1a1a1a;
    }

    .trust-features-inner {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Grid'i biraz daralttım */
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        text-align: center;
    }

    .feature-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }

    /* --- İKON KUTUSU STİLİ (Minimal Sürüm) --- */
    .feature-icon-box {
        /* BOYUTLAR KÜÇÜLTÜLDÜ */
        width: 55px;  /* 75px'den 55px'e düşürüldü */
        height: 55px; /* 75px'den 55px'e düşürüldü */
        
        background: #131316; 
        border: 1px solid #222; 
        border-radius: 14px; /* Köşeler orantılı küçültüldü */
        
        display: flex;
        align-items: center;
        justify-content: center;
        
        color: #ff4e8e; 
        font-size: 22px; /* İkon boyutu 28px'den 22px'e düşürüldü */
        
        margin-bottom: 15px; /* Alt boşluk azaltıldı */
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    /* Hover Efekti */
    .feature-item:hover .feature-icon-box {
        background: linear-gradient(135deg, #9d4edd, #ff4e8e);
        border-color: transparent;
        color: #ffffff;
        box-shadow: 0 0 20px rgba(157, 78, 221, 0.4); /* Gölge biraz yumuşatıldı */
        transform: translateY(-3px);
    }

    .feature-title {
        color: #fff;
        font-size: 1rem; /* Başlık boyutu bir tık küçültüldü */
        font-weight: 600;
        margin: 0 0 8px 0;
        font-family: 'Inter', sans-serif;
    }

    .feature-description {
        color: #888; /* Biraz daha soft gri */
        font-size: 0.85rem; /* Açıklama fontu küçültüldü */
        line-height: 1.5;
        margin: 0;
        max-width: 250px;
    }

    /* --- FOOTER ANA ALAN --- */
    #site-footer {
        background-color: #000000;
        color: #ccc;
        padding-top: 70px;
        border-top: 1px solid #1a1a1a;
        font-family: 'Inter', sans-serif;
    }

    .footer-inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .footer-widgets-area {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        margin-bottom: 60px;
    }

    /* Bülten Alanı */
    .footer-subscribe h3 {
        color: #fff;
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .subscribe-form {
        display: flex;
        gap: 10px;
        margin-bottom: 20px;
    }

    .subscribe-form input[type="email"] {
        background: #1a1a1a;
        border: 1px solid #333;
        padding: 12px 20px;
        border-radius: 50px;
        color: #fff;
        flex: 1;
        outline: none;
        font-size: 0.9rem;
    }

    .subscribe-form button {
        background: linear-gradient(135deg, #9d4edd, #ff4e8e);
        border: none;
        width: 45px; /* Buton küçültüldü */
        height: 45px; /* Input yüksekliğiyle uyumlu */
        border-radius: 50%;
        color: #fff;
        cursor: pointer;
        transition: transform 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
    }

    .subscribe-form button:hover {
        transform: scale(1.1);
    }

    .footer-cta {
          display: inline-block;
    background-color: transparent !important;
    color: #ffffff !important;
    border: 1px solid #777 !important;
    padding: 13px 30px;
    font-size: 0.8rem;
    font-weight: 100;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    }

    .footer-cta:hover {
    border-color: #fff !important;
    background-color: rgba(255,255,255,0.1) !important;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.4);
    }

    /* Footer Linkleri */
    .footer-links-group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-subheading {
        color: #fff;
        font-size: 1rem;
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

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

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

    .footer-nav a {
        color: #999;
        text-decoration: none;
        transition: color 0.3s;
        font-size: 0.9rem;
    }

    .footer-nav a:hover {
        color: #ff4e8e;
    }

    /* Alt Bar */
    .footer-bottom-bar {
        border-top: 1px solid #1a1a1a;
        padding: 25px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .social-icons a {
        color: #fff;
        font-size: 1.1rem;
        margin-right: 20px;
        transition: color 0.3s;
    }

    .social-icons a:hover {
        color: #ff4e8e;
    }

    .copyright-text {
        color: #666;
        font-size: 0.85rem;
        margin: 0;
    }

   



  /* =========================================SINGLE-PRODUCT.PHP========================================= */
   /* =========================================SINGLE-PRODUCT.PHP========================================= */
    /* =========================================SINGLE-PRODUCT.PHP========================================= */

    /* =========================================
   1. GENEL SAYFA YAPISI VE ARKA PLAN
   ========================================= */
.single-product .site-main {
    color: #e0e0e0; /* Açık gri metin */
    padding: 40px 20px;
}

/* Ürün Kartı Kutusu */
.single-product div.product {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #1e1e1e; /* Kart arka planı */
    padding: 30px;
    border-radius: 16px; /* Yuvarlak köşeler */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); /* Derinlik gölgesi */
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

/* =========================================
   2. ÜRÜN GÖRSELİ (SOL TARAF)
   ========================================= */
.single-product div.product div.images {
    flex: 1 1 45%; /* Masaüstünde %45 genişlik */
    margin-bottom: 0;
}

.single-product div.product div.images img {
    border-radius: 12px;
    width: 100%;
    height: auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.single-product div.product div.images img:hover {
    transform: scale(1.02); /* Üzerine gelince hafif büyüme */
}

/* =========================================
   3. ÜRÜN BİLGİLERİ (SAĞ TARAF)
   ========================================= */
.single-product div.product div.summary {
    flex: 1 1 45%; /* Masaüstünde %45 genişlik */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Ürün Başlığı */
.single-product .product_title {
    font-size: 1.1rem;
    font-weight: 100;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

/* Fiyat */
.single-product p.price {
    font-size: 1.3rem;
    font-weight: 300;
    color: #bb86fc; /* Vurgulu renk (Lila/Mor) */
    font-weight: 600;
    margin-bottom: 25px;
}

.single-product p.price del {
    color: #757575;
    font-size: 1.1rem;
    font-weight: 100;
    opacity: 0.7;
}

/* Kısa Açıklama */
.woocommerce-product-details__short-description {
    font-size: 0.8rem;
    font-weight: 100;
    line-height: 1.7;
    color: #b0b0b0;
    margin-bottom: 30px;
    border-left: 3px solid #bb86fc; /* Sol tarafına çizgi */
    padding-left: 15px;
}

/* =========================================
   4. SEPETE EKLE BUTONU VE MİKTAR
   ========================================= */
.single-product form.cart {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

/* Miktar Kutusu */
.single-product .quantity input.qty {
   
    color: #fff;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 10px;
    font-weight: bold;
    width: 70px;
    text-align: center;
}

/* Sepete Ekle Butonu */
.single-product button.single_add_to_cart_button {
    background-color: #bb86fc; /* Buton rengi */
    color: #000; /* Buton yazı rengi */
    border: none;
    padding: 15px 40px;
    border-radius: 50px; /* Hap şeklinde buton */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.single-product button.single_add_to_cart_button:hover {
    background-color: #fff; /* Hover rengi */
    transform: translateY(-3px); /* Yukarı hareket */
    box-shadow: 0 5px 15px rgba(187, 134, 252, 0.4);
}

/* =========================================
   5. ÜRÜN META BİLGİLERİ (Kategori vb.)
   ========================================= */
.single-product .product_meta {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #777;
}

.single-product .product_meta span {
    display: block;
    margin-bottom: 5px;
}

.single-product .product_meta a {
    color: #bb86fc;
    text-decoration: none;
}

/* =========================================
   6. NAMEBEATZ ÖZEL ÜRÜN AÇIKLAMASI (ALT KISIM)
   ========================================= */

/* Ana Kapsayıcı */
.namebeatz-custom-description-area {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Açıklama Kutusu */
.namebeatz-description-box {
    background: #1e1e1e;
    padding: 30px;
    border-radius: 12px;
    color: #e0e0e0;
    line-height: 1.6;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
       font-size: 0.8rem;
    font-weight: 100;
}

/* Uyarı Kutusu */
.namebeatz-warning-box {
    background: rgba(187, 134, 252, 0.1);
    border-left: 4px solid #bb86fc;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 0 8px 8px 0;
}

.namebeatz-warning-box p {
    margin: 0;
}

/* Vurgulu Metinler (Mark) */
.namebeatz-description-box mark.highlight-text {
    background: none;
    color: #bb86fc;
    font-weight: bold;
}

/* Linkler */
.namebeatz-description-box a {
    color: #bb86fc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.namebeatz-description-box a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Ayırıcı Çizgi */
.namebeatz-description-box hr {
    border: 0;
    border-top: 1px solid #333;
    margin: 25px 0;
}

/* Başlıklar (h4) */
.namebeatz-description-box h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 100;
}

/* Listeler (ul, li) */
.namebeatz-description-box ul {
    list-style-type: disc;
    padding-left: 20px;
}

.namebeatz-description-box ul li {
    margin-bottom: 10px;
}

/* Teslimat Detayları Bölümü */
.delivery-details {
    margin-bottom: 25px;
}

/* İpuçları Bölümü */
.tips-section {
    background: #252525;
    padding: 20px;
    border-radius: 8px;
}

.tip-paragraph {
    margin-top: 15px;
}

/* Son Çağrı (Call to Action) Metni */
.final-cta-text {
    text-align: center;
    margin-top: 30px;
    font-weight: bold;
    color: #bb86fc;
       font-size: 0.8rem;
    font-weight: 100;
}



/* =========================================
   FOOTER RESPONSIVE DÜZELTMELERİ (GÜNCEL)
   ========================================= */

/* --- Tablet (1024px ve altı) --- */
@media (max-width: 1024px) {
    /* Widget Alanını Sıkıştır */
    .footer-widgets-area {
        gap: 40px; 
        margin-bottom: 40px;
    }
    
    /* Input ve Buton oranlarını koru */
    .subscribe-form input[type="email"] {
        width: 100%; /* Esnek genişlik */
    }
}

/* --- Tablet Dikey / Küçük Laptop (768px ve altı) --- */
@media (max-width: 768px) {
    
    /* 1. Trust Features (Güven Alanı) */
    .trust-features-inner {
        /* Yan yana 4 tane sığmaz, 2'şerli yapıyoruz */
        grid-template-columns: repeat(2, 1fr); 
        gap: 30px 15px; /* Dikey 30px, Yatay 15px boşluk */
    }

    /* 2. Footer Ana İskelet */
    .footer-widgets-area {
        /* Bülten solda, Linkler sağda yapısını bozup alt alta alıyoruz */
        grid-template-columns: 1fr; 
        gap: 50px;
        text-align: center; /* Mobilde ortalı daha şık durur */
    }

    /* Bülten Alanı Düzenlemeleri */
    .footer-subscribe {
        max-width: 500px; /* Çok yayılmasın */
        margin: 0 auto;   /* Ortala */
    }
    
    .subscribe-form {
        justify-content: center; /* Formu ortala */
    }

    /* Link Grupları (Kurumsal & Bilgi) */
    /* Bunlar yan yana kalabilir (hala yer var) */
    .footer-links-group {
        text-align: left; /* Linkler sola dayalı kalsın, okuması kolay olur */
        max-width: 500px;
        margin: 0 auto;
        gap: 30px;
    }

    /* 3. Alt Bar (Telif & Sosyal) */
    .footer-bottom-bar {
        flex-direction: column-reverse; /* Sosyal ikonlar üste, yazı alta */
        gap: 15px;
        text-align: center;
    }
    
    .social-icons a {
        margin: 0 10px; /* İkonların arasını biraz aç */
    }
}

/* --- Mobil (480px ve altı) --- */
@media (max-width: 480px) {

    /* 1. Trust Features (Güven Alanı) */
    .trust-features-inner {
        /* Mobilde tek sütun olsun, alt alta */
        grid-template-columns: 1fr; 
        padding: 0 10px; /* Kenar boşluklarını daralt */
    }
    
    .feature-item {
        /* Her bir kutuyu biraz daha kompakt yapalım */
        flex-direction: row; /* İkon solda, yazı sağda olsun (Daha modern mobil görünüm) */
        text-align: left;
        align-items: flex-start;
        background: #111; /* Mobilde ayrışması için hafif fon */
        padding: 15px;
        border-radius: 12px;
        border: 1px solid #222;
    }

    .feature-icon-box {
        margin-bottom: 0;
        margin-right: 15px;
        width: 45px; /* Biraz küçült */
        height: 45px;
        font-size: 18px;
        flex-shrink: 0; /* İkonun ezilmesini engelle */
    }
    
    .feature-title {
        margin-top: 5px;
        font-size: 0.95rem;
    }
    
    .feature-description {
        font-size: 0.8rem;
    }

    /* 2. Footer Linkler */
    .footer-links-group {
        /* Link gruplarını da alt alta al */
        grid-template-columns: 1fr; 
        text-align: center; /* Mobilde menüleri ortala */
        gap: 40px;
    }

    /* 3. Bülten Formu */
    .subscribe-form {
        flex-direction: column; /* Input üstte, buton altta */
        gap: 10px;
    }
    
    .subscribe-form input[type="email"] {
        text-align: center; /* Yazarken ortada yazsın */
    }
    
    .subscribe-form button {
        width: 100%; /* Buton tam genişlik */
        border-radius: 50px; /* Oval yapıyı koru */
    }

    /* Footer CTA Butonu */
    .footer-cta {
        display: block; /* Tam genişlik kaplasın */
        width: 100%;
        text-align: center;
    }
    
    /* Footer Padding */
    #site-footer {
        padding-top: 40px;
    }
}


/* ================================================= */
/* --- SABİT SOSYAL MEDYA BAR (Site Geneli) --- */
/* ================================================= */

.fixed-social-bar {
    position: fixed; 
    top: 50%; 
    left: 0; 
    transform: translateY(-50%); 
    z-index: 9999; /* Diğer her şeyin üstünde dursun */
    
    display: flex;
    flex-direction: column; /* Masaüstünde alt alta */
    
    background-color: rgba(0, 0, 0, 0.6); /* Biraz daha koyu yaptım okunurluk için */
    backdrop-filter: blur(5px); /* Hafif buzlu cam efekti */
    border-radius: 0 8px 8px 0; 
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    padding: 8px 4px; 
}

/* Link Yapısı */
.fixed-social-bar a {
    text-decoration: none; /* Alt çizgiyi kaldır */
    border: none;
    outline: none;
}

/* --- İKON STİLİ --- */
.social-icon {
    display: flex; 
    align-items: center;
    justify-content: center;
    
    width: 30px;  /* Tık alanı biraz daha rahat olsun */
    height: 30px; 
    margin: 6px 0; 
    
    border-radius: 50%; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Yaylanma efekti */
}

/* İkon Rengi */
.social-icon i {
    font-size: 1.1em; 
    color: #FFFFFF; 
}

/* --- MARKALARA GÖRE RENKLER --- */
.social-icon.instagram { background-color: #E1306C; }
.social-icon.tiktok    { background-color: #000000; border: 1px solid #333; } /* Tiktok genelde siyah/beyaz */
.social-icon.youtube   { background-color: #FF0000; }
.social-icon.spotify   { background-color: #1DB954; }
.social-icon.etsy      { background-color: #F65700; }


/* ================================================= */
/* --- MOBİL GÖRÜNÜM (Max 648px) --- */
/* ================================================= */
@media (max-width: 648px) {
    .fixed-social-bar {
        top: auto; 
        bottom: 0; 
        left: 0; 
        right: 0; 
        transform: none;
        
        flex-direction: row; /* Yan yana diz */
        justify-content: space-evenly; /* Eşit aralıklarla yay */
        align-items: center;
        
        padding: 10px 0;
        background-color: #000000; /* Mobilde tam siyah daha şık durur */
        border-top: 1px solid #222;
        border-radius: 0; 
        box-shadow: 0 -4px 20px rgba(0,0,0,0.7);
    }

    .social-icon {
        width: 33px; /* Mobilde parmakla basmak için daha büyük */
        height: 33px; 
        margin: 0;
        box-shadow: none;
    }
    
    
    /* Footer'ın en altı mobilde bu barın altında kalmasın diye body'e padding verilebilir */
    /* Veya footer'ın en altına margin-bottom eklenebilir, ama fixed olduğu için üstte kalacaktır. */
}


/* =========================================
   HAKKIMIZDA SAYFASI DÜZELTMELERİ
   ========================================= */

/* --- Tablet Dikey / Mobil (768px ve altı) --- */
@media (max-width: 768px) {

    /* 2. Misyon Bölümü (Yazı ve Görsel) */
    .nb-mission-grid {
        /* Yan yana düzeni kaldırıp alt alta sıralıyoruz */
        display: flex; /* Flex'e geçiş, ya da grid ise aşağıdakini kullan */
        flex-direction: column; 
        gap: 40px; /* Aradaki boşluğu artır */
    }

    /* Görselin üstteki metinle aynı genişlikte olmasını sağla */
    .nb-mission-img-wrapper {
        width: 100%;
        max-width: 600px; /* Çok genişlemesini önle */
        margin: 0 auto;
        order: -1; /* Görseli metnin üzerine taşı (isteğe bağlı ama mobilde güzel durur) */
    }
    
    .nb-mission-img-wrapper img {
        width: 100%;
        height: auto;
    }
    
    /* Metin hizalamasını ortalayabiliriz */
    .nb-mission-text {
        text-align: center;
        padding: 0 15px;
    }
    
    .nb-mission-text h2 {
        font-size: 1.8rem;
    }
    
    .nb-mission-text p {
        text-align: left; /* Paragrafları solda tutmak okumayı kolaylaştırır */
        margin: 0 auto;
        max-width: 600px;
    }

    /* 3. Hero Bölümü */
    .nb-about-hero {
        padding: 50px 15px;
        text-align: center;
    }
    .nb-hero-title {
        font-size: 2.5rem;
    }
    .nb-hero-desc {
        max-width: 90%;
        margin: 20px auto;
    }
    
    /* Avatar Sütununu küçült */
    .nb-avatars {
        display: none; /* Tablette gizleyebiliriz veya ortalayabiliriz */
    }

    /* 4. Yorumlar Grid (3. Bölüm) */
    .nb-reviews-grid {
        /* Üçlü grid'i iki sütuna düşür */
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Sadece küçük mobilde tek sütun yapalım */
}

/* --- Çok Küçük Mobil (480px ve altı) --- */
@media (max-width: 480px) {
    
    /* Misyon Bölümü Metin/Görsel alt alta (Zaten 768px'te yaptık) */

    /* Hero Başlığını daha da küçült */
    .nb-hero-title {
        font-size: 1rem;
    }
.nb-hero-desc animate-fade-up delay-2{
    font-size: 0.8rem;
}    
    
    /* Yorumlar Grid'i tek sütuna düşür */
    .nb-reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Kartların yüksekliklerini ayarla */
    .nb-review-card.card-image-bg {
        height: 250px;
    }
}


