/* ── Hero ── */
.hero {
    min-height: 48vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-content { max-width: 680px; }

.hero-title { font-size: clamp(30px, 5vw, 52px); }

.hero-orb-1 { width: 400px; height: 400px; top: -100px; right: -80px; }
.hero-orb-2 { width: 250px; height: 250px; bottom: -60px; left: -40px; animation-delay: 3s; }

/* ── Filter bar ── */
.filter-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    color: #6b7280;
    transition: all .2s;
    text-decoration: none;
}

.filter-chip:hover,
.filter-chip.active { background: var(--brand); border-color: var(--brand); color: #fff; }

.filter-count {
    font-size: 11px;
    background: rgba(0, 0, 0, 0.1);
    padding: 1px 7px;
    border-radius: 20px;
}

.filter-chip.active .filter-count { background: rgba(255, 255, 255, 0.25); }

/* ── Printables grid ── */
.printables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ── Print card ── */
.print-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 16px rgba(63, 144, 135, 0.07);
    border: 1px solid rgba(63, 144, 135, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s, box-shadow .3s;
}

.print-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 44px rgba(63, 144, 135, 0.15);
}

.print-cover {
    position: relative;
    height: 180px;
    background: linear-gradient(135deg, #0d3532 0%, #1a5c55 60%, #2d8078 100%);
    overflow: hidden;
}

.print-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}

.print-card:hover .print-cover img { transform: scale(1.04); }

.print-cover-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.print-cover-placeholder svg  { width: 48px; height: 48px; color: rgba(255, 255, 255, 0.35); }
.print-cover-placeholder span { font-size: 12px; font-weight: 600; color: rgba(255, 255, 255, 0.4); letter-spacing: .5px; text-transform: uppercase; }

.print-subject {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: .3px;
    text-transform: uppercase;
}

.print-body {
    padding: 20px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.print-title { font-size: 16px; font-weight: 700; color: #111827; line-height: 1.35; }
.print-desc  { font-size: 13px; color: #6b7280; line-height: 1.65; flex: 1; }

.print-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #f3f4f6;
}

.dl-count {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
}

.dl-count svg { width: 13px; height: 13px; }

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: 50px;
    background: var(--brand);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, transform .2s;
    box-shadow: 0 3px 10px rgba(63, 144, 135, 0.3);
}

.btn-download:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn-download svg   { width: 14px; height: 14px; }

/* ── Empty state ── */
.empty-state { text-align: center; padding: 80px 20px; color: #9ca3af; }
.empty-state svg { width: 64px; height: 64px; margin: 0 auto 20px; color: #d1d5db; }
.empty-state h3  { font-size: 18px; font-weight: 600; color: #6b7280; margin-bottom: 8px; }
.empty-state p   { font-size: 14px; }

/* ── CTA override ── */
.cta-section {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
}

/* ── Responsive ── */
@media (max-width: 1024px) { .printables-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px)  { .printables-grid { grid-template-columns: 1fr; } }
