@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --bg: #0a0a0a;
    --surface: #141414;
    --border: #222;
    --text: #e8e8e8;
    --text-muted: #888;
    --gold: #c9a84c;
    --gold-light: #f4d675;
    --blue: #4a90d9;
    --blue-light: #67b8f4;
    --green: #27ae60;
    --green-light: #2ecc71;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(0,0,0,0.4);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

.container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
    background: linear-gradient(180deg, #111 0%, var(--bg) 100%);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
}
.logo img { height: 40px; width: 40px; border-radius: 8px; }
.header-nav { display: flex; gap: 24px; align-items: center; }
.header-nav a { color: var(--text-muted); font-size: 0.9rem; font-weight: 500; }
.header-nav a:hover { color: var(--gold); }

/* Navbar Search — Premium Design */
.nav-search { position: relative; flex: 0 1 380px; }
.nav-search-form {
    display: flex; align-items: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-search-form:focus-within {
    background: rgba(255,255,255,0.07);
    border-color: rgba(201,168,76,0.4);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.08), 0 2px 12px rgba(0,0,0,0.2);
}
.nav-search-form input {
    flex: 1; padding: 10px 18px; background: transparent; border: none;
    color: var(--text); font-size: 0.88rem; font-weight: 400;
    letter-spacing: 0.2px; outline: none; min-width: 0;
    font-family: 'Inter', sans-serif;
}
.nav-search-form input::placeholder { color: #4a4a4a; font-style: italic; }
.nav-search-form button {
    padding: 10px 14px; background: none; border: none;
    color: rgba(201,168,76,0.5); cursor: pointer; display: flex; align-items: center;
    transition: color 0.2s, transform 0.2s;
}
.nav-search-form button:hover { color: var(--gold); transform: scale(1.1); }

/* Search Dropdown Panel */
.nav-search-dropdown {
    position: absolute; top: calc(100% + 12px);
    left: 50%; transform: translateX(-50%);
    width: 720px; max-height: 82vh; overflow-y: auto;
    background: linear-gradient(180deg, #161616 0%, #111 100%);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.03), inset 0 1px 0 rgba(255,255,255,0.04);
    z-index: 200; padding: 20px;
    animation: searchDropIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes searchDropIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.nav-search-dropdown::-webkit-scrollbar { width: 6px; }
.nav-search-dropdown::-webkit-scrollbar-track { background: transparent; }
.nav-search-dropdown::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.2); border-radius: 3px; }

/* Filter Chips */
.search-filters-row {
    display: flex; gap: 6px; align-items: center; flex-wrap: wrap;
    margin-bottom: 16px; padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sf-chip {
    display: flex; align-items: center; gap: 4px;
    color: #555; font-size: 0.78rem; font-weight: 500;
    cursor: pointer; padding: 5px 12px;
    border-radius: 20px; border: 1px solid transparent;
    transition: all 0.25s ease;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}
.sf-chip:hover { color: var(--text-muted); background: rgba(255,255,255,0.04); }
.sf-chip input { appearance: none; -webkit-appearance: none; width: 0; height: 0; margin: 0; padding: 0; }
.sf-chip:has(input:checked) {
    color: var(--gold); background: rgba(201,168,76,0.1);
    border-color: rgba(201,168,76,0.2);
}
.sf-sep { color: rgba(255,255,255,0.08); font-size: 1rem; margin: 0 2px; }

/* Results Count */
.search-count-row {
    color: var(--text-muted); font-size: 0.82rem; margin-bottom: 14px;
    font-family: 'Inter', sans-serif; letter-spacing: 0.2px;
}
.search-count-row strong { color: var(--gold); font-weight: 600; }

/* Results Grid */
.search-dropdown-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.search-dropdown-grid .s-card {
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px; overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none; color: var(--text); display: block;
    position: relative;
}
.search-dropdown-grid .s-card:hover {
    border-color: rgba(201,168,76,0.3);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.1);
    transform: translateY(-2px);
}
.search-dropdown-grid .s-card img {
    width: 100%; aspect-ratio: 1; object-fit: cover; display: block;
    transition: transform 0.4s ease;
}
.search-dropdown-grid .s-card:hover img { transform: scale(1.04); }
.search-dropdown-grid .s-card-body {
    padding: 10px 12px;
    background: linear-gradient(0deg, var(--surface) 0%, rgba(20,20,20,0.95) 100%);
}
.search-dropdown-grid .s-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.82rem; font-weight: 600;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    color: var(--text);
}
.search-dropdown-grid .s-card-meta {
    font-size: 0.72rem; color: var(--text-muted); margin-top: 4px;
    display: flex; align-items: center; gap: 6px;
}
.search-dropdown-grid .s-badge {
    display: inline-block; padding: 2px 8px; border-radius: 4px;
    font-size: 0.62rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.8px;
}
.search-dropdown-grid .s-badge.premium {
    background: linear-gradient(135deg, rgba(201,168,76,0.9), rgba(244,214,117,0.9));
    color: #1a1a2e;
}
.search-dropdown-grid .s-badge.normal {
    background: linear-gradient(135deg, rgba(74,144,217,0.85), rgba(103,184,244,0.85));
    color: #fff;
}
.search-dropdown-grid .s-badge.free {
    background: linear-gradient(135deg, rgba(39,174,96,0.85), rgba(46,204,113,0.85));
    color: #fff;
}

