@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Quicksand:wght@400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --primary: #FF7B54; /* Warm Coral / Terracotta */
    --primary-light: #FF9B82;
    --primary-dark: #E05F39;
    --secondary: #4A7C59; /* Sage Green */
    --secondary-light: #6A9C79;
    --accent: #FFD56F; /* Playful Yellow */
    --text-main: #3E3636; /* Soft Dark Brown */
    --text-muted: #6B6262;
    --bg-main: #FDF9F1; /* Creamy Off-White */
    --bg-card: #FFFFFF;
    --border-soft: #F0E6D8;
    
    /* Typography */
    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'Quicksand', sans-serif;
    
    /* Organic Shapes */
    --radius-blob-1: 60% 40% 30% 70% / 60% 30% 70% 40%;
    --radius-blob-2: 30% 70% 70% 30% / 30% 30% 70% 70%;
    --radius-soft: 20px;
    --radius-pill: 50px;
    
    /* Shadows & Transitions */
    --shadow-soft: 0 8px 24px rgba(62, 54, 54, 0.08);
    --shadow-hover: 0 12px 32px rgba(255, 123, 84, 0.2);
    --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-smooth: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Layout Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: var(--accent);
    border-radius: var(--radius-pill);
    z-index: -1;
    transform: rotate(-2deg);
}

.bg-white { background-color: var(--bg-card); }
.bg-sage { background-color: #f2f7f4; }
.bg-cream { background-color: var(--bg-main); }

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: var(--transition-bounce);
    text-align: center;
    box-shadow: 0 4px 10px rgba(255, 123, 84, 0.3);
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-hover);
    color: white;
}

.btn-secondary {
    background-color: var(--secondary);
    box-shadow: 0 4px 10px rgba(74, 124, 89, 0.3);
}

.btn-secondary:hover {
    background-color: var(--secondary-light);
    box-shadow: 0 12px 32px rgba(74, 124, 89, 0.2);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: none;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

/* Header & Navigation */
header {
    background-color: rgba(253, 249, 241, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px dashed var(--border-soft);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--secondary);
}

.logo::before {
    content: '🐾';
    font-size: 1.5rem;
    transform: rotate(-15deg);
}

.nav-toggle {
    display: block;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--text-main);
    background: none;
    border: none;
}

nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-card);
    padding: 1rem 0;
    box-shadow: var(--shadow-soft);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.4s ease-in-out;
}

nav ul.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

nav ul li {
    text-align: center;
    padding: 0.8rem 0;
}

nav ul li a {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-main);
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.5rem 1rem;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: var(--accent);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
    border-radius: var(--radius-pill);
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a:hover::after {
    width: 80%;
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.hero-bg {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 60%;
    height: 120%;
    background-color: var(--accent);
    border-radius: var(--radius-blob-1);
    z-index: -1;
    opacity: 0.4;
    animation: blob-float 10s infinite alternate ease-in-out;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    border-radius: var(--radius-blob-2);
    box-shadow: var(--shadow-soft);
    object-fit: cover;
    height: 400px;
    width: 100%;
}

.hero-floating-badge {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-soft);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 4s infinite ease-in-out;
}

.hero-floating-badge span {
    font-size: 2rem;
}

.hero-floating-badge p {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--secondary);
}

/* Grids & Cards */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 2rem; }

/* Product Card */
.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-soft);
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: var(--transition-bounce);
    position: relative;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: var(--shadow-hover);
}

.product-img-wrapper {
    height: 220px;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.1) rotate(2deg);
}

.product-category {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.product-card .btn {
    width: 100%;
}

/* Category Card */
.category-card {
    position: relative;
    border-radius: var(--radius-blob-1);
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    z-index: 1;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-card h3 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    z-index: 2;
    font-size: 1.8rem;
}

/* About / Info Sections */
.info-block {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.info-content {
    flex: 1;
}

.info-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.info-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.info-image {
    flex: 1;
    position: relative;
}

.info-image img {
    border-radius: var(--radius-blob-2);
    box-shadow: var(--shadow-soft);
}

.info-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background-color: var(--accent);
    border-radius: 50%;
    z-index: -1;
}

/* Resident Pets / Team */
.pet-card {
    text-align: center;
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-soft);
    box-shadow: var(--shadow-soft);
}

.pet-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
    border: 5px solid var(--accent);
}

.pet-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.pet-role {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 1rem;
}

