/* ================================================================
   Saadet Döner – style.css
================================================================ */

/* ── Renk ve Tipografi Değişkenleri ─────────────────────────── */
:root {
    /* Marka renkleri */
    --red-dark:    #5E0B0B;
    --red-main:    #8C1515;
    --red-mid:     #A61C1C;
    --red-light:   #C0392B;
    --gold:        #C8960C;
    --gold-light:  #E8B42E;
    --amber:       #D97706;

    /* Sayfa renkleri */
    --cream:       #FFF8EE;
    --cream-dark:  #F5E6CE;
    --white:       #FFFFFF;

    /* Metin renkleri */
    --text-dark:   #1A0A0A;
    --text-mid:    #4A2020;
    --text-muted:  #7A5050;

    /* Menü kart renkleri */
    --meat-bg:     #FFF2F2;
    --meat-border: #D49090;
    --chkn-bg:     #FFFBF0;
    --chkn-border: #D4A520;
    --drink-bg:    #F4F8FF;
    --drink-border:#8EB8DC;

    /* Gölgeler */
    --shadow-sm:   0 2px 10px rgba(94, 11, 11, 0.08);
    --shadow-md:   0 6px 24px rgba(94, 11, 11, 0.13);
    --shadow-lg:   0 12px 40px rgba(94, 11, 11, 0.20);

    /* Layout */
    --container:   1040px;
    --radius:      14px;
    --radius-sm:   8px;
    --radius-lg:   20px;
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a { text-decoration: none; }

ul { list-style: none; }

/* ── Konteyner ───────────────────────────────────────────────── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================================================
   STICKY CALL BUTTON
================================================================ */
.sticky-call {
    position: fixed;
    bottom: 22px;
    right: 18px;
    z-index: 900;
}

.sticky-call a {
    display: flex;
    align-items: center;
    gap: 9px;
    background: var(--red-main);
    color: #fff;
    padding: 13px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: var(--shadow-lg);
    transition: background 0.2s, transform 0.15s;
    animation: sticky-pulse 2.8s ease-in-out infinite;
    white-space: nowrap;
}

.sticky-call a:hover {
    background: var(--red-dark);
    transform: scale(1.06);
    animation-play-state: paused;
}

.sticky-call i { font-size: 1rem; }

@keyframes sticky-pulse {
    0%, 100% { transform: translateY(0);   box-shadow: var(--shadow-lg); }
    50%       { transform: translateY(-5px); box-shadow: 0 18px 48px rgba(94,11,11,0.28); }
}

/* ================================================================
   HEADER / HERO
================================================================ */
header {
    position: relative;
    background: linear-gradient(145deg, var(--red-dark) 0%, var(--red-main) 50%, var(--red-mid) 100%);
    color: #fff;
    text-align: center;
    padding: 64px 20px 80px;
    overflow: hidden;
}

/* Altın ışıma overlay */
header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 75% 25%, rgba(232,180,46,0.20) 0%, transparent 60%);
    pointer-events: none;
}

/* Dekoratif daire (arka plan) */
header::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}

.header-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.13);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.8px;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.site-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 12vw, 5.6rem);
    font-weight: 800;
    line-height: 1.05;
    text-shadow: 2px 5px 18px rgba(0,0,0,0.35);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.site-title .gold { color: var(--gold-light); }

.tagline {
    font-size: clamp(1rem, 3.5vw, 1.22rem);
    font-weight: 300;
    font-style: italic;
    opacity: 0.88;
    margin-bottom: 36px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold-light);
    color: var(--red-dark);
    padding: 17px 42px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.08rem;
    box-shadow: 0 6px 24px rgba(0,0,0,0.22);
    transition: all 0.22s;
}

.btn-hero:hover {
    background: #fff;
    color: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.25);
}

/* Dal dalgası */
.hero-delivery-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    background: rgba(255,255,255,0.13);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px;
    padding: 7px 18px;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,0.92);
}

.hero-delivery-badge i {
    font-size: 0.9rem;
    color: var(--gold-light);
}

.header-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.header-wave svg { display: block; width: 100%; height: 56px; }

/* ================================================================
   NAVİGASYON
================================================================ */
#main-nav {
    background: var(--red-dark);
    position: sticky;
    top: 0;
    z-index: 800;
    box-shadow: 0 2px 14px rgba(0,0,0,0.24);
    transition: box-shadow 0.3s;
}

#main-nav.scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,0.36);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold-light);
    white-space: nowrap;
    padding: 14px 0;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-links li a {
    display: block;
    color: rgba(255,255,255,0.82);
    padding: 14px 13px;
    font-size: 0.87rem;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.2s;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--gold-light);
}

.nav-links .nav-call {
    background: rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    color: var(--gold-light) !important;
    font-weight: 700;
    margin-left: 6px;
}

.nav-links .nav-call:hover {
    background: rgba(255,255,255,0.22);
}

