/* Custom Photo Calendars landing page */
:root {
    --pc-primary: #1a365d;
    --pc-accent: #c5a059;
    --pc-accent-hover: #b08d4a;
    --pc-bg: #faf9f7;
    --pc-card: #ffffff;
    --pc-text: #1f2937;
    --pc-muted: #6b7280;
    --pc-border: #e5e7eb;
    --pc-radius: 12px;
    --pc-shadow: 0 4px 24px rgba(26, 54, 93, 0.08);
}

.pc-page {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--pc-text);
    background: var(--pc-bg);
    overflow-x: hidden;
    max-width: 100vw;
}

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

/* Override global `button { width:100px; color:#fff; background:#0872ba }` from style.css */
.pc-page button,
.pc-wizard-page button,
.pc-wizard-page .pc-size-card,
.pc-wizard-page .pc-type-pick {
    width: auto;
    height: auto;
    min-height: 0;
    line-height: 1.35;
    font-family: inherit;
    box-sizing: border-box;
}

.pc-page .pc-faq-q {
    background: none;
    color: var(--pc-primary);
    width: 100%;
    height: auto;
    min-height: 0;
    border-radius: 0;
}

.pc-page h1, .pc-page h2, .pc-page h3 {
    font-family: 'Playfair Display', Georgia, serif;
}

.pc-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1a365d 100%);
    overflow: hidden;
    padding: 4rem 0;
}

.pc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1506784365847-bbad939e9335?w=1600&q=80&auto=format&fit=crop') center/cover;
    opacity: 0.15;
}

.pc-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .pc-hero-inner { grid-template-columns: 1fr 1fr; }
}

.pc-hero-badge {
    display: inline-block;
    background: rgba(197, 160, 89, 0.2);
    color: var(--pc-accent);
    padding: 0.35rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    border: 1px solid rgba(197, 160, 89, 0.3);
}

.pc-hero h1 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.25rem);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.pc-hero-sub {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pc-hero-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
    margin-bottom: 2rem;
    padding: 0;
}

.pc-hero-bullets li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pc-hero-bullets li::before {
    content: '✔';
    color: var(--pc-accent);
    font-weight: bold;
}

.pc-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.pc-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.pc-btn-primary {
    background: var(--pc-accent);
    color: #fff;
    border: none;
}

.pc-btn-primary:hover {
    background: var(--pc-accent-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197, 160, 89, 0.35);
}

.pc-btn-ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.pc-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: #fff;
}

.pc-hero-mockup {
    background: var(--pc-card);
    border-radius: var(--pc-radius);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
    padding: 1rem;
    max-width: 380px;
    margin: 0 auto;
    transform: perspective(800px) rotateY(-8deg) rotateX(4deg);
}

.pc-hero-mockup img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    object-fit: contain;
}

.pc-hero-mockup-label {
    text-align: center;
    font-size: 0.75rem;
    color: var(--pc-muted);
    margin-top: 0.75rem;
}

.pc-section { padding: 4.5rem 0; }
.pc-section-alt { background: #fff; }

.pc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.pc-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pc-section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--pc-primary);
    margin-bottom: 0.75rem;
}