/* Newsletter */
.newsletter-section {
    background-color: var(--primary);
    color: white;
    border-radius: var(--radius-soft);
    padding: 4rem 2rem;
    text-align: center;
    margin: 4rem auto;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before,
.newsletter-section::after {
    content: '🐾';
    position: absolute;
    font-size: 6rem;
    opacity: 0.1;
    transform: rotate(25deg);
}

.newsletter-section::before { top: -20px; left: -10px; }
.newsletter-section::after { bottom: -20px; right: 10px; transform: rotate(-25deg); }

.newsletter-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto 0;
}

.newsletter-form input {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    background-color: var(--text-main);
    color: white;
}

.newsletter-form button:hover {
    background-color: black;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-soft);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
    background-color: var(--bg-card);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 123, 84, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Map Placeholder */
.map-placeholder {
    width: 100%;
    height: 350px;
    background-color: #e5e3df;
    border-radius: var(--radius-soft);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '🗺️ Map View (Interactive in Production)';
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* FAQ */
.faq-item {
    background: var(--bg-card);
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid var(--border-soft);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background-color: #faf8f5;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
    border-top: 1px solid var(--border-soft);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-light);
    top: 0;
    bottom: 0;
    left: 20px;
    border-radius: 2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 100%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: auto;
    background-color: white;
    border: 4px solid var(--primary);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    left: 12px;
}

.timeline-content {
    padding: 1.5rem;
    background-color: white;
    position: relative;
    border-radius: var(--radius-soft);
    box-shadow: var(--shadow-soft);
}

.timeline-date {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background-color: var(--text-main);
    color: #e0dcd5;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h2 {
    color: white;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand h2 span { color: var(--primary); }

.footer-col h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul li a {
    transition: color 0.3s ease;
}
.footer-col ul li a:hover { color: var(--primary-light); padding-left: 5px; }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes blob-float {
    0% { transform: translate(0, 0) scale(1); border-radius: var(--radius-blob-1); }
    50% { transform: translate(2%, 5%) scale(1.05); border-radius: var(--radius-blob-2); }
    100% { transform: translate(-2%, -5%) scale(0.95); border-radius: 50% 50% 30% 70% / 30% 60% 40% 70%; }
}

/* Media Queries */
@media (min-width: 768px) {
    .nav-toggle { display: none; }
    
    nav ul {
        display: flex;
        flex-direction: row;
        position: static;
        width: auto;
        background: none;
        padding: 0;
        box-shadow: none;
        clip-path: none;
    }
    
    nav ul li { padding: 0 0 0 2rem; }
    
    .hero-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-content h1 { font-size: 4rem; }
    
    .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    
    .info-block { flex-direction: row; }
    
    .info-block.reverse { flex-direction: row-reverse; }
    
    .newsletter-form {
        flex-direction: row;
    }
    
    .newsletter-form input {
        flex: 1;
    }
    
    .footer-container {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
    
    .timeline::after {
        left: 50%;
        margin-left: -2px;
    }
    
    .timeline-item {
        width: 50%;
        padding: 10px 40px;
    }
    
    .timeline-item:nth-child(even) {
        left: 50%;
    }
    
    .timeline-item:nth-child(odd) {
        left: 0;
    }
    
    .timeline-item:nth-child(odd)::after {
        right: -12px;
        left: auto;
    }
    
    .timeline-item:nth-child(even)::after {
        left: -12px;
    }
}

/* Shop Layout */
.shop-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.shop-sidebar {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--radius-soft);
    box-shadow: var(--shadow-soft);
}

.filter-group {
    margin-bottom: 1.5rem;
}

.filter-group h4 {
    margin-bottom: 0.8rem;
    color: var(--secondary);
    border-bottom: 1px solid var(--border-soft);
    padding-bottom: 0.5rem;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    font-family: var(--font-body);
}

.deal-of-week {
    background: var(--accent);
    padding: 2rem;
    border-radius: var(--radius-soft);
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-direction: column;
    text-align: center;
    margin-bottom: 3rem;
}

.deal-of-week img {
    border-radius: var(--radius-blob-2);
    width: 250px;
    height: 250px;
    object-fit: cover;
}

.deal-content h2 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.deal-content .price {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--text-main);
    margin-bottom: 1rem;
}

.deal-content .price s {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.size-guide-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: var(--bg-card);
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius-soft);
    overflow: hidden;
}

.size-guide-table th, .size-guide-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-soft);
}

