/* ==========================================
   LUMO COFFEE BLOG STYLES
   Matches the landing page design system
   ========================================== */

/* Reset & Base - Inherited from landing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Matching landing page */
    --dark-bg: #0c0c0c;
    --dark-bg-2: #111111;
    --dark-bg-3: #161616;
    --gold-primary: #f2cf7b;
    --gold-secondary: #d29658;
    --gold-bright: #ffd98a;
    --brown-accent: #7d3f26;
    --purple-primary: #a855f7;
    --purple-secondary: #e879f9;
    --text-primary: #ffffff;
    --text-secondary: rgba(235, 220, 200, 0.95);
    --text-muted: rgba(200, 185, 165, 0.75);

    /* Spacing */
    --section-padding: 120px;
    --container-padding: 24px;

    /* Effects */
    --glass-bg: rgba(168, 107, 62, 0.08);
    --glass-border: rgba(168, 107, 62, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Ambient Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 20%, rgba(242, 207, 123, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(210, 150, 88, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 50% 50%, rgba(125, 63, 38, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ==========================================
   NAVIGATION - Same as landing
   ========================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 12px rgba(242, 207, 123, 0.5));
}

.logo-text {
    color: var(--text-primary);
    font-weight: 700;
}

.logo-highlight {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--gold-primary);
}

/* Active nav link - animated gradient underline */
.nav-link.active {
    color: var(--gold-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary), var(--gold-primary));
    background-size: 200% 100%;
    border-radius: 2px;
    animation: shimmerUnderline 2s linear infinite;
    box-shadow: 0 0 10px rgba(242, 207, 123, 0.5), 0 0 20px rgba(242, 207, 123, 0.3);
}

@keyframes shimmerUnderline {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--gold-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ==========================================
   CTA BUTTONS
   ========================================== */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 14px;
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #f2cf7b 0%, #d29658 50%, #b8956a 100%);
    color: #0a0a0a;
    box-shadow: 0 10px 30px rgba(242, 207, 123, 0.35);
}

.cta-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(242, 207, 123, 0.5);
}

.cta-btn-secondary {
    background: rgba(168, 107, 62, 0.08);
    border: 2px solid rgba(242, 207, 123, 0.3);
    color: var(--gold-primary);
}

.cta-btn-secondary:hover {
    background: rgba(168, 107, 62, 0.15);
    border-color: var(--gold-primary);
}

.cta-btn-nav {
    padding: 12px 24px;
    font-size: 14px;
}

.cta-btn .material-symbols-rounded {
    font-size: 20px;
}

/* ==========================================
   BLOG INDEX PAGE
   ========================================== */
.blog-header {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
}

.blog-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 30%, rgba(168, 85, 247, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 30% 70%, rgba(242, 207, 123, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.blog-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(242, 207, 123, 0.12), rgba(210, 150, 88, 0.08));
    border: 1px solid rgba(242, 207, 123, 0.25);
    border-radius: 50px;
    color: var(--gold-primary);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
}

.section-badge .material-symbols-rounded {
    font-size: 18px;
}

.blog-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 32px;
    padding: 40px 0 80px;
}

/* Blog Card */
a.blog-card,
a.blog-card:link,
a.blog-card:visited,
a.blog-card:hover,
a.blog-card:active {
    display: block;
    text-decoration: none !important;
    color: inherit;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(30, 30, 30, 0.95));
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

a.blog-card .blog-card-title,
a.blog-card:link .blog-card-title,
a.blog-card:visited .blog-card-title {
    color: var(--text-primary) !important;
    text-decoration: none !important;
}

/* New pseudo-element for glow */
.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(242, 207, 123, 0.08), transparent 40%),
        radial-gradient(circle at 10% 80%, rgba(168, 85, 247, 0.05), transparent 40%);
    pointer-events: none;
    z-index: 0;
}

/* Ensure content is above the glow */
.blog-card-image,
.blog-card-content {
    position: relative;
    z-index: 1;
}

a.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(242, 207, 123, 0.4);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), 0 0 40px rgba(242, 207, 123, 0.1);
    cursor: pointer;
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-content {
    padding: 28px;
}

.blog-card-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
    line-height: 1.3;
    transition: color 0.3s ease;
}

/* Removed inner a styles since we handle it on wrapper now */

a.blog-card:hover .blog-card-title {
    color: var(--gold-primary) !important;
}

.blog-card-excerpt {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
}

.blog-card-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

.blog-card-date .material-symbols-rounded {
    font-size: 16px;
}

.blog-card-read {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gold-primary);
    font-weight: 700;
}