/* Hamburger düğmesi – sadece mobilde görünür */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 10px 6px;
    line-height: 1;
    flex-shrink: 0;
}

/* ── Mobil Nav ── */
@media (max-width: 720px) {
    .nav-toggle { display: block; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--red-dark);
        padding: 8px 0 16px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.30);
        gap: 0;
    }

    .nav-links.open { display: flex; }

    .nav-links li { width: 100%; }

    .nav-links li a {
        padding: 13px 24px;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .nav-links .nav-call {
        margin: 10px 20px 0;
        text-align: center;
        border-radius: var(--radius-sm);
    }
}

/* ================================================================
   BÖLÜM ORTAK
================================================================ */
.section { padding: 72px 0; }

.section-alt { background: var(--cream-dark); }

/* Bölüm başlığı */
.section-head { text-align: center; margin-bottom: 48px; }

.section-ornament {
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 0 auto 14px;
    border-radius: 2px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 5vw, 2.4rem);
    font-weight: 800;
    color: var(--red-dark);
    margin-bottom: 6px;
    line-height: 1.2;
}

.section-sub {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 400;
}

/* ── Ortak Buton ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--red-main);
    color: #fff;
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s, transform 0.15s;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    color: #fff;
}

/* ================================================================
   HAKKIMIZDA
================================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

@media (min-width: 768px) {
    .about-grid { grid-template-columns: 1fr 1fr; }
}

.about-text p {
    color: var(--text-mid);
    font-size: 1.03rem;
    line-height: 1.85;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 22px 18px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-card i {
    font-size: 1.7rem;
    color: var(--red-main);
    margin-bottom: 10px;
    display: block;
}

.feature-card h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.feature-card p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ================================================================
   MENÜ
================================================================ */
.menu-category { margin-bottom: 52px; }

/* Kategori başlığı */
.category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 16px;
    margin-bottom: 20px;
    border-bottom: 2px solid;
}

.category-header.meat   { border-color: var(--red-light); }
.category-header.chicken{ border-color: var(--gold); }
.category-header.drinks { border-color: var(--amber); }

.cat-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    color: #fff;
}

.meat-icon   { background: var(--red-main); }
.chicken-icon{ background: var(--amber); }
.drink-icon  { background: #3B82C4; }

.cat-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--red-dark);
}

.cat-name.chicken { color: #7A4500; }
.cat-name.drinks  { color: #1A4A80; }

.cat-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 3px;
}

/* Menü kartları grid'i */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 560px) {
    .menu-grid { grid-template-columns: 1fr 1fr; }
}

/* Menü kartı */
.menu-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: var(--radius);
    border: 1.5px solid;
    transition: transform 0.15s, box-shadow 0.15s;
}

.menu-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.menu-card.meat    { background: var(--meat-bg); border-color: var(--meat-border); }
.menu-card.chicken { background: var(--chkn-bg); border-color: var(--chkn-border); }

/* Tandır Tombik – sol kenara vurgu */
.menu-card.featured.meat    { border-left: 5px solid var(--red-main); }
.menu-card.featured.chicken { border-left: 5px solid var(--gold); }

.card-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 0;
}

.card-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
}

/* Emoji ikon – kart solunda daire içinde */
.card-emoji {
    font-size: 1.55rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
    user-select: none;
}

.menu-card.meat    .card-emoji { background: rgba(139,21,21,0.11); }
.menu-card.chicken .card-emoji { background: rgba(217,119,6,0.11); }

/* Gramaj metni */
.card-gramaj {
    font-size: 0.74rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 1px;
}

/* Porsiyon göstergesi – 4 nokta */
.card-dots {
    display: flex;
    gap: 5px;
    margin-top: 6px;
    align-items: center;
}

.card-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1.5px solid;
    display: inline-block;
    flex-shrink: 0;
    transition: background 0.2s;
}

.menu-card.meat   .dot          { border-color: var(--red-main); background: transparent; }
.menu-card.meat   .dot.on       { background: var(--red-main); }
.menu-card.chicken .dot         { border-color: var(--amber); background: transparent; }
.menu-card.chicken .dot.on      { background: var(--amber); }

.card-price {
    font-weight: 700;
    font-size: 1.08rem;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: auto;
}

.card-price.meat    { color: var(--red-main); }
.card-price.chicken { color: #7A4500; }

/* Tombik etiketi */
.tombik-tag {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    vertical-align: middle;
}

/* İçecekler listesi */
.drinks-grid {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.drink-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 22px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: background 0.15s;
}

.drink-item:last-child { border-bottom: none; }

.drink-item:hover { background: var(--cream); }

.drink-ico {
    font-size: 1.1rem;
    color: #3B82C4;
    width: 22px;
    text-align: center;
    flex-shrink: 0;
}

.drink-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    flex: 1;
}

.drink-dots {
    flex: 1;
    border-bottom: 2px dotted #D0C0B0;
    min-width: 20px;
}

.drink-price {
    font-weight: 700;
    font-size: 0.98rem;
    color: #1A5E99;
    white-space: nowrap;
}

