@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;1,400&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --primary: #212121; /* Dark Charcoal */
    --accent: #f57c00; /* Orange Accent */
    --accent-hover: #e65100;
    --bg-light: #f5f5f5; /* Light Grey */
    --bg-white: #ffffff;
    --text-main: #333333;
    --text-muted: #757575;
    --border: #e0e0e0;
    --shadow: 0 4px 12px rgba(0,0,0,0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Lora', serif;
    color: var(--primary);
    line-height: 1.3;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-color: var(--bg-white);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease-out;
}
.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}
@keyframes spin { 100% { transform: rotate(360deg); } }
.loader-text {
    font-family: 'Lora', serif;
    color: var(--primary);
    font-size: 18px;
    letter-spacing: 2px;
}

/* Disclosure */
.disclosure {
    background: var(--bg-light);
    color: var(--text-muted);
    font-size: 12px;
    text-align: center;
    padding: 8px;
    border-bottom: 1px solid var(--border);
}

/* Header */
header {
    background: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}
.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 26px;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}
.logo span { color: var(--accent); }

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    border-radius: 2px;
    transition: all 0.3s;
}
.btn-primary {
    background-color: var(--accent);
    color: var(--bg-white);
}
.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}
.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
}
.btn-outline:hover {
    background-color: var(--primary);
    color: var(--bg-white);
}

/* Containers */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 40px;
}
.bg-white { background: var(--bg-white); }

/* Editorial Hero */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.hero-content h1 {
    font-size: 52px;
    margin-bottom: 25px;
}
.hero-content p {
    font-size: 19px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}
.hero-image {
    width: 100%;
    height: 500px;
    background: var(--border);
    border-radius: 4px;
}

/* Content Blocks */
.editorial-block {
    background: var(--bg-white);
    padding: 60px;
    border: 1px solid var(--border);
    margin-bottom: 40px;
}
.editorial-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
}
.editorial-block p {
    margin-bottom: 20px;
    font-size: 17px;
}

/* Floating Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
}
.float-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-top: 3px solid var(--accent);
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}
.float-card:hover { transform: translateY(-5px); }
.float-card h3 { font-size: 20px; margin-bottom: 15px; }

/* Review Specifics */
.review-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}
.review-header h1 { font-size: 48px; margin-bottom: 20px; }
.review-meta {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}
.pros-box, .cons-box {
    padding: 40px;
    border-radius: 8px;
    background: var(--bg-white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
}
.pros-box { border-top: 4px solid #2e7d32; }
.cons-box { border-top: 4px solid #c62828; }
.pros-box h3 { color: #2e7d32; margin-bottom: 20px;}
.cons-box h3 { color: #c62828; margin-bottom: 20px;}
.pros-cons ul { padding-left: 20px; list-style-position: outside; }
.pros-cons li { margin-bottom: 15px; line-height: 1.6; }
.pros-cons ul { padding-left: 20px; }
.pros-cons li { margin-bottom: 10px; }

/* FAQ */
.faq-wrap { border-top: 1px solid var(--border); margin-top: 40px; }
.faq-row { border-bottom: 1px solid var(--border); padding: 25px 0; cursor: pointer; }
.faq-q { font-family: 'Lora', serif; font-size: 20px; font-weight: 600; color: var(--primary); display: flex; justify-content: space-between; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; color: var(--text-muted); margin-top: 0; }
.faq-a.open { max-height: 300px; margin-top: 15px; }

/* Order PHP Box */
.order-box {
    background: var(--primary);
    color: var(--bg-white);
    padding: 80px 40px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.order-box h2 { color: var(--bg-white); font-size: 36px; margin-bottom: 20px; }
.order-box p { color: #aaa; margin-bottom: 40px; font-size: 18px; }

/* Cookie Popup */
.cookie-banner {
    position: fixed;
    bottom: -150px; left: 0; width: 100%;
    background: var(--primary);
    color: var(--bg-white);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: bottom 0.5s ease;
    z-index: 9999;
}
.cookie-banner.visible { bottom: 0; }
.cookie-btns button {
    padding: 8px 20px;
    margin-left: 10px;
    border: none;
    cursor: pointer;
    font-weight: 500;
}
.c-accept { background: var(--accent); color: white; }
.c-reject { background: transparent; border: 1px solid var(--border); color: white; }

/* Footer */


@media (max-width: 768px) {
    
}
.footer-inner h4 { font-family: 'Roboto', sans-serif; font-size: 16px; margin-bottom: 20px; color: var(--primary); }
.footer-inner ul { list-style: none; padding-left: 0; }
.footer-inner li { margin-bottom: 12px; }
.footer-inner a { color: var(--text-muted); text-decoration: none; }
.footer-inner a:hover { color: var(--accent); }


/* Mobile */
@media (max-width: 768px) {
    .hero { grid-template-columns: 1fr; padding: 60px 20px; }
    .hero-content h1 { font-size: 38px; }
    .cards-grid, .pros-cons, 
@media (max-width: 768px) {
    
}
    .nav-links { display: none; }
    .cookie-banner { flex-direction: column; text-align: center; gap: 15px; }
}

@media (max-width: 768px) {
    .btn-container { display: flex !important; flex-direction: column !important; gap: 15px !important; }
    .btn-container .btn { margin-left: 0 !important; width: 100% !important; }
    
@media (max-width: 768px) {
    
}
}
.btn-container { display: flex; justify-content: flex-start; gap: 15px; margin-top: 30px; }

@media (max-width: 768px) {
    .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 40px;
}
    .editorial-block, .float-card, .pros-box, .cons-box, .order-box { padding: 20px !important; }
    .hero-content h1 { font-size: 32px !important; }
    .review-header h1 { font-size: 32px !important; }
}

/* Fix CSS Grid Blowout on Mobile */
.grid-2, .grid-3, .cards-grid, .pros-cons, .footer-grid, .footer-inner, .features-grid {
    width: 100%;
    max-width: 100vw;
}
.grid-2 > *, .grid-3 > *, .cards-grid > *, .pros-cons > *, .footer-grid > *, .footer-inner > *, .features-grid > * {
    min-width: 0;
    word-wrap: break-word;
}
body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Footer */
footer {
    background: var(--bg-white);
    border-top: 1px solid var(--border);
    padding: 100px 40px 60px;
    margin-top: 100px;
    color: var(--text-muted);
}
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; }
.footer-inner h4 { color: var(--primary); margin-bottom: 25px; font-size: 16px; font-family: 'Roboto', sans-serif; text-transform: uppercase; letter-spacing: 1px; }
.footer-owner { margin: 20px 0; font-size: 15px; color: var(--text-main); font-weight: bold; }
.footer-email { color: var(--accent) !important; text-decoration: none; font-weight: normal; }
.footer-bio { color: var(--text-muted); font-size: 15px; line-height: 1.7; }
.footer-inner ul { list-style: none; padding-left: 0; }
.footer-inner li { margin-bottom: 15px; }
.footer-inner a { color: var(--text-muted); text-decoration: none; transition: all 0.3s; font-size: 15px; font-weight: 500; }
.footer-inner a:hover { color: var(--accent); }
.footer-inner .logo { color: var(--primary); font-size: 28px; font-weight: 600; font-family: 'Lora', serif; display: block; margin-bottom: 10px; text-decoration: none; }
.logo span { color: var(--accent); }
.copyright { text-align: center; color: var(--text-muted); font-size: 14px; margin-top: 60px; padding-top: 30px; border-top: 1px solid var(--border); }
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; } }
