/* ===== PANELAS ARTICLE STYLES ===== */
/* Base styles (reset, :root vars, body) are inherited from ../style.css */



.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== ADVERTORIAL BAR ===== */
.advertorial-bar {
    background: #eee;
    padding: 6px 0;
    text-align: center;
}

.advertorial-bar span {
    font-size: 11px;
    font-weight: 700;
    color: #666;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ===== HEADER (inherited from style.css) ===== */

/* ===== MAIN ===== */
.main {
    padding: 30px 0 60px;
}

.article-container {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 40px;
    border: 1px solid var(--border);
}

/* Breadcrumb */
.breadcrumb {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.breadcrumb a {
    color: var(--text-muted);
    font-weight: 600;
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb .current {
    color: var(--text-secondary);
    font-weight: 600;
}

/* Category Tag */
.category-tag {
    display: inline-block;
    color: var(--accent);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

/* Title */
.article-title {
    font-family: var(--font-sans);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 14px;
}

/* Subtitle */
.article-subtitle {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #ddd;
}

/* Article Meta */
.article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 12px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.author-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.publish-date {
    font-size: 12px;
    color: var(--text-muted);
}

.share-buttons {
    display: flex;
    gap: 8px;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-primary);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}

.share-btn:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Image */
.article-hero {
    margin-bottom: 32px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.article-hero img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.article-hero:hover img {
    transform: scale(1.02);
}

.article-hero figcaption,
.article-image figcaption {
    background: #f5f5f8;
    padding: 10px 16px;
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.5;
}

/* Article Body */
.article-body {
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body p.lead {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
}

.article-body strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* Article Images */
.article-image {
    margin: 32px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.article-image img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

/* Blockquote */
blockquote {
    margin: 32px 0;
    padding: 28px 32px;
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border-left: 4px solid #ff9800;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    position: relative;
}

blockquote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 14px;
    font-size: 48px;
    color: #ff9800;
    opacity: 0.3;
    font-family: var(--font-serif);
}

blockquote p {
    font-style: italic;
    font-size: 15px;
    margin-bottom: 10px !important;
    color: var(--text-primary);
}

blockquote cite {
    font-style: normal;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    font-family: var(--font-sans);
}

/* Features Box */
.features-box {
    margin: 32px 0;
    padding: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.features-box h3 {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: #455a64;
    padding: 12px 20px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.features-box h3 svg {
    color: #fff;
}

.features-box ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    margin: 0;
}

.features-box li {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text-primary);
    padding: 12px 16px 12px 40px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    border-right: 1px solid #f0f0f0;
    position: relative;
    line-height: 1.4;
}

.features-box li:nth-child(even) {
    border-right: none;
}

.features-box li:nth-last-child(-n+2) {
    border-bottom: none;
}

.features-box li::before {
    content: '✓';
    position: absolute;
    left: 14px;
    color: #43a047;
    font-weight: 700;
    font-size: 15px;
}

/* Defect Info Box */
.defect-info-box {
    margin: 32px 0;
    padding: 28px;
    background: linear-gradient(135deg, #fdf2f2, #fef5f5);
    border: 1px solid #f5c6cb;
    border-radius: var(--radius-md);
    position: relative;
}

.defect-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c, #c0392b, #e74c3c);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.defect-info-box h3 {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.defect-info-box h3 svg {
    color: var(--accent);
}

.defect-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.defect-list li {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text-secondary);
    padding: 10px 14px;
    background: rgba(255,255,255,0.8);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(192, 57, 43, 0.1);
    line-height: 1.5;
}

.defect-list li strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* Highlight Box */
.highlight-box {
    margin: 32px 0;
    padding: 24px;
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border: 1px solid #ff9800;
    border-radius: var(--radius-md);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.6;
    color: #e65100;
    animation: glow-box 2s ease-in-out infinite;
}

@keyframes glow-box {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 152, 0, 0); }
    50% { box-shadow: 0 0 20px 2px rgba(255, 152, 0, 0.2); }
}

.highlight-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: #ff9800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* CTA Section */
.cta-section {
    margin: 40px 0;
    padding: 36px 28px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.03) 0%, transparent 70%);
    animation: rotate-bg 15s linear infinite;
}

@keyframes rotate-bg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffc107;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    animation: pulse-urgency 2s ease-in-out infinite;
}

@keyframes pulse-urgency {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--green), #2ecc71);
    color: #fff;
    padding: 18px 48px;
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
    animation: pulse-cta 2s ease-in-out infinite;
}