/* Menü altı CTA */
.menu-cta {
    text-align: center;
    padding-top: 32px;
    border-top: 1px dashed var(--meat-border);
}

.menu-cta p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

/* ================================================================
   GALERİ
================================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 640px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.gallery-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius);
    background: #EAE0D5;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-item a::after {
    content: "\f00e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    background: rgba(0,0,0,0);
    transition: background 0.3s;
    pointer-events: none;
}

.gallery-item a:hover::after {
    background: rgba(0,0,0,0.35);
}

.gallery-item:hover img {
    transform: scale(1.07);
}

/* JS ile enjekte edilen placeholder */
.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #B0A090;
    background: #EAE0D5;
}

.gallery-placeholder i { font-size: 2.4rem; }

.gallery-placeholder span {
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ================================================================
   İLETİŞİM
================================================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

@media (min-width: 820px) {
    .contact-layout {
        grid-template-columns: 1fr 1.1fr;
        align-items: stretch;
    }
}

/* Bilgi kartları kolonu */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.info-card {
    display: flex;
    gap: 16px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 22px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.info-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--red-main);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--red-dark);
    margin-bottom: 6px;
}

.info-content p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
}

.info-phone {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--red-main);
    margin-bottom: 12px;
    transition: color 0.2s;
}

.info-phone:hover { color: var(--red-dark); }

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--red-main);
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: background 0.2s, transform 0.15s;
    box-shadow: var(--shadow-sm);
}

.btn-call:hover {
    background: var(--red-dark);
    transform: scale(1.04);
    color: #fff;
}

.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #2563EB;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 10px;
    transition: background 0.2s, transform 0.15s;
}

.btn-directions:hover {
    background: #1D4ED8;
    transform: scale(1.04);
    color: #fff;
}

/* Çalışma saatleri tablosu */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 4px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 5px 0;
    border-bottom: 1px dashed #EEE;
    font-size: 0.88rem;
}

.hours-row:last-child { border-bottom: none; }

.hours-day   { color: var(--text-muted); }
.hours-time  { font-weight: 600; }
.hours-time.open   { color: #16A34A; }
.hours-time.closed { color: #DC2626; }

/* Harita */
.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 340px;
    background: #DDD;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 340px;
    border: 0;
    display: block;
}

/* ================================================================
   FOOTER
================================================================ */
footer {
    background: var(--red-dark);
    color: rgba(255,255,255,0.78);
    padding: 48px 0 28px;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.13);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold-light);
    font-weight: 800;
    margin-bottom: 4px;
}

.footer-slogan {
    font-size: 0.85rem;
    font-style: italic;
    opacity: 0.72;
}

.footer-details p {
    font-size: 0.87rem;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    line-height: 1.5;
}

.footer-details i {
    color: var(--gold-light);
    margin-top: 3px;
    width: 14px;
    flex-shrink: 0;
}

.footer-phone {
    color: var(--gold-light);
    font-weight: 600;
    transition: opacity 0.2s;
}

.footer-phone:hover { opacity: 0.8; }

.footer-bottom {
    margin-top: 22px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.38);
    text-align: center;
}

/* ================================================================
   MÜŞTERİ YORUMLARI
================================================================ */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
    margin-bottom: 36px;
}

.review-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 22px 20px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
    flex-shrink: 0;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.reviewer-name {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.reviewer-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.local-guide {
    background: #E8F4E8;
    color: #2E7D32;
    padding: 1px 7px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
}

.review-google-ico {
    font-size: 1.2rem;
    color: #DB4437;
    flex-shrink: 0;
    opacity: 0.85;
}

.review-stars {
    display: flex;
    gap: 3px;
}

.review-stars i {
    color: #F9A825;
    font-size: 0.85rem;
}

.review-text {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.7;
    flex: 1;
}

/* "Tüm Yorumları Gör" butonu */
.reviews-cta {
    text-align: center;
}

.btn-google {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--white);
    color: #3C3C3C;
    border: 1.5px solid #DDD;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
    box-shadow: var(--shadow-sm);
}

.btn-google i {
    color: #DB4437;
    font-size: 1rem;
}

.btn-google:hover {
    border-color: #DB4437;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    color: #3C3C3C;
}

/* ================================================================
   RESPONSIVE – Genel Ayarlamalar
================================================================ */
@media (max-width: 500px) {
    header { padding: 48px 16px 72px; }

    .section { padding: 52px 0; }

    .btn-hero {
        padding: 15px 28px;
        font-size: 1rem;
    }

    .sticky-label { display: none; }

    .sticky-call a { padding: 14px 16px; }

    .about-features { grid-template-columns: 1fr 1fr; gap: 10px; }

    .footer-inner { flex-direction: column; gap: 20px; }

    .info-card { flex-direction: column; }
}

@media (max-width: 360px) {
    .site-title { font-size: 2.7rem; }
    .about-features { grid-template-columns: 1fr; }
}