/* Search Pagination */
.search-paging-row {
    display: flex; justify-content: center; gap: 6px;
    margin-top: 16px; padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.search-paging-row button {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-muted); padding: 6px 14px;
    border-radius: 8px; cursor: pointer; font-size: 0.8rem;
    font-weight: 500; transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}
.search-paging-row button:hover {
    border-color: rgba(201,168,76,0.3); color: var(--gold);
    background: rgba(201,168,76,0.06);
}
.search-paging-row button.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #0a0a0a; border-color: var(--gold); font-weight: 700;
}

/* Search Loading Shimmer */
.search-loading { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.search-shimmer {
    background: var(--surface); border-radius: 10px; overflow: hidden;
    aspect-ratio: 1; position: relative;
}
.search-shimmer::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.04), transparent);
    animation: shimmer 1.5s infinite;
}
@keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

/* No Results State */
.search-empty {
    text-align: center; padding: 40px 20px;
    color: var(--text-muted); font-family: 'Inter', sans-serif;
}
.search-empty svg { opacity: 0.3; margin-bottom: 12px; }
.search-empty p { font-size: 0.9rem; }

/* Promoted ribbon for paid items in free galleries */
.ribbon-promoted { position: absolute; top: 0; right: 0; width: 110px; height: 110px; overflow: hidden; z-index: 3; pointer-events: none; }
.ribbon-promoted span { display: block; position: absolute; top: 22px; right: -30px; width: 160px; padding: 5px 0; font-size: 0.6rem; font-weight: 700; letter-spacing: 2px; text-align: center; text-transform: uppercase; transform: rotate(45deg); box-shadow: 0 2px 6px rgba(0,0,0,0.3); }
.ribbon-promoted.premium span { background: linear-gradient(135deg, #a3872a, #c9a84c, #f4d675, #c9a84c, #a3872a); color: #1a1a2e; }
.ribbon-promoted.normal span { background: linear-gradient(135deg, #2a6ab3, #4a90d9, #67b8f4, #4a90d9, #2a6ab3); color: #fff; }

/* Free page tag sections */
.free-tag-section { margin-bottom: 48px; }
.free-tag-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.free-tag-header h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--text); }
.free-tag-header a { color: var(--gold); font-size: 0.85rem; text-decoration: none; }
.free-tag-header a:hover { text-decoration: underline; }

/* Hero */
.hero {
    text-align: center;
    padding: 80px 24px;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p { color: var(--text-muted); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }

/* Collection Cards */
.collections { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 48px 0; }
.collection-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.collection-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.collection-card.premium { border-color: rgba(201,168,76,0.3); }
.collection-card.premium:hover { box-shadow: 0 4px 32px rgba(201,168,76,0.15); }
.collection-card.normal { border-color: rgba(74,144,217,0.3); }
.collection-card.free { border-color: rgba(39,174,96,0.3); }
.collection-card h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 8px; }
.collection-card.premium h3 { color: var(--gold); }
.collection-card.normal h3 { color: var(--blue); }
.collection-card.free h3 { color: var(--green); }
.collection-card .price { font-size: 2rem; font-weight: 700; margin: 12px 0; }
.collection-card.premium .price { color: var(--gold-light); }
.collection-card.normal .price { color: var(--blue-light); }
.collection-card.free .price { color: var(--green-light); }
.collection-card p { color: var(--text-muted); font-size: 0.9rem; }

/* Image Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
    margin: 32px 0;
}
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.card.premium:hover { box-shadow: 0 4px 32px rgba(201,168,76,0.12); }
.card a { display: block; }
.card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    background: #1a1a1a;
}
.card-body { padding: 16px; }
.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-price { font-weight: 600; font-size: 0.95rem; }
.card-price.premium { color: var(--gold); }
.card-price.normal { color: var(--blue); }
.card-price.free { color: var(--green); }

.badge-ai {
    position: absolute;
    bottom: 68px;
    left: 8px;
    background: rgba(0,0,0,0.6);
    color: rgba(255,255,255,0.7);
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}
.badge-collection {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.badge-collection.premium { background: rgba(201,168,76,0.85); color: #1a1a2e; }
.badge-collection.normal { background: rgba(74,144,217,0.85); color: #fff; }
.badge-collection.free { background: rgba(39,174,96,0.85); color: #fff; }

/* Premium Ribbon */
.ribbon {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    overflow: hidden;
    z-index: 3;
    pointer-events: none;
}
.ribbon span {
    display: block;
    position: absolute;
    top: 26px;
    left: -28px;
    width: 170px;
    padding: 6px 0;
    background: linear-gradient(135deg, #a3872a 0%, #c9a84c 30%, #f4d675 50%, #c9a84c 70%, #a3872a 100%);
    color: #1a1a2e;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(-45deg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
/* Larger ribbon for detail page */
.ribbon.ribbon-lg { width: 160px; height: 160px; }
.ribbon.ribbon-lg span {
    top: 36px;
    left: -30px;
    width: 220px;
    padding: 8px 0;
    font-size: 0.75rem;
    letter-spacing: 3px;
}

/* Section Headers */
.section-header {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin: 48px 0 24px;
    color: var(--text);
}
.section-sub { color: var(--text-muted); margin-bottom: 24px; }

/* Tag Cloud */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.tag-pill {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: all 0.2s;
}
.tag-pill:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }
.tag-pill .count { color: #555; font-size: 0.75rem; margin-left: 4px; }

/* Image Detail Page */
.image-detail { display: grid; grid-template-columns: 1fr 400px; gap: 40px; margin: 40px 0; }
.image-preview { position: relative; }
.image-preview img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.image-info { padding: 20px 0; }
.image-info h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 16px;
    line-height: 1.3;
}
.image-info .description { color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }
.file-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}
.spec-item {
    background: var(--surface);
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.spec-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); font-weight: 600; }
.spec-value { font-size: 1rem; font-weight: 600; color: var(--text); }
.image-info .meta-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); color: var(--text-muted); font-size: 0.9rem; }
.image-info .meta-value { color: var(--text); font-weight: 500; }
.image-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.image-tag {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: all 0.2s;
}
.image-tag:hover { border-color: var(--gold); color: var(--gold); }

