/* Amigurumi Pins - Modern Pinterest-Style Design
   Beautiful, image-focused, mobile-first */

:root {
    --pinterest: #E60023;
    --pinterest-dark: #ad081b;
    --bg: #f5f5f5;
    --card-bg: #fff;
    --text: #111;
    --text-muted: #5f6368;
    --border: #dadce0;
    --radius: 16px;
    --radius-sm: 8px;
    --shadow: 0 1px 2px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.08);
    --shadow-lg: 0 4px 16px rgba(0,0,0,0.12), 0 8px 32px rgba(0,0,0,0.08);
    --transition: 0.2s ease;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ========== HEADER ========== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--card-bg);
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0.75rem 1rem;
}

@media (min-width: 768px) {
    .header-inner { gap: 1.5rem; padding: 0.75rem 1.5rem; }
}

.header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    flex: 1 1 auto;
    justify-content: flex-end;
}

@media (min-width: 768px) {
    .header-right { gap: 1rem; flex: 0 0 auto; }
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 0.5rem;
}

.logo-img {
    height: 36px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

@media (min-width: 768px) {
    .logo-img {
        height: 48px;
    }
}

.header-inner {
    position: relative;
}

.main-nav {
    display: none;
    gap: 0.5rem;
}

.main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--card-bg);
    padding: 1rem;
    margin: 0 -1rem;
    border-radius: 0 0 var(--radius) var(--radius);
    border: 1px solid var(--border);
    border-top: none;
    box-shadow: var(--shadow);
}

.main-nav.open a {
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.main-nav.open a:hover {
    background: var(--bg);
}

.main-nav a {
    padding: 0.5rem 1rem;
    border-radius: 24px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background var(--transition);
}

.main-nav a:hover {
    background: rgba(0,0,0,0.05);
}

.header-search {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    max-width: 200px;
}


.header-search form {
    display: flex;
    align-items: center;
    background: rgba(0,0,0,0.04);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.header-search form:focus-within {
    border-color: var(--pinterest);
    box-shadow: 0 0 0 2px rgba(230,0,35,0.15);
}

.header-search input {
    flex: 1 1 0;
    min-width: 0;
    border: none;
    padding: 0.5rem 0.85rem 0.5rem 1rem;
    font-size: 0.9rem;
    background: transparent;
    outline: none;
    color: var(--text);
}

.header-search input::placeholder {
    color: var(--text-muted);
}

.header-search button {
    width: 36px;
    height: 36px;
    padding: 0;
    margin: 4px 4px 4px 0;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-search button:hover {
    background: rgba(230,0,35,0.1);
    color: var(--pinterest);
}

@media (min-width: 768px) {
    .header-search {
        max-width: 280px;
    }
    .header-search input {
        padding: 0.6rem 1rem;
        font-size: 0.95rem;
    }
    .header-search button {
        width: 38px;
        height: 38px;
        margin: 4px;
    }
}

.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background var(--transition);
}

.nav-toggle:hover {
    background: rgba(0,0,0,0.05);
}

@media (min-width: 768px) {
    .main-nav { display: flex; }
    .nav-toggle { display: none; }
}

/* ========== HERO ========== */
.hero {
    text-align: center;
    padding: 3rem 1.5rem;
    background: linear-gradient(135deg, #fff5f5 0%, #fff 50%, #f5fff5 100%);
}

.hero h1 {
    margin: 0 0 0.5rem;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--pinterest) 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-muted);
}

@media (min-width: 768px) {
    .hero h1 { font-size: 3rem; }
}

/* ========== CATEGORY NAV ========== */
.category-nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background: var(--card-bg);
    border-bottom: 1px solid var(--border);
}
.category-nav::-webkit-scrollbar {
    display: none;
}