.blog-card-read .material-symbols-rounded {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-read .material-symbols-rounded {
    transform: translateX(4px);
}

/* Featured Post */
.blog-card.featured {
    grid-column: span 2;
}

.blog-card.featured .blog-card-image {
    aspect-ratio: 21/9;
}

.blog-card.featured .blog-card-title {
    font-size: 28px;
}

/* ==========================================
   SINGLE BLOG POST
   ========================================== */

/* Back to Blog Navigation */
.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.back-to-blog:hover {
    background: rgba(242, 207, 123, 0.1);
    border-color: rgba(242, 207, 123, 0.3);
    color: var(--gold-primary);
    transform: translateX(-4px);
}

.back-to-blog .material-symbols-rounded {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.back-to-blog:hover .material-symbols-rounded {
    transform: translateX(-3px);
}

/* Top back button - positioned in header */
.post-back-top {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}

/* Bottom back button - after post content */
.post-back-bottom {
    display: flex;
    justify-content: center;
    padding: 40px 0 0;
    border-top: 1px solid var(--glass-border);
    margin-top: 40px;
}

.post-back-bottom .back-to-blog {
    padding: 14px 28px;
    font-size: 15px;
}

.post-back-bottom .back-to-blog .material-symbols-rounded {
    font-size: 20px;
}

.post-header {
    padding: 160px 0 60px;
    text-align: center;
    position: relative;
}

.post-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 30%, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.post-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 1;
}

.post-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(242, 207, 123, 0.12), rgba(210, 150, 88, 0.08));
    border: 1px solid rgba(242, 207, 123, 0.25);
    border-radius: 50px;
    color: var(--gold-primary);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 40px;
}

.post-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.post-meta .material-symbols-rounded {
    font-size: 18px;
    color: var(--gold-primary);
}

/* Featured Image */
.post-featured-image {
    margin: 0 auto 60px;
    max-width: 1000px;
    padding: 0 var(--container-padding);
}

.post-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4), 0 0 40px rgba(242, 207, 123, 0.08);
    border: 1px solid var(--glass-border);
}

/* ==========================================
   POST CONTENT - PREMIUM TYPOGRAPHY
   ========================================== */
.post-content {
    padding: 0 0 80px;
    position: relative;
}

/* Reading Progress Indicator */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--purple-primary), var(--gold-secondary));
    z-index: 1001;
    transition: width 0.1s ease;
}

/* Drop Cap for First Paragraph */
.post-content>p:first-of-type::first-letter {
    float: left;
    font-size: 4.5em;
    line-height: 0.85;
    font-weight: 900;
    margin: 0 16px 0 0;
    padding: 8px 16px 8px 0;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Quicksand', sans-serif;
}

/* Lead Paragraph */
.post-content>p:first-of-type {
    font-size: 20px;
    line-height: 1.75;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--glass-border);
}

/* H2 - Section Headings with Gradient Underline */
.post-content h2 {
    font-size: 28px;
    font-weight: 800;
    margin: 56px 0 24px;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.3;
}

.post-content h2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary));
    border-radius: 2px;
}

/* First H2 after intro */
.post-content>p:first-of-type+h2 {
    margin-top: 40px;
}

/* H3 - Subsection Headings */
.post-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 40px 0 16px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 16px;
    border-left: 3px solid var(--gold-primary);
    line-height: 1.4;
}

/* Paragraphs */
.post-content p {
    font-size: 17px;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 24px;
    letter-spacing: 0.01em;
}

/* Text Highlight - Key phrases */
.post-content mark,
.post-content .highlight {
    background: linear-gradient(135deg, rgba(242, 207, 123, 0.2), rgba(210, 150, 88, 0.15));
    padding: 2px 8px;
    border-radius: 4px;
    color: var(--gold-bright);
    font-weight: 600;
}

/* Strong/Bold text with subtle glow */
.post-content strong {
    color: var(--text-primary);
    font-weight: 700;
    text-shadow: 0 0 20px rgba(242, 207, 123, 0.15);
}

/* Emphasis with style */
.post-content em {
    font-style: italic;
    color: var(--text-secondary);
    opacity: 0.95;
}

/* Unordered Lists - Beautiful Custom Markers */
.post-content ul {
    margin: 28px 0;
    padding-left: 0;
    list-style: none;
}

.post-content ul li {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
}

.post-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(242, 207, 123, 0.4);
}

/* Nested Lists */
.post-content ul ul {
    margin: 12px 0 8px;
}

.post-content ul ul li::before {
    width: 6px;
    height: 6px;
    background: var(--gold-secondary);
    opacity: 0.7;
    box-shadow: none;
}

