/**
 * Visual Reset - Browser Buys Mockup Styles
 */
/* ===== HERO SECTION ===== *//* ===== HERO SECTION (Masthead Style) ===== */
.hero-section {
    position: relative;
    height: 350px; /* Compact Masthead height */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 3rem;
}

.hero-overlay {
    position: absolute; 
    inset: 0;
    background: linear-gradient(to bottom, rgba(26,26,26,0.4), rgba(26,26,26,0.95));
}

.hero-content {
    position: relative; 
    z-index: 10;
    max-width: 800px; 
    padding: 0 20px;
}

/* ENHANCED HERO STYLES */
/* Logo: Stronger drop shadow for 3D 'pop' effect */
.hero-logo img {
    max-width: 280px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(0,0,0,0.6));
}
/* Excerpt: Larger, bolder, and easier to read */
.hero-excerpt {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    opacity: 1;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    line-height: 1.4;
}
/* New Hero CTA Button (Orange Pill) */
.btn-hero-cta {
    display: inline-block;
    background: #ff6600;
    color: #fff !important;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 40px;
    border-radius: 50px; /* Pill shape */
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4); /* Glowing orange shadow */
    transition: all 0.3s ease;
}
.btn-hero-cta:hover {
    background: #e65c00;
    transform: translateY(-3px); /* Lifts up on hover */
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.6);
}