.category-nav a {
    padding: 0.35rem 0.7rem;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
    flex-shrink: 0;
    background: var(--bg);
    transition: all var(--transition);
    white-space: nowrap;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.category-nav a:hover {
    background: #333;
    color: white;
}

.category-nav a.active {
    background: var(--pinterest);
    color: white;
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.5rem;
}

/* ========== RECIPE GRID - Pinterest Masonry ========== */
.recipe-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1rem 0;
}

@media (min-width: 600px) {
    .recipe-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

@media (min-width: 900px) {
    .recipe-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

@media (min-width: 1200px) {
    .recipe-grid { grid-template-columns: repeat(5, 1fr); }
}

@media (min-width: 1500px) {
    .recipe-grid { grid-template-columns: repeat(6, 1fr); }
}

/* ========== RECIPE CARD ========== */
.recipe-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.recipe-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.recipe-card .card-link {
    display: block;
}

.card-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.card-image .placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 3rem;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 0.75rem 0.75rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.difficulty, .time {
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.difficulty.green { background: #10b981; }
.difficulty.orange { background: #f59e0b; }
.difficulty.red { background: #ef4444; }
.difficulty.purple { background: #8b5cf6; }
.difficulty.gray { background: #6b7280; }
.time { background: rgba(255,255,255,0.2); }

.card-content {
    padding: 0.75rem;
}

.card-content h2 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-desc {
    margin: 0.4rem 0 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Save Button */
.pin-save {
    padding: 0 0.75rem 0.75rem;
}

.pinterest-save {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    background: var(--pinterest);
    border-radius: 24px;
    transition: all var(--transition);
}

.pinterest-save:hover {
    background: var(--pinterest-dark);
    transform: scale(1.05);
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--pinterest);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb a::after {
    content: "›";
    margin-left: 0.5rem;
    color: var(--text-muted);
}

/* ========== RECIPE DETAIL ========== */
.recipe-detail {
    max-width: 900px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2rem;
}

@media (min-width: 768px) {
    .recipe-detail { padding: 3rem; }
}

.recipe-header {
    margin-bottom: 1.5rem;
}

/* Intro: thumbnail + content yan yana */
.recipe-intro {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .recipe-intro {
        flex-direction: row;
        align-items: flex-start;
        gap: 2rem;
    }
    .recipe-intro .recipe-content-full {
        flex: 1;
        min-width: 0;
    }
}

.recipe-thumb {
    flex-shrink: 0;
    width: 100%;
    max-width: 280px;
}

@media (min-width: 768px) {
    .recipe-thumb {
        width: 280px;
        position: sticky;
        top: 80px;
    }
}

.recipe-thumb a:first-child {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.recipe-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.recipe-thumb .pin-btn {
    display: block;
    margin-top: 0.75rem;
    padding: 0.6rem 1rem;
    background: var(--pinterest);
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 8px;
    text-align: center;
    transition: background var(--transition);
}

.recipe-thumb .pin-btn:hover {
    background: var(--pinterest-dark);
}

.recipe-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.recipe-meta span {
    padding: 0.4rem 1rem;
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 500;
}

.recipe-meta .time,
.recipe-meta .yield {
    background: var(--bg);
    color: var(--text);
}

.recipe-detail h1 {
    margin: 0 0 1rem;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

@media (min-width: 768px) {
    .recipe-detail h1 { font-size: 2.5rem; }
}

/* Recipe Description with Images */
.recipe-desc {
    color: var(--text);
    line-height: 1.8;
    font-size: 1rem;
}

.recipe-desc p {
    margin: 0 0 1.5rem;
}

.recipe-desc strong {
    color: var(--pinterest);
}

.recipe-desc ul, .recipe-desc ol {
    margin: 0 0 1.5rem;
    padding-left: 1.5rem;
}

.recipe-desc li {
    margin-bottom: 0.5rem;
}

.recipe-desc img {
    width: 100%;
    max-width: 360px;
    margin: 2rem auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.recipe-desc figure {
    margin: 2rem 0;
    text-align: center;
}

.recipe-desc figure img {
    margin: 0 auto 0.75rem;
}

.recipe-desc figcaption {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Full Recipe Content - Standardized Typography */
.recipe-content-full {
    line-height: 1.8;
    font-size: 1rem;
    color: var(--text);
}

.recipe-content-full p,
.recipe-content-full div,
.recipe-content-full span {
    font-size: 1rem !important;
    line-height: 1.8 !important;
    margin: 0 0 1.25rem;
}

.recipe-content-full strong, 
.recipe-content-full b {
    color: var(--pinterest);
    font-weight: 700;
    font-size: inherit !important;
}

.recipe-content-full em,
.recipe-content-full i {
    font-size: inherit !important;
}

.recipe-content-full ul, 
.recipe-content-full ol {
    margin: 0 0 1.5rem;
    padding-left: 1.5rem;
    font-size: 1rem !important;
}

.recipe-content-full li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    font-size: 1rem !important;
}

.recipe-content-full img {
    max-width: 360px;
    width: 100%;
    height: auto;
    margin: 1.5rem auto;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    display: block;
}

.recipe-content-full figure {
    margin: 2rem 0;
    text-align: center;
}

.recipe-content-full figure img {
    margin: 0 auto 0.75rem;
    max-width: 360px;
}

.recipe-content-full figcaption {
    font-size: 0.85rem !important;
    color: var(--text-muted);
    font-style: italic;
}

.recipe-content-full a {
    color: var(--pinterest);
    font-weight: 500;
}

.recipe-content-full a:hover {
    text-decoration: underline;
}

/* Headings */
.recipe-content-full h2, 
.recipe-content-full h3, 
.recipe-content-full h4,
.recipe-content-full h5,
.recipe-content-full h6 {
    margin: 2rem 0 1rem;
    color: var(--text);
    line-height: 1.4;
}

.recipe-content-full h2 {
    font-size: 1.4rem !important;
    font-weight: 700;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--pinterest);
}

.recipe-content-full h3 {
    font-size: 1.2rem !important;
    font-weight: 600;
}

.recipe-content-full h4,
.recipe-content-full h5,
.recipe-content-full h6 {
    font-size: 1.1rem !important;
    font-weight: 600;
}

/* Reset any inline styles from WordPress */
.recipe-content-full [style*="font-size"] {
    font-size: 1rem !important;
}

.recipe-content-full br {
    line-height: 1.5;
}

/* Gallery styles in content */
.recipe-content-full .wp-block-gallery,
.recipe-content-full .blocks-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.recipe-content-full .blocks-gallery-item {
    margin: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.recipe-content-full .blocks-gallery-item figure {
    margin: 0;
}

.recipe-content-full .blocks-gallery-item img {
    margin: 0 auto;
    width: 100%;
    max-width: 200px;
    height: 180px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}

.recipe-content-full .blocks-gallery-item a {
    display: block;
}

/* Image Gallery in Content */
.recipe-desc .wp-block-gallery,
.recipe-desc .blocks-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.recipe-desc .blocks-gallery-item {
    margin: 0;
}

.recipe-desc .blocks-gallery-item img {
    margin: 0;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Recipe Body Grid */
.recipe-body {
    display: grid;
    gap: 2rem;
}

@media (min-width: 992px) {
    .recipe-body {
        grid-template-columns: 400px 1fr;
        gap: 3rem;
    }
}

/* Recipe Gallery */
.recipe-gallery {
    margin: 2rem 0;
}
.recipe-gallery h3 {
    margin: 0 0 1rem;
    font-size: 1.25rem;
}
.recipe-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}
.recipe-gallery .gallery-item {
    position: relative;
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.recipe-gallery .gallery-item .pin-btn-sm {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.35rem 0.6rem;
    font-size: 0.8rem;
    background: var(--pinterest);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    opacity: 0.9;
}
.recipe-gallery .gallery-item .pin-btn-sm:hover {
    opacity: 1;
}
.recipe-gallery figure {
    position: relative;
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.recipe-gallery figure:first-child {
    grid-column: 1 / -1;
}

.recipe-gallery img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.recipe-gallery figure:hover img {
    transform: scale(1.03);
}

.pin-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.6rem 1.25rem;
    background: var(--pinterest);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 24px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all var(--transition);
}

.recipe-gallery figure:hover .pin-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Recipe Content Sections */
.recipe-content {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.ingredients, .steps {
    margin-bottom: 2rem;
}

.ingredients h2, .steps h2 {
    margin: 0 0 1.25rem;
    font-size: 1.5rem;
    font-weight: 700;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--pinterest);
}

.ingredients ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ingredients li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ingredients li::before {
    content: "✓";
    color: var(--pinterest);
    font-weight: bold;
}

.step {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step h3 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: 0 0.75rem 0.75rem 0;
    background: var(--pinterest);
    color: white;
    border-radius: 50%;
    font-size: 0.9rem;
}

.step-content {
    padding-left: 0;
}

.step-content img {
    border-radius: var(--radius-sm);
    margin: 1rem 0;
    box-shadow: var(--shadow);
}

/* Share Section */
.recipe-share {
    text-align: center;
    padding: 2.5rem;
    margin-top: 2rem;
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
    border-radius: var(--radius);
}

.recipe-share h3 {
    margin: 0 0 1rem;
    font-size: 1.25rem;
}

.btn-pinterest {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    background: var(--pinterest);
    border-radius: 32px;
    box-shadow: 0 4px 16px rgba(230, 0, 35, 0.3);
    transition: all var(--transition);
}

.btn-pinterest:hover {
    background: var(--pinterest-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(230, 0, 35, 0.4);
}

/* ========== CATEGORY & SEARCH PAGES ========== */
.category-header, .search-header {
    text-align: center;
    padding: 2.5rem 1rem;
    background: var(--card-bg);
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.category-header h1, .search-header h1 {
    margin: 0 0 0.5rem;
    font-size: 2rem;
    font-weight: 800;
}

.category-header p {
    margin: 0;
    color: var(--text-muted);
}

.search-form {
    display: flex;
    gap: 0.75rem;
    max-width: 500px;
    margin: 1.5rem auto 0;
}

.search-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border);
    border-radius: 32px;
    font-size: 1rem;
    transition: border-color var(--transition);
}

.search-form input:focus {
    outline: none;
    border-color: var(--pinterest);
}

.search-form button {
    padding: 1rem 2rem;
    background: var(--pinterest);
    color: white;
    border: none;
    border-radius: 32px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--transition);
}

.search-form button:hover {
    background: var(--pinterest-dark);
}

/* ========== PAGINATION ========== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 2rem 0;
    flex-wrap: wrap;
}

.pagination a {
    padding: 0.75rem 1.5rem;
    background: var(--card-bg);
    border-radius: 24px;
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.pagination a:hover {
    background: var(--pinterest);
    color: white;
    transform: translateY(-2px);
}

.pagination span {
    color: var(--text-muted);
}

/* ========== EMPTY STATE ========== */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ========== FOOTER ========== */
.site-footer {
    margin-top: 4rem;
    padding: 3rem 1.5rem;
    background: var(--card-bg);
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr auto 1fr;
        text-align: left;
    }
}

.footer-about h3 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
}

.footer-about p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pinterest-follow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--pinterest);
    color: white;
    border-radius: 24px;
    font-weight: 700;
    transition: all var(--transition);
}

.pinterest-follow:hover {
    background: var(--pinterest-dark);
    transform: scale(1.05);
}

.footer-links {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-links { text-align: right; }
}

.footer-links a {
    display: block;
    padding: 0.25rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--pinterest);
}

.footer-copy {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========== UTILITIES ========== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