/* Ordered Lists - Gradient Numbers */
.post-content ol {
    margin: 28px 0;
    padding-left: 0;
    list-style: none;
    counter-reset: list-counter;
}

.post-content ol li {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 20px;
    padding-left: 48px;
    position: relative;
    counter-increment: list-counter;
}

.post-content ol li::before {
    content: counter(list-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(242, 207, 123, 0.15), rgba(210, 150, 88, 0.1));
    border: 1px solid rgba(242, 207, 123, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: var(--gold-primary);
}

/* Blockquotes - Premium Card Style */
.post-content blockquote {
    margin: 40px 0;
    padding: 32px 36px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(232, 121, 249, 0.05));
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-left: 4px solid;
    border-left-color: transparent;
    border-image: linear-gradient(180deg, var(--purple-primary), var(--purple-secondary)) 1;
    border-radius: 0 20px 20px 0;
    font-size: 18px;
    font-style: italic;
    color: var(--text-secondary);
    position: relative;
    line-height: 1.8;
}

.post-content blockquote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 24px;
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.4;
    font-family: Georgia, serif;
}

.post-content blockquote p {
    margin: 0;
    font-size: inherit;
    color: inherit;
}

.post-content blockquote p:last-child {
    margin-bottom: 0;
}

/* Code Inline */
.post-content code {
    background: linear-gradient(135deg, rgba(242, 207, 123, 0.12), rgba(168, 107, 62, 0.08));
    padding: 4px 10px;
    border-radius: 6px;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.88em;
    color: var(--gold-primary);
    border: 1px solid rgba(242, 207, 123, 0.15);
}

/* Links - Animated Underline */
.post-content a {
    color: var(--gold-primary);
    text-decoration: none;
    position: relative;
    font-weight: 600;
    transition: all 0.3s ease;
}

.post-content a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary));
    transition: width 0.3s ease;
}

.post-content a:hover::after {
    width: 100%;
}

.post-content a:hover {
    color: var(--gold-bright);
}

/* Horizontal Rule */
.post-content hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), var(--gold-primary), var(--glass-border), transparent);
    margin: 48px 0;
}

/* Key Takeaways / Summary Section */
.post-content h2:has(+ ul):last-of-type,
.post-content h2:contains("Key Takeaways"),
.post-content h2:contains("Summary") {
    color: var(--gold-primary);
}

/* Last UL before post-nav = Key takeaways styling */
.post-content>ul:last-of-type {
    background: linear-gradient(135deg, rgba(242, 207, 123, 0.06), rgba(168, 107, 62, 0.04));
    border: 1px solid rgba(242, 207, 123, 0.2);
    border-radius: 20px;
    padding: 28px 28px 12px 28px;
    margin: 32px 0 48px;
}

.post-content>ul:last-of-type li {
    padding-left: 36px;
}

.post-content>ul:last-of-type li::before {
    content: '✓';
    width: auto;
    height: auto;
    background: none;
    box-shadow: none;
    color: var(--gold-primary);
    font-size: 16px;
    font-weight: 700;
    top: 2px;
}

/* Recipe Box */
.recipe-box {
    background: linear-gradient(135deg, rgba(242, 207, 123, 0.08), rgba(168, 107, 62, 0.05));
    border: 1px solid rgba(242, 207, 123, 0.25);
    border-radius: 20px;
    padding: 32px;
    margin: 40px 0;
}

.recipe-box-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.recipe-box-title .material-symbols-rounded {
    font-size: 24px;
}

.recipe-params {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.recipe-param {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.recipe-param-label {
    color: var(--text-muted);
    font-size: 14px;
}

.recipe-param-value {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 15px;
}

/* Pro Tip Box - Enhanced */
.tip-box {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(232, 121, 249, 0.05));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 20px;
    padding: 28px;
    margin: 36px 0;
    display: flex;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.tip-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple-primary), var(--purple-secondary));
}

.tip-box-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(232, 121, 249, 0.2));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tip-box-icon .material-symbols-rounded {
    font-size: 26px;
    color: var(--purple-secondary);
}

.tip-box-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--purple-secondary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tip-box-content p {
    font-size: 15px;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Info Box - For Instructions/Steps */
.info-box {
    background: linear-gradient(135deg, rgba(242, 207, 123, 0.08), rgba(168, 107, 62, 0.05));
    border: 1px solid rgba(242, 207, 123, 0.25);
    border-radius: 20px;
    padding: 28px 32px;
    margin: 36px 0;
    position: relative;
    overflow: hidden;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary));
}