.pc-section-header p {
    color: var(--pc-muted);
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.pc-gold-line {
    width: 64px;
    height: 3px;
    background: var(--pc-accent);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.pc-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.pc-type-card {
    background: var(--pc-card);
    border: 1px solid var(--pc-border);
    border-radius: var(--pc-radius);
    padding: 1.5rem;
    transition: box-shadow 0.25s, transform 0.25s;
}

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

.pc-type-icon {
    width: 48px;
    height: 48px;
    background: rgba(26, 54, 93, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pc-primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.pc-type-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--pc-primary);
}

.pc-type-card p {
    font-size: 0.9rem;
    color: var(--pc-muted);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.pc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.pc-tag {
    background: #f3f4f6;
    color: var(--pc-text);
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
}

.pc-steps {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .pc-steps { grid-template-columns: repeat(5, 1fr); gap: 1rem; }
}

.pc-step {
    background: var(--pc-card);
    border: 1px solid var(--pc-border);
    border-radius: var(--pc-radius);
    padding: 1.25rem;
    text-align: center;
}

.pc-step-num {
    width: 36px;
    height: 36px;
    background: var(--pc-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 0.75rem;
    font-size: 0.9rem;
}

.pc-step h3 {
    font-size: 0.95rem;
    color: var(--pc-primary);
    margin-bottom: 0.5rem;
}

.pc-step-detail {
    font-size: 0.8rem;
    color: var(--pc-muted);
    line-height: 1.4;
}

.pc-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.pc-pill {
    background: rgba(26, 54, 93, 0.06);
    color: var(--pc-primary);
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.pc-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

.pc-feature-card {
    background: var(--pc-card);
    border: 1px solid var(--pc-border);
    border-radius: var(--pc-radius);
    padding: 1.25rem;
}

.pc-feature-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--pc-primary);
    margin-bottom: 0.5rem;
}

.pc-feature-card p, .pc-feature-card ul {
    font-size: 0.875rem;
    color: var(--pc-muted);
    line-height: 1.5;
    margin: 0;
}

.pc-feature-card ul { padding-left: 1.1rem; }

.pc-editor-diagram {
    display: grid;
    grid-template-columns: 180px 1fr 180px;
    gap: 0.75rem;
    background: #1e293b;
    border-radius: var(--pc-radius);
    padding: 1rem;
    min-height: 320px;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .pc-editor-diagram { grid-template-columns: 1fr; }
}

.pc-editor-panel {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
}

.pc-editor-panel h5 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--pc-accent);
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.pc-editor-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pc-editor-panel li {
    padding: 0.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pc-editor-canvas {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-align: center;
    padding: 1rem;
    min-height: 200px;
}

.pc-editor-timeline {
    grid-column: 1 / -1;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    justify-content: center;
}

.pc-month-chip {
    background: rgba(197, 160, 89, 0.2);
    color: var(--pc-accent);
    font-size: 0.65rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.pc-preview-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.pc-preview-chip {
    background: var(--pc-primary);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
}

.pc-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.pc-options-block {
    background: var(--pc-card);
    border: 1px solid var(--pc-border);
    border-radius: var(--pc-radius);
    padding: 1.5rem;
}

.pc-options-block h3 {
    font-size: 1.1rem;
    color: var(--pc-primary);
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.pc-advantage-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.pc-advantage-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--pc-card);
    padding: 1rem 1.25rem;
    border-radius: var(--pc-radius);
    border: 1px solid var(--pc-border);
    font-size: 0.9rem;
    font-weight: 500;
}

.pc-advantage-item i { color: var(--pc-accent); }

.pc-seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.75rem;
}

.pc-seo-link {
    display: block;
    padding: 0.85rem 1rem;
    background: var(--pc-card);
    border: 1px solid var(--pc-border);
    border-radius: 8px;
    color: var(--pc-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: border-color 0.2s, background 0.2s;
}

.pc-seo-link:hover {
    border-color: var(--pc-accent);
    background: rgba(197, 160, 89, 0.06);
    color: var(--pc-primary);
}

.pc-diff-list {
    display: grid;
    gap: 0.75rem;
    max-width: 800px;
    margin: 0 auto;
}

.pc-diff-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    background: var(--pc-card);
    padding: 1rem 1.25rem;
    border-radius: var(--pc-radius);
    border-left: 3px solid var(--pc-accent);
    font-size: 0.95rem;
}

.pc-diff-item i {
    color: var(--pc-accent);
    margin-top: 0.15rem;
}

.pc-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.pc-faq-item { border-bottom: 1px solid var(--pc-border); }

.pc-faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.1rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--pc-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.pc-faq-q:hover { color: var(--pc-accent); }

.pc-faq-a {
    padding: 0 0 1.1rem;
    color: var(--pc-muted);
    line-height: 1.6;
    font-size: 0.95rem;
    display: none;
}

.pc-faq-item.is-open .pc-faq-a { display: block; }
.pc-faq-item.is-open .pc-faq-q i { transform: rotate(180deg); }

.pc-cta-band {
    background: linear-gradient(135deg, var(--pc-primary), #2d4a6f);
    padding: 4rem 0;
    text-align: center;
}

.pc-cta-band h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pc-cta-band p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.pc-sticky-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--pc-border);
    padding: 0.75rem 0;
    overflow-x: auto;
}

.pc-sticky-nav-inner {
    display: flex;
    gap: 0.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    white-space: nowrap;
}

.pc-nav-link {
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--pc-muted);
    text-decoration: none;
    font-weight: 500;
}

