/* ═══════════════════════════════════════════
   STARTER THEME — Clean & Modern
   ═══════════════════════════════════════════ */

:root {
    --color-primary: #6366f1;
    --color-primary-dark: #4f46e5;
    --color-secondary: #ec4899;
    --color-text: #1f2937;
    --color-text-light: #6b7280;
    --color-bg: #ffffff;
    --color-bg-alt: #f9fafb;
    --color-border: #e5e7eb;
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-size-base: 1rem;
    --line-height: 1.7;
    --container-width: 1200px;
    --content-width: 800px;
    --spacing: 1.5rem;
    --radius: 0.5rem;
    --shadow: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Base */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: var(--font-size-base);
    line-height: var(--line-height);
    color: var(--color-text);
    background: var(--color-bg);
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

/* ─────────────────────────────────────────
   Header
   ───────────────────────────────────────── */

.site-header {
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
}

.logo:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: var(--color-text-light);
    font-weight: 500;
}

.main-nav a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

/* ─────────────────────────────────────────
   Breadcrumb
   ───────────────────────────────────────── */

.breadcrumb {
    background: var(--color-bg-alt);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
}

.breadcrumb ol {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin-left: 0.5rem;
    color: var(--color-text-light);
}

.breadcrumb a {
    color: var(--color-text-light);
}

/* ─────────────────────────────────────────
   Main Content
   ───────────────────────────────────────── */

.main-content {
    padding: 3rem 0;
}

.main-content .container {
    max-width: var(--content-width);
}

/* Article Header */
.article-header {
    margin-bottom: 2rem;
    text-align: center;
}

.article-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-text);
}

/* Geo Block - Key info for AI/LLM */
.geo-block {
    background: linear-gradient(135deg, var(--color-bg-alt), #f0f9ff);
    border-left: 4px solid var(--color-primary);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: var(--radius);
    font-size: 1.1rem;
}

.geo-block p {
    margin: 0;
}

/* Article Body */
.article-body {
    font-size: 1.125rem;
}

.article-body h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem;
    color: var(--color-text);
}

.article-body h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin: 2rem 0 0.75rem;
}

.article-body p {
    margin-bottom: 1.25rem;
}

.article-body ul, .article-body ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

/* Product Cards */
.product-card {
    display: block;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    text-decoration: none;
    color: var(--color-text);
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    text-decoration: none;
    color: var(--color-text);
}