.info-box h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--gold-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box h4::before {
    content: '📋';
    font-size: 20px;
}

.info-box p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.info-box ol,
.info-box ul {
    margin: 16px 0;
    padding-left: 0;
}

.info-box ol li,
.info-box ul li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 32px;
}

.info-box ol {
    counter-reset: info-counter;
}

.info-box ol li {
    counter-increment: info-counter;
}

.info-box ol li::before {
    content: counter(info-counter);
    width: 24px;
    height: 24px;
    font-size: 12px;
    top: 2px;
}

/* Highlight Box - For Choose/Compare Sections */
.highlight-box {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(30, 30, 30, 0.95));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 28px 32px;
    margin: 24px 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.highlight-box:hover {
    border-color: rgba(242, 207, 123, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold-primary), var(--gold-secondary));
    border-radius: 4px 0 0 4px;
}

.highlight-box h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--gold-primary);
    margin-bottom: 12px;
    padding-left: 0;
    border-left: none;
}

.highlight-box p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.75;
}

/* Comparison Table - Blog Style */
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 40px 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.comparison-table thead {
    background: linear-gradient(135deg, rgba(242, 207, 123, 0.1), rgba(168, 107, 62, 0.08));
}

.comparison-table th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 700;
    color: var(--gold-primary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 15px;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr {
    transition: background 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(242, 207, 123, 0.05);
}

.comparison-table .good {
    color: #22c55e;
    font-weight: 600;
}

.comparison-table .bad {
    color: #ef4444;
    font-weight: 600;
}

/* ==========================================
   CTA BANNER (In-Post) - Premium Design
   ========================================== */
.cta-banner {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08) 0%, rgba(242, 207, 123, 0.06) 50%, rgba(125, 63, 38, 0.08) 100%);
    border: 2px solid rgba(242, 207, 123, 0.25);
    border-radius: 28px;
    padding: 48px;
    margin: 56px 0;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Animated background glow */
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 30%, rgba(168, 85, 247, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(242, 207, 123, 0.12) 0%, transparent 25%);
    animation: ctaGlow 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ctaGlow {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(2%, 2%) rotate(3deg);
    }
}

/* Purple accent line at top */
.cta-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--purple-primary), var(--gold-primary), var(--purple-secondary), transparent);
    border-radius: 0 0 4px 4px;
}

.cta-banner-content {
    position: relative;
    z-index: 1;
}

.cta-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(232, 121, 249, 0.15));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50px;
    color: var(--purple-secondary);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-banner-badge .material-symbols-rounded {
    font-size: 18px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.cta-banner h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--text-primary);
    position: relative;
    line-height: 1.2;
}

.cta-banner h3 .gradient-text {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-banner p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.7;
    position: relative;
}

/* Features mini-list */
.cta-banner-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.cta-banner-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.cta-banner-feature .material-symbols-rounded {
    font-size: 18px;
    color: var(--gold-primary);
}