.pc-nav-link:hover {
    background: rgba(26, 54, 93, 0.06);
    color: var(--pc-primary);
}

.pc-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.pc-chip {
    background: #f3f4f6;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--pc-text);
}

@media (max-width: 767px) {
    .pc-page {
        width: 100%;
        overflow-x: hidden;
    }

    .pc-hero {
        min-height: auto;
        padding: 3rem 0 2.5rem;
    }

    .pc-hero-inner,
    .pc-container {
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: 100%;
        min-width: 0;
    }

    .pc-hero h1 {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

    .pc-hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .pc-hero-ctas .pc-btn {
        width: 100%;
        text-align: center;
    }

    .pc-sticky-nav-inner {
        padding: 0 1rem;
    }

    .pc-section {
        padding: 2.75rem 0;
    }

    .pc-section-header {
        margin-bottom: 1.75rem;
    }

    .pc-section-header h2 {
        font-size: clamp(1.35rem, 5.5vw, 1.75rem);
        line-height: 1.25;
    }

    .pc-section-header p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .pc-gold-line {
        width: 48px;
        height: 2px;
        margin-top: 0.75rem;
    }

    /* Shared 2-column mobile grid pattern */
    .pc-type-grid,
    .pc-steps,
    .pc-feature-grid,
    .pc-options-grid,
    .pc-advantage-list,
    .pc-seo-grid,
    .pc-diff-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem;
        max-width: 100%;
    }

    /* Calendar Types — 2 per row */
    .pc-type-card {
        padding: 0.85rem 0.75rem;
        min-height: 100%;
        display: flex;
        flex-direction: column;
        border-radius: 10px;
        box-shadow: 0 2px 12px rgba(26, 54, 93, 0.05);
        transition: none;
    }

    .pc-type-card:hover {
        transform: none;
        box-shadow: 0 2px 12px rgba(26, 54, 93, 0.05);
    }

    .pc-type-icon {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
        border-radius: 8px;
        margin-bottom: 0.6rem;
    }

    .pc-type-card h3 {
        font-size: 0.82rem;
        line-height: 1.25;
        margin-bottom: 0.35rem;
    }

    .pc-type-card p {
        font-size: 0.68rem;
        line-height: 1.4;
        margin-bottom: 0.5rem;
        flex: 1;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .pc-tags {
        gap: 0.25rem;
    }

    .pc-tag {
        font-size: 0.58rem;
        padding: 0.15rem 0.38rem;
        line-height: 1.2;
    }

    /* Design in 5 Steps — 2 per row, step 5 centered */
    .pc-step {
        padding: 0.75rem 0.5rem;
        min-height: 100%;
        border-radius: 10px;
        box-shadow: 0 2px 12px rgba(26, 54, 93, 0.05);
    }

    .pc-step:nth-child(5) {
        grid-column: 1 / -1;
        max-width: calc(50% - 0.325rem);
        margin: 0 auto;
        width: 100%;
    }

    .pc-step-num {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .pc-step h3 {
        font-size: 0.72rem;
        line-height: 1.25;
        margin-bottom: 0.35rem;
    }

    .pc-step-detail {
        font-size: 0.62rem;
        line-height: 1.35;
        margin-top: 0.35rem !important;
    }

    .pc-pill-row {
        gap: 0.2rem;
        margin-top: 0.35rem;
    }

    .pc-pill {
        font-size: 0.55rem;
        padding: 0.15rem 0.35rem;
        line-height: 1.2;
    }

    /* AI Tools & Personalization — 2 per row */
    .pc-feature-card {
        padding: 0.75rem 0.65rem;
        min-height: 100%;
        border-radius: 10px;
        box-shadow: 0 2px 12px rgba(26, 54, 93, 0.05);
    }

    .pc-feature-card h4 {
        font-size: 0.72rem;
        line-height: 1.3;
        margin-bottom: 0.35rem;
    }

    .pc-feature-card h4 i {
        font-size: 0.65rem;
    }

    .pc-feature-card p,
    .pc-feature-card ul {
        font-size: 0.62rem;
        line-height: 1.35;
    }

    .pc-feature-card p {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .pc-feature-card ul {
        padding-left: 0.85rem;
    }

    .pc-chip-list {
        gap: 0.25rem;
    }

    .pc-chip {
        font-size: 0.58rem;
        padding: 0.18rem 0.38rem;
        line-height: 1.2;
    }

    #personalization .pc-feature-card:nth-child(7) {
        grid-column: 1 / -1;
        max-width: calc(50% - 0.325rem);
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }

    /* Product Options — 2 per row, last block centered when odd count */
    .pc-options-block {
        padding: 0.85rem 0.75rem;
        min-height: 100%;
        border-radius: 10px;
        box-shadow: 0 2px 12px rgba(26, 54, 93, 0.05);
    }

    .pc-options-block h3 {
        font-size: 0.82rem;
        margin-bottom: 0.6rem;
    }

    .pc-options-block:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: calc(50% - 0.325rem);
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }

    /* PrintPosters Advantage — 2 per row */
    .pc-advantage-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
        padding: 0.7rem 0.65rem;
        font-size: 0.68rem;
        line-height: 1.3;
        border-radius: 10px;
        min-height: 100%;
        box-shadow: 0 2px 12px rgba(26, 54, 93, 0.05);
    }

    .pc-advantage-item i {
        font-size: 0.85rem;
    }

    /* Shop by Calendar Style — 2 per row */
    .pc-seo-link {
        padding: 0.65rem 0.55rem;
        font-size: 0.68rem;
        line-height: 1.3;
        text-align: center;
        border-radius: 10px;
        min-height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 12px rgba(26, 54, 93, 0.04);
    }

    /* Why PrintPosters Stands Out — 2 per row */
    .pc-diff-list {
        max-width: 100%;
    }

    .pc-diff-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
        padding: 0.7rem 0.65rem;
        font-size: 0.68rem;
        line-height: 1.35;
        border-radius: 10px;
        border-left: none;
        border-top: 2px solid var(--pc-accent);
        min-height: 100%;
        box-shadow: 0 2px 12px rgba(26, 54, 93, 0.05);
    }

    .pc-diff-item i {
        font-size: 0.75rem;
        margin-top: 0;
    }

    /* Center lone last card when section has odd item count */
    .pc-type-grid .pc-type-card:last-child:nth-child(odd),
    .pc-advantage-list .pc-advantage-item:last-child:nth-child(odd),
    .pc-seo-grid .pc-seo-link:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: calc(50% - 0.325rem);
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }

    /* Preview chips — 2 per row on mobile */
    .pc-preview-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
        max-width: 100%;
    }

    .pc-preview-chip {
        text-align: center;
        padding: 0.55rem 0.5rem;
        font-size: 0.68rem;
        border-radius: 8px;
    }

    .pc-faq-item,
    .pc-cta-band {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .pc-cta-band h2 {
        font-size: 1.5rem;
    }

    .pc-cta-band .pc-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ── SEO Hub & Type Landing Pages ── */

.pc-breadcrumb {
    background: #fff;
    border-bottom: 1px solid var(--pc-border);
    padding: 0.75rem 0;
    font-size: 0.85rem;
    color: var(--pc-muted);
}

.pc-breadcrumb a {
    color: var(--pc-primary);
    text-decoration: none;
}

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

.pc-btn-sm {
    padding: 0.55rem 1.15rem;
    font-size: 0.85rem;
}

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

.pc-btn-outline:hover {
    background: var(--pc-primary);
    color: #fff;
}

.pc-shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.75rem;
}

