/* ==========================================================================
   BOTANİK ÇİÇEK EVİ - TÜM STİLLER (SEO İÇERİK ODAKLI STABİL V2)
   ========================================================================== */

/* 1. DEĞİŞKENLER VE SIFIRLAMA */
:root {
    --gold: #d4af37;
    --gold-dark: #b38600;
    --deep-green: #1b4d3e;
    --dark-bg: #0a0a0a;
    --card-bg: #121613;
    --card-bg-alt: #18201a;
    --text-light: #f0f0f0;
    --text-muted: #b0b0b0;
    --max-w: 1400px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: var(--font-main);
    font-size: 15px;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
}

main {
    flex: 1;
}

/* 2. HEADER & MOBİL OVERLAY */
.v24-header {
    width: 100%;
    height: 80px;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
}

.brand-logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-title {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
}

.logo-sub {
    font-size: 0.75rem;
    letter-spacing: 3px;
    font-weight: 600;
    color: var(--gold);
}

.desktop-nav {
    display: flex;
    gap: 25px;
}

.desktop-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.desktop-nav a:hover {
    color: var(--gold);
}

.menu-toggle-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    padding: 0;
    position: relative;
    z-index: 10001;
}

.menu-toggle-btn *, 
#menuToggleBtn * {
    pointer-events: none !important;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--gold);
    border-radius: 2px;
}

.v24-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(10, 10, 10, 0.98);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.v24-menu-overlay.active {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.menu-close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 2.5rem;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.cat-link {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.cat-link:hover {
    color: var(--gold);
}

/* 3. HERO VE LANDING */
.v24-hero {
    padding: 80px 20px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(27, 77, 62, 0.3) 0%, rgba(10, 10, 10, 1) 75%);
}

.v24-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
}

.badge-gold {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #ffffff;
}

.gold-text {
    color: var(--gold);
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-gold {
    background-color: var(--gold);
    color: #000000;
}

.btn-gold:hover {
    background-color: var(--gold-dark);
}

.btn-outline {
    border: 1px solid #ffffff;
    color: #ffffff;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* 4. KARTLAR VE GRID */
.v24-section {
    padding: 60px 20px;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 25px;
    position: relative;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.card-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 0.75rem;
    background: var(--deep-green);
    color: var(--gold);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.product-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.order-btn {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

/* 5. SILO SEO SECTION */
.silo-section {
    margin-top: 40px;
}

.silo-card {
    background: rgba(27, 77, 62, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
}

.silo-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.silo-desc {
    color: var(--text-muted);
    max-width: 900px;
    margin: 0 auto 20px auto;
    font-size: 0.95rem;
}

.silo-tags {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.silo-tag {
    background: var(--card-bg);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 20px;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.silo-tag:hover {
    background: var(--gold);
    color: #000000;
}

/* 7. MOBİL SABİT SİPARİŞ ÇUBUĞU (STICKY ACTION BAR) */
.sticky-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 55px;
    background: #0a0a0a;
    display: flex;
    z-index: 9990;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: env(safe-area-inset-bottom);
}

.action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}

.btn-call {
    background: #121613;
    color: #ffffff;
    border-right: 1px solid rgba(212, 175, 55, 0.2);
}

.btn-whatsapp {
    background: #25D366;
    color: #ffffff;
    border: none;
}

/* 8. SEO İÇERİK ALANI DÜZENLEMESİ */
.seo-section {
    padding: 50px 20px;
    background-color: var(--dark-bg);
    color: var(--text-light);
}

.seo-main-content {
    min-width: 0; /* Layout patlamalarını engeller */
}

.seo-article h1,
.seo-article h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin: 35px 0 18px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gold);
    letter-spacing: 0.3px;
}

.seo-article h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold);
    margin: 25px 0 12px 0;
}

.seo-article p {
    margin-bottom: 18px;
    color: #e2e8f0;
    font-weight: 400;
}

.seo-article strong {
    color: #ffffff;
    font-weight: 700;
}

.seo-article a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.seo-article a:hover {
    color: #ffffff;
}

.seo-location-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0 30px 0;
}