/* Right side - pricing card */
.cta-banner-pricing {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(242, 207, 123, 0.2);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cta-banner-pricing::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(242, 207, 123, 0.3), rgba(168, 85, 247, 0.2), rgba(242, 207, 123, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.cta-banner .price-highlight {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.cta-banner .price-amount {
    font-size: 52px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.cta-banner .price-period {
    font-size: 20px;
    color: var(--text-muted);
    font-weight: 600;
}

.cta-banner .price-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.cta-banner .cta-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 16px;
    position: relative;
    margin-bottom: 16px;
    color: #0a0a0a;
}

.cta-banner .guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.cta-banner .guarantee .material-symbols-rounded {
    font-size: 16px;
    color: var(--gold-primary);
}

/* Save badge */
.cta-save-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    border-radius: 20px;
    color: #0a0a0a;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cta-banner {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        text-align: center;
    }

    .cta-banner h3 {
        font-size: 26px;
    }

    .cta-banner-features {
        align-items: center;
    }

    .cta-banner .price-amount {
        font-size: 44px;
    }
}

/* ==========================================
   POST NAVIGATION
   ========================================== */
.post-nav {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
}

.post-nav-item {
    flex: 1;
    padding: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    text-decoration: none;
    transition: var(--transition);
}

.post-nav-item:hover {
    border-color: rgba(242, 207, 123, 0.4);
    transform: translateY(-4px);
}

.post-nav-item.next {
    text-align: right;
}

.post-nav-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.post-nav-item.next .post-nav-label {
    justify-content: flex-end;
}

.post-nav-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--gold-primary);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--dark-bg-2);
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 15px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    padding: 6px 0;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    max-width: 1280px;
    margin: 40px auto 0;
    padding: 24px var(--container-padding) 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-card.featured {
        grid-column: span 2;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {

    /* Mobile Navigation - Full Screen Menu */
    .nav {
        padding: 16px 0;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        background: #0a0a0a;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 8px;
        padding: 100px 24px 40px;
        z-index: 9999;
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        font-size: 20px;
        padding: 12px 24px;
        width: 100%;
        text-align: center;
        border-radius: 12px;
        transition: background 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(242, 207, 123, 0.1);
    }

    .nav-link.active::after {
        bottom: 4px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 40px;
    }

    .nav-toggle {
        display: flex;
        z-index: 10001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .cta-btn-nav {
        width: 100%;
        justify-content: center;
        margin-top: 16px;
    }

    /* Blog Header Mobile */
    .blog-header {
        padding: 120px 0 50px;
    }

    .blog-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .blog-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }

    /* Blog Grid Mobile */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 4px;
    }

    .blog-card.featured {
        grid-column: span 1;
    }

    .blog-card {
        border-radius: 16px;
    }

    .blog-card-image {
        aspect-ratio: 16/10;
    }

    .blog-card.featured .blog-card-image {
        aspect-ratio: 16/10;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-card-title {
        font-size: 18px;
        line-height: 1.4;
    }

    .blog-card.featured .blog-card-title {
        font-size: 20px;
    }

    .blog-card-excerpt {
        font-size: 14px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .blog-card-meta {
        font-size: 12px;
    }

    .blog-card-tag {
        font-size: 10px;
        padding: 4px 10px;
    }

    /* Post Content Mobile - Premium Typography */
    .post-back-top {
        margin-bottom: 16px;
    }

    .back-to-blog {
        padding: 8px 14px;
        font-size: 13px;
    }

    .back-to-blog .material-symbols-rounded {
        font-size: 16px;
    }

    .post-back-bottom {
        padding: 32px 0 0;
        margin-top: 32px;
    }

    .post-back-bottom .back-to-blog {
        padding: 12px 20px;
        font-size: 14px;
    }

    .post-header {
        padding: 120px 0 32px;
    }

    .post-title {
        font-size: 26px;
        line-height: 1.25;
    }

    .post-meta {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }

    .post-meta-item {
        font-size: 13px;
    }

    .post-featured-image {
        height: auto;
        max-height: 280px;
        border-radius: 16px;
        margin: 24px auto 40px;
        overflow: hidden;
    }

    .post-featured-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .post-container {
        padding: 16px 0;
    }

    .post-content {
        padding: 0 8px;
    }

    /* Drop Cap Mobile */
    .post-content>p:first-of-type::first-letter {
        font-size: 3.5em;
        margin-right: 12px;
        padding: 6px 12px 6px 0;
    }

    /* Lead Paragraph Mobile */
    .post-content>p:first-of-type {
        font-size: 17px;
        margin-bottom: 24px;
        padding-bottom: 24px;
    }

    /* H2 Headings Mobile */
    .post-content h2 {
        font-size: 22px;
        margin: 40px 0 20px;
        padding-bottom: 14px;
    }

    .post-content h2::before {
        width: 50px;
        height: 3px;
    }

    /* H3 Headings Mobile */
    .post-content h3 {
        font-size: 18px;
        margin: 32px 0 14px;
        padding-left: 14px;
    }

    /* Paragraphs Mobile */
    .post-content p {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    /* Lists Mobile */
    .post-content ul li,
    .post-content ol li {
        font-size: 16px;
        line-height: 1.75;
        margin-bottom: 14px;
    }

    .post-content ul li {
        padding-left: 28px;
    }

    .post-content ul li::before {
        width: 7px;
        height: 7px;
        top: 9px;
    }

    .post-content ol li {
        padding-left: 40px;
    }

    .post-content ol li::before {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    /* Key Takeaways Mobile */
    .post-content>ul:last-of-type {
        padding: 24px 20px 10px 20px;
        border-radius: 16px;
        margin: 28px 0 40px;
    }

    .post-content>ul:last-of-type li {
        padding-left: 32px;
    }

    .post-content>ul:last-of-type li::before {
        font-size: 14px;
    }

    /* Blockquotes Mobile */
    .post-content blockquote {
        padding: 24px 20px;
        margin: 28px 0;
        font-size: 16px;
        border-radius: 0 16px 16px 0;
    }

    .post-content blockquote::before {
        font-size: 48px;
        top: -5px;
        left: 16px;
    }

    /* Recipe Box Mobile */
    .recipe-box {
        padding: 24px 20px;
        border-radius: 16px;
        margin: 32px 0;
    }

    .recipe-box-title {
        font-size: 17px;
    }

    .recipe-params {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .recipe-param {
        padding: 10px 14px;
    }

    /* Tip Box Mobile */
    .tip-box {
        flex-direction: column;
        padding: 24px 20px;
        gap: 16px;
        border-radius: 16px;
    }

    .tip-box-icon {
        width: 44px;
        height: 44px;
    }

    .tip-box-content h4 {
        font-size: 16px;
    }

    .tip-box-content p {
        font-size: 14px;
    }

    /* Info Box Mobile */
    .info-box {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .info-box h4 {
        font-size: 16px;
    }

    .info-box p,
    .info-box ol li,
    .info-box ul li {
        font-size: 14px;
    }

    /* Highlight Box Mobile */
    .highlight-box {
        padding: 24px 20px;
        border-radius: 16px;
        margin: 20px 0;
    }

    .highlight-box h3 {
        font-size: 16px;
    }

    .highlight-box p {
        font-size: 14px;
    }

    /* Comparison Table Mobile */
    .comparison-table {
        border-radius: 16px;
        margin: 32px 0;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 14px;
        font-size: 13px;
    }

    /* CTA Banner Mobile */
    .cta-banner {
        padding: 28px 20px;
        border-radius: 20px;
        margin: 40px 0;
    }

    .cta-banner h3 {
        font-size: 20px;
    }

    .cta-banner p {
        font-size: 14px;
    }

    .cta-banner-features {
        gap: 10px;
    }

    .cta-banner-feature {
        font-size: 13px;
    }

    .cta-banner .price-amount {
        font-size: 40px;
    }

    .cta-banner .cta-btn {
        width: 100%;
        justify-content: center;
    }

    /* Post Navigation Mobile */
    .post-nav {
        flex-direction: column;
        gap: 16px;
        padding: 32px 0;
    }

    .post-nav-item {
        padding: 20px;
    }

    .post-nav-item.next {
        text-align: left;
    }

    .post-nav-item.next .post-nav-label {
        justify-content: flex-start;
    }

    .post-nav-title {
        font-size: 15px;
    }

    /* Footer Mobile */
    .footer {
        padding: 40px 0 24px;
    }

    .footer-container {
        gap: 32px;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-tagline {
        text-align: center;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        text-align: center;
    }

    .footer-column h5 {
        font-size: 13px;
    }

    .footer-column a {
        font-size: 13px;
        padding: 8px 0;
    }

    .footer-bottom {
        font-size: 12px;
        margin-top: 24px;
    }
}

@media (max-width: 480px) {

    /* Extra small screens */
    .blog-header {
        padding: 110px 0 40px;
    }

    .blog-title {
        font-size: 24px;
    }

    .blog-subtitle {
        font-size: 14px;
    }

    .blog-card-content {
        padding: 16px;
    }

    .blog-card-title {
        font-size: 16px;
    }

    .blog-card.featured .blog-card-title {
        font-size: 18px;
    }

    .post-title {
        font-size: 22px;
    }

    .post-featured-image {
        max-height: 200px;
    }

    /* Drop Cap - Extra Small */
    .post-content>p:first-of-type::first-letter {
        font-size: 3em;
        margin-right: 10px;
        padding: 4px 10px 4px 0;
    }

    .post-content>p:first-of-type {
        font-size: 16px;
    }

    /* Headings - Extra Small */
    .post-content h2 {
        font-size: 20px;
        margin: 36px 0 16px;
        padding-bottom: 12px;
    }

    .post-content h2::before {
        width: 40px;
    }

    .post-content h3 {
        font-size: 17px;
        margin: 28px 0 12px;
        padding-left: 12px;
    }

    /* Text - Extra Small */
    .post-content p {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .post-content ul li,
    .post-content ol li {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .post-content ul li {
        padding-left: 24px;
    }

    .post-content ul li::before {
        width: 6px;
        height: 6px;
        top: 8px;
    }

    .post-content ol li {
        padding-left: 36px;
    }

    .post-content ol li::before {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }

    /* Blockquote - Extra Small */
    .post-content blockquote {
        padding: 20px 16px;
        font-size: 15px;
    }

    .post-content blockquote::before {
        font-size: 40px;
        left: 12px;
    }

    /* Key Takeaways - Extra Small */
    .post-content>ul:last-of-type {
        padding: 20px 16px 8px 16px;
    }

    .post-content>ul:last-of-type li {
        padding-left: 28px;
    }

    /* Components - Extra Small */
    .recipe-box {
        padding: 20px 16px;
    }

    .recipe-box-title {
        font-size: 16px;
    }

    .tip-box {
        padding: 20px 16px;
    }

    .tip-box-icon {
        width: 40px;
        height: 40px;
    }

    .tip-box-icon .material-symbols-rounded {
        font-size: 22px;
    }

    .info-box {
        padding: 20px 16px;
    }

    .highlight-box {
        padding: 20px 16px;
    }

    .cta-banner {
        padding: 24px 16px;
    }

    .cta-banner h3 {
        font-size: 18px;
        line-height: 1.3;
    }

    .cta-banner .price-amount {
        font-size: 36px;
    }

    .cta-save-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Touch-friendly tap targets */
    .nav-link {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .blog-card {
        -webkit-tap-highlight-color: transparent;
    }
}

/* ==========================================
   BLOG FEATURE SECTION (New)
   ========================================== */
.blog-feature-section {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(30, 30, 30, 0.95));
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 60px;
    margin: 40px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    overflow: hidden;
    align-items: center;
}

.blog-feature-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(242, 207, 123, 0.08), transparent 40%),
        radial-gradient(circle at 10% 80%, rgba(168, 85, 247, 0.05), transparent 40%);
    pointer-events: none;
}

.feature-content h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-primary);
}

.feature-content p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 500px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 20px;
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(242, 207, 123, 0.2);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(242, 207, 123, 0.15), rgba(210, 150, 88, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--gold-primary);
}

.feature-icon .material-symbols-rounded {
    font-size: 24px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Mobile responsive for feature section */
/* Mobile responsive for feature section */
@media (max-width: 900px) {
    .blog-feature-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
        text-align: center;
    }

    .feature-content p {
        margin: 0 auto 32px;
    }

    .feature-card {
        text-align: left;
    }

    .feature-logo {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .blog-feature-section {
        padding: 32px 24px;
        border-radius: 24px;
    }

    .feature-content h2 {
        font-size: 28px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   STICKY BOTTOM BAR
   ========================================== */
.sticky-bottom-bar {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--gold-primary);
    padding: 16px 0;
    z-index: 2000;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-bottom-bar.active {
    bottom: 0;
}

.sticky-bar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sticky-bar-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sticky-bar-badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.sticky-bar-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.sticky-bar-text strong {
    color: var(--gold-primary);
    font-weight: 800;
}

.sticky-bar-btn {
    padding: 12px 24px;
    font-size: 14px;
    color: #0a0a0a;
}

.sticky-bar-btn .material-symbols-rounded {
    font-size: 18px;
}

/* Sticky bar responsive */
@media (max-width: 768px) {
    .sticky-bar-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .sticky-bar-info {
        flex-direction: column;
        gap: 8px;
    }

    .sticky-bar-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================
   LOGO STYLES (Ported from Landing Page)
   ========================================== */
.feature-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 24px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 12px rgba(242, 207, 123, 0.5));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-3px) rotate(5deg);
    }
}

.logo-text {
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.5px;
    font-family: 'Quicksand', sans-serif;
}

.logo-highlight {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* ==========================================
   FEATURED PODCAST SECTION
   ========================================== */
.blog-podcast-section {
    padding: 0 0 60px;
    position: relative;
}

.podcast-spotlight {
    max-width: 1000px;
    margin: 0 auto;
}

.podcast-spotlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(232, 121, 249, 0.15));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50px;
    color: var(--purple-secondary);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
}

.podcast-spotlight-badge .material-symbols-rounded {
    font-size: 18px;
}

.podcast-spotlight-card {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 40px;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(30, 30, 30, 0.9));
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(168, 85, 247, 0.08),
        0 0 120px rgba(242, 207, 123, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.podcast-spotlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(168, 85, 247, 0.08), transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(242, 207, 123, 0.06), transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.podcast-spotlight-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 32px 100px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(168, 85, 247, 0.12),
        0 0 150px rgba(242, 207, 123, 0.08);
    border-color: rgba(168, 85, 247, 0.4);
}

/* Podcast Cover */
.podcast-spotlight-cover {
    position: relative;
    flex-shrink: 0;
    z-index: 1;
}

.podcast-cover-image {
    width: 220px;
    height: 220px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow:
        0 16px 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(168, 85, 247, 0.15);
    border: 2px solid rgba(168, 85, 247, 0.3);
    transition: var(--transition);
}

.podcast-spotlight-card:hover .podcast-cover-image {
    transform: scale(1.03) rotate(-2deg);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 50px rgba(168, 85, 247, 0.2);
}

.podcast-cover-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180%;
    height: 180%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, transparent 60%);
    filter: blur(50px);
    pointer-events: none;
    z-index: -1;
}

.podcast-new-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-secondary));
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.5);
    animation: badgePulse 2s ease-in-out infinite;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(168, 85, 247, 0.5);
    }

    50% {
        box-shadow: 0 4px 30px rgba(168, 85, 247, 0.7);
    }
}