.pc-shop-card {
    background: var(--pc-card);
    border-radius: var(--pc-radius);
    box-shadow: var(--pc-shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pc-shop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(26, 54, 93, 0.12);
}

.pc-shop-card-image {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: rgba(26, 54, 93, 0.04);
}

.pc-shop-card-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s;
}

.pc-shop-card:hover .pc-shop-card-image img {
    transform: scale(1.04);
}

.pc-shop-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pc-shop-card-icon {
    color: var(--pc-accent);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.pc-shop-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.pc-shop-card h3 a {
    color: var(--pc-primary);
    text-decoration: none;
}

.pc-shop-card h3 a:hover {
    color: var(--pc-accent);
}

.pc-shop-card p {
    color: var(--pc-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    flex: 1;
}

.pc-shop-price {
    font-size: 0.95rem;
    color: var(--pc-text);
    margin-bottom: 1rem;
}

.pc-shop-price strong {
    color: var(--pc-primary);
    font-size: 1.1rem;
}

.pc-shop-card-actions {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.pc-compare-wrap {
    overflow-x: auto;
    border-radius: var(--pc-radius);
    box-shadow: var(--pc-shadow);
}

.pc-compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--pc-card);
    font-size: 0.95rem;
}

.pc-compare-table th,
.pc-compare-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--pc-border);
}