/* ===== OVERLAY CARDS (Reviews) ===== */ .overlay-card { position: relative; height: 400px; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 20px rgba(0,0,0,0.1); } .card-bg-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; } .overlay-card:hover .card-bg-img { transform: scale(1.05); } .card-gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%); } .card-text { position: absolute; bottom: 0; left: 0; right: 0; padding: 25px; color: #fff; z-index: 2; } .card-cat { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; display: block; opacity: 0.8; } .card-title { font-size: 1.5rem; font-weight: 700; line-height: 1.2; margin-bottom: 10px; color: #fff; } .card-meta { font-size: 0.8rem; opacity: 0.7; }

/* ===== CATEGORY CARDS ===== */
.cat-badge-container { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; } 
.cat-badge { background: rgba(16, 24, 64, 0.9); /* Dark Blue Badge */ color: #fff; text-transform: uppercase; font-weight: 800; padding: 15px 30px; border-radius: 4px; border: 1px solid rgba(255,255,255,0.2); text-decoration: none; letter-spacing: 1px; }

/* Mobile */ @media (max-width: 768px) { .grid-cols-3 { grid-template-columns: 1fr; } .hero-title { font-size: 2rem; } .overlay-card { height: 300px; } }

/* ===== FORCE MENU VISIBILITY ===== */
.site-header .main-navigation a,
.site-header .menu-item a {
    color: #000000 !important; /* Force Black */
    font-weight: 600;
}
.site-header .main-navigation a:hover,
.site-header .menu-item a:hover {
    color: #444444 !important; /* Dark Gray on Hover */
}

/* ===== NUCLEAR MENU VISIBILITY FIX ===== */
/* Targets ID and Class for maximum specificity */
#site-header .primary-menu-container ul.menu > li > a,
#site-header .main-navigation a,
.site-header .menu-item a,
.main-navigation .menu-item > a {
    color: #111111 !important; /* Force Pitch Black */
    opacity: 1 !important;
    text-shadow: none !important;
}
/* Hover State */
#site-header .primary-menu-container ul.menu > li > a:hover,
.site-header .menu-item a:hover {
    color: #555555 !important;
}

/* ===== TOP PICKS (Simple Cards) ===== */
.product-card-simple {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex; flex-direction: column;
}
.product-card-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.product-card-simple .img-link {
    display: block; height: 220px; overflow: hidden;
    background: #f9f9f9; padding: 20px;
    display: flex; align-items: center; justify-content: center;
}
.product-card-simple .product-img {
    max-height: 100%; width: auto; object-fit: contain;
}
.product-card-simple .product-content {
    padding: 25px; flex-grow: 1; display: flex; flex-direction: column; text-align: center;
}
.product-card-simple .product-title {
    font-size: 1.15rem; font-weight: 700; margin-bottom: 1.5rem; line-height: 1.4;
}
.product-card-simple .product-title a {
    color: #1a1a1a; text-decoration: none;
}
.btn-read-more {
    display: inline-block; margin-top: auto;
    background: #ff6600; color: #fff !important;
    font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
    padding: 12px 20px; border-radius: 4px; text-decoration: none;
    transition: background 0.2s;
}
.btn-read-more:hover { background: #e65c00; }

/* ===== TOP PICKS (White Card + Orange Button) ===== */
.product-card-simple {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex; flex-direction: column;
    height: 100%;
}
.product-card-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.product-card-simple .img-link {
    display: block; height: 220px; overflow: hidden;
    background: #f9f9f9; padding: 20px;
    display: flex; align-items: center; justify-content: center;
}
.product-card-simple .product-img {
    max-height: 100%; width: auto; object-fit: contain;
}
.product-card-simple .product-content {
    padding: 25px; flex-grow: 1; display: flex; flex-direction: column; text-align: center;
}
.product-card-simple .product-title {
    font-size: 1.15rem; font-weight: 700; margin-bottom: 1.5rem; line-height: 1.4;
}
.product-card-simple .product-title a {
    color: #1a1a1a; text-decoration: none;
}
.btn-read-more {
    display: inline-block; margin-top: auto;
    background: #ff6600; /* Safety Orange */
    color: #fff !important;
    font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
    padding: 12px 20px; border-radius: 4px; text-decoration: none;
    transition: background 0.2s;
}
.btn-read-more:hover { background: #e65c00; color: #fff !important; }

/* ===== SINGLE POST OPTIMIZATION ===== */
/* Constrain reading width for better UX */
.single-post .entry-content {
    max-width: 760px; /* Optimal reading width */
    margin: 0 auto;
    font-size: 1.125rem; /* Slightly larger text */
    line-height: 1.7; 
    color: #333;
}

/* Make headings pop */
.single-post .entry-content h2 {
    margin-top: 2.5rem; 
    margin-bottom: 1rem; 
    font-weight: 800; 
    color: #111; 
    border-bottom: 2px solid #ff6600; /* Brand underline */
    display: inline-block; 
    padding-bottom: 5px; 
}

/* ===== REVIEW BOX STYLES (Use these classes in Editor) ===== */

/* Verdict Box (Green Outline) */
.review-verdict {
    background: #f0fdf4; 
    border: 2px solid #22c55e; 
    padding: 2rem; 
    border-radius: 8px; 
    margin: 2rem 0; 
    text-align: center; 
}
.review-verdict h3 {
    margin-top: 0; 
    color: #15803d; 
}
.review-score {
    font-size: 3rem; 
    font-weight: 900; 
    color: #15803d; 
    display: block; 
    margin: 10px 0;
}

/* Pros & Cons Grid */
.pros-cons-grid {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
    margin: 2rem 0;
}
@media(max-width: 600px) {
    .pros-cons-grid { grid-template-columns: 1fr; }
}

.pros-box {
    background: #f0fdf4; 
    padding: 20px; 
    border-radius: 8px; 
    border-top: 4px solid #22c55e;
}
.cons-box {
    background: #fef2f2; 
    padding: 20px; 
    border-radius: 8px; 
    border-top: 4px solid #ef4444;
}

.pros-box h4 {
    color: #15803d; 
    margin-top: 0; 
    text-transform: uppercase; 
    font-size: 0.9rem; 
    letter-spacing: 1px; 
}
.cons-box h4 {
    color: #b91c1c; 
    margin-top: 0; 
    text-transform: uppercase; 
    font-size: 0.9rem; 
    letter-spacing: 1px; 
}

.pros-box ul, .cons-box ul {
    margin: 0; 
    padding-left: 20px; 
    font-size: 0.95rem; 
}

/* ===== SINGLE POST HEADER POLISH ===== */
/* Center the Title & Meta */
.single-post .entry-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    padding-top: 2rem;
}
/* Make Title Huge & Bold */
.single-post .entry-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #111;
}
/* Constrain the Featured Image (No more massive full-screen images) */
.single-post .entry-hero .post-thumbnail img,
.single-post .wp-block-post-featured-image img {
    max-height: 450px; /* Limits height */
    width: 100%;
    object-fit: cover; /* Keeps it looking sharp */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
/* Meta Data (Date/Author) Styling */
.single-post .entry-meta {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

/* Global Homepage Spacing Reset */
.home .entry-content > section {
    margin-bottom: 60px !important;
    margin-top: 0 !important;
}
.home .hero-section {
    margin-bottom: 60px !important;
}

/* ===== RESTORE PRODUCT CARD STYLES ===== */
.listicle-item { margin-bottom: 60px; }
.listicle-header { margin-bottom: 10px; }
.listicle-number { font-size: 3.5rem; font-weight: 800; color: #111; line-height: 1; }
.inverse-buy-card { display: flex; background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; overflow: hidden; }

.buy-card-image { flex: 0 0 240px; padding: 20px; display: flex; align-items: center; justify-content: center; border-right: 1px solid #f4f4f5; }
.buy-card-image img { max-width: 100%; height: auto; object-fit: contain; }

.buy-card-content { flex: 1; background: #f4f4f5; /* Light Gray Box */ padding: 30px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }

.buy-card-title { font-size: 1.4rem; font-weight: 700; margin-top: 0; margin-bottom: 15px; color: #111; }

/* Buttons: Amazon = Squid Ink, Generic = Black */
.inverse-button { display: inline-block; background-color: #232f3e !important; color: #fff !important; padding: 12px 28px; font-weight: 700; border-radius: 6px; text-decoration: none; }
.inverse-button.btn-generic { background-color: #000000 !important; }

@media (max-width: 768px) {
    .inverse-buy-card { flex-direction: column; }
    .buy-card-image { width: 100%; border-right: none; }
}
