/* ============================================
   Programmatic SEO - Print Landing Pages
   ============================================ */

.print-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 15px 60px;
    font-family: 'Noto Sans KR', 'Malgun Gothic', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Breadcrumb */
.print-breadcrumb {
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
}
.print-breadcrumb a {
    color: #666;
    text-decoration: none;
}
.print-breadcrumb a:hover {
    text-decoration: underline;
}
.print-breadcrumb .sep {
    margin: 0 6px;
    color: #ccc;
}
.print-breadcrumb .current {
    color: #333;
}

/* Hero */
.print-hero {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}
.print-hero__image {
    flex: 0 0 300px;
}
.print-hero__image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    border: 1px solid #eee;
}
.print-hero__info {
    flex: 1;
}
.print-hero__info h1 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.3;
}
.print-hero__price {
    margin-bottom: 20px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 6px;
}
.print-hero__price-label {
    font-size: 13px;
    color: #666;
    display: block;
    margin-bottom: 2px;
}
.print-hero__price-value {
    font-size: 24px;
    font-weight: 700;
    color: #e74c3c;
}
.print-hero__price-qty {
    font-size: 13px;
    color: #888;
    margin-left: 4px;
}
.print-hero__specs {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 6px 12px;
    font-size: 14px;
    margin-bottom: 20px;
}
.print-hero__specs dt {
    color: #888;
    font-weight: 400;
}
.print-hero__specs dd {
    margin: 0;
    font-weight: 500;
}

/* CTA Button */
.print-cta {
    display: inline-block;
    padding: 12px 28px;
    background: #2c3e50;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s;
}
.print-cta:hover {
    background: #1a252f;
    color: #fff;
    text-decoration: none;
}
.print-cta--large {
    padding: 16px 40px;
    font-size: 17px;
}

/* Sections */
.print-section {
    margin-bottom: 36px;
}
.print-section h2 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid #333;
}
.print-section__text {
    font-size: 14px;
    color: #555;
}

/* Material Details */
.print-material__details {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 4px 12px;
    font-size: 14px;
    margin-top: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 4px;
}
.print-material__details dt {
    color: #888;
}
.print-material__details dd {
    margin: 0;
}

/* Price Table */
.print-price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.print-price-table th {
    background: #f8f9fa;
    padding: 10px 12px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #ddd;
}
.print-price-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
}
.print-price-table tbody tr:hover {
    background: #fafafa;
}
.print-price-note {
    font-size: 12px;
    color: #999;
    margin-top: 8px;
}

/* Link Cards (Related Sizes / Materials) */
.print-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.print-link-card {
    display: block;
    padding: 10px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-size: 13px;
    transition: border-color 0.2s, background 0.2s;
}
.print-link-card:hover {
    border-color: #2c3e50;
    background: #f8f9fa;
    text-decoration: none;
    color: #333;
}
.print-link-card__size {
    font-weight: 600;
    display: block;
}
.print-link-card__label {
    font-size: 11px;
    color: #888;
}
.print-link-card__name {
    font-weight: 500;
}

/* FAQ */
.print-faq__item {
    margin-bottom: 16px;
    padding: 14px;
    background: #f8f9fa;
    border-radius: 4px;
}
.print-faq__item h3 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 6px;
}
.print-faq__item p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

/* Bottom CTA */
.print-bottom-cta {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #eee;
}

/* Category Page */
.print-category__desc {
    font-size: 15px;
    color: #555;
    margin-bottom: 24px;
}
.print-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    margin-bottom: 40px;
}
.print-product-card {
    display: block;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.print-product-card:hover {
    border-color: #2c3e50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-decoration: none;
    color: #333;
}
.print-product-card__paper {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
}
.print-product-card__meta {
    font-size: 12px;
    color: #888;
    display: flex;
    gap: 8px;
}

/* Hub Page */
.print-hub__desc {
    font-size: 15px;
    color: #555;
    margin-bottom: 24px;
}
.print-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.print-category-card {
    display: block;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.print-category-card:hover {
    border-color: #2c3e50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-decoration: none;
    color: #333;
}
.print-category-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}
.print-category-card__desc {
    font-size: 13px;
    color: #666;
}

/* 404 */
.print-404 {
    text-align: center;
    padding: 80px 0;
}
.print-404 h1 {
    font-size: 48px;
    color: #ccc;
    margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .print-hero {
        flex-direction: column;
    }
    .print-hero__image {
        flex: none;
        max-width: 280px;
    }
    .print-hero__info h1 {
        font-size: 18px;
    }
    .print-hero__price-value {
        font-size: 20px;
    }
    .print-product-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
}