@keyframes pulse-cta {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4); }
    50% { transform: scale(1.02); box-shadow: 0 6px 25px rgba(39, 174, 96, 0.5); }
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.cta-button:hover {
    background: linear-gradient(135deg, #2ecc71, var(--green));
    color: #fff;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(39, 174, 96, 0.5);
}

.cta-text {
    display: block;
    margin-bottom: 4px;
}

.cta-subtext {
    display: block;
    font-size: 12px;
    font-weight: 400;
    opacity: 0.9;
    text-transform: none;
    letter-spacing: 0;
}

.cta-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    margin-top: 16px;
    position: relative;
}

/* CTA Alt */
.cta-section-alt {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    padding: 28px;
}

.cta-section-alt .cta-button {
    background: #fff;
    color: var(--accent);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-section-alt .cta-button:hover {
    background: #fff;
    color: var(--accent-dark);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* CTA Clean (no background) */
.cta-section-clean {
    margin: 40px 0;
    text-align: center;
}

.cta-button-clean {
    display: inline-block;
    background: linear-gradient(135deg, var(--green), #2ecc71);
    color: #fff;
    padding: 18px 48px;
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
    animation: pulse-cta 2s ease-in-out infinite;
}

.cta-button-clean::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    animation: shine 3s ease-in-out infinite;
}

.cta-button-clean:hover {
    background: linear-gradient(135deg, #2ecc71, var(--green));
    color: #fff;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(39, 174, 96, 0.5);
}

.cta-button-clean .cta-text {
    display: block;
    margin-bottom: 4px;
}

.cta-button-clean .cta-subtext {
    display: block;
    font-size: 12px;
    font-weight: 400;
    opacity: 0.9;
    text-transform: none;
    letter-spacing: 0;
}

.cta-security-dark {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #555;
    font-size: 12px;
    font-weight: 500;
    margin-top: 14px;
    font-family: var(--font-sans);
}

/* Price Comparison */
.price-comparison {
    margin: 36px 0;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid var(--border);
}

.price-comparison h3 {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    text-align: center;
}

.price-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.price-row.highlight {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border-color: var(--green);
    animation: glow-price 2s ease-in-out infinite;
}

@keyframes glow-price {
    0%, 100% { box-shadow: 0 0 0 0 rgba(39,174,96,0); }
    50% { box-shadow: 0 0 15px 2px rgba(39,174,96,0.15); }
}

.store-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.price-row.highlight .store-name {
    color: var(--green-dark);
    font-weight: 700;
}

.store-price {
    font-size: 18px;
    font-weight: 700;
}

.store-price.old {
    color: var(--text-muted);
    text-decoration: line-through;
}

.store-price.new {
    color: var(--green-dark);
    font-size: 24px;
}

/* ===== COMMENTS ===== */
.comments-section {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid #ddd;
}

.comments-title {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

/* Comment Prompt (collapsed state) */
.comment-prompt {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 24px;
    padding: 12px 16px;
    background: #f0f2f5;
    border-radius: 28px;
    cursor: pointer;
}

.comment-prompt-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.comment-prompt-avatar svg {
    width: 100%;
    height: 100%;
}

.comment-prompt-btn {
    flex: 1;
    border: none;
    background: none;
    font-family: var(--font-sans);
    font-size: 14px;
    color: #65676b;
    text-align: left;
    cursor: pointer;
    padding: 0;
}

.comment-prompt-btn:hover {
    color: #333;
}

/* Registration Modal */
.registration-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.registration-modal {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
    animation: modalIn 0.25s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.registration-close {
    position: absolute;
    top: 12px;
    right: 16px;
    border: none;
    background: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

.registration-close:hover {
    color: #333;
}

.registration-heading {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.registration-desc {
    font-family: var(--font-sans);
    font-size: 14px;
    color: #65676b;
    margin-bottom: 20px;
}

.registration-submit {
    width: 100%;
    background: #1877f2;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
}

.registration-submit:hover {
    background: #166fe5;
}

/* Comment Form Box (after registration) */
.comment-form-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.comment-form-logged {
    margin-bottom: 12px;
}

.comment-form-user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-form-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
}

.comment-form-user-avatar svg {
    width: 100%;
    height: 100%;
    display: block;
}

.comment-form-user-name {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.comment-form-heading {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 18px;
}

.comment-form-fields {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.comment-form-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.comment-form-field label {
    font-size: 13px;
    font-weight: 600;
    color: #444;
    font-family: var(--font-sans);
}

.comment-form-field input,
.comment-form-field textarea {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px 12px;
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text-primary);
    background: #fff;
    outline: none;
    transition: border-color 0.2s ease;
}

.comment-form-field input:focus,
.comment-form-field textarea:focus {
    border-color: #1877f2;
    box-shadow: 0 0 0 2px rgba(24,119,242,0.1);
}

.comment-form-field textarea {
    resize: vertical;
    min-height: 80px;
    background: #f7f7f7;
    border-radius: 12px;
}

.comment-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 4px;
}

.comment-form-tip {
    font-size: 12px;
    color: #999;
    font-family: var(--font-sans);
}

.comment-form-submit {
    background: #333;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 24px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.comment-form-submit:hover {
    background: #111;
}

/* Comment Item */
.comment {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}

.comment:hover {
    box-shadow: none;
}

.comment-avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
}

.comment-avatar-img svg {
    width: 100%;
    height: 100%;
    display: block;
}

.comment-avatar-img.small {
    width: 32px;
    height: 32px;
}

.comment-content {
    flex: 1;
    min-width: 0;
}

.comment-bubble {
    background: #f0f2f5;
    border-radius: 18px;
    padding: 10px 14px;
    display: inline-block;
    max-width: 100%;
}

.comment-author {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
    margin-bottom: 2px;
}

.comment-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-primary);
    margin: 0;
    word-wrap: break-word;
}

.comment-image {
    margin-top: 8px;
    border-radius: 12px;
    overflow: hidden;
    max-width: 320px;
}

.comment-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.comment-image img:hover {
    transform: scale(1.02);
}

.comment-actions {
    display: flex;
    gap: 4px;
    align-items: center;
    margin-top: 4px;
    padding-left: 14px;
}

.comment-action-btn {
    border: none;
    background: none;
    color: #65676b;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-sans);
    padding: 0;
    transition: color 0.15s ease;
}

.comment-action-btn:hover {
    text-decoration: underline;
    color: #333;
}

.comment-action-btn.liked {
    color: #1877f2;
}

.like-count {
    font-weight: 400;
    font-size: 11px;
    color: #65676b;
    margin-left: 4px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.like-count svg {
    color: #1877f2;
}

.comment-sep {
    color: #ccc;
    font-size: 12px;
    margin: 0 3px;
    user-select: none;
}

.comment-time {
    font-size: 12px;
    color: #65676b;
    font-weight: 400;
}

/* Reply thread */
.comment-replies {
    margin-left: 50px;
    margin-top: 8px;
    padding-left: 0;
    border-left: 2px solid #e4e6eb;
    padding-left: 12px;
}

.comment-replies .comment {
    margin-bottom: 12px;
}

.comment-replies .comment-avatar-img {
    width: 32px;
    height: 32px;
}

/* Inline reply form */
.reply-form {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    margin-left: 50px;
    align-items: flex-start;
}

.reply-form-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.reply-form-avatar svg {
    width: 100%;
    height: 100%;
    display: block;
}

.reply-form-input {
    flex: 1;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 8px 14px;
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--text-primary);
    background: #f0f2f5;
    outline: none;
    transition: all 0.2s ease;
}

.reply-form-input:focus {
    background: #fff;
    border-color: #1877f2;
}

.reply-form-send {
    background: #1877f2;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    font-size: 14px;
    transition: background 0.15s;
}

.reply-form-send:hover {
    background: #166fe5;
}

/* Pagination */
.comments-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    flex-wrap: wrap;
}

.page-btn {
    min-width: 38px;
    height: 38px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-sans);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.page-btn:hover:not([disabled]):not(.active) {
    background: #f0f2f5;
    border-color: #999;
}

.page-btn.active {
    background: #1877f2;
    color: #fff;
    border-color: #1877f2;
}

.page-btn.nav-btn {
    padding: 0 14px;
    font-size: 13px;
    font-weight: 600;
}

.page-btn[disabled] {
    opacity: 0.35;
    cursor: default;
}

.page-ellipsis {
    color: #999;
    font-size: 14px;
    padding: 0 4px;
}

/* User comment highlight */
.comment.user-comment .comment-bubble {
    background: #e7f3ff;
}

.comment.user-comment .comment-author::after {
    content: ' (Voc\00ea)';
    font-weight: 400;
    color: #1877f2;
    font-size: 11px;
}

@media (max-width: 768px) {
    .comment-form-row {
        grid-template-columns: 1fr;
    }
    .comment-form-footer {
        flex-direction: column;
        align-items: stretch;
    }
    .comment-form-submit {
        text-align: center;
    }
    .comment-replies {
        margin-left: 24px;
    }
    .reply-form {
        margin-left: 24px;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.5);
    padding: 40px 0;
    text-align: center;
    font-size: 13px;
    line-height: 1.8;
}

.footer-brand {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 4px;
}

.footer-brand strong {
    color: #fff;
}

.footer-address,
.footer-contact {
    margin-bottom: 2px;
}

.footer-links {
    margin: 16px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-weight: 600;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: #fff;
}

.footer-links span {
    color: rgba(255,255,255,0.2);
}

.footer-disclaimer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ===== FLOATING CTA ===== */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 16px;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.floating-cta.visible {
    transform: translateY(0);
}

.floating-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--green), #2ecc71);
    color: #fff;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
    max-width: 500px;
    margin: 0 auto;
}