/* Podcast Content */
.podcast-spotlight-content {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.podcast-spotlight-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.podcast-series {
    font-size: 12px;
    font-weight: 700;
    color: var(--purple-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.podcast-duration {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

.podcast-spotlight-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 14px;
    line-height: 1.3;
}

.podcast-spotlight-desc {
    font-size: 15px;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 24px;
    padding-left: 16px;
    border-left: 3px solid var(--purple-primary);
}

/* Podcast Player */
.podcast-spotlight-player {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 20px;
    margin-bottom: 24px;
}

.podcast-play-btn {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-secondary));
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow:
        0 8px 30px rgba(168, 85, 247, 0.4),
        0 0 0 0 rgba(168, 85, 247, 0.4);
}

.podcast-play-btn:hover {
    transform: scale(1.08);
    box-shadow:
        0 12px 40px rgba(168, 85, 247, 0.5),
        0 0 0 8px rgba(168, 85, 247, 0.1);
}

.podcast-play-btn:active {
    transform: scale(0.95);
}

.podcast-play-btn .material-symbols-rounded {
    font-size: 32px;
    color: white;
    font-variation-settings: 'FILL' 1, 'wght' 600;
    position: relative;
    z-index: 1;
}

.podcast-play-btn.playing .material-symbols-rounded {
    animation: none;
}

.play-btn-ripple {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid var(--purple-secondary);
    opacity: 0;
    animation: none;
}

.podcast-play-btn.playing .play-btn-ripple {
    animation: playRipple 1.5s ease-out infinite;
}

@keyframes playRipple {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.podcast-player-controls {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Waveform */
.podcast-waveform {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 40px;
    gap: 3px;
}

.waveform-bar {
    flex: 1;
    background: rgba(168, 85, 247, 0.2);
    border-radius: 2px;
    transition: all 0.15s ease;
    min-height: 4px;
}

.waveform-bar.active {
    background: linear-gradient(180deg, var(--purple-primary), var(--purple-secondary));
}

.waveform-bar.playing {
    animation: waveformDance 0.4s ease-in-out infinite alternate;
}

@keyframes waveformDance {
    0% {
        transform: scaleY(0.8);
    }

    100% {
        transform: scaleY(1.2);
    }
}

/* Progress Bar */
.podcast-progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: visible;
}

.podcast-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--purple-primary), var(--purple-secondary));
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
    position: relative;
}