.seo-location-list li {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 12px 16px;
    margin-bottom: 10px;
    border-radius: 6px;
    color: #dddddd;
}

.seo-location-list li strong {
    color: var(--gold);
}

.silo-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.silo-cards-grid .silo-card {
    background: rgba(27, 77, 62, 0.25);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 8px;
    padding: 22px;
    transition: var(--transition);
}

.silo-cards-grid .silo-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.silo-card-title {
    display: block;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 700;
}

.silo-card-text {
    font-size: 0.9rem;
    color: #bbbbbb;
    margin-bottom: 0;
    line-height: 1.6;
}

.seo-benefits-list {
    list-style: none !important;
    padding-left: 0 !important;
}

.seo-benefits-list li {
    background: rgba(0, 0, 0, 0.3);
    border-left: 3px solid var(--gold);
    padding: 16px 20px;
    margin-bottom: 15px;
    border-radius: 0 8px 8px 0;
}

.seo-benefits-list li strong {
    display: block;
    font-size: 1.05rem;
    color: #ffffff;
    margin-bottom: 6px;
}

/* 9. LOKAL LİNK BULUTU / SEO ALANI */
.internal-link-cloud-section {
    background-color: #0d120f;
    padding: 30px 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.link-group {
    margin-bottom: 24px;
}

.link-group:last-child {
    margin-bottom: 0;
}

.link-group-title {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 700;
}

.link-tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.link-tag-item {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--card-bg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 6px;
    font-size: 0.875rem;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.link-tag-item:hover {
    background-color: var(--gold);
    color: #000000;
    border-color: var(--gold);
}

/* 10. HARİTA MODÜLÜ */
.botanik-maps-section {
    padding: 30px 0;
    background-color: var(--dark-bg);
}

.botanik-maps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.map-section-card {
    background: var(--card-bg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 15px;
}

.map-card-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 10px;
}

.map-iframe-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    background-color: #1a1a1a;
    border-radius: 6px;
    overflow: hidden;
}

.botanik-actual-iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
/* Harita Grid Tekli/İkili Yönetimi */
.botanik-maps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Yandex yoksa Google haritası tam genişlik kaplar */
.botanik-maps-grid.single-map {
    grid-template-columns: 1fr;
}

.map-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.map-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0;
}

.map-badge {
    font-size: 0.7rem;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Harita Altı Butonları */
.map-actions-footer {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.map-btn {
    flex: 1;
    min-width: 140px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 12px;
    border-radius: 6px;
    font-size: 0.825rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.map-btn-dir {
    background-color: var(--gold);
    color: #000000 !important;
}

.map-btn-dir:hover {
    background-color: var(--gold-dark);
    color: #ffffff !important;
}

.map-btn-review {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-light) !important;
}

.map-btn-review:hover {
    border-color: var(--gold);
    color: var(--gold) !important;
}

@media (max-width: 768px) {
    .botanik-maps-grid {
        grid-template-columns: 1fr;
    }
    .map-actions-footer {
        flex-direction: column;
    }
}
/* 11. PAYLAŞIM VE İLETİŞİM ALANI */
.botanik-share-wrapper,
.paylas-alani {
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.botanik-share-title {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #ffffff;
    width: 100%;
}

.botanik-share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.botanik-btn,
.paylas-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 6px;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    transition: var(--transition);
}

.botanik-btn:hover,
.paylas-btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.botanik-btn-fb, .paylas-btn.facebook { background-color: #1877f2; }
.botanik-btn-pin, .paylas-btn.pinterest { background-color: #e60023; }
.botanik-btn-wa, .paylas-btn.whatsapp { background-color: #25d366; }

/* 12. İLETİŞİM SAYFASI STİLLERİ */
.contact-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h1 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 10px;
}

.contact-header p {
    font-size: 18px;
    color: var(--text-muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.contact-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 10px;
    border-top: 4px solid var(--gold);
    border-left: 1px solid rgba(212, 175, 55, 0.15);
    border-right: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    text-align: center;
}

.contact-card h3 {
    color: #ffffff;
    margin-bottom: 12px;
    font-size: 20px;
}

.contact-card p {
    margin: 8px 0;
    color: #cccccc;
}

.contact-card a {
    color: var(--gold);
    text-decoration: none;
    font-weight: bold;
}

.map-box {
    width: 100%;
    height: 380px;
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* 13. SEMANTİK ÇELENK SAYFASI STİLLERİ */
.celenk-sayfasi-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 2rem 1.25rem;
}

.celenk-hero {
    text-align: center;
    padding: 3rem 1.5rem;
    margin-bottom: 2.5rem;
    background: radial-gradient(circle at center, rgba(27, 77, 62, 0.3) 0%, rgba(18, 22, 19, 1) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
}

.celenk-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.celenk-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.celenk-katalog {
    width: 100%;
}

.celenk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.celenk-card {
    background: var(--card-bg);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
}

.celenk-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
}

.celenk-card-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background-color: #181d1a;
    overflow: hidden;
    margin: 0;
}

.celenk-card-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    border: 0;
}

.celenk-card:hover .celenk-card-img-wrapper img {
    transform: scale(1.06);
}

.celenk-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.celenk-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.75rem 0;
    line-height: 1.35;
}

.celenk-card-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.celenk-card-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold);
}