.product-card img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.product-card .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.product-card .product-brand {
    display: block;
    color: var(--color-text-light);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.product-card .rating {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

/* Badges */
.badge-promo {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.badge-new {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: var(--color-success);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Price block */
.price-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.price-original {
    font-size: 0.95rem;
    color: var(--color-text-light);
    text-decoration: line-through;
}

.price-promo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-secondary);
}

/* Out of stock safety net */
.out-of-stock {
    display: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

/* ─────────────────────────────────────────
   New Arrivals Section
   ───────────────────────────────────────── */

.new-arrivals-section {
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    padding: 2rem;
    margin: 2rem 0;
}

.new-arrivals-section .section-header {
    text-align: center;
    margin-bottom: 1rem;
}

.new-arrivals-section .section-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.new-arrivals-section .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    margin: 1rem 0 0;
}

/* ─────────────────────────────────────────
   FAQ Section
   ───────────────────────────────────────── */

.faq-section {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
}

.faq-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.faq-item {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.faq-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.faq-item p {
    color: var(--color-text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* ─────────────────────────────────────────
   CTA Section
   ───────────────────────────────────────── */

.cta-section {
    margin: 3rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius);
    text-align: center;
    color: white;
}

.cta-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cta-block p {
    font-size: 1.25rem;
    margin: 0;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    transition: all 0.2s;
    cursor: pointer;
}

.btn-primary {
    background: white;
    color: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-bg-alt);
    transform: translateY(-1px);
    text-decoration: none;
}

.cta-button {
    background: white;
    color: var(--color-primary);
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* ─────────────────────────────────────────
   Related Content
   ───────────────────────────────────────── */

.related-content {
    margin: 3rem 0;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.related-content h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.related-content ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.related-content li {
    padding: 0.75rem 1rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
}

/* ─────────────────────────────────────────
   Footer
   ───────────────────────────────────────── */

.site-footer {
    background: var(--color-text);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-about p {
    color: #9ca3af;
    font-size: 0.95rem;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
    font-size: 0.875rem;
    color: #9ca3af;
}

.affiliate-disclosure {
    margin-top: 0.5rem;
    font-size: 0.8rem;
}

.affiliate-disclosure a {
    color: var(--color-primary);
}

/* ─────────────────────────────────────────
   Responsive
   ───────────────────────────────────────── */

/* ═══════════════════════════════════════════
   PIRATE THEME — Homepage & Pages
   ═══════════════════════════════════════════ */

/* ── Header Pirate ── */
.site-header {
    background: #0f172a;
    border-bottom: 1px solid #1e293b;
}

.site-header .logo {
    color: white;
}

.site-header .logo:hover {
    color: #14b8a6;
}

.logo-svg {
    height: 28px;
    width: auto;
}

.btn-header {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: #14b8a6;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius);
    text-decoration: none;
    transition: background 0.2s;
}

.btn-header:hover {
    background: #0d9488;
    color: white;
    text-decoration: none;
}

/* ── Homepage Hero ── */
.homepage-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: white;
    padding: 5rem 0 4rem;
    text-align: center;
}

.homepage-hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(20, 184, 166, 0.15);
    color: #14b8a6;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(20, 184, 166, 0.3);
    margin-bottom: 1.5rem;
}

.homepage-hero-subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.btn-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #14b8a6;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.btn-hero:hover {
    background: #0d9488;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
    color: white;
    text-decoration: none;
}

/* ── Homepage Sections ── */
.homepage-section {
    padding: 4rem 0;
}

.homepage-section--alt {
    background: var(--color-bg-alt);
}

.section-header-pirate {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section-icon {
    font-size: 2rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.08);
    border-radius: 14px;
    flex-shrink: 0;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin: 0.25rem 0 0;
}

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

.homepage-card {
    display: block;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-decoration: none;
    color: var(--color-text);
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.homepage-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    border-color: var(--color-primary);
    text-decoration: none;
    color: var(--color-text);
}

.homepage-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.homepage-card p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.5;
}

.section-cta {
    text-align: center;
    margin-top: 1.5rem;
}

.btn-see-all {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid var(--color-primary);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.2s;
}

.btn-see-all:hover {
    background: var(--color-primary);
    color: white;
    text-decoration: none;
}

/* ── VS Page ── */
.vs-page {
    max-width: var(--content-width);
    margin: 0 auto;
}

.vs-page .page-header {
    text-align: center;
    margin-bottom: 2rem;
}

.vs-page .page-header h1 {
    font-size: 2.25rem;
    font-weight: 700;
}

.page-subtitle {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.vs-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* Quick Verdict */
.vs-quick-verdict {
    margin: 2rem 0;
}

.verdict-badge {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.verdict-badge.winner {
    border: 2px solid #14b8a6;
    box-shadow: 0 0 30px rgba(20, 184, 166, 0.15);
}

.verdict-label {
    display: inline-block;
    background: #14b8a6;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 1rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
}

.verdict-shop {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.verdict-reason {
    color: #94a3b8;
    font-size: 0.95rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Shop Cards (VS Overview) */
.vs-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.shop-card {
    background: white;
    border: 2px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
}

.shop-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.shop-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

.shop-card.shop-kisskiss {
    border-color: #14b8a6;
    background: linear-gradient(180deg, rgba(20, 184, 166, 0.04), white);
}

.shop-card.shop-competitor {
    border-color: var(--color-border);
}

.shop-stats {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.shop-stats .stat {
    display: inline-block;
    background: var(--color-bg-alt);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text);
}

.shop-kisskiss .shop-stats .stat {
    background: rgba(20, 184, 166, 0.1);
    color: #0d7377;
}

/* Comparison Table */
.vs-comparison-table {
    margin: 2.5rem 0;
}

.vs-comparison-table h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.table-vs {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.table-vs thead {
    background: #0f172a;
    color: white;
}

.table-vs th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.table-vs td {
    padding: 1rem;
    border-bottom: 1px solid var(--color-border);
    vertical-align: top;
}

.table-vs td small {
    display: block;
    margin-top: 0.25rem;
    color: var(--color-text-light);
    font-size: 0.85rem;
    line-height: 1.5;
}

.table-vs tbody tr:hover {
    background: var(--color-bg-alt);
}

.vs-verdict {
    margin: 2.5rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05), rgba(99, 102, 241, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(20, 184, 166, 0.2);
}

.vs-verdict h2 {
    margin-bottom: 1rem;
}

/* ── Ranking Page ── */
.ranking-page {
    max-width: var(--content-width);
    margin: 0 auto;
}

.ranking-page .page-header {
    text-align: center;
    margin-bottom: 2rem;
}

.ranking-page .page-header h1 {
    font-size: 2.25rem;
    font-weight: 700;
}

.ranking-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.ranking-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.ranking-card {
    background: white;
    border: 2px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
}

.ranking-card.gold {
    border-color: #f59e0b;
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.04), white);
}

.ranking-card.silver {
    border-color: #94a3b8;
    background: linear-gradient(180deg, rgba(148, 163, 184, 0.04), white);
}

.ranking-card.bronze {
    border-color: #d97706;
    background: linear-gradient(180deg, rgba(217, 119, 6, 0.04), white);
}

.rank-badge {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.9rem;
    color: white;
    background: #0f172a;
    margin-bottom: 0.75rem;
}

.ranking-card.gold .rank-badge { background: #f59e0b; }
.ranking-card.silver .rank-badge { background: #94a3b8; }
.ranking-card.bronze .rank-badge { background: #d97706; }

.rank-summary {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin: 0.75rem 0;
}

.rank-score {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
}

.rank-pros, .rank-cons {
    font-size: 0.9rem;
    margin: 0.5rem 0;
    line-height: 1.6;
}

.rank-review {
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.ranking-cta {
    margin: 0.75rem 0;
}

.ranking-table {
    margin: 2rem 0;
}

.table-ranking {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.table-ranking thead {
    background: #0f172a;
    color: white;
}

.table-ranking th, .table-ranking td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.ranking-methodology, .ranking-tips, .ranking-verdict {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
}

/* Ranking card layout improvements */
.ranking-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: inline;
    margin-right: 0.75rem;
}

.ranking-card .rank-badge {
    vertical-align: middle;
    margin-right: 0.5rem;
    margin-bottom: 0;
}

.ranking-card .rank-score {
    vertical-align: middle;
}

.ranking-card .rank-pros h4,
.ranking-card .rank-cons h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}

.ranking-card .rank-pros h4 {
    color: var(--color-success);
}

.ranking-card .rank-cons h4 {
    color: #ef4444;
}

.ranking-card .rank-pros ul,
.ranking-card .rank-cons ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem;
}

.ranking-card .rank-pros li::before {
    content: "✓ ";
    color: var(--color-success);
    font-weight: 700;
}

.ranking-card .rank-cons li::before {
    content: "✗ ";
    color: #ef4444;
    font-weight: 700;
}

.ranking-card .rank-pros li,
.ranking-card .rank-cons li {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Ranking table improvements */
.table-ranking tbody tr:nth-child(1) td {
    background: rgba(245, 158, 11, 0.06);
    font-weight: 600;
}

.table-ranking tbody tr:hover {
    background: var(--color-bg-alt);
}

.table-ranking td:nth-child(3),
.table-ranking th:nth-child(3) {
    font-weight: 700;
    color: var(--color-primary);
}

/* CTA Box (ranking pages) */
.cta-box {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    margin: 2rem 0;
    border: 2px solid #14b8a6;
    box-shadow: 0 0 30px rgba(20, 184, 166, 0.1);
}

.cta-box h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
}

.cta-box p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.cta-box .btn {
    background: #14b8a6;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: var(--radius);
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.cta-box .btn:hover {
    background: #0d9488;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
    color: white;
    text-decoration: none;
}

/* Review page — alternative box */
.review-alternative {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05), rgba(99, 102, 241, 0.05));
    border: 2px solid #14b8a6;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.review-alternative h3 {
    color: #14b8a6;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

/* Category showdown table */
.showdown-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    margin: 1.5rem 0;
}

.showdown-table thead {
    background: #0f172a;
    color: white;
}

.showdown-table th, .showdown-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.showdown-table tbody tr:first-child td {
    background: rgba(20, 184, 166, 0.06);
    font-weight: 600;
}

.showdown-table tbody tr:hover {
    background: var(--color-bg-alt);
}

/* ── City Page ── */
.city-page {
    max-width: var(--content-width);
    margin: 0 auto;
}

.city-hero {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    border-radius: 12px;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.city-hero .hero-text h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.city-delivery, .city-products, .city-discretion, .city-why-online, .city-nearby {
    margin: 2rem 0;
}

.delivery-info-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.delivery-stat {
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-primary);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: 0.25rem;
}

.product-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.product-stats .stat {
    background: var(--color-bg-alt);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}

.city-cta {
    margin: 2rem 0;
    text-align: center;
}

/* ── Recommendation Box ── */
.recommendation-box {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05), rgba(99, 102, 241, 0.05));
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.recommendation-box.alt {
    background: var(--color-bg-alt);
    border-color: var(--color-border);
}

/* ── Internal Links ── */
.internal-links {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
}

.internal-links h2, .internal-links h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.internal-links ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 0.5rem;
}

.internal-links li {
    padding: 0.4rem 0;
}

.internal-links a {
    font-size: 0.9rem;
}

/* ── Pirate Footer (simpler) ── */
.site-footer {
    background: #0f172a;
    padding: 2rem 0;
    margin-top: 3rem;
}

.site-footer p {
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
}

.site-footer a {
    color: #94a3b8;
}

.site-footer a:hover {
    color: white;
}

/* ═══════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════ */

@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .article-header h1 {
        font-size: 1.75rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-section {
        padding: 1.5rem;
    }

    .homepage-hero h1 {
        font-size: 1.75rem;
    }

    .homepage-hero-subtitle {
        font-size: 1rem;
    }

    .homepage-grid {
        grid-template-columns: 1fr;
    }

    .vs-overview {
        grid-template-columns: 1fr;
    }

    .table-vs {
        font-size: 0.8rem;
    }

    .table-vs th, .table-vs td {
        padding: 0.5rem;
    }

    .shop-stats {
        flex-direction: column;
        gap: 0.5rem;
    }

    .delivery-info-card {
        grid-template-columns: 1fr;
    }
}