.pc-compare-table th {
    background: var(--pc-primary);
    color: #fff;
    font-weight: 600;
}

.pc-compare-table tbody tr:hover {
    background: rgba(197, 160, 89, 0.06);
}

.pc-stars {
    color: var(--pc-accent);
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.pc-compare-link {
    color: var(--pc-accent);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.pc-compare-link:hover {
    text-decoration: underline;
}

.pc-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.pc-why-card {
    background: var(--pc-card);
    border-radius: var(--pc-radius);
    padding: 1.5rem;
    box-shadow: var(--pc-shadow);
    text-align: center;
}

.pc-why-card i {
    font-size: 1.75rem;
    color: var(--pc-accent);
    margin-bottom: 0.75rem;
}

.pc-why-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--pc-primary);
}

.pc-why-card p {
    font-size: 0.88rem;
    color: var(--pc-muted);
    line-height: 1.5;
    margin: 0;
}

.pc-review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.pc-review-card {
    background: var(--pc-card);
    border-radius: var(--pc-radius);
    padding: 1.5rem;
    box-shadow: var(--pc-shadow);
    margin: 0;
    text-align: center;
}

.pc-review-thumb {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.pc-review-quote {
    font-style: italic;
    color: var(--pc-text);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.pc-review-card footer {
    font-size: 0.85rem;
    color: var(--pc-muted);
}

.pc-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
}

.pc-related-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 1rem;
    background: var(--pc-card);
    border-radius: var(--pc-radius);
    box-shadow: var(--pc-shadow);
    text-decoration: none;
    color: var(--pc-primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pc-related-card i {
    font-size: 1.5rem;
    color: var(--pc-accent);
}

.pc-related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26, 54, 93, 0.12);
    color: var(--pc-accent);
}

.pc-section-header--left {
    text-align: left;
}

.pc-section-header--left p {
    margin-left: 0;
}

.pc-gold-line--left {
    margin-left: 0;
}

.pc-check-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 0.75rem 1.5rem;
}

.pc-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pc-check-list i {
    color: var(--pc-accent);
    margin-top: 0.15rem;
}

.pc-hero-price {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.pc-hero-price strong {
    color: var(--pc-accent);
    font-size: 1.35rem;
}

.pc-size-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
}

.pc-size-card-landing {
    display: block;
    background: var(--pc-card);
    border: 2px solid var(--pc-border);
    border-radius: var(--pc-radius);
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.pc-size-card-landing:hover {
    border-color: var(--pc-accent);
    box-shadow: var(--pc-shadow);
    transform: translateY(-3px);
    color: inherit;
}

.pc-size-card-landing h3 {
    font-size: 1.1rem;
    color: var(--pc-primary);
    margin-bottom: 0.35rem;
}

.pc-size-dim {
    font-size: 0.85rem;
    color: var(--pc-muted);
    margin-bottom: 0.75rem;
}

.pc-size-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--pc-primary);
    margin-bottom: 0.5rem;
}

.pc-size-price s {
    font-size: 0.85rem;
    color: var(--pc-muted);
    font-weight: 400;
    margin-left: 0.35rem;
}

.pc-size-cta {
    font-size: 0.85rem;
    color: var(--pc-accent);
    font-weight: 600;
}

.pc-lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
}

.pc-lifestyle-card {
    margin: 0;
    border-radius: var(--pc-radius);
    overflow: hidden;
    box-shadow: var(--pc-shadow);
}

.pc-lifestyle-card img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
}

.pc-lifestyle-card figcaption {
    padding: 0.75rem 1rem;
    background: var(--pc-card);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--pc-primary);
    text-align: center;
}

.pc-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.pc-gallery-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--pc-radius);
    box-shadow: var(--pc-shadow);
}

