/* Optimized CSS - MisMutfak Core */

/* Font Loading */
@font-face {
    font-family: 'Poppins';
    src: url('https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfecg.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

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

/* Header */
.header {
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo-link { text-decoration: none; }
.logo h1 { font-size: 1.75rem; font-weight: 800; color: #ea580c; letter-spacing: -0.04em; }
.logo h1 span { color: #fb923c; }

.nav-menu { display: flex; list-style: none; gap: 1.5rem; align-items: center; }
.nav-menu a { text-decoration: none; color: #64748b; font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.nav-menu a:hover { color: #ea580c; }

/* Footer */
.mega-footer {
    margin-top: 4rem;
    padding: 4rem 0 1.5rem;
    background:
        radial-gradient(circle at top left, rgba(251, 191, 36, 0.10), transparent 28%),
        linear-gradient(180deg, #0f172a 0%, #111827 100%);
    color: #e2e8f0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
}

.footer-col {
    padding: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
}

.footer-col h3 {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: #fff7ed;
    letter-spacing: -0.02em;
}

.footer-col p {
    color: #cbd5e1;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li + li {
    margin-top: 0.8rem;
}

.footer-col a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-col a:hover {
    color: #fdba74;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.social-link-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    padding: 0.7rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(251, 146, 60, 0.22);
    background: rgba(255, 255, 255, 0.04);
    color: #fff7ed;
    font-size: 0.88rem;
    font-weight: 600;
}

.social-link-pill:hover {
    background: rgba(251, 146, 60, 0.10);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
    color: #94a3b8;
    font-size: 0.92rem;
}

/* Hero Section */
.hero-review {
    padding: 5rem 0;
    background: radial-gradient(circle at top right, #fff7ed 0%, #ffffff 50%);
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 3rem;
}

.hero-review h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.hero-review p {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 700px;
}

/* Comparison Table */
.comparison-container {
    margin: 3rem 0 4rem;
    overflow-x: auto;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.comp-table th {
    background: #f8fafc;
    color: #475569;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1.25rem;
}

.comp-table td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
}

.comp-table tr.best-pick {
    background: #fffefb;
    border-left: 4px solid #f59e0b;
}

.product-cell {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    text-align: left;
}

.product-cell img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
}

.score-badge {
    display: inline-flex;
    padding: 0.5rem 1rem;
    background: #0ea5e9;
    color: white;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1.1rem;
}

.btn-buy {
    background: #ea580c;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s;
}

.btn-buy:hover { background: #c2410c; transform: translateY(-2px); }

/* Review Items */
.review-item {
    margin: 5rem 0;
    background: white;
    border-radius: 32px;
    padding: 3.5rem;
    box-shadow: 0 4px 30px rgba(0,0,0,0.03);
    border: 1px solid #f1f5f9;
    position: relative;
}

.rank-badge {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 50px;
    height: 50px;
    background: #ea580c;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-weight: 900;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(234, 88, 12, 0.3);
}

.review-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.meta-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: #fff7ed;
    color: #ea580c;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pros-box { background: #f0fdf4; padding: 1.5rem; border-radius: 20px; border-left: 5px solid #22c55e; }
.cons-box { background: #fef2f2; padding: 1.5rem; border-radius: 20px; border-left: 5px solid #ef4444; }

.pros-box ul, .cons-box ul { list-style: none; }
.pros-box li::before { content: '✓'; color: #22c55e; margin-right: 0.5rem; font-weight: bold; }
.cons-box li::before { content: '✕'; color: #ef4444; margin-right: 0.5rem; font-weight: bold; }

.tech-specs {
    background: #f8fafc;
    padding: 1.25rem;
    border-radius: 15px;
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 2rem;
}

.btn-gradient {
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    display: inline-block;
    transition: all 0.3s;
}

.btn-gradient:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(234, 88, 12, 0.25); }

.review-media img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

@media (max-width: 1024px) {
    .review-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    .hero-review h1 { font-size: 2.5rem; }
    .review-item { padding: 2rem; }
    .pros-cons { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-col { padding: 1.25rem; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* Homepage */
.main-content {
    padding: 0 0 5rem;
}

.home-hero {
    padding: 2.5rem 0 1.5rem;
}

.home-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2rem;
    align-items: stretch;
}

.home-hero-copy {
    position: relative;
    overflow: hidden;
    padding: 3rem;
    border-radius: 32px;
    background:
        radial-gradient(circle at top left, rgba(251, 191, 36, 0.22), transparent 35%),
        linear-gradient(135deg, #fff7ed 0%, #ffffff 58%, #fffbeb 100%);
    border: 1px solid #fed7aa;
    box-shadow: 0 24px 80px rgba(234, 88, 12, 0.10);
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #c2410c;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.home-hero-copy h1 {
    max-width: 11ch;
    margin-bottom: 1rem;
    font-size: clamp(2.8rem, 5vw, 4.6rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
    color: #0f172a;
}

.home-hero-copy p {
    max-width: 58ch;
    font-size: 1.05rem;
    color: #475569;
}

.home-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.home-stat-card {
    padding: 1.1rem 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(251, 146, 60, 0.18);
}

.home-stat-card strong {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
}

.home-stat-card span {
    font-size: 0.92rem;
    color: #64748b;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    border: 1px solid #fdba74;
    background: #fff;
    color: #9a3412;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    border-color: #fb923c;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(249, 115, 22, 0.12);
}

.hero-feature-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    border-radius: 32px;
    background: #0f172a;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.20);
}

.hero-feature-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.hero-feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-feature-card:hover .hero-feature-media img {
    transform: scale(1.06);
}

.hero-feature-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 1rem;
    padding: 1.75rem;
}

.feature-badge {
    display: inline-flex;
    width: fit-content;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: inherit;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-feature-body h2 {
    font-size: 2rem;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.hero-feature-body p {
    color: rgba(255, 255, 255, 0.78);
}

.hero-feature-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: auto;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
}

.hero-rail {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}

.mini-post-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    min-height: 220px;
    padding: 1.4rem;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    background: linear-gradient(180deg, #ffffff 0%, #fff7ed 140%);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.mini-post-card:hover,
.quick-link-card:hover,
.recent-post-card:hover {
    transform: translateY(-4px);
    border-color: #fdba74;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.mini-post-kicker {
    display: inline-block;
    margin-bottom: 0.8rem;
    color: #c2410c;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mini-post-card h3,
.recent-post-card h3 {
    color: #0f172a;
    line-height: 1.18;
    letter-spacing: -0.03em;
}

.mini-post-card p,
.recent-post-card p,
.section-heading p {
    color: #64748b;
}

.mini-post-date,
.recent-post-date {
    color: #94a3b8;
    font-size: 0.86rem;
}

.quick-links-section,
.recent-posts-section {
    margin-top: 2.75rem;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: end;
    margin-bottom: 1.4rem;
}

.section-heading h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
    color: #0f172a;
}

.section-heading p {
    max-width: 55ch;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.quick-link-card {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    padding: 1.25rem;
    border-radius: 22px;
    border: 1px solid #e2e8f0;
    background: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.quick-link-card span {
    color: #0f172a;
    font-size: 1.02rem;
    font-weight: 700;
}

.quick-link-card strong {
    color: #ea580c;
    font-size: 0.9rem;
}

.recent-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
}

.recent-post-card {
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid #e2e8f0;
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.recent-post-card.is-featured {
    background: linear-gradient(180deg, #fff 0%, #fff7ed 140%);
}

.recent-post-media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.recent-post-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.recent-post-card:hover .recent-post-media img {
    transform: scale(1.05);
}

.recent-post-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.35rem;
}

.recent-post-topline,
.recent-post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.recent-post-card h3 a,
.recent-post-footer a {
    color: #0f172a;
    text-decoration: none;
}

.recent-post-footer span {
    color: #64748b;
    font-size: 0.92rem;
}

.recent-post-footer a {
    color: #c2410c;
    font-weight: 700;
}

.empty-home-state {
    padding: 1.5rem;
    border-radius: 22px;
    border: 1px dashed #cbd5e1;
    background: #f8fafc;
    color: #475569;
}

@media (max-width: 1100px) {
    .home-hero-grid,
    .recent-posts-grid,
    .quick-links-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-rail {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-content {
        padding-bottom: 4rem;
    }

    .home-hero {
        padding-top: 1.5rem;
    }

    .home-hero-grid,
    .recent-posts-grid,
    .quick-links-grid,
    .home-hero-stats {
        grid-template-columns: 1fr;
    }

    .home-hero-copy {
        padding: 2rem 1.4rem;
        border-radius: 26px;
    }

    .home-hero-copy h1,
    .section-heading h2 {
        max-width: none;
    }

    .section-heading,
    .recent-post-topline,
    .recent-post-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-feature-body h2 {
        font-size: 1.6rem;
    }

    .btn-gradient,
    .btn-secondary {
        width: 100%;
    }
}
