.breadcrumb {
    display: flex; align-items: center; gap: 6px;
    font-size: 13px; color: var(--ink-3);
    margin-bottom: 40px;
}
.breadcrumb a {
    color: var(--accent);
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}

  /* Article header */
.article-header { margin-bottom: 48px; }
.article-header .tag { margin-bottom: 16px; }
.article-header h1 {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 18px;
}
.article-header .subtitle {
    font-size: 18px;
    color: var(--ink-2);
    line-height: 1.7;
    max-width: 680px;
}
.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
    font-size: 13px;
    color: var(--ink-3);
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

  /* Cover image */
.article-cover {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 48px;
    border: 1px solid var(--border);
}

  /* Rankings header */
.rankings-heading {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 10px;
}
.rankings-heading::before {
    content: '';
    display: block;
    width: 4px;
    height: 28px;
    background: var(--accent);
    border-radius: 4px;
}

  /* Product card */
.product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 24px;
    overflow: hidden;
    transition: box-shadow .2s;
    position: relative;
}
.product-card:hover { box-shadow: var(--shadow-lg); }
.product-card.rank-1 { border-color: #6366f1; border-width: 2px; }
.product-card.rank-2 { border-color: #94a3b8; }
.product-card.rank-3 { border-color: #cd7c2f; }

.rank-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--ink);
    color: #fff;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px 8px 14px;
    border-radius: 0 0 var(--radius-sm) 0;
}
.rank-1 .rank-ribbon { background: var(--accent); }
.rank-2 .rank-ribbon { background: #64748b; }
.rank-3 .rank-ribbon { background: #cd7c2f; }

.product-inner {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
}
@media (max-width: 640px) {
    .product-inner {
        grid-template-columns: 1fr;
    }
    .product-img-col {
        height: 180px;
    }
}

.product-img-col {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    padding: 20px;
}
.product-img-col img {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
    border-radius: 8px;
}
.product-img-placeholder {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 800;
    color: var(--border);
    line-height: 1;
}

.product-body { padding: 28px 28px 28px; }

.product-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
    margin-top: 20px;
}
.product-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
}

.score-badge {
    flex-shrink: 0;
    background: var(--accent-light);
    border: 1.5px solid var(--accent);
    border-radius: 10px;
    padding: 8px 16px;
    text-align: center;
}
.score-number {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    display: block;
}
.score-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: 2px;
    display: block;
}

.product-desc {
    font-size: 15px;
    color: var(--ink-2);
    line-height: 1.7;
    margin-bottom: 20px;
}

  /* Star rating */
.rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.stars {
    display: flex;
    gap: 3px;
}
.star {
    width: 16px;
    height: 16px;
    fill: var(--gold);
}
.star.empty {
    fill: var(--border);
}
.rating-bar-wrap {
    flex: 1;
    height: 6px;
    background: var(--surface-3);
    border-radius: 999px;
    overflow: hidden;
}
.rating-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), #fbbf24);
    border-radius: 999px;
    transition: width .6s ease;
}
.rating-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    min-width: 36px;
}

  /* Pros */
.pros-heading {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase; 
    color: var(--ink-3);
    margin-bottom: 10px;
}
.pros-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}
.pros-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.5;
}
.pros-list li::before {
    content: '';
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    background: var(--green);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M13 4L6 11 3 8' stroke='white' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: contain;
}

/* Pros & Cons grid */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
@media (max-width: 560px) { .pros-cons-grid { grid-template-columns: 1fr; } }
  
.cons-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
}
.cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.5;
}
.cons-list li::before {
    content: '';
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    background: var(--red);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M12 4L4 12M4 4l8 8' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: contain;
}
  
  /* Best for */
.best-for {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-light);
    border: 1px solid #c7d2fe;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--ink-2);
    margin-bottom: 20px;
}
.best-for svg { stroke: var(--accent); }
.best-for strong { color: var(--accent); }
  
/* How we picked */
.how-we-picked {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin-top: 40px;
    box-shadow: var(--shadow);
}

.how-we-picked-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.how-we-picked-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.how-we-picked-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
}

.how-we-picked h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
}

.how-we-picked p {
    margin: 0;
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.7;
}

  /* CTA button */
.btn-order {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: all .2s;
    box-shadow: 0 4px 12px rgba(99,102,241,.3);
}
.btn-order:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(99,102,241,.4);
    background: linear-gradient(135deg, var(--accent-dark), #3730a3);
}
.btn-order svg {
    width: 18px;
    height: 18px;
}

  /* Back link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 48px;
}

.back-link:hover {
    text-decoration: underline;
}
.collection-card {
    border-color: var(--border) !important;
    border-width: 1px !important;
}
.collection-card .product-img-col {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}


/* Share block */
.share-block {
    margin-top: 48px;
    padding: 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}
.share-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 20px;
}
.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .15s;
    font-family: var(--font-body);
    width: 150px;
}
.share-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.share-pinterest { background: #e60023; color: #fff; }
.share-pinterest:hover { background: #c0001d; }
.share-twitter { background: #000; color: #fff; }
.share-twitter:hover { background: #333; }
.share-facebook { background: #1877f2; color: #fff; }
.share-facebook:hover { background: #0d65d9; }
.share-copy { background: var(--surface-3); color: var(--ink); border: 1.5px solid var(--border); }
.share-copy:hover { border-color: var(--accent); color: var(--accent); }



.related-section { margin-top: 56px; }

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 16px;
}
.related-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    transition: box-shadow .2s, transform .2s;
    display: flex;
    flex-direction: column;
}
.related-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}
.related-cover {
    height: 140px;
    background: linear-gradient(135deg, #6366f1, #818cf8);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.related-cover img { width: 100%; height: 100%; object-fit: cover; }
.related-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}
.related-body h3 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
    margin: 4px 0;
}
.related-body p { font-size: 13px; color: var(--ink-3); line-height: 1.5; flex: 1; }
.related-cta {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    margin-top: 8px;
}