.size-guide-table th {
    background: var(--secondary);
    color: white;
    font-family: var(--font-heading);
}

.category-header {
    text-align: center;
    padding: 4rem 1rem;
    background-color: var(--primary-light);
    color: white;
    border-radius: var(--radius-blob-1);
    margin-bottom: 3rem;
}

.category-header h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .shop-layout {
        flex-direction: row;
    }
    
    .shop-sidebar {
        width: 250px;
        flex-shrink: 0;
        align-self: flex-start;
        position: sticky;
        top: 100px;
    }
    
    .shop-main {
        flex-grow: 1;
    }
    
    .deal-of-week {
        flex-direction: row;
        text-align: left;
    }
}
/* Blog & FAQ Enhancements */
.blog-header {
    text-align: center;
    padding: 5rem 1rem;
    background-color: var(--primary-light);
    color: white;
    border-radius: var(--radius-blob-1);
    margin-bottom: 4rem;
}
.blog-header h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
}
.blog-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.blog-category-pill {
    padding: 0.5rem 1.5rem;
    background-color: var(--bg-card);
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    color: var(--secondary);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-bounce);
    cursor: pointer;
}
.blog-category-pill:hover, .blog-category-pill.active {
    background-color: var(--secondary);
    color: white;
    transform: translateY(-3px);
}
.author-spotlight {
    background: var(--bg-card);
    border-radius: var(--radius-soft);
    padding: 3rem;
    margin: 4rem 0;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: var(--shadow-soft);
    flex-direction: column;
    text-align: center;
}
.author-spotlight img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--accent);
}
.author-content h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

/* Blog Post Detailed */
.post-hero {
    position: relative;
    height: 500px;
    border-radius: var(--radius-soft);
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-soft);
}
.post-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.post-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}
.post-hero-overlay h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}
.post-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 1rem;
    font-family: var(--font-heading);
}
.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.post-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.post-sidebar {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-soft);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 100px;
}
.toc {
    list-style: none;
    margin-top: 1rem;
}
.toc li {
    margin-bottom: 0.8rem;
}
.toc a {
    color: var(--text-muted);
    transition: var(--transition-smooth);
}
.toc a:hover {
    color: var(--primary);
    padding-left: 5px;
}
.post-content-body {
    font-size: 1.15rem;
    line-height: 1.8;
}
.post-content-body h2 {
    color: var(--secondary);
    margin: 2.5rem 0 1rem;
    font-size: 2rem;
}
.post-content-body p {
    margin-bottom: 1.5rem;
}
.pull-quote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
    padding: 2rem;
    border-left: 5px solid var(--accent);
    background: var(--bg-card);
    margin: 2rem 0;
    border-radius: 0 var(--radius-soft) var(--radius-soft) 0;
    box-shadow: var(--shadow-soft);
}
.highlight-tip {
    background-color: #f2f7f4;
    padding: 1.5rem;
    border-radius: var(--radius-soft);
    border: 2px dashed var(--secondary-light);
    margin: 2rem 0;
}
.highlight-tip h4 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.comments-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-soft);
}
.comment-placeholder {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-soft);
    text-align: center;
    color: var(--text-muted);
    border: 2px dashed var(--border-soft);
}

/* FAQ Detailed */
.faq-category {
    margin-bottom: 3rem;
}
.faq-category-title {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.faq-category-title::before {
    content: '';
    width: 15px;
    height: 15px;
    background-color: var(--accent);
    border-radius: 50%;
}
.help-card {
    background-color: var(--primary);
    color: white;
    text-align: center;
    padding: 3rem;
    border-radius: var(--radius-soft);
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}
.help-card h2 {
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}
.help-card p {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}
.help-card .btn {
    background-color: white;
    color: var(--primary);
    position: relative;
    z-index: 2;
}
.help-card .btn:hover {
    background-color: var(--bg-main);
}
.help-card::after {
    content: '🐾';
    position: absolute;
    font-size: 8rem;
    opacity: 0.1;
    right: -20px;
    bottom: -30px;
    transform: rotate(-15deg);
}

@media (min-width: 768px) {
    .author-spotlight {
        flex-direction: row;
        text-align: left;
    }
    .post-layout {
        flex-direction: row;
    }
    .post-main {
        flex-grow: 1;
        width: calc(100% - 300px);
    }
    .post-sidebar {
        width: 250px;
        flex-shrink: 0;
    }
}