/* Buy Button */
.buy-btn {
    display: block;
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: transform 0.15s, box-shadow 0.15s;
    margin: 24px 0;
}
.buy-btn:hover { transform: translateY(-2px); }
.buy-btn.premium {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #1a1a2e;
    box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.buy-btn.normal {
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    color: #fff;
    box-shadow: 0 4px 20px rgba(74,144,217,0.3);
}
.buy-btn.free {
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: #fff;
    box-shadow: 0 4px 20px rgba(39,174,96,0.3);
}
.buy-btn:disabled { opacity: 0.6; cursor: wait; }

/* Related Images */
.related-section { margin: 60px 0; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
.related-grid .card img { aspect-ratio: 1; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; margin: 48px 0; }
.page-link {
    padding: 8px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all 0.2s;
}
.page-link:hover, .page-link.active { border-color: var(--gold); color: var(--gold); }
.page-link.active { background: rgba(201,168,76,0.1); }

/* Footer */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 40px 0;
    margin-top: 60px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}
.footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 16px; }

/* PayPal Container */
#paypal-button-container { margin: 16px 0; }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 8px; }
.lightbox-close { position: fixed; top: 20px; right: 24px; color: #fff; font-size: 2rem; cursor: pointer; z-index: 1001; }

/* Breadcrumb */
.breadcrumb {
    padding: 16px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 6px; color: #444; }

/* Gallery Intro */
.gallery-intro {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 900px;
    margin-bottom: 28px;
}
.gallery-intro a { color: var(--gold); }
.gallery-intro strong { color: var(--text); font-weight: 600; }

/* SEO Note — elegant 1-liner */
.seo-note {
    color: var(--text-muted);
    font-size: 0.82rem;
    text-align: center;
    padding: 32px 0;
    border-top: 1px solid var(--border);
    margin-top: 48px;
}

/* License Badges — inline for image detail */
.license-badges {
    display: flex;
    gap: 12px;
    margin: 16px 0;
}
.license-badge {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: left;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: var(--gold);
    margin-bottom: 12px;
}
.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: 0.82rem;
    padding: 3px 0;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-about {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.6;
}
.footer-bottom {
    text-align: center;
}
.footer-bottom p {
    color: #555;
    font-size: 0.78rem;
    line-height: 1.6;
}


/* Responsive */
@media (max-width: 1024px) {
    .image-detail { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.2rem; }
    .nav-search { flex: 0 1 280px; }
    .nav-search-dropdown { width: 540px; }
    .search-dropdown-grid { grid-template-columns: repeat(2, 1fr); }
    .search-loading { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .collections { grid-template-columns: 1fr; }
    .grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
    .hero { padding: 48px 16px; }
    .hero h1 { font-size: 1.8rem; }
    .header-inner { flex-wrap: wrap; gap: 10px; }
    .nav-search { flex: 1 1 100%; order: 3; }
    .nav-search-dropdown { width: calc(100vw - 32px); left: 0; transform: none; }
    @keyframes searchDropIn {
        from { opacity: 0; transform: translateY(-8px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .search-dropdown-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .search-loading { grid-template-columns: repeat(2, 1fr); }
    .search-filters-row { gap: 4px; }
    .sf-chip { font-size: 0.72rem; padding: 4px 8px; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* Lazy loading placeholder */
img[loading="lazy"] { background: #1a1a1a; }