@media (max-width: 767px) {
    .pc-compare-table th,
    .pc-compare-table td {
        padding: 0.65rem 0.75rem;
        font-size: 0.8rem;
    }

    .pc-shop-card-actions {
        flex-direction: column;
    }

    .pc-shop-card-actions .pc-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ══════════════════════════════════════════════════════════
   Type Landing Page — compact layout + animations
   (wall-photo-calendar, desk-photo-calendar, etc.)
   ══════════════════════════════════════════════════════════ */

.pc-page--type-landing .pc-hero--type {
    min-height: auto;
    padding: 2.75rem 0 3rem;
}

.pc-page--type-landing .pc-hero-glow {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.18) 0%, transparent 70%);
    top: 10%;
    right: 5%;
    pointer-events: none;
    animation: pc-glow-pulse 8s ease-in-out infinite;
}

@keyframes pc-glow-pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}

.pc-page--type-landing .pc-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0 0 1.25rem;
    padding: 0;
    list-style: none;
}

.pc-page--type-landing .pc-hero-pills li {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.78rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

.pc-page--type-landing .pc-hero-pills li::before {
    content: none;
}

.pc-hero-mockup--float {
    animation: pc-float 6s ease-in-out infinite;
}

@keyframes pc-float {
    0%, 100% { transform: perspective(800px) rotateY(-8deg) rotateX(4deg) translateY(0); }
    50% { transform: perspective(800px) rotateY(-6deg) rotateX(2deg) translateY(-10px); }
}

.pc-section-compact {
    padding: 2.75rem 0;
}

.pc-section-compact .pc-section-header {
    margin-bottom: 1.75rem;
}

.pc-sticky-nav--type .pc-nav-link.is-active {
    background: var(--pc-primary);
    color: #fff;
}

/* Scroll reveal */
.pc-reveal,
.pc-reveal-stagger .pc-reveal-child {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.pc-reveal.is-visible,
.pc-reveal-stagger.is-visible .pc-reveal-child {
    opacity: 1;
    transform: translateY(0);
}

.pc-reveal-stagger.is-visible .pc-reveal-child:nth-child(1) { transition-delay: 0.04s; }
.pc-reveal-stagger.is-visible .pc-reveal-child:nth-child(2) { transition-delay: 0.08s; }
.pc-reveal-stagger.is-visible .pc-reveal-child:nth-child(3) { transition-delay: 0.12s; }
.pc-reveal-stagger.is-visible .pc-reveal-child:nth-child(4) { transition-delay: 0.16s; }
.pc-reveal-stagger.is-visible .pc-reveal-child:nth-child(5) { transition-delay: 0.20s; }
.pc-reveal-stagger.is-visible .pc-reveal-child:nth-child(6) { transition-delay: 0.24s; }
.pc-reveal-stagger.is-visible .pc-reveal-child:nth-child(n+7) { transition-delay: 0.28s; }

/* Tabbed highlights */
.pc-type-tabs {
    background: var(--pc-card);
    border-radius: calc(var(--pc-radius) + 4px);
    box-shadow: var(--pc-shadow);
    overflow: hidden;
    border: 1px solid var(--pc-border);
}

.pc-type-tabs__nav {
    display: flex;
    gap: 0;
    overflow-x: auto;
    border-bottom: 1px solid var(--pc-border);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.pc-type-tabs__nav::-webkit-scrollbar { display: none; }

.pc-type-tabs__btn {
    flex: 0 0 auto;
    padding: 0.85rem 1.15rem;
    border: none;
    background: transparent;
    color: var(--pc-muted);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    font-family: inherit;
}

.pc-type-tabs__btn:hover {
    color: var(--pc-primary);
    background: rgba(26, 54, 93, 0.04);
}

.pc-type-tabs__btn.is-active {
    color: var(--pc-primary);
    border-bottom-color: var(--pc-accent);
    background: rgba(197, 160, 89, 0.06);
}

.pc-type-tabs__panels {
    padding: 1.5rem 1.75rem;
    min-height: 140px;
}

.pc-type-tabs__panel {
    display: none;
    animation: pc-tab-fade 0.35s ease;
}

.pc-type-tabs__panel.is-active {
    display: block;
}

@keyframes pc-tab-fade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.pc-type-tabs__body {
    color: var(--pc-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.pc-check-list--compact {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.5rem 1rem;
}

/* Inline templates under sizes */
.pc-inline-templates {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: var(--pc-card);
    border-radius: var(--pc-radius);
    border: 1px solid var(--pc-border);
}

.pc-inline-templates__label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pc-primary);
    white-space: nowrap;
}

.pc-inline-templates__cta {
    margin-left: auto;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pc-accent);
    text-decoration: none;
    white-space: nowrap;
}

.pc-inline-templates__cta:hover {
    text-decoration: underline;
}

.pc-tags {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.pc-tag {
    background: #f3f4f6;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--pc-text);
}

/* Horizontal showcase track */
.pc-showcase-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0.5rem 0 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--pc-accent) transparent;
}

.pc-showcase-track::-webkit-scrollbar {
    height: 6px;
}

.pc-showcase-track::-webkit-scrollbar-thumb {
    background: var(--pc-accent);
    border-radius: 999px;
}

.pc-showcase-card {
    flex: 0 0 auto;
    width: min(280px, 75vw);
    margin: 0;
    border-radius: var(--pc-radius);
    overflow: hidden;
    box-shadow: var(--pc-shadow);
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pc-showcase-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(26, 54, 93, 0.14);
}

.pc-showcase-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    background: rgba(26, 54, 93, 0.04);
}