.podcast-progress-handle {
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: var(--purple-secondary);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(168, 85, 247, 0.5);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.podcast-progress-bar:hover .podcast-progress-handle,
.podcast-play-btn.playing~.podcast-player-controls .podcast-progress-handle {
    opacity: 1;
}

.podcast-time {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

/* Podcast Tags */
.podcast-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.podcast-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
}

.podcast-tag:hover {
    background: rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.4);
    color: var(--purple-secondary);
}

.podcast-tag .material-symbols-rounded {
    font-size: 16px;
    color: var(--purple-secondary);
}

/* Responsive Podcast Section */
@media (max-width: 900px) {
    .podcast-spotlight-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 32px 24px;
        gap: 28px;
    }

    .podcast-cover-image {
        width: 180px;
        height: 180px;
    }

    .podcast-spotlight-meta {
        justify-content: center;
        gap: 20px;
    }

    .podcast-spotlight-title {
        font-size: 22px;
    }

    .podcast-spotlight-desc {
        padding-left: 0;
        border-left: none;
        border-top: 2px solid var(--purple-primary);
        padding-top: 14px;
    }

    .podcast-spotlight-player {
        flex-direction: column;
        padding: 20px;
    }

    .podcast-play-btn {
        width: 72px;
        height: 72px;
    }

    .podcast-play-btn .material-symbols-rounded {
        font-size: 36px;
    }

    .podcast-tags {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .podcast-cover-image {
        width: 150px;
        height: 150px;
    }

    .podcast-spotlight-title {
        font-size: 20px;
    }

    .podcast-tags {
        gap: 8px;
    }

    .podcast-tag {
        padding: 8px 12px;
        font-size: 11px;
    }
}