.floating-cta-btn:hover {
    color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .main {
        padding: 0;
    }

    .article-container {
        border-radius: 0;
        border-left: none;
        border-right: none;
        padding: 24px 16px;
        box-shadow: none;
    }

    .article-title {
        font-size: 22px;
        line-height: 1.3;
    }

    .article-subtitle {
        font-size: 14px;
        line-height: 1.5;
    }

    .article-body {
        font-size: 15px;
    }

    .article-body p.lead {
        font-size: 16px;
    }




    .advertorial-bar {
        padding: 5px 0;
    }

    .advertorial-bar span {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .features-box ul {
        grid-template-columns: 1fr;
    }

    .features-box li {
        border-right: none;
    }

    blockquote {
        padding: 18px 20px;
        margin: 24px 0;
    }

    .defect-info-box {
        padding: 20px 16px;
    }

    .cta-button,
    .cta-button-clean {
        padding: 16px 24px;
        font-size: 15px;
        display: block;
        text-align: center;
    }

    .cta-section-clean {
        margin: 30px 0;
    }

    .comment {
        padding: 0;
        gap: 8px;
    }

    .comment-avatar-img {
        width: 36px;
        height: 36px;
    }

    .comment-image {
        max-width: 260px;
    }

    .comment-bubble {
        border-radius: 14px;
        padding: 8px 12px;
    }

    body {
        padding-bottom: 0;
    }

    .article-hero {
        margin: 0;
    }

    .article-hero img {
        border-radius: 0;
    }

    .article-image {
        margin-left: 0;
        margin-right: 0;
        border-radius: var(--radius-sm);
    }

    .article-image img {
        border-radius: var(--radius-sm);
    }

    .footer {
        margin-top: 0;
        padding: 30px 0 24px;
    }

    .footer-nav {
        gap: 16px;
    }

    .pagination {
        gap: 4px;
    }

    .page-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 20px;
    }

    .article-container {
        padding: 20px 14px;
    }

    .cta-button,
    .cta-button-clean {
        padding: 14px 16px;
        font-size: 14px;
    }

    .category-tag {
        font-size: 12px;
    }

    .comment-form-box {
        padding: 12px 14px;
    }

    .registration-modal {
        padding: 24px 20px;
    }
}