.btn-celenk-siparis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--gold);
    color: #000000 !important;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    box-sizing: border-box;
}

.btn-celenk-siparis:hover {
    background-color: var(--gold-dark);
    color: #ffffff !important;
}

/* 14. SIKÇA SORULAN SORULAR (FAQ) AKORDİYON */
.seo-faq-section {
    padding: 40px 20px;
}

.seo-faq-list {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background-color: var(--card-bg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item[open] {
    background-color: var(--card-bg-alt);
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.faq-item summary {
    padding: 16px 20px;
    font-size: 1.05rem;
    color: #ffffff;
    cursor: pointer;
    user-select: none;
    list-style: none;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-item summary strong {
    color: var(--gold);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '❯';
    font-size: 0.85rem;
    color: var(--gold);
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.faq-item[open] summary::after {
    transform: rotate(90deg);
}

.faq-item summary:hover {
    background-color: rgba(212, 175, 55, 0.05);
}

.faq-answer {
    padding: 16px 20px;
    color: var(--text-light);
    line-height: 1.6;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.faq-answer p {
    margin: 8px 0 0 0;
    color: var(--text-muted);
}

.faq-answer a {
    color: var(--gold);
    font-weight: 600;
    text-decoration: underline;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 10px;
    background: var(--gold);
    color: #000;
    padding: 10px 18px;
    font-weight: bold;
    z-index: 99999;
    border-radius: 0 0 6px 6px;
    text-decoration: none;
    transition: top 0.2s ease-in-out;
}

.skip-link:focus {
    top: 0;
    outline: 2px solid #fff;
}

/* 15. İKİLİ IZGARA (GRID) VE YAPIŞKAN SIDEBAR DÜZENİ */
.seo-layout-container {
    display: grid;
    grid-template-columns: 1fr 340px; /* Sol genişler, sağ 340px sabit */
    gap: 30px;
    align-items: start;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 30px 20px;
}

.sticky-sidebar {
    position: sticky;
    top: 100px; /* Header yüksekliğinin biraz altında sabit kalır */
    z-index: 10;
}

.sidebar-card {
    background: var(--card-bg);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* 16. SAĞ SIDEBAR İÇ ELEMANLARI (E-E-A-T & ROZETLER) */
.widget-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.score-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.score-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.stars-meter {
    color: #fbbc05;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.score-caption {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.section-divider {
    border: 0;
    height: 1px;
    background: rgba(212, 175, 55, 0.15);
    margin: 20px 0;
}

.trust-features-widget h2 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-term {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--gold);
    font-size: 0.95rem;
}

.feature-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-left: 26px;
    margin-top: 2px;
}

.wa-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background-color: #25d366;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 20px;
    transition: var(--transition);
}

.wa-cta-button:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
}

.store-address {
    text-align: center;
    margin-top: 12px;
    color: var(--text-muted);
    font-style: normal;
}

/* 17. MEDIA QUERIES (RESPONSIVE DÜZENLEMELER) */
@media (min-width: 769px) {
    .sticky-action-bar { 
        display: none !important; 
    }
    .site-footer { 
        padding-bottom: 40px; 
    }
}

/* ==========================================================================
   MOBİL İÇERİK SIRALAMA VE DÜZEN DÜZELTMESİ
   ========================================================================== */

/* 1. Kapsayıcıya Mobil İçin Flex Yapısı Ekliyoruz */
@media (max-width: 992px) {
    .seo-layout-container {
        display: flex !important;
        flex-direction: column !important; /* Dikey sıralamaya alıyoruz */
        padding: 20px 15px;
    }

    /* Mobilde Yan Paneli (Google Puanı, IG, Güven Blokları) İlk Sıraya Çekiyoruz */
    .sticky-sidebar {
        order: 1 !important;
        position: static;
        width: 100%;
        margin-bottom: 25px; /* Altındaki makale metni ile arasına boşluk koyar */
    }

    /* Mobilde SEO Makale/Ana İçeriğini 2. Sıraya Atıyoruz */
    .seo-main-content {
        order: 2 !important;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .desktop-nav { 
        display: none !important; 
    }
    .menu-toggle-btn { 
        display: flex !important; 
    }
    
    .hero-title { 
        font-size: 2rem; 
    }

    .site-footer {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        padding: 40px 15px 100px 15px !important;
    }

    .footer-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }

    .seo-section {
        padding: 30px 15px;
    }

    .seo-article h1,
    .seo-article h2 {
        font-size: 1.35rem;
    }

    .seo-article h3 {
        font-size: 1.15rem;
    }

    .silo-cards-grid {
        grid-template-columns: 1fr;
    }

    .internal-link-cloud-section {
        padding: 25px 15px;
        margin-top: 30px;
    }

    .internal-link-cloud-section .link-group-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .internal-link-cloud-section .link-tag-item {
        font-size: 0.8rem;
        padding: 5px 10px;
    }

    .botanik-maps-grid {
        grid-template-columns: 1fr;
    }

    .map-iframe-wrapper {
        height: 230px;
    }
}

@media (max-width: 767.98px) {
    .celenk-sayfasi-container {
        padding: 1rem 0.75rem;
    }

    .celenk-hero {
        padding: 1.5rem 1rem;
        margin-bottom: 1.25rem;
        border-radius: 12px;
    }
    
    .celenk-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.85rem;
    }

    .celenk-card-body {
        padding: 0.85rem;
    }

    .celenk-card-title {
        font-size: 0.95rem;
    }

    .celenk-card-price {
        font-size: 1.1rem;
    }

    .btn-celenk-siparis {
        padding: 0.6rem 0.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .botanik-share-buttons {
        flex-direction: column;
    }
    
    .botanik-btn {
        justify-content: center;
        width: 100%;
    }
}
/* Instagram Canlı Vitrin Stilleri */
.instagram-teaser-widget {
    margin: 15px 0;
}
.ig-cta-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 12px;
    text-decoration: none;
    color: #e5e5e5;
    transition: all 0.2s ease;
}
.ig-cta-card:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: var(--gold, #d4af37);
    transform: translateY(-2px);
}
.ig-icon-wrapper {
    color: #E1306C; /* Instagram Rengi veya var(--gold) */
    display: flex;
    align-items: center;
}
.ig-badge {
    font-size: 0.7rem;
    background: #E1306C;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
}
.ig-callout {
    font-size: 0.82rem;
    margin: 4px 0 2px 0;
    line-height: 1.3;
    color: #dddddd;
}
.ig-handle {
    font-size: 0.75rem;
    color: var(--gold, #d4af37);
    font-weight: 600;
}
/* Ekranın altında kalan ağır bölümler için */
footer, .v24-footer, .related-products, .bottom-content {
    content-visibility: auto;
    contain-intrinsic-size: 1px 400px;
}