.pc-showcase-card figcaption {
    padding: 0.65rem 0.85rem;
    background: var(--pc-card);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--pc-primary);
    text-align: center;
}

/* Bento quality grid */
.pc-bento {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
}

.pc-bento__cell {
    background: var(--pc-card);
    border: 1px solid var(--pc-border);
    border-radius: var(--pc-radius);
    padding: 1rem 1.1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pc-bento__cell:hover {
    transform: translateY(-3px);
    box-shadow: var(--pc-shadow);
    border-color: rgba(197, 160, 89, 0.35);
}

.pc-bento__cell--material i {
    color: var(--pc-accent);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: block;
}

.pc-bento__cell--material h4 {
    font-size: 0.9rem;
    color: var(--pc-primary);
    margin-bottom: 0.35rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.pc-bento__cell--material p {
    font-size: 0.8rem;
    color: var(--pc-muted);
    line-height: 1.45;
    margin: 0;
}

.pc-bento__cell--feat,
.pc-bento__cell--print {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.35;
}

.pc-bento__cell--feat i,
.pc-bento__cell--print i {
    color: var(--pc-accent);
    flex-shrink: 0;
    font-size: 0.85rem;
}

.pc-seo-grid--compact {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.5rem;
}

.pc-seo-grid--compact .pc-seo-link {
    padding: 0.65rem 0.85rem;
    font-size: 0.82rem;
    text-align: center;
}

/* Compact FAQ */
.pc-faq-list--compact {
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 992px) {
    .pc-faq-list--compact {
        grid-template-columns: 1fr 1fr;
        column-gap: 2rem;
    }
}

.pc-faq-item--hidden {
    display: none;
}

.pc-faq-more-wrap {
    text-align: center;
    margin-top: 1.25rem;
}

.pc-cta-band--compact {
    padding: 2.75rem 0;
}

.pc-cta-band--compact h2 {
    font-size: clamp(1.5rem, 4vw, 1.85rem);
}

.pc-cta-band--compact p {
    margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
    .pc-page--type-landing .pc-hero-inner {
        gap: 2rem;
    }

    .pc-type-tabs__nav {
        flex-wrap: wrap;
    }

    .pc-type-tabs__btn {
        flex: 1 1 auto;
        text-align: center;
    }

    .pc-bento {
        grid-template-columns: repeat(4, 1fr);
    }

    .pc-bento__cell--material {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    .pc-page--type-landing .pc-hero {
        padding: 2rem 0 2.25rem;
    }

    .pc-page--type-landing .pc-hero-pills {
        gap: 0.35rem;
    }

    .pc-page--type-landing .pc-hero-pills li {
        font-size: 0.72rem;
        padding: 0.3rem 0.6rem;
    }

    .pc-section-compact {
        padding: 2rem 0;
    }

    .pc-type-tabs__panels {
        padding: 1.15rem 1rem;
    }

    .pc-inline-templates {
        flex-direction: column;
        align-items: flex-start;
    }

    .pc-inline-templates__cta {
        margin-left: 0;
    }

    .pc-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .pc-bento__cell--material {
        grid-column: span 2;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pc-reveal,
    .pc-reveal-stagger .pc-reveal-child {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .pc-hero-mockup--float,
    .pc-page--type-landing .pc-hero-glow {
        animation: none;
    }

    .pc-type-tabs__panel {
        animation: none;
    }

    .pc-showcase-card:hover,
    .pc-bento__cell:hover {
        transform: none;
    }
}