/* ===== PAGINATION ===== */
.comments-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 24px;
    padding: 16px 0;
}

.comments-pagination .page-btn {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-sans);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.comments-pagination .page-btn:hover:not(:disabled) {
    background: #f0f0f0;
    border-color: #bbb;
}

.comments-pagination .page-btn.active {
    background: #1877f2;
    color: #fff;
    border-color: #1877f2;
}

.comments-pagination .page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.comments-pagination .page-btn.nav-btn {
    font-size: 12px;
    padding: 0 12px;
    color: #555;
}

.comments-pagination .page-ellipsis {
    padding: 0 4px;
    color: #999;
    font-size: 14px;
}

@media (max-width: 768px) {
    .comments-pagination {
        gap: 4px;
        padding: 12px 0;
    }

    .comments-pagination .page-btn {
        min-width: 34px;
        height: 34px;
        font-size: 13px;
        padding: 0 6px;
    }

    .comments-pagination .page-btn.nav-btn {
        min-width: 34px;
        padding: 0 8px;
    }

    .comments-pagination .page-btn.nav-btn .nav-text {
        display: none;
    }
}

/* ===== SELECTION ===== */
::selection {
    background: var(--accent);
    color: #fff;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

/* ===== PLACEHOLDER IMAGES ===== */
.article-hero img[src="img/hero.png"],
.article-image img[src="img/warehouse.png"],
.article-image img[src="img/nonstick.png"],
.article-image img[src="img/lifestyle.png"] {
    background: linear-gradient(135deg, #f5f5f5 0%, #eee 50%, #f0f0f0 100%);
    min-height: 300px;
}

/* Product Links (hidden/subtle links to CTA) */
.product-link {
    color: var(--accent);
    text-decoration: none;
    border-bottom: none;
    font-weight: inherit;
}

.product-link:hover {
    color: var(--accent-dark);
}

/* ===== FOOTER ===== */
.footer {
    background: #111;
    color: #aaa;
    padding: 40px 0 30px;
    margin-top: 60px;
    font-family: var(--font-sans);
}

.footer .container {
    text-align: center;
}

.footer-brand {
    margin-bottom: 16px;
}

.footer-brand strong {
    color: #fff;
    font-size: 20px;
    font-style: italic;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-nav a {
    color: #999;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #fff;
}

.footer-disclaimer {
    font-size: 11px;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 12px;
}

.footer-copy {
    font-size: 12px;
    color: #555;
}
